X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtopia%2Fqtopiastyle.cpp;fp=src%2Fqtopia%2Fqtopiastyle.cpp;h=0000000000000000000000000000000000000000;hp=006628e5187417dc07d38ad3af3d8e93e2713981;hb=48979ba2c343ab50ae93a8bb1c355ce79115bd4f;hpb=068a9f975337b4d0b08a438a2abd10ddf94e259d diff --git a/src/qtopia/qtopiastyle.cpp b/src/qtopia/qtopiastyle.cpp deleted file mode 100644 index 006628e5..00000000 --- a/src/qtopia/qtopiastyle.cpp +++ /dev/null @@ -1,113 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2005-07 by the Quassel IRC Team * - * devel@quassel-irc.org * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * 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. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#include "qtopiastyle.h" - -QtopiaUiStyle::QtopiaUiStyle() : UiStyle() { - - QTextCharFormat def; - def.setFont(QFont("Verdana",6)); - setFormat(None, def); - - // We need to just set our internal formats; everything else is done by the base class... - - // Internal message formats - - QTextCharFormat plainMsg; - plainMsg.setForeground(QBrush("#000000")); - setFormat(PlainMsg, plainMsg); - - QTextCharFormat notice; - notice.setForeground(QBrush("#000080")); - setFormat(NoticeMsg, notice); - - QTextCharFormat server; - server.setForeground(QBrush("#000080")); - setFormat(ServerMsg, server); - - QTextCharFormat error; - error.setForeground(QBrush("#ff0000")); - setFormat(ErrorMsg, error); - - QTextCharFormat join; - join.setForeground(QBrush("#008000")); - setFormat(JoinMsg, join); - - QTextCharFormat part; - part.setForeground(QBrush("#cd5c5c")); - setFormat(PartMsg, part); - - QTextCharFormat quit; - quit.setForeground(QBrush("#cd5c5c")); - setFormat(QuitMsg, quit); - - QTextCharFormat kick; - kick.setForeground(QBrush("#cd5c5c")); - setFormat(KickMsg, kick); - - QTextCharFormat nren; - nren.setForeground(QBrush("#6a5acd")); - setFormat(RenameMsg, nren); - - QTextCharFormat mode; - mode.setForeground(QBrush("#4682b4")); - setFormat(ModeMsg, mode); - - QTextCharFormat action; - action.setFontItalic(true); - action.setForeground(QBrush("#8b008b")); - setFormat(ActionMsg, action); - - // Internal message element formats - QTextCharFormat ts; - ts.setForeground(QBrush("#808080")); - setFormat(Timestamp, ts); - - QTextCharFormat sender; - sender.setAnchor(true); - sender.setForeground(QBrush("#000080")); - setFormat(Sender, sender); - - QTextCharFormat nick; - nick.setAnchor(true); - nick.setFontWeight(QFont::Bold); - setFormat(Nick, nick); - - QTextCharFormat hostmask; - hostmask.setFontItalic(true); - setFormat(Hostmask, hostmask); - - QTextCharFormat channel; - channel.setAnchor(true); - channel.setFontWeight(QFont::Bold); - setFormat(ChannelName, channel); - - QTextCharFormat flags; - flags.setFontWeight(QFont::Bold); - setFormat(ModeFlags, flags); - - QTextCharFormat url; - url.setFontUnderline(true); - url.setAnchor(true); - setFormat(Url, url); - -} - -QtopiaUiStyle::~QtopiaUiStyle() {}