tdesktop/Telegram/SourceFiles/platform/win/main_window_win.h

76 lines
1.6 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"
2019-09-26 10:20:34 +00:00
#include "base/platform/win/base_windows_h.h"
2017-08-31 16:28:58 +00:00
#include "base/flags.h"
namespace Ui {
class PopupMenu;
} // namespace Ui
namespace Platform {
class MainWindow : public Window::MainWindow {
public:
explicit MainWindow(not_null<Window::Controller*> controller);
HWND psHwnd() const;
void updateWindowIcon() override;
bool isActiveForTrayMenu() override;
// Custom shadows.
void shadowsActivate();
void shadowsDeactivate();
2021-01-16 12:33:09 +00:00
[[nodiscard]] bool hasTabletView() const;
void destroyedFromSystem();
~MainWindow();
protected:
void initHook() override;
int32 screenNameChecksum(const QString &name) const override;
void unreadCounterChangedHook() override;
2021-05-27 22:11:16 +00:00
void workmodeUpdated(Core::Settings::WorkMode mode) override;
bool initGeometryFromSystem() override;
2021-01-16 12:33:09 +00:00
2021-02-25 15:12:51 +00:00
QRect computeDesktopRect() const override;
private:
2021-01-16 12:33:09 +00:00
struct Private;
void setupNativeWindowFrame();
void updateTaskbarAndIconCounters();
void validateWindowTheme(bool native, bool night);
void forceIconRefresh();
void destroyCachedIcons();
2021-01-16 12:33:09 +00:00
const std::unique_ptr<Private> _private;
const std::unique_ptr<QWindow> _taskbarHiderWindow;
HWND _hWnd = nullptr;
HICON _iconBig = nullptr;
HICON _iconSmall = nullptr;
HICON _iconOverlay = nullptr;
// Workarounds for activation from tray icon.
crl::time _lastDeactivateTime = 0;
bool _hasActiveFrame = false;
};
} // namespace Platform