newly created buffer views are previewed properly in the settings dialog
[quassel.git] / src / qtui / qtuimessageprocessor.h
1 /***************************************************************************
2 *   Copyright (C) 2005-08 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   void updateProgress(bool start = false);
59
60   QList<QList<Message> > _processQueue;
61   QList<Message> _currentBatch;
62   QTimer _processTimer;
63   bool _processing;
64   Mode _processMode;
65   int _msgsProcessed, _msgCount;
66   QTime _progressTimer;
67
68   struct HighlightRule {
69     QString name;
70     bool isEnabled;
71     Qt::CaseSensitivity caseSensitive;
72     bool isRegExp;
73     inline HighlightRule(const QString &name, bool enabled, Qt::CaseSensitivity cs, bool regExp)
74     : name(name), isEnabled(enabled), caseSensitive(cs), isRegExp(regExp) {}
75   };
76
77   QList<HighlightRule> _highlightRules;
78   NotificationSettings::HighlightNickType _highlightNick;
79   bool _nicksCaseSensitive;
80 };
81
82 #endif