Last fixes before submitting QuasselTopia...
[quassel.git] / src / qtopia / qtopiamainwin.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-07 by the Quassel IRC 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) 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 #include "qtopiamainwin.h"
22
23 #include "buffertreemodel.h"
24 #include "bufferviewwidget.h"
25 #include "nicklistwidget.h"
26 #include "chatline.h"
27 #include "coreconnectdlg.h"
28 #include "global.h"
29 #include "mainwidget.h"
30 #include "message.h"
31 #include "qtopiaui.h"
32 #include "signalproxy.h"
33
34 #include "ui_aboutdlg.h"
35
36 #include <Qtopia>
37 #include <QSoftMenuBar>
38
39 // This constructor is the first thing to be called for a Qtopia app, so we do the init stuff
40 // here (rather than in a main.cpp).
41 QtopiaMainWin::QtopiaMainWin(QWidget *parent, Qt::WFlags flags) : QMainWindow(parent, flags) {
42   qRegisterMetaType<QVariant>("QVariant");
43   qRegisterMetaType<Message>("Message");
44   qRegisterMetaType<BufferInfo>("BufferInfo");
45   qRegisterMetaTypeStreamOperators<QVariant>("QVariant");
46   qRegisterMetaTypeStreamOperators<Message>("Message");
47   qRegisterMetaTypeStreamOperators<BufferInfo>("BufferInfo");
48
49   Global::runMode = Global::ClientOnly;
50
51   QCoreApplication::setOrganizationDomain("quassel-irc.org");
52   QCoreApplication::setApplicationName("Quassel IRC");
53   QCoreApplication::setOrganizationName("Quassel IRC Team");
54
55   QtopiaUi *gui = new QtopiaUi(this);
56   Client::init(gui);
57
58   setWindowTitle("Quassel IRC");
59   setWindowIcon(QIcon(":/qirc-icon.png"));
60   setWindowIconText("Quassel IRC");
61
62   mainWidget = new MainWidget(this);
63   setCentralWidget(mainWidget);
64
65   BufferTreeModel *model = Client::bufferModel();
66   connect(model, SIGNAL(bufferSelected(Buffer *)), this, SLOT(showBuffer(Buffer *)));
67
68   toolBar = new QToolBar(this);
69   toolBar->setIconSize(QSize(16, 16));
70   toolBar->setWindowTitle(tr("Show Toolbar"));
71   addToolBar(toolBar);
72
73   bufferViewWidget = new BufferViewWidget(this);
74   nickListWidget = new NickListWidget(this);
75
76   setupActions();
77
78   init();
79   //gui->init();
80
81 }
82
83 // at this point, client is fully initialized
84 void QtopiaMainWin::init() {
85   Client::signalProxy()->attachSignal(this, SIGNAL(requestBacklog(BufferInfo, QVariant, QVariant)));
86
87   showMaximized();
88   CoreConnectDlg *dlg = new CoreConnectDlg(this);
89   //setCentralWidget(dlg);
90   dlg->showMaximized();
91   dlg->exec();
92 }
93
94 QtopiaMainWin::~QtopiaMainWin() {
95
96
97 }
98
99 void QtopiaMainWin::closeEvent(QCloseEvent *event) {
100 #ifndef DEVELMODE
101   QMessageBox *box = new QMessageBox(QMessageBox::Question, tr("Quit Quassel IRC?"), tr("Do you really want to quit Quassel IRC?"),
102                                      QMessageBox::Cancel, this);
103   QAbstractButton *quit = box->addButton(tr("Quit"), QMessageBox::AcceptRole);
104   box->exec();
105   if(box->clickedButton() == quit) event->accept();
106   else event->ignore();
107   box->deleteLater();
108 #else
109   event->accept();
110 #endif
111 }
112
113 void QtopiaMainWin::setupActions() {
114   showBuffersAction = toolBar->addAction(QIcon(":icon/options-hide"), tr("Show Buffers"), this, SLOT(showBufferView()));  // FIXME provide real icon
115   showNicksAction = toolBar->addAction(QIcon(":icon/list"), tr("Show Nicks"), this, SLOT(showNickList()));
116   showNicksAction->setEnabled(false);
117
118   QMenu *menu = new QMenu(this);
119   menu->addAction(showBuffersAction);
120   menu->addAction(showNicksAction);
121   menu->addSeparator();
122   menu->addAction(toolBar->toggleViewAction());
123   menu->addSeparator();
124   menu->addAction(tr("About..."), this, SLOT(showAboutDlg()));
125
126   QSoftMenuBar::addMenuTo(this, menu);
127 }
128
129 void QtopiaMainWin::connectedToCore() {
130   foreach(BufferInfo id, Client::allBufferInfos()) {
131     emit requestBacklog(id, 100, -1);
132   }
133
134 #ifdef DEVELMODE
135   // FIXME just for testing: select first available buffer
136   if(Client::allBufferInfos().count() > 1) {
137     Buffer *b = Client::buffer(Client::allBufferInfos()[1]);
138     Client::bufferModel()->selectBuffer(b);
139   }
140 #endif
141 }
142
143 void QtopiaMainWin::disconnectedFromCore() {
144
145
146 }
147
148 AbstractUiMsg *QtopiaMainWin::layoutMsg(const Message &msg) {
149   return new ChatLine(msg);
150   //return 0;
151 }
152
153 void QtopiaMainWin::showBuffer(Buffer *b) {
154   bufferViewWidget->hide();
155   mainWidget->setBuffer(b);
156   nickListWidget->setBuffer(b);
157   showNicksAction->setEnabled(b && b->bufferType() == Buffer::ChannelType);
158
159 }
160
161 void QtopiaMainWin::showBufferView() {
162   bufferViewWidget->showMaximized();
163 }
164
165 void QtopiaMainWin::showNickList() {
166   nickListWidget->showMaximized();
167 }
168
169 void QtopiaMainWin::showAboutDlg() {
170   QDialog *dlg = new QDialog(this);
171   dlg->setAttribute(Qt::WA_DeleteOnClose);
172   Ui::AboutDlg ui;
173   ui.setupUi(dlg);
174   dlg->showMaximized();
175 }
176