blob: c92d13581a041ce5162ed68588f0c85e1239b05c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef __FORMTABS_H__
#define __FORMTABS_H__
typedef void (TabProc)();
typedef struct {
FormPtr srcP;
UInt16 first;
UInt16 last;
TabProc *drawFunc;
} TabDataType, *TabDataPtr;
typedef struct {
UInt16 count, active;
Coord width;
TabDataPtr tabs;
} TabType, *TabPtr;
TabType *TabNewTabs (UInt16 cnt);
void TabDeleteTabs (TabType *tabP);
Err TabAddContent (FormType **frmP, TabType *tabP, const Char *nameP, UInt16 rscID, TabProc *drawFunc = 0);
void TabSetActive (FormType *frmP, TabType *tabP, UInt16 num);
#endif
|