summaryrefslogtreecommitdiff
path: root/alf/alf.h
diff options
context:
space:
mode:
Diffstat (limited to 'alf/alf.h')
-rw-r--r--alf/alf.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/alf/alf.h b/alf/alf.h
index d74553b..e30d360 100644
--- a/alf/alf.h
+++ b/alf/alf.h
@@ -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