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