📄 win32window.h
字号:
#ifndef UTILS_BASE_WIN32WINDOW_H_#define UTILS_BASE_WIN32WINDOW_H_#ifdef WIN32#include "win32.h"namespace utils_base {///////////////////////////////////////////////////////////////////////////////// Win32Window///////////////////////////////////////////////////////////////////////////////class Win32Window {public: Win32Window(){} virtual ~Win32Window(){} HWND handle() { return wnd_; } virtual bool Create(HWND parent, const wchar_t* title, DWORD style, DWORD exstyle, int x, int y, int cx, int cy) { return false; } virtual void Destroy(){}protected: virtual bool OnMessage(UINT uMsg, WPARAM wParam, LPARAM lParam, LRESULT& result) { return false; } virtual bool OnClose() { return true; } virtual void OnDestroyed() { }private: static LRESULT CALLBACK WndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam); HWND wnd_;};///////////////////////////////////////////////////////////////////////////////} // namespace utils_base#endif // WIN32#endif // UTILS_BASE_WIN32WINDOW_H_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -