Checking in current state of QuasselTopia. Probably doesn't even compile.
[quassel.git] / src / qtopia / qtopiamainwin.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-07 by The Quassel IRC Development 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 #include "qtopiamainwin.h"
22
23 #include "buffertreemodel.h"
24 #include "chatline.h"
25 #include "coreconnectdlg.h"
26 #include "global.h"
27 #include "mainwidget.h"
28 #include "message.h"
29 #include "qtopiagui.h"
30 #include "signalproxy.h"
31
32 // This constructor is the first thing to be called for a Qtopia app, so we do the init stuff
33 // here (rather than in a main.cpp).
34 QtopiaMainWin::QtopiaMainWin(QWidget *parent, Qt::WFlags flags) : QMainWindow(parent, flags) {
35   qRegisterMetaType<QVariant>("QVariant");
36   qRegisterMetaType<Message>("Message");
37   qRegisterMetaType<BufferId>("BufferId");
38   qRegisterMetaTypeStreamOperators<QVariant>("QVariant");
39   qRegisterMetaTypeStreamOperators<Message>("Message");
40   qRegisterMetaTypeStreamOperators<BufferId>("BufferId");
41
42   Global::runMode = Global::ClientOnly;
43
44   QCoreApplication::setOrganizationDomain("quassel-irc.org");
45   QCoreApplication::setApplicationName("Quassel IRC");
46   QCoreApplication::setOrganizationName("Quassel IRC Development Team");
47
48   //Style::init();
49   QtopiaGui *gui = new QtopiaGui(this);
50   Client::init(gui);
51
52   setWindowTitle("Quassel IRC");
53   setWindowIcon(QIcon(":/qirc-icon.png"));
54   setWindowIconText("Quassel IRC");
55
56   mainWidget = new MainWidget(this);
57   setCentralWidget(mainWidget);
58
59   QToolBar *toolBar = new QToolBar(this);
60   toolBar->setIconSize(QSize(16, 16));
61   toolBar->addAction(QIcon(":icon/trash"), "Trash");
62   addToolBar(toolBar);
63
64   init();
65   //gui->init();
66
67 }
68
69 // at this point, client is fully initialized
70 void QtopiaMainWin::init() {
71   Client::signalProxy()->attachSignal(this, SIGNAL(requestBacklog(BufferId, QVariant, QVariant)));
72   connect(Client::bufferModel(), SIGNAL(bufferSelected(Buffer *)), this, SLOT(showBuffer(Buffer *)));
73
74   CoreConnectDlg *dlg = new CoreConnectDlg(this);
75   //setCentralWidget(dlg);
76   dlg->showMaximized();
77   dlg->exec();
78 }
79
80 QtopiaMainWin::~QtopiaMainWin() {
81
82
83 }
84
85 void QtopiaMainWin::connectedToCore() {
86   foreach(BufferId id, Client::allBufferIds()) {
87     emit requestBacklog(id, 100, -1);
88   }
89   // FIXME just for testing: select first available buffer
90   if(Client::allBufferIds().count()) {
91     Buffer *b = Client::buffer(Client::allBufferIds()[0]);
92     Client::bufferModel()->selectBuffer(b);
93   }
94 }
95
96 void QtopiaMainWin::disconnectedFromCore() {
97
98
99 }
100
101 AbstractUiMsg *QtopiaMainWin::layoutMsg(const Message &msg) {
102   return new ChatLine(msg);
103   //return 0;
104 }
105
106 void QtopiaMainWin::showBuffer(Buffer *b) {
107   mainWidget->setBuffer(b);
108
109 }