2016-06-16 12:59:54 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
|
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
2017-01-11 18:31:31 +00:00
|
|
|
Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
2016-06-16 12:59:54 +00:00
|
|
|
*/
|
2016-06-16 15:17:39 +00:00
|
|
|
#include "platform/mac/main_window_mac.h"
|
2016-06-16 12:59:54 +00:00
|
|
|
|
2016-11-04 08:23:50 +00:00
|
|
|
#include "styles/style_window.h"
|
2016-06-16 12:59:54 +00:00
|
|
|
#include "mainwindow.h"
|
|
|
|
#include "mainwidget.h"
|
|
|
|
#include "application.h"
|
2017-06-29 10:27:09 +00:00
|
|
|
#include "history/history_widget.h"
|
2017-04-08 15:05:59 +00:00
|
|
|
#include "history/history_inner_widget.h"
|
2017-03-04 10:23:56 +00:00
|
|
|
#include "storage/localstorage.h"
|
2016-10-02 13:54:27 +00:00
|
|
|
#include "window/notifications_manager_default.h"
|
2016-11-06 18:45:50 +00:00
|
|
|
#include "platform/platform_notifications_manager.h"
|
2017-08-14 12:53:49 +00:00
|
|
|
#include "boxes/peer_list_controllers.h"
|
2017-04-06 14:38:10 +00:00
|
|
|
#include "boxes/about_box.h"
|
2017-04-13 08:27:10 +00:00
|
|
|
#include "lang/lang_keys.h"
|
2016-11-08 14:07:25 +00:00
|
|
|
#include "platform/mac/mac_utilities.h"
|
2016-06-16 12:59:54 +00:00
|
|
|
|
|
|
|
#include <Cocoa/Cocoa.h>
|
|
|
|
#include <CoreFoundation/CFURL.h>
|
2016-11-08 14:07:25 +00:00
|
|
|
#include <IOKit/IOKitLib.h>
|
2016-06-16 12:59:54 +00:00
|
|
|
#include <IOKit/hidsystem/ev_keymap.h>
|
2016-11-08 14:07:25 +00:00
|
|
|
#include <SPMediaKeyTap.h>
|
|
|
|
|
2017-04-12 11:58:37 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
// When we close a window that is fullscreen we first leave the fullscreen
|
|
|
|
// mode and after that hide the window. This is a timeout for elaving the
|
|
|
|
// fullscreen mode, after that we'll hide the window no matter what.
|
|
|
|
constexpr auto kHideAfterFullscreenTimeoutMs = 3000;
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2016-11-08 14:07:25 +00:00
|
|
|
@interface MainWindowObserver : NSObject {
|
|
|
|
}
|
|
|
|
|
|
|
|
- (id) init:(MainWindow::Private*)window;
|
|
|
|
- (void) activeSpaceDidChange:(NSNotification *)aNotification;
|
|
|
|
- (void) darkModeChanged:(NSNotification *)aNotification;
|
|
|
|
- (void) screenIsLocked:(NSNotification *)aNotification;
|
|
|
|
- (void) screenIsUnlocked:(NSNotification *)aNotification;
|
|
|
|
- (void) windowWillEnterFullScreen:(NSNotification *)aNotification;
|
|
|
|
- (void) windowWillExitFullScreen:(NSNotification *)aNotification;
|
|
|
|
|
2017-04-12 11:58:37 +00:00
|
|
|
@end // @interface MainWindowObserver
|
2016-06-16 12:59:54 +00:00
|
|
|
|
2016-06-16 15:17:39 +00:00
|
|
|
namespace Platform {
|
2016-06-16 12:59:54 +00:00
|
|
|
|
2016-11-08 14:07:25 +00:00
|
|
|
class MainWindow::Private {
|
|
|
|
public:
|
|
|
|
Private(MainWindow *window);
|
|
|
|
|
|
|
|
void setWindowBadge(const QString &str);
|
|
|
|
|
|
|
|
void enableShadow(WId winId);
|
|
|
|
|
|
|
|
bool filterNativeEvent(void *event);
|
|
|
|
|
|
|
|
void willEnterFullScreen();
|
|
|
|
void willExitFullScreen();
|
|
|
|
|
|
|
|
void initCustomTitle(NSWindow *window, NSView *view);
|
|
|
|
|
2017-03-05 20:18:27 +00:00
|
|
|
bool clipboardHasText();
|
|
|
|
|
2016-11-08 14:07:25 +00:00
|
|
|
~Private();
|
|
|
|
|
|
|
|
private:
|
|
|
|
MainWindow *_public;
|
|
|
|
friend class MainWindow;
|
|
|
|
|
|
|
|
MainWindowObserver *_observer;
|
2017-03-05 20:18:27 +00:00
|
|
|
NSPasteboard *_generalPasteboard = nullptr;
|
|
|
|
int _generalPasteboardChangeCount = -1;
|
|
|
|
bool _generalPasteboardHasText = false;
|
2016-11-08 14:07:25 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Platform
|
|
|
|
|
|
|
|
@implementation MainWindowObserver {
|
2017-04-12 11:58:37 +00:00
|
|
|
MainWindow::Private *_private;
|
2016-11-08 14:07:25 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
- (id) init:(MainWindow::Private*)window {
|
|
|
|
if (self = [super init]) {
|
|
|
|
_private = window;
|
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) activeSpaceDidChange:(NSNotification *)aNotification {
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
|
|
|
|
2016-11-08 14:07:25 +00:00
|
|
|
- (void) darkModeChanged:(NSNotification *)aNotification {
|
2016-06-16 15:17:39 +00:00
|
|
|
Notify::unreadCounterUpdated();
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
|
|
|
|
2016-11-08 14:07:25 +00:00
|
|
|
- (void) screenIsLocked:(NSNotification *)aNotification {
|
|
|
|
Global::SetScreenIsLocked(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) screenIsUnlocked:(NSNotification *)aNotification {
|
|
|
|
Global::SetScreenIsLocked(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) windowWillEnterFullScreen:(NSNotification *)aNotification {
|
|
|
|
_private->willEnterFullScreen();
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) windowWillExitFullScreen:(NSNotification *)aNotification {
|
|
|
|
_private->willExitFullScreen();
|
|
|
|
}
|
|
|
|
|
2017-04-12 11:58:37 +00:00
|
|
|
@end // @implementation MainWindowObserver
|
2016-11-08 14:07:25 +00:00
|
|
|
|
|
|
|
namespace Platform {
|
|
|
|
|
|
|
|
MainWindow::Private::Private(MainWindow *window)
|
|
|
|
: _public(window)
|
|
|
|
, _observer([[MainWindowObserver alloc] init:this]) {
|
2017-03-05 20:18:27 +00:00
|
|
|
_generalPasteboard = [NSPasteboard generalPasteboard];
|
|
|
|
|
2016-11-08 14:07:25 +00:00
|
|
|
@autoreleasepool {
|
|
|
|
|
|
|
|
[[[NSWorkspace sharedWorkspace] notificationCenter] addObserver:_observer selector:@selector(activeSpaceDidChange:) name:NSWorkspaceActiveSpaceDidChangeNotification object:nil];
|
|
|
|
[[NSDistributedNotificationCenter defaultCenter] addObserver:_observer selector:@selector(darkModeChanged:) name:Q2NSString(strNotificationAboutThemeChange()) object:nil];
|
|
|
|
[[NSDistributedNotificationCenter defaultCenter] addObserver:_observer selector:@selector(screenIsLocked:) name:Q2NSString(strNotificationAboutScreenLocked()) object:nil];
|
|
|
|
[[NSDistributedNotificationCenter defaultCenter] addObserver:_observer selector:@selector(screenIsUnlocked:) name:Q2NSString(strNotificationAboutScreenUnlocked()) object:nil];
|
|
|
|
|
|
|
|
#ifndef OS_MAC_STORE
|
|
|
|
// Register defaults for the whitelist of apps that want to use media keys
|
|
|
|
[[NSUserDefaults standardUserDefaults] registerDefaults:[NSDictionary dictionaryWithObjectsAndKeys:[SPMediaKeyTap defaultMediaKeyUserBundleIdentifiers], kMediaKeyUsingBundleIdentifiersDefaultsKey, nil]];
|
|
|
|
#endif // !OS_MAC_STORE
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::Private::setWindowBadge(const QString &str) {
|
|
|
|
@autoreleasepool {
|
|
|
|
|
|
|
|
[[NSApp dockTile] setBadgeLabel:Q2NSString(str)];
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::Private::initCustomTitle(NSWindow *window, NSView *view) {
|
|
|
|
[window setStyleMask:[window styleMask] | NSFullSizeContentViewWindowMask];
|
|
|
|
[window setTitlebarAppearsTransparent:YES];
|
|
|
|
auto inner = [window contentLayoutRect];
|
|
|
|
auto full = [view frame];
|
|
|
|
_public->_customTitleHeight = qMax(qRound(full.size.height - inner.size.height), 0);
|
|
|
|
|
|
|
|
#ifndef OS_MAC_OLD
|
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:_observer selector:@selector(windowWillEnterFullScreen:) name:NSWindowWillEnterFullScreenNotification object:window];
|
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:_observer selector:@selector(windowWillExitFullScreen:) name:NSWindowWillExitFullScreenNotification object:window];
|
|
|
|
#endif // !OS_MAC_OLD
|
|
|
|
}
|
|
|
|
|
2017-03-05 20:18:27 +00:00
|
|
|
bool MainWindow::Private::clipboardHasText() {
|
|
|
|
auto currentChangeCount = static_cast<int>([_generalPasteboard changeCount]);
|
|
|
|
if (_generalPasteboardChangeCount != currentChangeCount) {
|
|
|
|
_generalPasteboardChangeCount = currentChangeCount;
|
|
|
|
_generalPasteboardHasText = !Application::clipboard()->text().isEmpty();
|
|
|
|
}
|
|
|
|
return _generalPasteboardHasText;
|
|
|
|
}
|
|
|
|
|
2016-11-08 14:07:25 +00:00
|
|
|
void MainWindow::Private::willEnterFullScreen() {
|
2016-11-09 08:34:38 +00:00
|
|
|
_public->setTitleVisible(false);
|
2016-11-08 14:07:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::Private::willExitFullScreen() {
|
2016-11-09 08:34:38 +00:00
|
|
|
_public->setTitleVisible(true);
|
2016-11-08 14:07:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::Private::enableShadow(WId winId) {
|
|
|
|
// [[(NSView*)winId window] setStyleMask:NSBorderlessWindowMask];
|
|
|
|
// [[(NSView*)winId window] setHasShadow:YES];
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MainWindow::Private::filterNativeEvent(void *event) {
|
|
|
|
NSEvent *e = static_cast<NSEvent*>(event);
|
|
|
|
if (e && [e type] == NSSystemDefined && [e subtype] == SPSystemDefinedEventMediaKeys) {
|
|
|
|
#ifndef OS_MAC_STORE
|
|
|
|
// If event tap is not installed, handle events that reach the app instead
|
|
|
|
if (![SPMediaKeyTap usesGlobalMediaKeyTap]) {
|
|
|
|
return objc_handleMediaKeyEvent(e);
|
|
|
|
}
|
|
|
|
#else // !OS_MAC_STORE
|
|
|
|
return objc_handleMediaKeyEvent(e);
|
|
|
|
#endif // else for !OS_MAC_STORE
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
MainWindow::Private::~Private() {
|
|
|
|
[_observer release];
|
|
|
|
}
|
|
|
|
|
2016-06-16 15:17:39 +00:00
|
|
|
MainWindow::MainWindow()
|
2017-05-12 15:27:19 +00:00
|
|
|
: _private(std::make_unique<Private>(this)) {
|
2016-12-23 13:21:01 +00:00
|
|
|
trayImg = st::macTrayIcon.instance(QColor(0, 0, 0, 180), dbisOne);
|
|
|
|
trayImgSel = st::macTrayIcon.instance(QColor(255, 255, 255), dbisOne);
|
2016-06-16 12:59:54 +00:00
|
|
|
|
2017-04-12 11:58:37 +00:00
|
|
|
_hideAfterFullScreenTimer.setCallback([this] { hideAndDeactivate(); });
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
|
|
|
|
2016-06-16 15:17:39 +00:00
|
|
|
void MainWindow::closeWithoutDestroy() {
|
|
|
|
NSWindow *nsWindow = [reinterpret_cast<NSView*>(winId()) window];
|
2017-02-18 13:32:38 +00:00
|
|
|
|
|
|
|
auto isFullScreen = (([nsWindow styleMask] & NSFullScreenWindowMask) == NSFullScreenWindowMask);
|
2016-06-16 15:17:39 +00:00
|
|
|
if (isFullScreen) {
|
2017-04-12 11:58:37 +00:00
|
|
|
_hideAfterFullScreenTimer.callOnce(kHideAfterFullscreenTimeoutMs);
|
2016-06-16 15:17:39 +00:00
|
|
|
[nsWindow toggleFullScreen:nsWindow];
|
|
|
|
} else {
|
2017-02-20 10:36:25 +00:00
|
|
|
hideAndDeactivate();
|
2016-06-16 15:17:39 +00:00
|
|
|
}
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
|
|
|
|
2016-06-16 15:17:39 +00:00
|
|
|
void MainWindow::stateChangedHook(Qt::WindowState state) {
|
|
|
|
if (_hideAfterFullScreenTimer.isActive()) {
|
2017-04-12 11:58:37 +00:00
|
|
|
_hideAfterFullScreenTimer.callOnce(0);
|
2016-06-16 15:17:39 +00:00
|
|
|
}
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
|
|
|
|
2016-11-08 14:07:25 +00:00
|
|
|
void MainWindow::initHook() {
|
|
|
|
_customTitleHeight = 0;
|
|
|
|
if (auto view = reinterpret_cast<NSView*>(winId())) {
|
|
|
|
if (auto window = [view window]) {
|
|
|
|
if ([window respondsToSelector:@selector(contentLayoutRect)]
|
|
|
|
&& [window respondsToSelector:@selector(setTitlebarAppearsTransparent:)]) {
|
|
|
|
_private->initCustomTitle(window, view);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-12 15:27:19 +00:00
|
|
|
void MainWindow::updateWindowIcon() {
|
|
|
|
}
|
|
|
|
|
2016-11-09 08:34:38 +00:00
|
|
|
void MainWindow::titleVisibilityChangedHook() {
|
|
|
|
updateTitleCounter();
|
|
|
|
}
|
|
|
|
|
2017-02-20 10:36:25 +00:00
|
|
|
void MainWindow::hideAndDeactivate() {
|
|
|
|
hide();
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
|
|
|
|
2016-06-16 15:17:39 +00:00
|
|
|
QImage MainWindow::psTrayIcon(bool selected) const {
|
|
|
|
return selected ? trayImgSel : trayImg;
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
|
|
|
|
2016-06-16 15:17:39 +00:00
|
|
|
void MainWindow::psShowTrayMenu() {
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
|
|
|
|
2016-06-16 15:17:39 +00:00
|
|
|
void MainWindow::psTrayMenuUpdated() {
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
|
|
|
|
2016-06-16 15:17:39 +00:00
|
|
|
void MainWindow::psSetupTrayIcon() {
|
|
|
|
if (!trayIcon) {
|
|
|
|
trayIcon = new QSystemTrayIcon(this);
|
2016-06-16 12:59:54 +00:00
|
|
|
|
2016-06-16 15:17:39 +00:00
|
|
|
QIcon icon(QPixmap::fromImage(psTrayIcon(), Qt::ColorOnly));
|
|
|
|
icon.addPixmap(QPixmap::fromImage(psTrayIcon(true), Qt::ColorOnly), QIcon::Selected);
|
2016-06-16 12:59:54 +00:00
|
|
|
|
2016-06-16 15:17:39 +00:00
|
|
|
trayIcon->setIcon(icon);
|
|
|
|
trayIcon->setToolTip(str_const_toString(AppName));
|
|
|
|
connect(trayIcon, SIGNAL(activated(QSystemTrayIcon::ActivationReason)), this, SLOT(toggleTray(QSystemTrayIcon::ActivationReason)), Qt::UniqueConnection);
|
|
|
|
App::wnd()->updateTrayMenu();
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
2016-11-09 08:34:38 +00:00
|
|
|
updateIconCounters();
|
2016-06-16 12:59:54 +00:00
|
|
|
|
2016-06-16 15:17:39 +00:00
|
|
|
trayIcon->show();
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
|
|
|
|
2017-03-04 19:36:59 +00:00
|
|
|
void MainWindow::workmodeUpdated(DBIWorkMode mode) {
|
2016-06-16 15:17:39 +00:00
|
|
|
psSetupTrayIcon();
|
2017-03-04 19:36:59 +00:00
|
|
|
if (mode == dbiwmWindowOnly) {
|
2016-06-16 15:17:39 +00:00
|
|
|
if (trayIcon) {
|
|
|
|
trayIcon->setContextMenu(0);
|
|
|
|
delete trayIcon;
|
2016-10-02 17:06:34 +00:00
|
|
|
trayIcon = nullptr;
|
2016-06-16 15:17:39 +00:00
|
|
|
}
|
|
|
|
}
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
|
|
|
|
2016-12-23 13:21:01 +00:00
|
|
|
void _placeCounter(QImage &img, int size, int count, style::color bg, style::color color) {
|
2016-06-16 15:17:39 +00:00
|
|
|
if (!count) return;
|
2016-12-23 13:21:01 +00:00
|
|
|
auto savedRatio = img.devicePixelRatio();
|
|
|
|
img.setDevicePixelRatio(1.);
|
|
|
|
|
|
|
|
{
|
|
|
|
Painter p(&img);
|
|
|
|
PainterHighQualityEnabler hq(p);
|
|
|
|
|
|
|
|
auto cnt = (count < 100) ? QString("%1").arg(count) : QString("..%1").arg(count % 100, 2, 10, QChar('0'));
|
|
|
|
auto cntSize = cnt.size();
|
|
|
|
|
|
|
|
p.setBrush(bg);
|
|
|
|
p.setPen(Qt::NoPen);
|
|
|
|
int32 fontSize, skip;
|
|
|
|
if (size == 22) {
|
|
|
|
skip = 1;
|
|
|
|
fontSize = 8;
|
|
|
|
} else {
|
|
|
|
skip = 2;
|
|
|
|
fontSize = 16;
|
|
|
|
}
|
|
|
|
style::font f(fontSize, 0, 0);
|
|
|
|
int32 w = f->width(cnt), d, r;
|
|
|
|
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);
|
2016-06-16 12:59:54 +00:00
|
|
|
|
2016-12-23 13:21:01 +00:00
|
|
|
p.setCompositionMode(QPainter::CompositionMode_Source);
|
|
|
|
p.setFont(f);
|
|
|
|
p.setPen(color);
|
|
|
|
p.drawText(size - w - d - skip, size - f->height + f->ascent - skip, cnt);
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
2016-12-23 13:21:01 +00:00
|
|
|
img.setDevicePixelRatio(savedRatio);
|
2016-06-16 15:17:39 +00:00
|
|
|
}
|
|
|
|
|
2016-11-09 08:34:38 +00:00
|
|
|
void MainWindow::updateTitleCounter() {
|
|
|
|
setWindowTitle(titleVisible() ? QString() : titleText());
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::unreadCounterChangedHook() {
|
|
|
|
updateTitleCounter();
|
|
|
|
updateIconCounters();
|
|
|
|
}
|
2016-06-16 15:17:39 +00:00
|
|
|
|
2016-11-09 08:34:38 +00:00
|
|
|
void MainWindow::updateIconCounters() {
|
|
|
|
auto counter = App::histories().unreadBadge();
|
2016-06-16 15:17:39 +00:00
|
|
|
|
|
|
|
QString cnt = (counter < 1000) ? QString("%1").arg(counter) : QString("..%1").arg(counter % 100, 2, 10, QChar('0'));
|
2016-11-08 14:07:25 +00:00
|
|
|
_private->setWindowBadge(counter ? cnt : QString());
|
2016-06-16 15:17:39 +00:00
|
|
|
|
|
|
|
if (trayIcon) {
|
|
|
|
bool muted = App::histories().unreadOnlyMuted();
|
|
|
|
bool dm = objc_darkMode();
|
|
|
|
|
2016-10-31 12:29:26 +00:00
|
|
|
auto &bg = (muted ? st::trayCounterBgMute : st::trayCounterBg);
|
2016-06-16 15:17:39 +00:00
|
|
|
QIcon icon;
|
|
|
|
QImage img(psTrayIcon(dm)), imgsel(psTrayIcon(true));
|
|
|
|
img.detach();
|
|
|
|
imgsel.detach();
|
|
|
|
int32 size = cRetina() ? 44 : 22;
|
2016-10-31 12:29:26 +00:00
|
|
|
_placeCounter(img, size, counter, bg, (dm && muted) ? st::trayCounterFgMacInvert : st::trayCounterFg);
|
|
|
|
_placeCounter(imgsel, size, counter, st::trayCounterBgMacInvert, st::trayCounterFgMacInvert);
|
2017-02-21 13:45:56 +00:00
|
|
|
icon.addPixmap(App::pixmapFromImageInPlace(std::move(img)));
|
|
|
|
icon.addPixmap(App::pixmapFromImageInPlace(std::move(imgsel)), QIcon::Selected);
|
2016-06-16 15:17:39 +00:00
|
|
|
trayIcon->setIcon(icon);
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-16 15:17:39 +00:00
|
|
|
void MainWindow::psFirstShow() {
|
|
|
|
psUpdateMargins();
|
2016-06-16 12:59:54 +00:00
|
|
|
|
2016-06-16 15:17:39 +00:00
|
|
|
bool showShadows = true;
|
2016-06-16 12:59:54 +00:00
|
|
|
|
2016-06-16 15:17:39 +00:00
|
|
|
show();
|
2016-11-08 14:07:25 +00:00
|
|
|
_private->enableShadow(winId());
|
2016-06-16 15:17:39 +00:00
|
|
|
if (cWindowPos().maximized) {
|
2017-07-03 12:23:41 +00:00
|
|
|
DEBUG_LOG(("Window Pos: First show, setting maximized."));
|
2016-06-16 15:17:39 +00:00
|
|
|
setWindowState(Qt::WindowMaximized);
|
|
|
|
}
|
2016-06-16 12:59:54 +00:00
|
|
|
|
2016-06-16 15:17:39 +00:00
|
|
|
if ((cLaunchMode() == LaunchModeAutoStart && cStartMinimized()) || cStartInTray()) {
|
|
|
|
setWindowState(Qt::WindowMinimized);
|
2017-03-04 19:36:59 +00:00
|
|
|
if (Global::WorkMode().value() == dbiwmTrayOnly || Global::WorkMode().value() == dbiwmWindowAndTray) {
|
2016-06-16 15:17:39 +00:00
|
|
|
hide();
|
|
|
|
} else {
|
|
|
|
show();
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
2016-06-16 15:17:39 +00:00
|
|
|
showShadows = false;
|
2016-06-16 12:59:54 +00:00
|
|
|
} else {
|
2016-06-16 15:17:39 +00:00
|
|
|
show();
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
|
|
|
|
2016-11-04 11:14:47 +00:00
|
|
|
setPositionInited();
|
2016-06-16 15:17:39 +00:00
|
|
|
|
2016-11-04 11:14:47 +00:00
|
|
|
createGlobalMenu();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::createGlobalMenu() {
|
2016-11-04 08:23:50 +00:00
|
|
|
auto main = psMainMenu.addMenu(qsl("Telegram"));
|
|
|
|
auto about = main->addAction(lng_mac_menu_about_telegram(lt_telegram, qsl("Telegram")));
|
2017-08-03 13:06:29 +00:00
|
|
|
connect(about, &QAction::triggered, about, [] {
|
2016-11-04 08:23:50 +00:00
|
|
|
if (App::wnd() && App::wnd()->isHidden()) App::wnd()->showFromTray();
|
2016-12-13 17:07:56 +00:00
|
|
|
Ui::show(Box<AboutBox>());
|
2017-08-03 13:06:29 +00:00
|
|
|
});
|
2016-11-04 08:23:50 +00:00
|
|
|
about->setMenuRole(QAction::AboutQtRole);
|
|
|
|
|
2016-06-16 15:17:39 +00:00
|
|
|
main->addSeparator();
|
|
|
|
QAction *prefs = main->addAction(lang(lng_mac_menu_preferences), App::wnd(), SLOT(showSettings()), QKeySequence(Qt::ControlModifier | Qt::Key_Comma));
|
|
|
|
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));
|
2016-11-04 08:23:50 +00:00
|
|
|
psContacts = window->addAction(lang(lng_mac_menu_contacts));
|
2017-08-03 13:06:29 +00:00
|
|
|
connect(psContacts, &QAction::triggered, psContacts, [] {
|
2016-11-04 08:23:50 +00:00
|
|
|
if (App::wnd() && App::wnd()->isHidden()) App::wnd()->showFromTray();
|
|
|
|
|
|
|
|
if (!App::self()) return;
|
2017-08-17 08:31:24 +00:00
|
|
|
Ui::show(Box<PeerListBox>(std::make_unique<ContactsBoxController>(), [](not_null<PeerListBox*> box) {
|
2017-08-14 12:53:49 +00:00
|
|
|
box->addButton(langFactory(lng_close), [box] { box->closeBox(); });
|
|
|
|
box->addLeftButton(langFactory(lng_profile_add_contact), [] { App::wnd()->onShowAddContact(); });
|
|
|
|
}));
|
2017-08-03 13:06:29 +00:00
|
|
|
});
|
2016-06-16 15:17:39 +00:00
|
|
|
psAddContact = window->addAction(lang(lng_mac_menu_add_contact), App::wnd(), SLOT(onShowAddContact()));
|
|
|
|
window->addSeparator();
|
|
|
|
psNewGroup = window->addAction(lang(lng_mac_menu_new_group), App::wnd(), SLOT(onShowNewGroup()));
|
|
|
|
psNewChannel = window->addAction(lang(lng_mac_menu_new_channel), App::wnd(), SLOT(onShowNewChannel()));
|
|
|
|
window->addSeparator();
|
|
|
|
psShowTelegram = window->addAction(lang(lng_mac_menu_show), App::wnd(), SLOT(showFromTray()));
|
2017-01-01 16:45:20 +00:00
|
|
|
|
|
|
|
updateGlobalMenu();
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
|
|
|
|
2016-06-16 15:17:39 +00:00
|
|
|
namespace {
|
|
|
|
void _sendKeySequence(Qt::Key key, Qt::KeyboardModifiers modifiers = Qt::NoModifier) {
|
|
|
|
QWidget *focused = QApplication::focusWidget();
|
2016-11-15 11:56:49 +00:00
|
|
|
if (qobject_cast<QLineEdit*>(focused) || qobject_cast<QTextEdit*>(focused) || qobject_cast<HistoryInner*>(focused)) {
|
2016-06-16 15:17:39 +00:00
|
|
|
QApplication::postEvent(focused, new QKeyEvent(QEvent::KeyPress, key, modifiers));
|
|
|
|
QApplication::postEvent(focused, new QKeyEvent(QEvent::KeyRelease, key, modifiers));
|
|
|
|
}
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
2016-06-16 15:17:39 +00:00
|
|
|
void _forceDisabled(QAction *action, bool disabled) {
|
|
|
|
if (action->isEnabled()) {
|
|
|
|
if (disabled) action->setDisabled(true);
|
|
|
|
} else if (!disabled) {
|
|
|
|
action->setDisabled(false);
|
|
|
|
}
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-16 15:17:39 +00:00
|
|
|
void MainWindow::psMacUndo() {
|
|
|
|
_sendKeySequence(Qt::Key_Z, Qt::ControlModifier);
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
|
|
|
|
2016-06-16 15:17:39 +00:00
|
|
|
void MainWindow::psMacRedo() {
|
|
|
|
_sendKeySequence(Qt::Key_Z, Qt::ControlModifier | Qt::ShiftModifier);
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
|
|
|
|
2016-06-16 15:17:39 +00:00
|
|
|
void MainWindow::psMacCut() {
|
|
|
|
_sendKeySequence(Qt::Key_X, Qt::ControlModifier);
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
|
|
|
|
2016-06-16 15:17:39 +00:00
|
|
|
void MainWindow::psMacCopy() {
|
|
|
|
_sendKeySequence(Qt::Key_C, Qt::ControlModifier);
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
|
|
|
|
2016-06-16 15:17:39 +00:00
|
|
|
void MainWindow::psMacPaste() {
|
|
|
|
_sendKeySequence(Qt::Key_V, Qt::ControlModifier);
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
|
|
|
|
2016-06-16 15:17:39 +00:00
|
|
|
void MainWindow::psMacDelete() {
|
|
|
|
_sendKeySequence(Qt::Key_Delete);
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
|
|
|
|
2016-06-16 15:17:39 +00:00
|
|
|
void MainWindow::psMacSelectAll() {
|
|
|
|
_sendKeySequence(Qt::Key_A, Qt::ControlModifier);
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
|
|
|
|
2016-06-16 15:17:39 +00:00
|
|
|
void MainWindow::psInitSysMenu() {
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
|
|
|
|
2016-06-16 15:17:39 +00:00
|
|
|
void MainWindow::psUpdateMargins() {
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
|
|
|
|
2017-01-01 16:45:20 +00:00
|
|
|
void MainWindow::updateGlobalMenuHook() {
|
|
|
|
if (!App::wnd() || !positionInited()) return;
|
2016-06-16 12:59:54 +00:00
|
|
|
|
2017-01-01 16:45:20 +00:00
|
|
|
auto focused = QApplication::focusWidget();
|
2016-06-16 15:17:39 +00:00
|
|
|
bool isLogged = !!App::self(), canUndo = false, canRedo = false, canCut = false, canCopy = false, canPaste = false, canDelete = false, canSelectAll = false;
|
2017-03-05 20:18:27 +00:00
|
|
|
auto clipboardHasText = _private->clipboardHasText();
|
2016-11-04 11:14:47 +00:00
|
|
|
if (auto edit = qobject_cast<QLineEdit*>(focused)) {
|
2016-06-16 15:17:39 +00:00
|
|
|
canCut = canCopy = canDelete = edit->hasSelectedText();
|
|
|
|
canSelectAll = !edit->text().isEmpty();
|
|
|
|
canUndo = edit->isUndoAvailable();
|
|
|
|
canRedo = edit->isRedoAvailable();
|
2017-03-05 20:18:27 +00:00
|
|
|
canPaste = clipboardHasText;
|
2016-11-15 11:56:49 +00:00
|
|
|
} else if (auto edit = qobject_cast<QTextEdit*>(focused)) {
|
2016-06-16 15:17:39 +00:00
|
|
|
canCut = canCopy = canDelete = edit->textCursor().hasSelection();
|
2016-11-15 11:56:49 +00:00
|
|
|
canSelectAll = !edit->document()->isEmpty();
|
|
|
|
canUndo = edit->document()->isUndoAvailable();
|
|
|
|
canRedo = edit->document()->isRedoAvailable();
|
2017-03-05 20:18:27 +00:00
|
|
|
canPaste = clipboardHasText;
|
2016-11-04 11:14:47 +00:00
|
|
|
} else if (auto list = qobject_cast<HistoryInner*>(focused)) {
|
2016-06-16 15:17:39 +00:00
|
|
|
canCopy = list->canCopySelected();
|
|
|
|
canDelete = list->canDeleteSelected();
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
2017-01-01 16:45:20 +00:00
|
|
|
App::wnd()->updateIsActive(0);
|
2016-06-16 15:17:39 +00:00
|
|
|
_forceDisabled(psLogout, !isLogged && !App::passcoded());
|
|
|
|
_forceDisabled(psUndo, !canUndo);
|
|
|
|
_forceDisabled(psRedo, !canRedo);
|
|
|
|
_forceDisabled(psCut, !canCut);
|
|
|
|
_forceDisabled(psCopy, !canCopy);
|
|
|
|
_forceDisabled(psPaste, !canPaste);
|
|
|
|
_forceDisabled(psDelete, !canDelete);
|
|
|
|
_forceDisabled(psSelectAll, !canSelectAll);
|
|
|
|
_forceDisabled(psContacts, !isLogged || App::passcoded());
|
|
|
|
_forceDisabled(psAddContact, !isLogged || App::passcoded());
|
|
|
|
_forceDisabled(psNewGroup, !isLogged || App::passcoded());
|
|
|
|
_forceDisabled(psNewChannel, !isLogged || App::passcoded());
|
2017-01-01 16:45:20 +00:00
|
|
|
_forceDisabled(psShowTelegram, App::wnd()->isActive());
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
|
|
|
|
2016-06-16 15:17:39 +00:00
|
|
|
bool MainWindow::psFilterNativeEvent(void *event) {
|
2016-11-08 14:07:25 +00:00
|
|
|
return _private->filterNativeEvent(event);
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
|
|
|
|
2016-06-16 15:17:39 +00:00
|
|
|
bool MainWindow::eventFilter(QObject *obj, QEvent *evt) {
|
|
|
|
QEvent::Type t = evt->type();
|
|
|
|
if (t == QEvent::FocusIn || t == QEvent::FocusOut) {
|
2016-11-15 11:56:49 +00:00
|
|
|
if (qobject_cast<QLineEdit*>(obj) || qobject_cast<QTextEdit*>(obj) || qobject_cast<HistoryInner*>(obj)) {
|
2017-01-01 16:45:20 +00:00
|
|
|
updateGlobalMenu();
|
2016-06-16 15:17:39 +00:00
|
|
|
}
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
2016-06-16 15:17:39 +00:00
|
|
|
return Window::MainWindow::eventFilter(obj, evt);
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
|
|
|
|
2016-06-16 15:17:39 +00:00
|
|
|
MainWindow::~MainWindow() {
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
|
|
|
|
2016-06-16 15:17:39 +00:00
|
|
|
} // namespace
|