]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/menu/item/tab.qc
Merge remote-tracking branch 'origin/master' into terencehill/menu_remove_tab_title
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / item / tab.qc
1 #ifndef ITEM_TAB_H
2 #define ITEM_TAB_H
3 #include "dialog.qc"
4 CLASS(Tab, Dialog)
5         ATTRIB(Tab, isTabRoot, float, 0)
6         ATTRIB(Tab, closable, float, 0)
7         ATTRIB(Tab, rootDialog, float, 0)
8
9         // still to be customized
10         ATTRIB(Tab, intendedWidth, float, 0)
11         ATTRIB(Tab, rows, float, 3)
12         ATTRIB(Tab, columns, float, 2)
13
14         ATTRIB(Tab, marginTop, float, 0) // pixels
15         ATTRIB(Tab, marginBottom, float, 0) // pixels
16         ATTRIB(Tab, marginLeft, float, 0) // pixels
17         ATTRIB(Tab, marginRight, float, 0) // pixels
18         ATTRIB(Tab, columnSpacing, float, 0) // pixels
19         ATTRIB(Tab, rowSpacing, float, 0) // pixels
20         ATTRIB(Tab, rowHeight, float, 0) // pixels
21
22         ATTRIB(Tab, backgroundImage, string, string_null)
23 ENDCLASS(Tab)
24 #endif
25
26 #ifdef IMPLEMENTATION
27 #endif