summaryrefslogtreecommitdiffstats
path: root/src/mainwindow.cpp
blob: a9ff11e5ee54f8187445570c3554567bf5537cdd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
/*
* Copyright (c) 2012-2015 Christian Surlykke, Petr Vanek
*
* This file is part of qt-lightdm-greeter 
* It is distributed under the LGPL 2.1 or later license.
* Please refer to the LICENSE file for a copy of the license.
*/
#include <QRect>
#include <QApplication>
#include <QDesktopWidget>
#include <QPalette>
#include <QString>
#include <QtDebug>
#include <QTextEdit>
#include <QStyleFactory>
#include <QLabel>
#include <QSvgWidget>
#include <QSvgRenderer>
#include <QAbstractTextDocumentLayout>
#include <QDateTime>

#include <sys/types.h>
#include <sys/socket.h>

#include "mainwindow.h"
#include "loginform.h"
#include "settings.h"
#include "global.h"

#include "snake.h"

MainWindow::MainWindow(bool primary, int screen, const QRect &screenRect, QWidget *parent) :
    QWidget(parent),
    m_ScreenRect(screenRect),
    m_Primary(primary),
	m_LoginForm(nullptr),
    m_messages(nullptr),
    m_Clock(nullptr),
    m_Snake(nullptr)
{
    setObjectName(QString("MainWindow_%1").arg(screen));
    
    setGeometry(screenRect);

    setBackground();

    // TODO: Check if testMode == false and greeter == NULL, if so display big error message
    // instead of exiting/crashing

    // display login dialog only in the main screen

    int spaceY = screenRect.height() / 2;
    
    if (showLoginForm()) {
        m_LoginForm = new LoginForm(this);
        spaceY -= m_LoginForm->height() / 2;

        int maxX = screenRect.width() - m_LoginForm->width();
        int maxY = screenRect.height() - m_LoginForm->height();
        int defaultX = 50*maxX/100;
        int defaultY = 50*maxY/100;
        int offsetX = getOffset(Settings::offsetX(), maxX, defaultX);
        int offsetY = getOffset(Settings::offsetY(), maxY, defaultY);
        
        m_LoginForm->move(offsetX, offsetY);
        m_LoginForm->show();

        // This hack ensures that the primary screen will have focus
        // if there are more screens (move the mouse cursor in the center
        // of primary screen - not in the center of all X area). It
        // won't affect single-screen environments.
        int centerX = screenRect.width()/2 + screenRect.x();
        int centerY = screenRect.height()/2 + screenRect.y();
        QCursor::setPos(centerX, centerY);
    }

    // Banner
    if (!Settings::bannerImageFile().isEmpty()) {
        qWarning() << "Have banner " << Settings::bannerImageFile();
        QSvgWidget *banner = new QSvgWidget(Settings::bannerImageFile(), this);
        qWarning() << banner->sizeHint();
        if (banner->renderer()->isValid()) {
            QSize sh;
            int offs = 0;
            do {
                offs += 20;
                sh = banner->sizeHint().scaled(screenRect.width() - offs, spaceY - offs - 50, Qt::KeepAspectRatio);
            } while (offs < 200 && sh.width() > screenRect.width() / 2 && sh.height() > spaceY / 2);
            int yoff = (spaceY - sh.height());
            if (yoff < 100) {
                yoff = 100;
            }
            banner->setGeometry((screenRect.width() - sh.width()) / 2, yoff / 2, sh.width(), sh.height());
        }
    }
    int ls = (spaceY > 500 ? 500 : spaceY);
    if (ls > screenRect.height() / 5) ls = screenRect.height() / 5;
    if (ls > screenRect.width() / 5) ls = screenRect.width() / 5;
    QRect logoRect(QPoint(0, screenRect.height() / 3), QSize(ls, screenRect.height() * 2 / 3));
    QSize logoSize = createLogo(logoRect);
    QRect distroRect(QPoint(screenRect.width() - ls, screenRect.height() - ls), QSize(ls, ls));
    QSize distroSize = createDistro(distroRect);
    if (showLoginForm()) {
        QRect lwSize(QPoint(logoSize.width(), screenRect.height() * 3/4), QPoint(screenRect.width() - distroSize.width(), screenRect.height()));
        lwSize.adjust(10, 10, -10, -10);
        createLogWindow(lwSize);
    }
    createClock();
}

MainWindow::~MainWindow()
{
}

void MainWindow::paintEvent(QPaintEvent *event)
{
    QWidget::paintEvent(event);
    if (m_Snake != nullptr) {
        m_Snake->paint(event);
    }
}

void MainWindow::mouseDoubleClickEvent(QMouseEvent *)
{
    if (m_Snake == nullptr) {
        m_Snake = new Snake(this);
    }
}

