/* * Copyright (C) OpenTX * * Based on code named * th9x - http://code.google.com/p/th9x * er9x - http://code.google.com/p/er9x * gruvin9x - http://code.google.com/p/gruvin9x * * License GPLv2: http://www.gnu.org/licenses/gpl-2.0.html * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. */ #include "helpers_html.h" QString tdAlign(const QString &s, const QString &align, const QString &color, bool bold) { QString str = s; if (bold) str = "" + str + ""; if (!color.isEmpty()) str = "" + str + ""; return "" + str + ""; } QString doTC(const QString &s, const QString &color, bool bold) { return tdAlign(s, "center", color, bold); } QString doTR(const QString &s, const QString &color, bool bold) { return tdAlign(s, "right", color, bold); } QString doTL(const QString &s, const QString &color, bool bold) { return tdAlign(s, "left", color, bold); } QString fv(const QString &name, const QString &value, const QString &color) { return "" + name + ": " + value + "
"; }