modernize: Replace most remaining old-style connects by PMF ones
[quassel.git] / src / client / abstractmessageprocessor.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2018 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 #pragma once
22
23 #include "client-export.h"
24
25 #include "client.h"
26 #include "message.h"
27 #include "networkmodel.h"
28
29 class CLIENT_EXPORT AbstractMessageProcessor : public QObject
30 {
31     Q_OBJECT
32
33 public:
34     AbstractMessageProcessor(QObject *parent);
35     virtual void reset() = 0;
36
37 public slots:
38     virtual void process(Message &msg) = 0;
39     virtual void process(QList<Message> &msgs) = 0;
40     virtual void networkRemoved(NetworkId id) = 0;
41
42 protected:
43     // updateBufferActivity also sets the Message::Redirected flag which is later used
44     // to determine where a message should be displayed. therefore it's crucial that it
45     // is called before inserting the message into the model
46     inline void preProcess(Message &msg) { Client::networkModel()->updateBufferActivity(msg); }
47 };