WebPreview is now delayed by 2 seconds.
[quassel.git] / src / qtui / qtui.cpp
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 #include "qtui.h"
22
23 #include <QDebug>
24
25 #include "actioncollection.h"
26 #include "chatlinemodel.h"
27 #include "mainwin.h"
28 #include "qtuimessageprocessor.h"
29 #include "qtuistyle.h"
30 #include "uisettings.h"
31 #include "util.h"
32
33 ActionCollection *QtUi::_actionCollection = 0;
34 QtUiStyle *QtUi::_style = 0;
35
36 QtUi::QtUi() : AbstractUi()
37 {
38   if(_style != 0) {
39     qWarning() << "QtUi has been instantiated again!";
40     return;
41   }
42   _actionCollection = new ActionCollection(this);
43
44   UiSettings uiSettings;
45   loadTranslation(uiSettings.value("Locale", QLocale::system()).value<QLocale>());
46
47   mainWin = new MainWin();
48   _style = new QtUiStyle;
49
50   connect(mainWin, SIGNAL(connectToCore(const QVariantMap &)), this, SIGNAL(connectToCore(const QVariantMap &)));
51   connect(mainWin, SIGNAL(disconnectFromCore()), this, SIGNAL(disconnectFromCore()));
52 }
53
54 QtUi::~QtUi() {
55   delete _style;
56   delete mainWin;
57 }
58
59 void QtUi::init() {
60   mainWin->init();
61 }
62
63 MessageModel *QtUi::createMessageModel(QObject *parent) {
64   return new ChatLineModel(parent);
65 }
66
67 AbstractMessageProcessor *QtUi::createMessageProcessor(QObject *parent) {
68   return new QtUiMessageProcessor(parent);
69 }
70
71 void QtUi::connectedToCore() {
72   mainWin->connectedToCore();
73 }
74
75 void QtUi::disconnectedFromCore() {
76   mainWin->disconnectedFromCore();
77 }