topwindow.h

来自「c+++ game uploading now」· C头文件 代码 · 共 30 行

H
30
字号
/**
 @file
 Interface of the TopWindow class
*/
#if !defined _TOPWINDOW_H_
#define _TOPWINDOW_H_
#include "lib/ModelessDialog.h"

/**
 TopWindow class, implements the top window (dialog) class
*/
class TopWindow: public Win::ModelessDialog
{
public:
    /**
     @param hInst handle to the application instance
    */
    TopWindow(HINSTANCE hInst);

private:
    /**
     procedure to handle the application "window||dialog"
    */
    static BOOL CALLBACK AppDialogProc(HWND hwnd,
                                       UINT message,
                                       WPARAM wParam,
                                       LPARAM lParam);
};    
#endif //_TOPWINDOW_H_

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?