2014-06-14 19:32:11 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2014-12-01 10:47:38 +00:00
|
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
2016-01-10 06:05:23 +00:00
|
|
|
|
2014-06-14 19:32:11 +00:00
|
|
|
Telegram Desktop is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
2016-01-10 06:05:23 +00:00
|
|
|
|
2014-06-14 19:32:11 +00:00
|
|
|
It is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2016-01-10 06:05:23 +00:00
|
|
|
|
2014-06-14 19:32:11 +00:00
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
2015-10-03 13:16:42 +00:00
|
|
|
Copyright (c) 2014-2015 John Preston, https://desktop.telegram.org
|
2014-06-14 19:32:11 +00:00
|
|
|
*/
|
2014-05-30 08:53:19 +00:00
|
|
|
#include "stdafx.h"
|
|
|
|
#include "pspecific.h"
|
|
|
|
|
|
|
|
#include "lang.h"
|
|
|
|
#include "application.h"
|
|
|
|
#include "mainwidget.h"
|
2014-11-18 12:40:43 +00:00
|
|
|
#include "historywidget.h"
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2015-03-02 12:34:16 +00:00
|
|
|
#include "localstorage.h"
|
2015-03-02 15:36:13 +00:00
|
|
|
#include "passcodewidget.h"
|
2015-03-02 12:34:16 +00:00
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
namespace {
|
2015-01-18 09:23:03 +00:00
|
|
|
QStringList _initLogs;
|
|
|
|
|
|
|
|
bool frameless = true;
|
2014-05-30 08:53:19 +00:00
|
|
|
bool finished = true;
|
|
|
|
|
2014-06-14 19:32:11 +00:00
|
|
|
class _PsEventFilter : public QAbstractNativeEventFilter {
|
2014-05-30 08:53:19 +00:00
|
|
|
public:
|
|
|
|
_PsEventFilter() {
|
|
|
|
}
|
|
|
|
|
|
|
|
bool nativeEventFilter(const QByteArray &eventType, void *message, long *result) {
|
|
|
|
Window *wnd = Application::wnd();
|
|
|
|
if (!wnd) return false;
|
|
|
|
|
2015-07-13 17:55:59 +00:00
|
|
|
return wnd->psFilterNativeEvent(message);
|
2014-06-25 07:25:55 +00:00
|
|
|
}
|
2014-06-14 19:32:11 +00:00
|
|
|
};
|
|
|
|
_PsEventFilter *_psEventFilter = 0;
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2014-06-14 19:32:11 +00:00
|
|
|
};
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2014-06-14 19:32:11 +00:00
|
|
|
void MacPrivate::activeSpaceChanged() {
|
|
|
|
if (App::wnd()) {
|
2014-07-06 03:32:21 +00:00
|
|
|
App::wnd()->notifyActivateAll();
|
2014-06-14 19:32:11 +00:00
|
|
|
}
|
|
|
|
}
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2014-11-18 12:40:43 +00:00
|
|
|
void MacPrivate::darkModeChanged() {
|
|
|
|
if (App::wnd()) {
|
2014-12-15 15:55:45 +00:00
|
|
|
App::wnd()->updateCounter();
|
2014-11-18 12:40:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-19 11:24:23 +00:00
|
|
|
void MacPrivate::notifyClicked(unsigned long long peer, int msgid) {
|
2014-06-14 19:32:11 +00:00
|
|
|
History *history = App::history(PeerId(peer));
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2014-06-14 19:32:11 +00:00
|
|
|
App::wnd()->showFromTray();
|
2015-03-02 12:34:16 +00:00
|
|
|
if (App::passcoded()) {
|
2015-09-16 13:04:08 +00:00
|
|
|
App::wnd()->setInnerFocus();
|
2015-03-02 12:34:16 +00:00
|
|
|
App::wnd()->notifyClear();
|
|
|
|
} else {
|
|
|
|
App::wnd()->hideSettings();
|
2015-09-22 10:19:57 +00:00
|
|
|
bool tomsg = !history->peer->isUser() && (msgid > 0);
|
2015-03-19 11:24:23 +00:00
|
|
|
if (tomsg) {
|
2015-09-03 10:48:40 +00:00
|
|
|
HistoryItem *item = App::histItemById(peerToChannel(PeerId(peer)), MsgId(msgid));
|
2015-11-20 19:03:31 +00:00
|
|
|
if (!item || !item->mentionsMe()) {
|
2015-03-19 11:24:23 +00:00
|
|
|
tomsg = false;
|
|
|
|
}
|
|
|
|
}
|
2015-12-13 11:36:08 +00:00
|
|
|
Ui::showPeerHistory(history, tomsg ? msgid : ShowAtUnreadMsgId);
|
2015-03-02 12:34:16 +00:00
|
|
|
App::wnd()->notifyClear(history);
|
|
|
|
}
|
2014-06-14 19:32:11 +00:00
|
|
|
}
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2015-03-19 11:24:23 +00:00
|
|
|
void MacPrivate::notifyReplied(unsigned long long peer, int msgid, const char *str) {
|
2014-06-15 12:31:03 +00:00
|
|
|
History *history = App::history(PeerId(peer));
|
2016-01-10 06:05:23 +00:00
|
|
|
|
2015-09-22 10:19:57 +00:00
|
|
|
App::main()->sendMessage(history, QString::fromUtf8(str), (msgid > 0 && !history->peer->isUser()) ? msgid : 0, false);
|
2014-06-14 19:32:11 +00:00
|
|
|
}
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2014-06-14 19:32:11 +00:00
|
|
|
PsMainWindow::PsMainWindow(QWidget *parent) : QMainWindow(parent),
|
2014-12-22 23:11:37 +00:00
|
|
|
posInited(false), trayIcon(0), trayIconMenu(0), icon256(qsl(":/gui/art/icon256.png")), iconbig256(qsl(":/gui/art/iconbig256.png")), wndIcon(QPixmap::fromImage(iconbig256, Qt::ColorOnly)),
|
2015-09-22 10:19:57 +00:00
|
|
|
psLogout(0), psUndo(0), psRedo(0), psCut(0), psCopy(0), psPaste(0), psDelete(0), psSelectAll(0), psContacts(0), psAddContact(0), psNewGroup(0), psNewChannel(0), psShowTelegram(0) {
|
2014-09-26 23:48:19 +00:00
|
|
|
QImage tray(qsl(":/gui/art/osxtray.png"));
|
|
|
|
trayImg = tray.copy(0, cRetina() ? 0 : tray.width() / 2, tray.width() / (cRetina() ? 2 : 4), tray.width() / (cRetina() ? 2 : 4));
|
|
|
|
trayImgSel = tray.copy(tray.width() / (cRetina() ? 2 : 4), cRetina() ? 0 : tray.width() / 2, tray.width() / (cRetina() ? 2 : 4), tray.width() / (cRetina() ? 2 : 4));
|
2014-06-20 07:06:21 +00:00
|
|
|
}
|
|
|
|
|
2014-09-26 23:48:19 +00:00
|
|
|
QImage PsMainWindow::psTrayIcon(bool selected) const {
|
|
|
|
return selected ? trayImgSel : trayImg;
|
|
|
|
}
|
|
|
|
|
2014-09-29 02:47:30 +00:00
|
|
|
void PsMainWindow::psShowTrayMenu() {
|
|
|
|
}
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
void PsMainWindow::psRefreshTaskbarIcon() {
|
|
|
|
}
|
|
|
|
|
2015-01-15 14:22:15 +00:00
|
|
|
void PsMainWindow::psTrayMenuUpdated() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void PsMainWindow::psSetupTrayIcon() {
|
|
|
|
if (!trayIcon) {
|
|
|
|
trayIcon = new QSystemTrayIcon(this);
|
|
|
|
|
|
|
|
QIcon icon(QPixmap::fromImage(psTrayIcon(), Qt::ColorOnly));
|
|
|
|
icon.addPixmap(QPixmap::fromImage(psTrayIcon(true), Qt::ColorOnly), QIcon::Selected);
|
|
|
|
|
|
|
|
trayIcon->setIcon(icon);
|
|
|
|
trayIcon->setToolTip(QString::fromStdWString(AppName));
|
|
|
|
connect(trayIcon, SIGNAL(activated(QSystemTrayIcon::ActivationReason)), this, SLOT(toggleTray(QSystemTrayIcon::ActivationReason)), Qt::UniqueConnection);
|
|
|
|
App::wnd()->updateTrayMenu();
|
|
|
|
}
|
|
|
|
psUpdateCounter();
|
|
|
|
|
|
|
|
trayIcon->show();
|
|
|
|
}
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
void PsMainWindow::psUpdateWorkmode() {
|
2015-01-15 14:22:15 +00:00
|
|
|
psSetupTrayIcon();
|
2014-09-30 22:50:35 +00:00
|
|
|
if (cWorkMode() == dbiwmWindowOnly) {
|
|
|
|
if (trayIcon) {
|
|
|
|
trayIcon->setContextMenu(0);
|
2015-01-28 14:55:12 +00:00
|
|
|
delete trayIcon;
|
2014-09-30 22:50:35 +00:00
|
|
|
}
|
|
|
|
trayIcon = 0;
|
2014-09-20 21:31:03 +00:00
|
|
|
}
|
2015-01-28 14:55:12 +00:00
|
|
|
psUpdateDelegate();
|
2014-11-13 18:26:17 +00:00
|
|
|
setWindowIcon(wndIcon);
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
2014-09-26 23:48:19 +00:00
|
|
|
void _placeCounter(QImage &img, int size, int count, style::color bg, style::color color) {
|
|
|
|
if (!count) return;
|
|
|
|
|
|
|
|
QPainter p(&img);
|
|
|
|
QString cnt = (count < 100) ? QString("%1").arg(count) : QString("..%1").arg(count % 100, 2, 10, QChar('0'));
|
|
|
|
int32 cntSize = cnt.size();
|
|
|
|
|
|
|
|
p.setBrush(bg->b);
|
|
|
|
p.setPen(Qt::NoPen);
|
|
|
|
p.setRenderHint(QPainter::Antialiasing);
|
|
|
|
int32 fontSize, skip;
|
|
|
|
if (size == 22) {
|
|
|
|
skip = 1;
|
|
|
|
fontSize = 8;
|
|
|
|
} else {
|
|
|
|
skip = 2;
|
|
|
|
fontSize = 16;
|
|
|
|
}
|
|
|
|
style::font f(fontSize);
|
2015-10-03 10:09:09 +00:00
|
|
|
int32 w = f->width(cnt), d, r;
|
2014-09-26 23:48:19 +00:00
|
|
|
if (size == 22) {
|
|
|
|
d = (cntSize < 2) ? 3 : 2;
|
|
|
|
r = (cntSize < 2) ? 6 : 5;
|
|
|
|
} else {
|
|
|
|
d = (cntSize < 2) ? 6 : 5;
|
|
|
|
r = (cntSize < 2) ? 9 : 11;
|
|
|
|
}
|
|
|
|
p.drawRoundedRect(QRect(size - w - d * 2 - skip, size - f->height - skip, w + d * 2, f->height), r, r);
|
|
|
|
|
|
|
|
p.setCompositionMode(QPainter::CompositionMode_Source);
|
|
|
|
p.setFont(f->f);
|
|
|
|
p.setPen(color->p);
|
|
|
|
p.drawText(size - w - d - skip, size - f->height + f->ascent - skip, cnt);
|
|
|
|
}
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
void PsMainWindow::psUpdateCounter() {
|
2015-08-28 15:15:56 +00:00
|
|
|
int32 counter = App::histories().unreadFull - (cIncludeMuted() ? 0 : App::histories().unreadMuted);
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2014-06-14 19:32:11 +00:00
|
|
|
setWindowTitle((counter > 0) ? qsl("Telegram (%1)").arg(counter) : qsl("Telegram"));
|
2014-11-13 18:26:17 +00:00
|
|
|
setWindowIcon(wndIcon);
|
2014-06-14 19:32:11 +00:00
|
|
|
|
|
|
|
QString cnt = (counter < 1000) ? QString("%1").arg(counter) : QString("..%1").arg(counter % 100, 2, 10, QChar('0'));
|
2014-06-25 07:25:55 +00:00
|
|
|
_private.setWindowBadge(counter ? cnt : QString());
|
2014-09-20 21:31:03 +00:00
|
|
|
|
|
|
|
if (trayIcon) {
|
2015-08-28 15:15:56 +00:00
|
|
|
bool muted = cIncludeMuted() ? (App::histories().unreadMuted >= counter) : false;
|
|
|
|
bool dm = objc_darkMode();
|
|
|
|
|
|
|
|
style::color bg = muted ? st::counterMuteBG : st::counterBG;
|
2014-09-26 23:48:19 +00:00
|
|
|
QIcon icon;
|
2014-11-18 12:40:43 +00:00
|
|
|
QImage img(psTrayIcon(dm)), imgsel(psTrayIcon(true));
|
2014-09-26 23:48:19 +00:00
|
|
|
img.detach();
|
|
|
|
imgsel.detach();
|
|
|
|
int32 size = cRetina() ? 44 : 22;
|
2015-08-28 15:15:56 +00:00
|
|
|
_placeCounter(img, size, counter, bg, (dm && muted) ? st::counterMacInvColor : st::counterColor);
|
2014-09-26 23:48:19 +00:00
|
|
|
_placeCounter(imgsel, size, counter, st::white, st::counterMacInvColor);
|
2014-12-22 23:11:37 +00:00
|
|
|
icon.addPixmap(QPixmap::fromImage(img, Qt::ColorOnly));
|
|
|
|
icon.addPixmap(QPixmap::fromImage(imgsel, Qt::ColorOnly), QIcon::Selected);
|
2014-09-26 23:48:19 +00:00
|
|
|
trayIcon->setIcon(icon);
|
2014-09-20 21:31:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PsMainWindow::psUpdateDelegate() {
|
|
|
|
_private.updateDelegate();
|
2014-06-25 07:25:55 +00:00
|
|
|
}
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
void PsMainWindow::psInitSize() {
|
|
|
|
setMinimumWidth(st::wndMinWidth);
|
|
|
|
setMinimumHeight(st::wndMinHeight);
|
|
|
|
|
|
|
|
TWindowPos pos(cWindowPos());
|
|
|
|
QRect avail(QDesktopWidget().availableGeometry());
|
|
|
|
bool maximized = false;
|
|
|
|
QRect geom(avail.x() + (avail.width() - st::wndDefWidth) / 2, avail.y() + (avail.height() - st::wndDefHeight) / 2, st::wndDefWidth, st::wndDefHeight);
|
|
|
|
if (pos.w && pos.h) {
|
2014-06-25 07:25:55 +00:00
|
|
|
QList<QScreen*> screens = App::app()->screens();
|
|
|
|
for (QList<QScreen*>::const_iterator i = screens.cbegin(), e = screens.cend(); i != e; ++i) {
|
|
|
|
QByteArray name = (*i)->name().toUtf8();
|
|
|
|
if (pos.moncrc == hashCrc32(name.constData(), name.size())) {
|
|
|
|
QRect screen((*i)->geometry());
|
|
|
|
int32 w = screen.width(), h = screen.height();
|
|
|
|
if (w >= st::wndMinWidth && h >= st::wndMinHeight) {
|
|
|
|
if (pos.w > w) pos.w = w;
|
|
|
|
if (pos.h > h) pos.h = h;
|
|
|
|
pos.x += screen.x();
|
|
|
|
pos.y += screen.y();
|
|
|
|
if (pos.x < screen.x() + screen.width() - 10 && pos.y < screen.y() + screen.height() - 10) {
|
|
|
|
geom = QRect(pos.x, pos.y, pos.w, pos.h);
|
|
|
|
}
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
2014-06-25 07:25:55 +00:00
|
|
|
break;
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
2014-06-25 07:25:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (pos.y < 0) pos.y = 0;
|
2014-05-30 08:53:19 +00:00
|
|
|
maximized = pos.maximized;
|
|
|
|
}
|
|
|
|
setGeometry(geom);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PsMainWindow::psInitFrameless() {
|
2014-06-14 19:32:11 +00:00
|
|
|
psUpdatedPositionTimer.setSingleShot(true);
|
2014-05-30 08:53:19 +00:00
|
|
|
connect(&psUpdatedPositionTimer, SIGNAL(timeout()), this, SLOT(psSavePosition()));
|
|
|
|
|
|
|
|
if (frameless) {
|
2014-06-15 12:31:03 +00:00
|
|
|
//setWindowFlags(Qt::FramelessWindowHint);
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PsMainWindow::psSavePosition(Qt::WindowState state) {
|
2014-06-14 19:32:11 +00:00
|
|
|
if (state == Qt::WindowActive) state = windowHandle()->windowState();
|
2014-05-30 08:53:19 +00:00
|
|
|
if (state == Qt::WindowMinimized || !posInited) return;
|
2014-06-25 07:25:55 +00:00
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
TWindowPos pos(cWindowPos()), curPos = pos;
|
|
|
|
|
|
|
|
if (state == Qt::WindowMaximized) {
|
|
|
|
curPos.maximized = 1;
|
|
|
|
} else {
|
2014-06-25 07:25:55 +00:00
|
|
|
QRect r(geometry());
|
|
|
|
curPos.x = r.x();
|
|
|
|
curPos.y = r.y();
|
|
|
|
curPos.w = r.width();
|
|
|
|
curPos.h = r.height();
|
2014-05-30 08:53:19 +00:00
|
|
|
curPos.maximized = 0;
|
|
|
|
}
|
|
|
|
|
2014-06-25 07:25:55 +00:00
|
|
|
int px = curPos.x + curPos.w / 2, py = curPos.y + curPos.h / 2, d = 0;
|
|
|
|
QScreen *chosen = 0;
|
|
|
|
QList<QScreen*> screens = App::app()->screens();
|
|
|
|
for (QList<QScreen*>::const_iterator i = screens.cbegin(), e = screens.cend(); i != e; ++i) {
|
|
|
|
int dx = (*i)->geometry().x() + (*i)->geometry().width() / 2 - px; if (dx < 0) dx = -dx;
|
|
|
|
int dy = (*i)->geometry().y() + (*i)->geometry().height() / 2 - py; if (dy < 0) dy = -dy;
|
|
|
|
if (!chosen || dx + dy < d) {
|
|
|
|
d = dx + dy;
|
|
|
|
chosen = *i;
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
2014-06-25 07:25:55 +00:00
|
|
|
}
|
|
|
|
if (chosen) {
|
|
|
|
curPos.x -= chosen->geometry().x();
|
|
|
|
curPos.y -= chosen->geometry().y();
|
|
|
|
QByteArray name = chosen->name().toUtf8();
|
|
|
|
curPos.moncrc = hashCrc32(name.constData(), name.size());
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (curPos.w >= st::wndMinWidth && curPos.h >= st::wndMinHeight) {
|
|
|
|
if (curPos.x != pos.x || curPos.y != pos.y || curPos.w != pos.w || curPos.h != pos.h || curPos.moncrc != pos.moncrc || curPos.maximized != pos.maximized) {
|
|
|
|
cSetWindowPos(curPos);
|
2015-03-02 12:34:16 +00:00
|
|
|
Local::writeSettings();
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
2014-06-25 07:25:55 +00:00
|
|
|
}
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void PsMainWindow::psUpdatedPosition() {
|
2014-07-16 05:03:01 +00:00
|
|
|
psUpdatedPositionTimer.start(SaveWindowPositionTimeout);
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void PsMainWindow::psFirstShow() {
|
|
|
|
finished = false;
|
|
|
|
|
2014-06-14 19:32:11 +00:00
|
|
|
psUpdateMargins();
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
bool showShadows = true;
|
|
|
|
|
|
|
|
show();
|
2014-06-15 12:31:03 +00:00
|
|
|
_private.enableShadow(winId());
|
2014-05-30 08:53:19 +00:00
|
|
|
if (cWindowPos().maximized) {
|
|
|
|
setWindowState(Qt::WindowMaximized);
|
|
|
|
}
|
|
|
|
|
2016-01-11 15:43:29 +00:00
|
|
|
if ((cLaunchMode() == LaunchModeAutoStart && cStartMinimized()) || cStartInTray()) {
|
2015-01-27 16:58:58 +00:00
|
|
|
setWindowState(Qt::WindowMinimized);
|
|
|
|
if (cWorkMode() == dbiwmTrayOnly || cWorkMode() == dbiwmWindowAndTray) {
|
|
|
|
hide();
|
2014-05-30 08:53:19 +00:00
|
|
|
} else {
|
|
|
|
show();
|
|
|
|
}
|
2015-01-27 16:58:58 +00:00
|
|
|
showShadows = false;
|
2014-05-30 08:53:19 +00:00
|
|
|
} else {
|
|
|
|
show();
|
|
|
|
}
|
2015-01-27 16:58:58 +00:00
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
posInited = true;
|
2014-11-18 12:40:43 +00:00
|
|
|
|
|
|
|
// init global menu
|
|
|
|
QMenu *main = psMainMenu.addMenu(qsl("Telegram"));
|
2015-01-05 20:19:05 +00:00
|
|
|
main->addAction(lng_mac_menu_about_telegram(lt_telegram, qsl("Telegram")), App::wnd()->getTitle(), SLOT(onAbout()))->setMenuRole(QAction::AboutQtRole);
|
2014-11-18 12:40:43 +00:00
|
|
|
main->addSeparator();
|
2015-01-05 20:19:05 +00:00
|
|
|
QAction *prefs = main->addAction(lang(lng_mac_menu_preferences), App::wnd(), SLOT(showSettings()), QKeySequence(Qt::ControlModifier | Qt::Key_Comma));
|
2014-11-18 12:40:43 +00:00
|
|
|
prefs->setMenuRole(QAction::PreferencesRole);
|
|
|
|
|
|
|
|
QMenu *file = psMainMenu.addMenu(lang(lng_mac_menu_file));
|
|
|
|
psLogout = file->addAction(lang(lng_mac_menu_logout), App::wnd(), SLOT(onLogout()));
|
|
|
|
|
|
|
|
QMenu *edit = psMainMenu.addMenu(lang(lng_mac_menu_edit));
|
|
|
|
psUndo = edit->addAction(lang(lng_mac_menu_undo), this, SLOT(psMacUndo()), QKeySequence::Undo);
|
|
|
|
psRedo = edit->addAction(lang(lng_mac_menu_redo), this, SLOT(psMacRedo()), QKeySequence::Redo);
|
|
|
|
edit->addSeparator();
|
|
|
|
psCut = edit->addAction(lang(lng_mac_menu_cut), this, SLOT(psMacCut()), QKeySequence::Cut);
|
|
|
|
psCopy = edit->addAction(lang(lng_mac_menu_copy), this, SLOT(psMacCopy()), QKeySequence::Copy);
|
|
|
|
psPaste = edit->addAction(lang(lng_mac_menu_paste), this, SLOT(psMacPaste()), QKeySequence::Paste);
|
|
|
|
psDelete = edit->addAction(lang(lng_mac_menu_delete), this, SLOT(psMacDelete()), QKeySequence(Qt::ControlModifier | Qt::Key_Backspace));
|
|
|
|
edit->addSeparator();
|
|
|
|
psSelectAll = edit->addAction(lang(lng_mac_menu_select_all), this, SLOT(psMacSelectAll()), QKeySequence::SelectAll);
|
|
|
|
|
|
|
|
QMenu *window = psMainMenu.addMenu(lang(lng_mac_menu_window));
|
|
|
|
psContacts = window->addAction(lang(lng_mac_menu_contacts), App::wnd()->getTitle(), SLOT(onContacts()));
|
2014-11-25 12:16:36 +00:00
|
|
|
psAddContact = window->addAction(lang(lng_mac_menu_add_contact), App::wnd(), SLOT(onShowAddContact()));
|
2014-11-18 12:40:43 +00:00
|
|
|
window->addSeparator();
|
|
|
|
psNewGroup = window->addAction(lang(lng_mac_menu_new_group), App::wnd(), SLOT(onShowNewGroup()));
|
2015-09-21 20:57:42 +00:00
|
|
|
psNewChannel = window->addAction(lang(lng_mac_menu_new_channel), App::wnd(), SLOT(onShowNewChannel()));
|
2014-11-18 12:40:43 +00:00
|
|
|
window->addSeparator();
|
|
|
|
psShowTelegram = window->addAction(lang(lng_mac_menu_show), App::wnd(), SLOT(showFromTray()));
|
|
|
|
|
|
|
|
psMacUpdateMenu();
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
void _sendKeySequence(Qt::Key key, Qt::KeyboardModifiers modifiers = Qt::NoModifier) {
|
|
|
|
QWidget *focused = QApplication::focusWidget();
|
2015-09-29 13:24:39 +00:00
|
|
|
if (qobject_cast<QLineEdit*>(focused) || qobject_cast<FlatTextarea*>(focused) || qobject_cast<HistoryInner*>(focused)) {
|
2014-11-18 12:40:43 +00:00
|
|
|
QApplication::postEvent(focused, new QKeyEvent(QEvent::KeyPress, key, modifiers));
|
|
|
|
QApplication::postEvent(focused, new QKeyEvent(QEvent::KeyRelease, key, modifiers));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void _forceDisabled(QAction *action, bool disabled) {
|
|
|
|
if (action->isEnabled()) {
|
|
|
|
if (disabled) action->setDisabled(true);
|
|
|
|
} else if (!disabled) {
|
|
|
|
action->setDisabled(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PsMainWindow::psMacUndo() {
|
|
|
|
_sendKeySequence(Qt::Key_Z, Qt::ControlModifier);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PsMainWindow::psMacRedo() {
|
|
|
|
_sendKeySequence(Qt::Key_Z, Qt::ControlModifier | Qt::ShiftModifier);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PsMainWindow::psMacCut() {
|
|
|
|
_sendKeySequence(Qt::Key_X, Qt::ControlModifier);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PsMainWindow::psMacCopy() {
|
|
|
|
_sendKeySequence(Qt::Key_C, Qt::ControlModifier);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PsMainWindow::psMacPaste() {
|
|
|
|
_sendKeySequence(Qt::Key_V, Qt::ControlModifier);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PsMainWindow::psMacDelete() {
|
|
|
|
_sendKeySequence(Qt::Key_Delete);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PsMainWindow::psMacSelectAll() {
|
|
|
|
_sendKeySequence(Qt::Key_A, Qt::ControlModifier);
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool PsMainWindow::psHandleTitle() {
|
2014-06-15 12:31:03 +00:00
|
|
|
return false;
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void PsMainWindow::psInitSysMenu() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void PsMainWindow::psUpdateSysMenu(Qt::WindowState state) {
|
|
|
|
}
|
|
|
|
|
|
|
|
void PsMainWindow::psUpdateMargins() {
|
2014-06-14 19:32:11 +00:00
|
|
|
}
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2014-11-18 12:40:43 +00:00
|
|
|
void PsMainWindow::psMacUpdateMenu() {
|
|
|
|
if (!posInited) return;
|
|
|
|
|
|
|
|
QWidget *focused = QApplication::focusWidget();
|
|
|
|
bool isLogged = !!App::self(), canUndo = false, canRedo = false, canCut = false, canCopy = false, canPaste = false, canDelete = false, canSelectAll = false;
|
|
|
|
if (QLineEdit *edit = qobject_cast<QLineEdit*>(focused)) {
|
|
|
|
canCut = canCopy = canDelete = edit->hasSelectedText();
|
|
|
|
canSelectAll = !edit->text().isEmpty();
|
|
|
|
canUndo = edit->isUndoAvailable();
|
|
|
|
canRedo = edit->isRedoAvailable();
|
|
|
|
canPaste = !App::app()->clipboard()->text().isEmpty();
|
|
|
|
} else if (FlatTextarea *edit = qobject_cast<FlatTextarea*>(focused)) {
|
|
|
|
canCut = canCopy = canDelete = edit->textCursor().hasSelection();
|
2015-05-29 18:52:43 +00:00
|
|
|
canSelectAll = !edit->getLastText().isEmpty();
|
2014-11-18 12:40:43 +00:00
|
|
|
canUndo = edit->isUndoAvailable();
|
|
|
|
canRedo = edit->isRedoAvailable();
|
|
|
|
canPaste = !App::app()->clipboard()->text().isEmpty();
|
2015-09-29 13:24:39 +00:00
|
|
|
} else if (HistoryInner *list = qobject_cast<HistoryInner*>(focused)) {
|
2014-11-18 12:40:43 +00:00
|
|
|
canCopy = list->canCopySelected();
|
|
|
|
canDelete = list->canDeleteSelected();
|
|
|
|
}
|
2015-03-02 15:36:13 +00:00
|
|
|
_forceDisabled(psLogout, !isLogged && !App::passcoded());
|
2014-11-18 12:40:43 +00:00
|
|
|
_forceDisabled(psUndo, !canUndo);
|
|
|
|
_forceDisabled(psRedo, !canRedo);
|
|
|
|
_forceDisabled(psCut, !canCut);
|
|
|
|
_forceDisabled(psCopy, !canCopy);
|
|
|
|
_forceDisabled(psPaste, !canPaste);
|
|
|
|
_forceDisabled(psDelete, !canDelete);
|
|
|
|
_forceDisabled(psSelectAll, !canSelectAll);
|
2015-03-02 15:36:13 +00:00
|
|
|
_forceDisabled(psContacts, !isLogged || App::passcoded());
|
|
|
|
_forceDisabled(psAddContact, !isLogged || App::passcoded());
|
|
|
|
_forceDisabled(psNewGroup, !isLogged || App::passcoded());
|
2015-09-22 10:19:57 +00:00
|
|
|
_forceDisabled(psNewChannel, !isLogged || App::passcoded());
|
2015-01-26 13:04:41 +00:00
|
|
|
_forceDisabled(psShowTelegram, App::wnd()->isActive(false));
|
2014-11-18 12:40:43 +00:00
|
|
|
}
|
|
|
|
|
2014-06-14 19:32:11 +00:00
|
|
|
void PsMainWindow::psFlash() {
|
|
|
|
_private.startBounce();
|
|
|
|
}
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2014-06-14 19:32:11 +00:00
|
|
|
PsMainWindow::~PsMainWindow() {
|
|
|
|
finished = true;
|
|
|
|
}
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2014-07-06 03:32:21 +00:00
|
|
|
void PsMainWindow::psClearNotifies(PeerId peerId) {
|
|
|
|
_private.clearNotifies(peerId);
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
2014-07-06 03:32:21 +00:00
|
|
|
void PsMainWindow::psActivateNotify(NotifyWindow *w) {
|
2014-10-17 12:57:14 +00:00
|
|
|
objc_activateWnd(w->winId());
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
2015-07-13 17:55:59 +00:00
|
|
|
bool PsMainWindow::psFilterNativeEvent(void *event) {
|
|
|
|
return _private.filterNativeEvent(event);
|
|
|
|
}
|
|
|
|
|
2014-06-14 19:32:11 +00:00
|
|
|
namespace {
|
|
|
|
QRect _monitorRect;
|
|
|
|
uint64 _monitorLastGot = 0;
|
|
|
|
}
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2014-07-06 03:32:21 +00:00
|
|
|
QRect psDesktopRect() {
|
2014-11-12 20:30:26 +00:00
|
|
|
uint64 tnow = getms(true);
|
2014-07-06 03:32:21 +00:00
|
|
|
if (tnow > _monitorLastGot + 1000 || tnow < _monitorLastGot) {
|
|
|
|
_monitorLastGot = tnow;
|
|
|
|
_monitorRect = QApplication::desktop()->availableGeometry(App::wnd());
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
2014-07-06 03:32:21 +00:00
|
|
|
return _monitorRect;
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
2014-10-17 12:57:14 +00:00
|
|
|
void psShowOverAll(QWidget *w, bool canFocus) {
|
|
|
|
objc_showOverAll(w->winId(), canFocus);
|
|
|
|
}
|
|
|
|
|
|
|
|
void psBringToBack(QWidget *w) {
|
|
|
|
objc_bringToBack(w->winId());
|
|
|
|
}
|
|
|
|
|
2014-07-06 03:32:21 +00:00
|
|
|
void PsMainWindow::psNotifyShown(NotifyWindow *w) {
|
|
|
|
w->hide();
|
2014-10-17 12:57:14 +00:00
|
|
|
objc_holdOnTop(w->winId());
|
2014-07-06 03:32:21 +00:00
|
|
|
w->show();
|
2014-10-17 12:57:14 +00:00
|
|
|
psShowOverAll(w, false);
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
2015-04-23 15:50:11 +00:00
|
|
|
void PsMainWindow::psPlatformNotify(HistoryItem *item, int32 fwdCount) {
|
2015-03-02 12:34:16 +00:00
|
|
|
QString title = (!App::passcoded() && cNotifyView() <= dbinvShowName) ? item->history()->peer->name : qsl("Telegram Desktop");
|
|
|
|
QString subtitle = (!App::passcoded() && cNotifyView() <= dbinvShowName) ? item->notificationHeader() : QString();
|
|
|
|
QPixmap pix = (!App::passcoded() && cNotifyView() <= dbinvShowName) ? item->history()->peer->photo->pix(st::notifyMacPhotoSize) : QPixmap();
|
2015-04-23 15:50:11 +00:00
|
|
|
QString msg = (!App::passcoded() && cNotifyView() <= dbinvShowPreview) ? (fwdCount < 2 ? item->notificationText() : lng_forward_messages(lt_count, fwdCount)) : lang(lng_notification_preview);
|
2015-01-28 13:14:43 +00:00
|
|
|
|
2015-03-19 11:24:23 +00:00
|
|
|
_private.showNotify(item->history()->peer->id, item->id, pix, title, subtitle, msg, !App::passcoded() && (cNotifyView() <= dbinvShowPreview));
|
2014-06-14 19:32:11 +00:00
|
|
|
}
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2014-11-18 12:40:43 +00:00
|
|
|
bool PsMainWindow::eventFilter(QObject *obj, QEvent *evt) {
|
|
|
|
QEvent::Type t = evt->type();
|
|
|
|
if (t == QEvent::FocusIn || t == QEvent::FocusOut) {
|
2015-09-29 13:24:39 +00:00
|
|
|
if (qobject_cast<QLineEdit*>(obj) || qobject_cast<FlatTextarea*>(obj) || qobject_cast<HistoryInner*>(obj)) {
|
2014-11-18 12:40:43 +00:00
|
|
|
psMacUpdateMenu();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return QMainWindow::eventFilter(obj, evt);
|
|
|
|
}
|
|
|
|
|
2016-01-11 15:43:29 +00:00
|
|
|
QAbstractNativeEventFilter *psNativeEventFilter() {
|
2014-06-14 19:32:11 +00:00
|
|
|
delete _psEventFilter;
|
2014-05-30 08:53:19 +00:00
|
|
|
_psEventFilter = new _PsEventFilter();
|
2014-06-14 19:32:11 +00:00
|
|
|
installNativeEventFilter(_psEventFilter);
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
2015-06-03 18:13:01 +00:00
|
|
|
void psDeleteDir(const QString &dir) {
|
2014-06-25 07:25:55 +00:00
|
|
|
objc_deleteDir(dir);
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
2015-01-26 13:04:41 +00:00
|
|
|
namespace {
|
|
|
|
uint64 _lastUserAction = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void psUserActionDone() {
|
|
|
|
_lastUserAction = getms(true);
|
|
|
|
}
|
|
|
|
|
2015-03-02 12:34:16 +00:00
|
|
|
bool psIdleSupported() {
|
|
|
|
return objc_idleSupported();
|
|
|
|
}
|
|
|
|
|
2015-01-26 13:04:41 +00:00
|
|
|
uint64 psIdleTime() {
|
|
|
|
int64 idleTime = 0;
|
|
|
|
return objc_idleTime(idleTime) ? idleTime : (getms(true) - _lastUserAction);
|
|
|
|
}
|
2015-01-16 16:46:01 +00:00
|
|
|
|
2015-01-27 16:58:58 +00:00
|
|
|
bool psSkipAudioNotify() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool psSkipDesktopNotify() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-18 09:23:03 +00:00
|
|
|
QStringList psInitLogs() {
|
|
|
|
return _initLogs;
|
|
|
|
}
|
|
|
|
|
|
|
|
void psClearInitLogs() {
|
|
|
|
_initLogs = QStringList();
|
2015-01-16 16:46:01 +00:00
|
|
|
}
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
void psActivateProcess(uint64 pid) {
|
2015-08-12 18:02:20 +00:00
|
|
|
if (!pid) {
|
|
|
|
objc_activateProgram(App::wnd() ? App::wnd()->winId() : 0);
|
|
|
|
}
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QString psCurrentCountry() {
|
2014-06-25 07:25:55 +00:00
|
|
|
QString country = objc_currentCountry();
|
|
|
|
return country.isEmpty() ? QString::fromLatin1(DefaultCountry) : country;
|
|
|
|
}
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
QString psCurrentLanguage() {
|
2014-06-25 07:25:55 +00:00
|
|
|
QString lng = objc_currentLang();
|
|
|
|
return lng.isEmpty() ? QString::fromLatin1(DefaultLanguage) : lng;
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QString psAppDataPath() {
|
2014-06-25 07:25:55 +00:00
|
|
|
return objc_appDataPath();
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
2014-09-30 14:11:09 +00:00
|
|
|
QString psDownloadPath() {
|
|
|
|
return objc_downloadPath();
|
|
|
|
}
|
|
|
|
|
2014-06-14 19:32:11 +00:00
|
|
|
QString psCurrentExeDirectory(int argc, char *argv[]) {
|
2016-01-10 06:05:23 +00:00
|
|
|
QString first = argc ? fromUtf8Safe(argv[0]) : QString();
|
2014-06-14 19:32:11 +00:00
|
|
|
if (!first.isEmpty()) {
|
|
|
|
QFileInfo info(first);
|
|
|
|
if (info.exists()) {
|
2014-11-27 18:20:48 +00:00
|
|
|
return QDir(info.absolutePath() + qsl("/../../..")).absolutePath() + '/';
|
2014-06-14 19:32:11 +00:00
|
|
|
}
|
|
|
|
}
|
2014-05-30 08:53:19 +00:00
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
2014-11-27 18:20:48 +00:00
|
|
|
QString psCurrentExeName(int argc, char *argv[]) {
|
2016-01-10 06:05:23 +00:00
|
|
|
QString first = argc ? fromUtf8Safe(argv[0]) : QString();
|
2014-11-27 18:20:48 +00:00
|
|
|
if (!first.isEmpty()) {
|
|
|
|
QFileInfo info(first);
|
|
|
|
if (info.exists()) {
|
|
|
|
return QDir(QDir(info.absolutePath() + qsl("/../..")).absolutePath()).dirName();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
void psDoCleanup() {
|
|
|
|
try {
|
|
|
|
psAutoStart(false, true);
|
2014-07-18 10:37:34 +00:00
|
|
|
psSendToMenu(false, true);
|
2014-05-30 08:53:19 +00:00
|
|
|
} catch (...) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int psCleanup() {
|
2014-06-25 07:25:55 +00:00
|
|
|
psDoCleanup();
|
2014-05-30 08:53:19 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void psDoFixPrevious() {
|
|
|
|
}
|
|
|
|
|
|
|
|
int psFixPrevious() {
|
2014-06-25 07:25:55 +00:00
|
|
|
psDoFixPrevious();
|
2014-05-30 08:53:19 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-01-21 10:20:23 +00:00
|
|
|
bool psShowOpenWithMenu(int x, int y, const QString &file) {
|
|
|
|
return objc_showOpenWithMenu(x, y, file);
|
|
|
|
}
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
void psPostprocessFile(const QString &name) {
|
|
|
|
}
|
|
|
|
|
|
|
|
void psOpenFile(const QString &name, bool openWith) {
|
2014-06-25 07:25:55 +00:00
|
|
|
objc_openFile(name, openWith);
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void psShowInFolder(const QString &name) {
|
2014-06-25 07:25:55 +00:00
|
|
|
objc_showInFinder(name, QFileInfo(name).absolutePath());
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
2016-01-11 15:43:29 +00:00
|
|
|
namespace PlatformSpecific {
|
|
|
|
|
|
|
|
Initializer::Initializer() {
|
|
|
|
objc_start();
|
|
|
|
}
|
|
|
|
|
|
|
|
Initializer::~Initializer() {
|
|
|
|
delete _psEventFilter;
|
|
|
|
_psEventFilter = 0;
|
|
|
|
|
|
|
|
objc_finish();
|
|
|
|
}
|
2014-09-20 21:31:03 +00:00
|
|
|
|
2014-06-18 18:37:44 +00:00
|
|
|
}
|
|
|
|
|
2015-08-13 15:11:07 +00:00
|
|
|
void psNewVersion() {
|
2014-12-03 13:10:32 +00:00
|
|
|
objc_registerCustomScheme();
|
|
|
|
}
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
void psExecUpdater() {
|
2014-06-25 07:25:55 +00:00
|
|
|
if (!objc_execUpdater()) {
|
2015-06-03 18:13:01 +00:00
|
|
|
psDeleteDir(cWorkingDir() + qsl("tupdates/temp"));
|
2014-06-25 07:25:55 +00:00
|
|
|
}
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void psExecTelegram() {
|
2014-06-25 07:25:55 +00:00
|
|
|
objc_execTelegram();
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void psAutoStart(bool start, bool silent) {
|
|
|
|
}
|
2014-07-18 10:37:34 +00:00
|
|
|
|
|
|
|
void psSendToMenu(bool send, bool silent) {
|
|
|
|
}
|
2014-09-29 02:47:30 +00:00
|
|
|
|
|
|
|
void psUpdateOverlayed(QWidget *widget) {
|
|
|
|
}
|
2014-09-30 14:13:47 +00:00
|
|
|
|
|
|
|
QString psConvertFileUrl(const QString &url) {
|
|
|
|
return objc_convertFileUrl(url);
|
|
|
|
}
|
2014-11-25 12:16:36 +00:00
|
|
|
|
2015-11-26 17:34:52 +00:00
|
|
|
void psDownloadPathEnableAccess() {
|
|
|
|
objc_downloadPathEnableAccess(cDownloadPathBookmark());
|
|
|
|
}
|
|
|
|
|
|
|
|
QByteArray psDownloadPathBookmark(const QString &path) {
|
|
|
|
return objc_downloadPathBookmark(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
QByteArray psPathBookmark(const QString &path) {
|
|
|
|
return objc_pathBookmark(path);
|
|
|
|
}
|
|
|
|
|
2014-11-25 12:16:36 +00:00
|
|
|
QString strNotificationAboutThemeChange() {
|
|
|
|
const uint32 letters[] = { 0xE9005541, 0x5600DC70, 0x88001570, 0xF500D86C, 0x8100E165, 0xEE005949, 0x2900526E, 0xAE00FB74, 0x96000865, 0x7000CD72, 0x3B001566, 0x5F007361, 0xAE00B663, 0x74009A65, 0x29003054, 0xC6002668, 0x98003865, 0xFA00336D, 0xA3007A65, 0x93001443, 0xBB007868, 0xE100E561, 0x3500366E, 0xC0007A67, 0x200CA65, 0xBE00DF64, 0xE300BB4E, 0x2900D26F, 0xD500D374, 0xE900E269, 0x86008F66, 0xC4006669, 0x1C00A863, 0xE600A761, 0x8E00EE74, 0xB300B169, 0xCF00B36F, 0xE600D36E };
|
|
|
|
return strMakeFromLetters(letters, sizeof(letters) / sizeof(letters[0]));
|
|
|
|
}
|
|
|
|
|
|
|
|
QString strStyleOfInterface() {
|
|
|
|
const uint32 letters[] = { 0xEF004041, 0x4C007F70, 0x1F007A70, 0x9E00A76C, 0x8500D165, 0x2E003749, 0x7B00526E, 0x3400E774, 0x3C00FA65, 0x6200B172, 0xF7001D66, 0xB002961, 0x71008C63, 0x86005465, 0xA3006F53, 0x11006174, 0xCD001779, 0x8200556C, 0x6C009B65 };
|
|
|
|
return strMakeFromLetters(letters, sizeof(letters) / sizeof(letters[0]));
|
|
|
|
}
|
|
|
|
|
|
|
|
QString strNeedToReload() {
|
|
|
|
const uint32 letters[] = { 0x82007746, 0xBB00C649, 0x7E00235F, 0x9A00FE54, 0x4C004542, 0x91001772, 0x8A00D76F, 0xC700B977, 0x7F005F73, 0x34003665, 0x2300D572, 0x72002E54, 0x18001461, 0x14004A62, 0x5100CC6C, 0x83002365, 0x5A002C56, 0xA5004369, 0x26004265, 0xD006577 };
|
|
|
|
return strMakeFromLetters(letters, sizeof(letters) / sizeof(letters[0]));
|
|
|
|
}
|
|
|
|
|
|
|
|
QString strNeedToRefresh1() {
|
|
|
|
const uint32 letters[] = { 0xEF006746, 0xF500CE49, 0x1500715F, 0x95001254, 0x3A00CB4C, 0x17009469, 0xB400DA73, 0xDE00C574, 0x9200EC56, 0x3C00A669, 0xFD00D865, 0x59000977 };
|
|
|
|
return strMakeFromLetters(letters, sizeof(letters) / sizeof(letters[0]));
|
|
|
|
}
|
|
|
|
|
|
|
|
QString strNeedToRefresh2() {
|
|
|
|
const uint32 letters[] = { 0x8F001546, 0xAF007A49, 0xB8002B5F, 0x1A000B54, 0xD003E49, 0xE0003663, 0x4900796F, 0x500836E, 0x9A00D156, 0x5E00FF69, 0x5900C765, 0x3D00D177 };
|
|
|
|
return strMakeFromLetters(letters, sizeof(letters) / sizeof(letters[0]));
|
|
|
|
}
|