source: dev/ProjectEditor/TabCtrl.h@ 3

Last change on this file since 3 was 3, checked in by dai_9181, 17 years ago
File size: 477 bytes
Line 
1
2
3class CMainTab{
4 HFONT hBoldFont;
5
6 int search(char *lpszText);
7
8public:
9 HWND hTab;
10
11 CMainTab(HWND hParent);
12 ~CMainTab();
13
14 void insert(char *lpszText,BOOL bResize,COLORREF color=-1);
15 void delete_item(char *lpszText,BOOL bResize);
16 void reset_item(char *lpszOldText,char *lpszNewText);
17
18 COLORREF GetItemColor(char *lpszText);
19
20 void SelChangeEvent();
21 void MdiActiveEvent(char *lpszText);
22
23 void draw(HDC hdc);
24};
25extern CMainTab *pobj_MainTab;
Note: See TracBrowser for help on using the repository browser.