propsheet.h

来自「这当中包含了可以在WIN下面的VC中进行MINIGUI编程及源码调试的模拟器环境」· C头文件 代码 · 共 51 行

H
51
字号
//// $Id: propsheet.h,v 1.4 2001/11/30 02:22:18 ymwei Exp $//// propsheet.h: the head file of PropSheet control.//// Copyright (C) 2001, Jiang Jun (kevin.j@263.net)// Copyright (C) 2001, Wei Yongming (ymwei@minigui.org)//// Create date: 2001/11/19//#ifndef GUI_PROPSHEET_H_#define GUI_PROPSHEET_H_#ifdef  __cplusplusextern  "C" {#endiftypedef struct tagPROPPAGE{    char* title;                /* title of page */    HICON icon;                 /* icon of page */    int  width;                 /* width of title */    HWND hwnd;                  /* container control */    WNDPROC proc;               /* callback of page */    struct tagPROPPAGE* next;   /* next page */} PROPPAGE;typedef PROPPAGE* PPROPPAGE;typedef struct tagPROPSHEETDATA{    RECT head_rc;               /* height of page title */    int head_width;             /* the effective width of head */    int page_count;             /* the number of pages */    PROPPAGE* active;           /* index of active page */    PROPPAGE* head;             /* head of page list */} PROPSHEETDATA;typedef PROPSHEETDATA* PPROPSHEETDATA;BOOL RegisterPropSheetControl (void);void PropSheetControlCleanup (void);#ifdef __cplusplus}#endif#endif // GUI_PROPSHEET_H_

⌨️ 快捷键说明

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