QSize MainWindow::createLogo(QRect max)
{
    QSize retval(0, 0);
    QString path = Settings::bottomLeftLogoFile();
    if (!path.isEmpty()) { // Single explicit file first
        createNextLogo(max, retval, path);
    }
    path = Settings::bottomLeftLogoDir();
    // Check whether it's a file or directory
    if (!path.isEmpty() && QFileInfo(path).isDir()) {
        QFileInfoList fileInfoList = QDir(path).entryInfoList(QStringList() << "*.svg", QDir::Files, QDir::Name | QDir::Reversed);
        for (QFileInfo fileInfo : fileInfoList) {
            QString filePath = fileInfo.absoluteFilePath();
            createNextLogo(max, retval, filePath);
        }
        return retval;
    }
    createNextLogo(max, retval, path);
    return retval;
}

void MainWindow::createNextLogo(QRect &max, QSize &retval, const QString &path)
{
    if (max.height() <= 0)
        return;
    QSvgWidget *img = new QSvgWidget(path, this);
    if (!img->renderer()->isValid())
        return;
    QSize virtualSize = img->sizeHint().scaled(max.width(), max.height(), Qt::KeepAspectRatio);
    QSize realSize = img->sizeHint().scaled(max.width() - 20, max.height() - 20, Qt::KeepAspectRatio);
    if (virtualSize.width() == 0 || virtualSize.height() == 0)
        return;
    QRect c(max.left() + 10, max.bottom() - realSize.height() - 10, realSize.width(), realSize.height());
    img->setGeometry(c);
    max.setHeight(max.height() - virtualSize.height());
    retval.setWidth(qMax(retval.width(), virtualSize.width()));
    retval.setHeight(retval.height() + virtualSize.height());
}

QSize MainWindow::createDistro(const QRect &max)
{
    QImage img(QString("/etc/distro.png"));
    if (img.isNull())
        return QSize(0, 0);
    QSize realSize = img.size();
    QSize virtualSize = realSize.scaled(realSize.width() + 20, realSize.height() + 20, Qt::IgnoreAspectRatio);
    if (virtualSize.width() > max.width() || virtualSize.height() > max.height()) {
        // This requires that the given rect is square
        img = img.scaled(max.width() - 20, max.height() - 20, Qt::KeepAspectRatio, Qt::SmoothTransformation);
        realSize = img.size();
        virtualSize = realSize.scaled(realSize.width() + 20, realSize.height() + 20, Qt::IgnoreAspectRatio);
    }
    QPixmap pixmap(QPixmap::fromImage(img));
    QLabel *lbl = new QLabel(this);
    lbl->setPixmap(pixmap);
    QRect c(max.right() - realSize.width() - 10, max.bottom() - realSize.height() - 10, realSize.width(), realSize.height());
    lbl->setGeometry(c);
    return virtualSize;
}

void MainWindow::createLogWindow(const QRect& geom)
{
    QString path = Settings::logMessageFile();
    if (path.isEmpty())
        return;
    QFile f(path);
    if (f.size() == 0 || !f.open(QFile::ReadOnly))
        return;
    m_messages = new QTextEdit(this);
    m_messages->setGeometry(geom);
    int ps = geom.height() / 20;
    if (ps > 20) ps = 20;
    m_messages->setFontPointSize(ps);
    QTextStream stream(&f);
    const QColor black(Qt::black);
    while (!stream.atEnd()) {
        bool ok = false;
        QString line(stream.readLine());
        int i = line.indexOf(' ');
        if (i > 0) {
            QString scol(line.left(i));
            uint col = scol.toUInt(&ok, 16);
            if (ok) {
                m_messages->setTextColor(QColor(QRgb(col)));
                line = line.mid(i + 1);
            }
        }
        if (!ok) {
            m_messages->setTextColor(black);
        }
        m_messages->append(line);
    }
    m_messages->setReadOnly(true);
    m_messages->setStyleSheet("border:none; background:rgba(255,255,255,.33); border-radius:5px");
}

void MainWindow::createClock()
{
    QString style = Settings::clockStyle();
    QString backgroundStyle = Settings::clockBackgroundStyle();
    if (style == "none")
        return;
    if (style.isEmpty()) {
        style = "border:none; color:#fff; font-size:14pt; qproperty-alignment:AlignRight";
    }
    if (backgroundStyle.isEmpty()) {
        backgroundStyle = "#bg { border:none; background:#888687 }";
    } else {
        backgroundStyle = "#bg { " + backgroundStyle + " }";
    }
    QStringList slist = Settings::clockShadow();
    int x = 1, y = 1, blur = 1;
    QString color = "#555";
    if (slist.length() > 0) {
        x = slist.at(0).toInt();
    }
    if (slist.length() > 1) {
        y = slist.at(1).toInt();
    }
    if (slist.length() > 2) {
        color = slist.at(2);
    }
    if (slist.length() > 3) {
        blur = slist.at(3).toInt();
    }
    QWidget *bg = new QWidget(this);
    bg->setObjectName("bg");
    bg->setFixedWidth(this->width());
    bg->setMaximumHeight(500);
    bg->setStyleSheet(backgroundStyle);
    m_Clock = new QLabel("Today 00:00", bg);
    m_Clock->setStyleSheet(style);
    QGraphicsDropShadowEffect *pLabelTextShadowEffect = new QGraphicsDropShadowEffect(m_Clock);
    pLabelTextShadowEffect->setColor(QColor(color));
    pLabelTextShadowEffect->setBlurRadius(blur);
    pLabelTextShadowEffect->setOffset(x, y);
    m_Clock->setGraphicsEffect(pLabelTextShadowEffect);
    m_Clock->setFixedWidth(this->width());
    updateClock();
}

