More sensible default color for unread messages
[quassel.git] / src / qtui / qtuimessageprocessor.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 QTUIMESSAGEPROCESSOR_H_
22 #define QTUIMESSAGEPROCESSOR_H_
23
24 #include <QTime>
25 #include <QTimer>
26
27 #include "abstractmessageprocessor.h"
28
29 class QtUiMessageProcessor : public AbstractMessageProcessor {
30   Q_OBJECT
31
32 public:
33   enum Mode {
34     TimerBased,
35     Concurrent
36   };
37
38   QtUiMessageProcessor(QObject *parent);
39
40   inline bool isProcessing() const { return _processing; }
41   inline Mode processMode() const { return _processMode; }
42
43   void reset();
44
45 public slots:
46   void process(Message &msg);
47   void process(QList<Message> &msgs);
48
49 private slots:
50   void processNextMessage();
51   void nicksCaseSensitiveChanged(const QVariant &variant);
52   void highlightListChanged(const QVariant &variant);
53   void highlightNickChanged(const QVariant &variant);
54
55 private:
56   void checkForHighlight(Message &msg);
57   void startProcessing();
58
59   QList<QList<Message> > _processQueue;
60   QList<Message> _currentBatch;
61   QTimer _processTimer;
62   bool _processing;
63   Mode _processMode;
64
65   struct HighlightRule {
66     QString name;
67     bool isEnabled;
68     Qt::CaseSensitivity caseSensitive;
69     bool isRegExp;
70     inline HighlightRule(const QString &name, bool enabled, Qt::CaseSensitivity cs, bool regExp)
71     : name(name), isEnabled(enabled), caseSensitive(cs), isRegExp(regExp) {}
72   };
73
74   QList<HighlightRule> _highlightRules;
75   NotificationSettings::HighlightNickType _highlightNick;
76   bool _nicksCaseSensitive;
77 };
78
79 #endif