9ea36013e8591d55ef44204d16d46bbae7400dde
[quassel.git] / src / uisupport / toolbaractionprovider.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 "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     virtual ~ToolBarActionProvider();
36
37     enum ToolBarType {
38         MainToolBar,
39         ChatViewToolBar,
40         NickToolBar
41     };
42
43     void addActions(QToolBar *, ToolBarType type);
44
45 public slots:
46     virtual void disconnectedFromCore();
47
48 protected:
49     virtual void handleNetworkAction(ActionType, QAction *);
50     virtual void handleBufferAction(ActionType, QAction *);
51     virtual void handleNickAction(ActionType, QAction *);
52     virtual void handleGeneralAction(ActionType, QAction *);
53
54 private slots:
55     void networkCreated(NetworkId id);
56     void networkRemoved(NetworkId id);
57     void networkUpdated(const Network *net = nullptr);
58     void connectOrDisconnectNet();
59
60     void currentBufferChanged(const QModelIndex &);
61     void nickSelectionChanged(const QModelIndexList &);
62
63     void updateStates();
64
65 private:
66     QMenu *_networksConnectMenu, *_networksDisconnectMenu;
67     QHash<NetworkId, Action *> _networkActions;
68     QModelIndex _currentBuffer;
69     QModelIndexList _selectedNicks;
70 };