Test our newly acquired shortcut capabilities by finally allowing Ctrl+F to trigger...
[quassel.git] / src / qtui / qtui.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 QTUI_H
22 #define QTUI_H
23
24 #include "quasselui.h"
25
26 class ActionCollection;
27 class MainWin;
28 class MessageModel;
29 class QtUiMessageProcessor;
30 class QtUiStyle;
31
32 //! This class encapsulates Quassel's Qt-based GUI.
33 /** This is basically a wrapper around MainWin, which is necessary because we cannot derive MainWin
34  *  from both QMainWindow and AbstractUi (because of multiple inheritance of QObject).
35  */
36 class QtUi : public AbstractUi {
37   Q_OBJECT
38
39 public:
40   QtUi();
41   ~QtUi();
42
43   MessageModel *createMessageModel(QObject *parent);
44   AbstractMessageProcessor *createMessageProcessor(QObject *parent);
45
46   inline static QtUiStyle *style();
47
48   //! Access the global ActionCollection.
49   /** This ActionCollection is associated with the main window, i.e. it contains global
50    *  actions (and thus, shortcuts). Widgets providing application-wide shortcuts should
51    *  create appropriate Action objects using QtUi::actionCollection()->add\<Action\>().
52    */
53   inline static ActionCollection *actionCollection();
54
55 public slots:
56   void init();
57
58 protected slots:
59   void connectedToCore();
60   void disconnectedFromCore();
61
62 private:
63   MainWin *mainWin;
64   static ActionCollection *_actionCollection;
65   static QtUiStyle *_style;
66 };
67
68 ActionCollection *QtUi::actionCollection() { return _actionCollection; }
69 QtUiStyle *QtUi::style() { return _style; }
70
71 #endif