?? toolbar_impl.h
字號:
/*** $Id: button.h,v 1.2 2000/09**** toolbar.h:the head file of ToolBar control.**** Copyright (C) 2003 Feynman Software.** Copyright (C) 2000 ~ 2002 Wei Yongming.**** Create date: 2000/9/20*/#ifndef __TOOLBAR_IMPL_H_#define __TOOLBAR_IMPL_H_#ifdef __cplusplusextern "C" {#endiftypedef struct toolbarCTRL{ int nCount; int ItemWidth; int ItemHeight; struct toolbarItemData* head; struct toolbarItemData* tail; int iSel; // selected selected pic's insPos int iLBDn; // whether LBtn down in the valid pic 0:no 1:yes int iMvOver; }TOOLBARCTRL;typedef TOOLBARCTRL* PTOOLBARCTRL;typedef struct toolbarItemData{ int id; int insPos; RECT RcTitle; PBITMAP NBmp; PBITMAP HBmp; PBITMAP DBmp; struct toolbarItemData* next;} TOOLBARITEMDATA;typedef TOOLBARITEMDATA* PTOOLBARITEMDATA;BOOL RegisterToolbarControl (void);void ToolbarControlCleanup (void);#ifdef __cplusplus}#endif#endif // GUI_TOOBAR_IMPL_H_
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -