14597604a86df829faad242f1b683a09b54c5b48
[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 "actioncollection.h"
24 #include "chatlinemodel.h"
25 #include "mainwin.h"
26 #include "abstractnotificationbackend.h"
27 #include "qtuimessageprocessor.h"
28 #include "qtuistyle.h"
29 #include "types.h"
30 #include "uisettings.h"
31 #include "util.h"
32
33 ActionCollection *QtUi::_actionCollection = 0;
34 QSet<AbstractNotificationBackend *> QtUi::_notificationBackends;
35 QtUiStyle *QtUi::_style = 0;
36
37 QtUi::QtUi() : AbstractUi() {
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   unregisterAllNotificationBackends();
56   delete _style;
57   delete mainWin;
58 }
59
60 void QtUi::init() {
61   mainWin->init();
62 }
63
64 MessageModel *QtUi::createMessageModel(QObject *parent) {
65   return new ChatLineModel(parent);
66 }
67
68 AbstractMessageProcessor *QtUi::createMessageProcessor(QObject *parent) {
69   return new QtUiMessageProcessor(parent);
70 }
71
72 void QtUi::connectedToCore() {
73   mainWin->connectedToCore();
74 }
75
76 void QtUi::disconnectedFromCore() {
77   mainWin->disconnectedFromCore();
78 }
79
80 void QtUi::registerNotificationBackend(AbstractNotificationBackend *backend) {
81   if(!_notificationBackends.contains(backend)) {
82     _notificationBackends.insert(backend);
83   }
84 }
85
86 void QtUi::unregisterNotificationBackend(AbstractNotificationBackend *backend) {
87   _notificationBackends.remove(backend);
88 }
89
90 void QtUi::unregisterAllNotificationBackends() {
91   _notificationBackends.clear();
92 }
93
94 void QtUi::notify(BufferId id, const QString &sender, const QString &text) {
95   foreach(AbstractNotificationBackend *backend, _notificationBackends)
96     backend->notify(id, sender, text);
97 }