]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/menu/item/tab.qc
Remove useless title attribute (and related attributes) from the tab class, the tab...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / item / tab.qc
1 #ifdef INTERFACE
2 CLASS(Tab) EXTENDS(Dialog)
3         ATTRIB(Tab, isTabRoot, float, 0)
4         ATTRIB(Tab, closable, float, 0)
5         ATTRIB(Tab, rootDialog, float, 0)
6
7         // still to be customized
8         ATTRIB(Tab, intendedWidth, float, 0)
9         ATTRIB(Tab, rows, float, 3)
10         ATTRIB(Tab, columns, float, 2)
11
12         ATTRIB(Tab, marginTop, float, 0) // pixels
13         ATTRIB(Tab, marginBottom, float, 0) // pixels
14         ATTRIB(Tab, marginLeft, float, 0) // pixels
15         ATTRIB(Tab, marginRight, float, 0) // pixels
16         ATTRIB(Tab, columnSpacing, float, 0) // pixels
17         ATTRIB(Tab, rowSpacing, float, 0) // pixels
18         ATTRIB(Tab, rowHeight, float, 0) // pixels
19
20         ATTRIB(Tab, backgroundImage, string, string_null)
21 ENDCLASS(Tab)
22 #endif
23
24 #ifdef IMPLEMENTATION
25 #endif