1/***************************************************************************
2 * Copyright (C) 2005-2014 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 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
19 ***************************************************************************/
20
21#ifndef QTUIMESSAGEPROCESSOR_H_
22#define QTUIMESSAGEPROCESSOR_H_
23
24#include <QTimer>
25
26#include "abstractmessageprocessor.h"
27
28class QtUiMessageProcessor : public AbstractMessageProcessor
29{
30 Q_OBJECT
31
32public:
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
45public slots:
46 void process(Message &msg);
47 void process(QList<Message> &msgs);
48
49private slots:
50 void processNextMessage();
51 void nicksCaseSensitiveChanged(const QVariant &variant);
52 void highlightListChanged(const QVariant &variant);
53 void highlightNickChanged(const QVariant &variant);
54
55private:
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 QString chanName;
71 inline HighlightRule(const QString &name, bool enabled, Qt::CaseSensitivity cs, bool regExp, const QString &chanName)
72 : name(name), isEnabled(enabled), caseSensitive(cs), isRegExp(regExp), chanName(chanName) {}
73 };
74
75 QList<HighlightRule> _highlightRules;
76 NotificationSettings::HighlightNickType _highlightNick;
77 bool _nicksCaseSensitive;
78};
79
80
81#endif
82