2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-23 18:57:12 +00:00

73 lines
1.7 KiB
C
Raw 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"
#include "base/unique_qptr.h"
class QMenuBar;
namespace Ui {
class PopupMenu;
} // namespace Ui
namespace Platform {
class MainWindow : public Window::MainWindow {
public:
explicit MainWindow(not_null<Window::Controller*> controller);
~MainWindow();
void updateWindowIcon() override;
protected:
bool eventFilter(QObject *obj, QEvent *evt) override;
void initHook() override;
void unreadCounterChangedHook() override;
2020-03-04 09:45:44 +04:00
void updateGlobalMenuHook() override;
2021-05-28 01:11:16 +03:00
void workmodeUpdated(Core::Settings::WorkMode mode) override;
2020-03-04 09:45:44 +04:00
void createGlobalMenu() override;
private:
void updateUnityCounter();
void handleNativeSurfaceChanged(bool exist);
QMenuBar *psMainMenu = nullptr;
2020-03-04 09:45:44 +04:00
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 *psBold = nullptr;
QAction *psItalic = nullptr;
QAction *psUnderline = nullptr;
QAction *psStrikeOut = nullptr;
QAction *psMonospace = nullptr;
QAction *psClearFormat = nullptr;
QIcon _icon;
bool _usingSupportIcon = false;
};
2023-02-17 23:04:42 +04:00
[[nodiscard]] inline int32 ScreenNameChecksum(const QString &name) {
return Window::DefaultScreenNameChecksum(name);
}
} // namespace Platform