1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
Grid {
name = TitleGrid;
x = 0;
y = 0;
width = 300;
height = 270;
cellSpacing = 3;
rows = 5;
cols = 4;
valign = 1;
halign = 1;
};
Widget {
grid = TitleGrid;
widgetType = BUTTON;
name = New;
label = New Game;
groupName = titleWidgets;
enabled = 1;
visible = 0;
x = 1;
y = 0;
colSpan = 2;
valign = 1;
backgroundColor = 0 100 0;
};
Widget {
grid = TitleGrid;
widgetType = BUTTON;
name = Training;
label = Training;
groupName = titleWidgets;
enabled = 1;
visible = 0;
x = 1;
y = 1;
colSpan = 2;
valign = 1;
backgroundColor = 0 50 100;
};
Widget {
grid = TitleGrid;
widgetType = BUTTON;
name = Load;
label = Load Game;
groupName = titleWidgets;
enabled = 1;
visible = 0;
x = 1;
y = 2;
colSpan = 2;
valign = 1;
backgroundColor = 0 50 100;
};
Widget {
grid = TitleGrid;
widgetType = BUTTON;
name = Options;
label = Options;
groupName = titleWidgets;
enabled = 1;
visible = 0;
x = 1;
y = 3;
colSpan = 2;
valign = 1;
backgroundColor = 0 50 100;
};
Widget {
grid = TitleGrid;
widgetType = BUTTON;
name = Quit;
label = Quit;
groupName = titleWidgets;
enabled = 1;
visible = 0;
x = 1;
y = 4;
colSpan = 2;
valign = 1;
backgroundColor = 150 0 0;
};
@END@
|