Changed the windows build method.
[quassel.git] / gui / guiproxy.h
1 /***************************************************************************
2  *   Copyright (C) 2005/06 by The Quassel Team                             *
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) any later version.                                   *
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 _GUIPROXY_H_
22 #define _GUIPROXY_H_
23
24 #include "proxy_common.h"
25
26 #include <QObject>
27 #include <QVariant>
28
29 /** This class is the GUI side of the proxy. The GUI connects its signals and slots to it,
30  *  and the calls are marshalled and sent to (or received and unmarshalled from) the CoreProxy.
31  *  The connection function is defined in main/main_gui.cpp or main/main_mono.cpp.
32  */
33 class GUIProxy : public QObject {
34   Q_OBJECT
35
36   private:
37     void send(GUISignal, QVariant arg1 = QVariant(), QVariant arg2 = QVariant(), QVariant arg3 = QVariant());
38     void recv(CoreSignal, QVariant arg1 = QVariant(), QVariant arg2 = QVariant(), QVariant arg3 = QVariant());
39
40   public:
41     GUIProxy();
42
43   public slots:
44     void gsUserInput(QString);
45     void gsRequestConnect(QString, quint16);
46
47
48   signals:
49     void csCoreMessage(QString);
50
51   friend class CoreProxy;
52
53 };
54
55 extern GUIProxy *guiProxy;
56
57
58
59 #endif