7f0614b954027729b785b91e321d066030b02d1c
[quassel.git] / src / uisupport / uistyle.h
1 /***************************************************************************
2  *   Copyright (C) 2005-09 by the Quassel Project                          *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #ifndef UISTYLE_H
22 #define UISTYLE_H
23
24 #include <QDataStream>
25 #include <QFontMetricsF>
26 #include <QTextCharFormat>
27 #include <QTextLayout>
28 #include <QUrl>
29
30 #include "message.h"
31 #include "settings.h"
32
33 class UiStyle {
34   Q_DECLARE_TR_FUNCTIONS(UiStyle)
35
36 public:
37   UiStyle(const QString &settingsKey);
38   virtual ~UiStyle();
39
40   typedef QList<QPair<quint16, quint32> > FormatList;
41
42   //! This enumerates the possible formats a text element may have. */
43   /** These formats are ordered on increasing importance, in cases where a given property is specified
44    *  by multiple active formats.
45    *  \NOTE: Do not change/add values here without also adapting the relevant
46    *         methods in this class (in particular mergedFormat())!
47    *         Also, we _do_ rely on certain properties of these values in styleString() and friends!
48    */
49   enum FormatType {
50     None            = 0x00000000,
51     Invalid         = 0x11111111,
52     // Message Formats (mutually exclusive!)
53     PlainMsg        = 0x00000001,
54     NoticeMsg       = 0x00000002,
55     ServerMsg       = 0x00000003,
56     ErrorMsg        = 0x00000004,
57     JoinMsg         = 0x00000005,
58     PartMsg         = 0x00000006,
59     QuitMsg         = 0x00000007,
60     KickMsg         = 0x00000008,
61     RenameMsg       = 0x00000009,
62     ModeMsg         = 0x0000000a,
63     ActionMsg       = 0x0000000b,
64     // Standard Formats
65     Bold            = 0x00000010,
66     Italic          = 0x00000020,
67     Underline       = 0x00000040,
68     Reverse         = 0x00000080,
69     // Individual parts of a message
70     Timestamp       = 0x00000100,
71     Sender          = 0x00000200,
72     Nick            = 0x00000400,
73     Hostmask        = 0x00000800,
74     ChannelName     = 0x00001000,
75     ModeFlags       = 0x00002000,
76     // URL is special, we want that to take precedence over the rest...
77     Url             = 0x00100000,
78     // Colors
79     FgCol00         = 0x00400000,
80     FgCol01         = 0x01400000,
81     FgCol02         = 0x02400000,
82     FgCol03         = 0x03400000,
83     FgCol04         = 0x04400000,
84     FgCol05         = 0x05400000,
85     FgCol06         = 0x06400000,
86     FgCol07         = 0x07400000,
87     FgCol08         = 0x08400000,
88     FgCol09         = 0x09400000,
89     FgCol10         = 0x0a400000,
90     FgCol11         = 0x0b400000,
91     FgCol12         = 0x0c400000,
92     FgCol13         = 0x0d400000,
93     FgCol14         = 0x0e400000,
94     FgCol15         = 0x0f400000,
95
96     BgCol00         = 0x00800000,
97     BgCol01         = 0x10800000,
98     BgCol02         = 0x20800000,
99     BgCol03         = 0x30800000,
100     BgCol04         = 0x40800000,
101     BgCol05         = 0x50800000,
102     BgCol06         = 0x60800000,
103     BgCol07         = 0x70800000,
104     BgCol08         = 0x80800000,
105     BgCol09         = 0x90800000,
106     BgCol10         = 0xa0800000,
107     BgCol11         = 0xb0800000,
108     BgCol12         = 0xc0800000,
109     BgCol13         = 0xd0800000,
110     BgCol14         = 0xe0800000,
111     BgCol15         = 0xf0800000
112
113   };
114
115   struct UrlInfo {
116     int start, end;
117     QUrl url;
118   };
119
120   struct StyledString {
121     QString plainText;
122     FormatList formatList;  // starting pos, ftypes
123   };
124
125   class StyledMessage;
126
127   StyledString styleString(const QString &);
128   QString mircToInternal(const QString &) const;
129
130   void setFormat(FormatType, QTextCharFormat, Settings::Mode mode/* = Settings::Custom*/);
131   QTextCharFormat format(FormatType, Settings::Mode mode = Settings::Custom) const;
132   QTextCharFormat mergedFormat(quint32 formatType);
133   QFontMetricsF *fontMetrics(quint32 formatType);
134
135   FormatType formatType(const QString &code) const;
136   QString formatCode(FormatType) const;
137
138   inline QFont defaultFont() const { return _defaultFont; }
139
140   QList<QTextLayout::FormatRange> toTextLayoutList(const FormatList &, int textLength);
141
142 protected:
143 private:
144   QFont _defaultFont;
145   QTextCharFormat _defaultPlainFormat;
146   QHash<FormatType, QTextCharFormat> _defaultFormats;
147   QHash<FormatType, QTextCharFormat> _customFormats;
148   QHash<quint32, QTextCharFormat> _cachedFormats;
149   QHash<quint32, QFontMetricsF *> _cachedFontMetrics;
150   QHash<QString, FormatType> _formatCodes;
151
152   QString _settingsKey;
153 };
154
155 class UiStyle::StyledMessage : public Message {
156 public:
157   explicit StyledMessage(const Message &message);
158
159   //! Styling is only needed for calls to plainContents() and contentsFormatList()
160   // StyledMessage can't style lazily by itself, as it doesn't know the used style
161   bool inline needsStyling() const { return _contents.plainText.isNull(); }
162   void style(UiStyle *style) const;
163
164
165   QString decoratedTimestamp() const;
166   QString plainSender() const;             //!< Nickname (no decorations) for Plain and Notice, empty else
167   QString decoratedSender() const;
168   inline const QString &plainContents() const { return _contents.plainText; }
169
170   inline FormatType timestampFormat() const { return UiStyle::Timestamp; }
171   FormatType senderFormat() const;
172   inline const FormatList &contentsFormatList() const { return _contents.formatList; }
173
174 private:
175   mutable StyledString _contents;
176 };
177
178 QDataStream &operator<<(QDataStream &out, const UiStyle::FormatList &formatList);
179 QDataStream &operator>>(QDataStream &in, UiStyle::FormatList &formatList);
180
181 Q_DECLARE_METATYPE(UiStyle::FormatList)
182
183 #endif