QssParser: Interpret "oblique" as italic
[quassel.git] / src / qtui / mainpage.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2018 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  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #include "mainpage.h"
22
23 #include <QPushButton>
24 #include <QImage>
25 #include <QLabel>
26 #include <QLayout>
27 #include <QPainter>
28
29 #include "client.h"
30 #include "coreconnectdlg.h"
31 #include "icon.h"
32
33 MainPage::MainPage(QWidget *parent) : QWidget(parent)
34 {
35     QVBoxLayout *layout = new QVBoxLayout(this);
36     layout->setAlignment(Qt::AlignCenter);
37     QLabel *label = new QLabel(this);
38     label->setPixmap(QPixmap(":/pics/quassel-logo.png"));
39     layout->addWidget(label);
40
41     if (Quassel::runMode() != Quassel::Monolithic) {
42         _connectButton = new QPushButton(icon::get("network-connect"), tr("Connect to Core..."));
43         _connectButton->setEnabled(Client::coreConnection()->state() == CoreConnection::Disconnected);
44
45         connect(Client::coreConnection(), SIGNAL(stateChanged(CoreConnection::ConnectionState)), this, SLOT(coreConnectionStateChanged()));
46         connect(_connectButton, SIGNAL(clicked(bool)), this, SLOT(showCoreConnectionDlg()));
47         layout->addWidget(_connectButton);
48     }
49 }
50
51 void MainPage::showCoreConnectionDlg()
52 {
53     CoreConnectDlg dlg(this);
54     if (dlg.exec() == QDialog::Accepted) {
55         AccountId accId = dlg.selectedAccount();
56         if (accId.isValid())
57             Client::coreConnection()->connectToCore(accId);
58     }
59 }
60
61 void MainPage::coreConnectionStateChanged()
62 {
63     if (Client::coreConnection()->state() == CoreConnection::Disconnected) {
64         _connectButton->setEnabled(true);
65     } else {
66         _connectButton->setDisabled(true);
67     }
68 }