diff options
| author | Jonas Kümmerlin <jonas@kuemmerlin.eu> | 2019-07-07 18:59:26 +0200 |
|---|---|---|
| committer | Jonas Kümmerlin <jonas@kuemmerlin.eu> | 2019-07-07 18:59:26 +0200 |
| commit | 29393896e21cab201646352cce017992cf0b2ddb (patch) | |
| tree | 39c842d1b2b5a8c4dedbc2193401d9d0513eb8a5 /alf/alf.h | |
| parent | 68df125e3b417c89251fa6123f8c3ef6af8a7607 (diff) | |
first notebook implementation
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 |