bool MainWindow::showLoginForm()
{
    return m_Primary;
}

void MainWindow::setFocus(Qt::FocusReason reason)
{
    if (m_LoginForm) {
        m_LoginForm->setFocus(reason);
    }
    else  {
        QWidget::setFocus(reason);
    }
}

int MainWindow::getOffset(QString settingsOffset, int maxVal, int defaultVal)
{

    int offset = defaultVal > maxVal ? maxVal : defaultVal;

    if (! settingsOffset.isEmpty())  {
        if (QRegExp("^\\d+px$", Qt::CaseInsensitive).exactMatch(settingsOffset))  {
            offset = settingsOffset.left(settingsOffset.size() - 2).toInt();
            if (offset > maxVal) offset = maxVal;
        }
        else if (QRegExp("^\\d+%$", Qt::CaseInsensitive).exactMatch(settingsOffset)) {
            int offsetPct = settingsOffset.left(settingsOffset.size() -1).toInt();
            if (offsetPct > 100) offsetPct = 100;
            offset = (maxVal * offsetPct)/100;
        }
        else {
            qWarning() << "Could not understand" << settingsOffset
                       << "- must be of form <positivenumber>px or <positivenumber>%, e.g. 35px or 25%" ;
        }
    }

    return offset;
}

void MainWindow::setBackground()
{
    Qt::AspectRatioMode arMode = Qt::KeepAspectRatioByExpanding;
    QString bgPath = Settings::backgrundImageFile();
    if (bgPath.length() != 0) {
        m_background = QImage(bgPath);
        if (m_background.isNull()) {
            qWarning() << "Not able to read" << bgPath << "as image";
        }
    }

    if (m_background.isNull()) {
        m_background = Global::getConfigGradient();
        arMode = Qt::IgnoreAspectRatio;
    }
    if (m_background.isNull()) {
        // Hard-coded default: Gradient
        m_background = QImage(2, 2, QImage::Format_RGB32);
        m_background.setPixel(0, 0, 0xffffffff);
        m_background.setPixel(1, 0, 0xffffffff);
        m_background.setPixel(0, 1, 0xff888687);
        m_background.setPixel(1, 1, 0xfff9a72b);
    }

    QPalette palette;
    if (m_background.isNull()) {
        palette.setColor(QPalette::Background, Qt::black);
    }
    else {
        m_background = m_background.scaled(m_ScreenRect.width(), m_ScreenRect.height(), arMode, Qt::SmoothTransformation);
        int xoff = (m_background.width() -  m_ScreenRect.width()) / 2;
        int yoff = (m_background.height() - m_ScreenRect.height()) / 2;
        if (xoff != 0 || yoff != 0) {
            m_background = m_background.copy(xoff, yoff, m_background.width(), m_background.height());
        }
        QBrush brush(m_background);
        palette.setBrush(this->backgroundRole(), brush);
    }
    this->setPalette(palette);
}

void MainWindow::showStandby()
{
	if (m_LoginForm != nullptr) {
		m_LoginForm->hide();
	}
	QSvgWidget *img = new QSvgWidget(":/resources/gnome-face-tired.svg", this);
	if (img->renderer()->isValid()) {
		QSize sh = img->sizeHint().scaled(this->width() / 2, this->height() / 2, Qt::KeepAspectRatio);
		img->setGeometry((this->width() - sh.width()) / 2, (this->height() - sh.height()) / 2, sh.width(), sh.height());
		img->show();
	} else {
		qWarning() << "Shice!";
	}
    QTimer::singleShot(4000, [this, img]() {
		img->hide();
		img->deleteLater();
		if (this->m_LoginForm != nullptr) {
			m_LoginForm->show();
		}
	});
}

void MainWindow::updateClock()
{
    int next = drawClock();
    if (next > 0) {
        QTimer::singleShot(next, this, SLOT(updateClock()));
    }
}

int MainWindow::drawClock()
{
    if (m_Clock == nullptr)
        return 0;
    QDateTime time = QDateTime::currentDateTime();
    QLocale loc;
    m_Clock->setText(time.toString(loc.dateFormat() + "  HH:mm "));
    m_Clock->adjustSize();
	reinterpret_cast<QWidget*>(m_Clock->parent())->adjustSize();
    return (60 - time.time().second()) * 1000 + 100;
}