2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-25 19:57:20 +00:00

101 lines
2.3 KiB
C
Raw Permalink Normal View History

/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
#pragma once
#include "platform/platform_main_window.h"
2017-03-04 13:23:56 +03:00
#include "platform/mac/specific_mac_p.h"
#include "base/timer.h"
#include <QtWidgets/QMenuBar>
#include <QtCore/QTimer>
namespace Platform {
class MainWindow : public Window::MainWindow {
public:
explicit MainWindow(not_null<Window::Controller*> controller);
2016-11-08 17:07:25 +03:00
int getCustomTitleHeight() const {
return _customTitleHeight;
}
~MainWindow();
void updateWindowIcon() override;
2016-11-08 17:07:25 +03:00
2024-05-29 12:06:30 +04:00
rpl::producer<QPoint> globalForceClicks() override {
return _forceClicks.events();
}
2019-06-06 15:01:01 +03:00
class Private;
protected:
bool eventFilter(QObject *obj, QEvent *evt) override;
void stateChangedHook(Qt::WindowState state) override;
2016-11-08 17:07:25 +03:00
void initHook() override;
void unreadCounterChangedHook() override;
void updateGlobalMenuHook() override;
void closeWithoutDestroy() override;
void createGlobalMenu() override;
private:
friend class Private;
bool nativeEvent(
const QByteArray &eventType,
void *message,
qintptr *result) override;
void hideAndDeactivate();
void updateDockCounter();
std::unique_ptr<Private> _private;
mutable bool psIdle;
mutable QTimer psIdleTimer;
base::Timer _hideAfterFullScreenTimer;
QMenuBar psMainMenu;
QAction *psLogout = nullptr;
QAction *psUndo = nullptr;
QAction *psRedo = nullptr;
QAction *psCut = nullptr;
QAction *psCopy = nullptr;
QAction *psPaste = nullptr;
QAction *psDelete = nullptr;
QAction *psSelectAll = nullptr;
QAction *psContacts = nullptr;
QAction *psAddContact = nullptr;
QAction *psNewGroup = nullptr;
QAction *psNewChannel = nullptr;
QAction *psShowTelegram = nullptr;
QAction *psBold = nullptr;
QAction *psItalic = nullptr;
QAction *psUnderline = nullptr;
QAction *psStrikeOut = nullptr;
QAction *psBlockquote = nullptr;
QAction *psMonospace = nullptr;
QAction *psClearFormat = nullptr;
2024-05-29 12:06:30 +04:00
rpl::event_stream<QPoint> _forceClicks;
2016-11-08 17:07:25 +03:00
int _customTitleHeight = 0;
2024-05-29 12:06:30 +04:00
int _lastPressureStage = 0;
2016-11-08 17:07:25 +03:00
};
2023-02-17 23:04:42 +04:00
[[nodiscard]] inline int32 ScreenNameChecksum(const QString &name) {
return Window::DefaultScreenNameChecksum(name);
}
} // namespace Platform