emacs bindings: added default case to be consistend
[quassel.git] / src / uisupport / contextmenuactionprovider.h
1 /***************************************************************************
2  *   Copyright (C) 2005-09 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 CONTEXTMENUACTIONPROVIDER_H
22 #define CONTEXTMENUACTIONPROVIDER_H
23
24 #include "networkmodelcontroller.h"
25
26 class ContextMenuActionProvider : public NetworkModelController {
27   Q_OBJECT
28
29 public:
30   ContextMenuActionProvider(QObject *parent = 0);
31   virtual ~ContextMenuActionProvider();
32
33   //! Provide a list of actions applying to the given item
34   /**
35    * Note that this list ist not persistent, hence it should only be used immediately after
36    * calling this function (e.g. in a context menu). Optionally one can provide a QObject and a slot
37    * (that should take a QAction * as parameter) that is invoked for actions that require external
38    * handling.
39    * @param index The item index in the NetworkModel
40    * @param receiver The optional object that is notified for actions that need to be handled externally.
41    *                 The action type will be stored in the QAction's data().
42    * @param slot     The receiving slot name; should be "mySlot" rather than SLOT(mySlot(QAction *))
43    * @return A list of actions applying to the given item
44    */
45   void addActions(QMenu *, const QModelIndex &index, QObject *receiver = 0, const char *slot = 0, bool allowBufferHide = false);
46   void addActions(QMenu *, const QList<QModelIndex> &indexList, QObject *receiver = 0, const char *slot = 0, bool allowBufferHide = false);
47   void addActions(QMenu *, BufferId id, QObject *receiver = 0, const char *slot = 0);
48   void addActions(QMenu *, MessageFilter *filter, BufferId msgBuffer, QObject *receiver = 0, const char *slot = 0);
49   void addActions(QMenu *, MessageFilter *filter, BufferId msgBuffer, const QString &chanOrNick, QObject *receiver = 0, const char *slot = 0);
50
51 private:
52
53   void addActions(QMenu *, const QList<QModelIndex> &indexList, MessageFilter *filter, const QString &chanOrNick,
54                   QObject *receiver, const char *slot, bool allowBufferHide);
55
56   Action * addAction(ActionType, QMenu *, bool condition = true);
57   Action * addAction(Action * , QMenu *, bool condition = true);
58   Action * addAction(ActionType, QMenu *, const QModelIndex &index, ItemActiveStates requiredActiveState = QFlags<ItemActiveState>(ActiveState | InactiveState));
59   Action * addAction(Action * , QMenu *, const QModelIndex &index, ItemActiveStates requiredActiveState = QFlags<ItemActiveState>(ActiveState | InactiveState));
60
61   void addHideEventsMenu(QMenu *, BufferId bufferId);
62   void addHideEventsMenu(QMenu *, MessageFilter *msgFilter);
63   void addHideEventsMenu(QMenu *, int filter = -1);
64   void addIgnoreMenu(QMenu *menu, const QString &hostmask, const QMap<QString, bool> &ignoreMap);
65
66   void addNetworkItemActions(QMenu *, const QModelIndex &);
67   void addBufferItemActions(QMenu *, const QModelIndex &, bool isCustomBufferView = false);
68   void addIrcUserActions(QMenu *, const QModelIndex &);
69
70   Action *_hideEventsMenuAction;
71   Action *_nickCtcpMenuAction;
72   Action *_nickModeMenuAction;
73   Action *_nickIgnoreMenuAction;
74   QList<QAction *> _ignoreDescriptions;
75 };
76
77 #endif