using a shared buffer for QTextBoundaryFinder
[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
52   private:
53     void checkForHighlight(Message &msg);
54     void startProcessing();
55     void updateProgress(bool start = false);
56
57     QList<QList<Message> > _processQueue;
58     QList<Message> _currentBatch;
59     QTimer _processTimer;
60     bool _processing;
61     Mode _processMode;
62     int _msgsProcessed, _msgCount;
63     QTime _progressTimer;
64 };
65
66 #endif