diff options
Diffstat (limited to 'alf/alf.h')
| -rw-r--r-- | alf/alf.h | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -282,6 +282,28 @@ ALF_AddPanel(HWND parent, WORD id, UINT x, UINT y); HWND ALF_AddSpacer(HWND parent, WORD id, UINT x, UINT y, UINT cptWidth, UINT cptHeight, DWORD layoutFlags); +// tab control +HWND +ALF_AddNotebook(HWND parent, WORD id, UINT x, UINT y); + +HWND +ALF_NotebookAddTab(HWND notebook, const TCHAR *title); + +int +ALF_NotebookTabCount(HWND notebook); + +int +ALF_NotebookTabIndex(HWND notebook, HWND tabPanel); + +int +ALF_NotebookSelectedIndex(HWND notebook); + +HWND +ALF_NotebookSelectedPanel(HWND notebook); + +HWND +ALF_NotebookTabPanel(HWND notebook, int index); + #ifdef __cplusplus } // extern C #endif |
