Cleanup allowing for tags to be available at later points, adds TAGMSG
[quassel.git] / src / uisupport / toolbaractionprovider.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2019 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 "uisupport-export.h"
24
25 #include "networkmodelcontroller.h"
26
27 class QToolBar;
28
29 class UISUPPORT_EXPORT ToolBarActionProvider : public NetworkModelController
30 {
31     Q_OBJECT
32
33 public:
34     ToolBarActionProvider(QObject* parent = nullptr);
35
36     enum ToolBarType
37     {
38         MainToolBar,
39         ChatViewToolBar,
40         NickToolBar
41     };
42
43     void addActions(QToolBar*, ToolBarType type);
44
45 public slots:
46     void disconnectedFromCore() override;
47     void onCurrentBufferChanged(const QModelIndex&);
48     void onNickSelectionChanged(const QModelIndexList&);
49
50 protected:
51     void handleNetworkAction(ActionType, QAction*) override;
52     void handleBufferAction(ActionType, QAction*) override;
53     void handleNickAction(ActionType, QAction*) override;
54     void handleGeneralAction(ActionType, QAction*) override;
55
56 private slots:
57     void networkCreated(NetworkId id);
58     void networkRemoved(NetworkId id);
59     void networkUpdated(const Network* net = nullptr);
60     void connectOrDisconnectNet();
61
62     void updateStates();
63
64 private:
65     QMenu *_networksConnectMenu, *_networksDisconnectMenu;
66     QHash<NetworkId, Action*> _networkActions;
67     QModelIndex _currentBuffer;
68     QModelIndexList _selectedNicks;
69 };