aboutsummaryrefslogtreecommitdiff
path: root/backends/PalmOS/Src/forms/formtabs.h
blob: 810903446340a6eaeb5ce14edaddcda4ccd7a5b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef __FORMTABS_H__
#define __FORMTABS_H__

typedef struct {
	FormPtr srcP;
	UInt16 first;
	UInt16 last;
} 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);
void 	 TabSetActive	(FormType *frmP, TabType *tabP, UInt16 num);

#endif