summaryrefslogtreecommitdiff
path: root/assets/ui/tremulous_teamselect.menu
blob: 855e54155b889bf4b6935d8a54752eb945ca3810 (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
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
#include "ui/menudef.h"
{
#define W       999
#define H       210
menuDef
  {
    name "tremulous_teamselect"
    outOfBoundsClick
    rect 0 0 W H
    focusColor 1 1 1 1
	forecolor 0 0.8 1 1
    style WINDOW_STYLE_FILLED
    popup
    onOpen { uiScript LoadTeams; setFocus list }
	
    itemDef
    {
    name "window"
      rect -250 260 1280 120
      style WINDOW_STYLE_FILLED
      backcolor 0 0 0 .9
      visible 1
      decoration
    }
    itemDef
    {
      name "list"
      rect 205 280 80 100
      type ITEM_TYPE_LISTBOX
      style WINDOW_STYLE_EMPTY
      elementwidth 80
      elementheight 20
      textscale .42
      elementtype LISTBOX_TEXT
      feeder FEEDER_TREMTEAMS
      forecolor 0 0.8 1 1
      backcolor     0.2 0.2 0.2 1
	  outlinecolor  1 1 1 0.1
      visible 1
      doubleclick
      {
        play "sound/misc/menu1.wav";
        uiScript JoinTeam;
        close tremulous_teamselect
      }
    }
    itemDef
    {
      name infopane
      ownerdraw UI_TEAMINFOPANE
      textstyle ITEM_TEXTSTYLE_NORMAL
      style WINDOW_STYLE_EMPTY
      rect 365 285 250 100
      textscale .25
      textalign ALIGN_LEFT
      textvalign VALIGN_TOP
      forecolor 0 0.8 1 1
      visible 1
      decoration
    }
    itemDef
    {
      name "OKAY"
      text "OKAY"
      type ITEM_TYPE_BUTTON
      style WINDOW_STYLE_EMPTY
      rect 305 300 40 20
      textalign ALIGN_CENTER
      textvalign VALIGN_CENTER
      textscale .4
      forecolor 0 0.8 1 1
      backcolor .5 0 0 .25
      visible 1
      action
      {
        play "sound/misc/menu1.wav";
        uiScript JoinTeam;
        close tremulous_teamselect
      }
    }
    itemDef
    {
      name "Cancel"
      text "CANCEL"
      type ITEM_TYPE_BUTTON
      style WINDOW_STYLE_EMPTY
      rect 308 325 40 20
      textalign ALIGN_CENTER
      textvalign VALIGN_CENTER
      textscale .4
      forecolor 0 0.8 1 1
      backcolor .5 0 0 .25
      visible 1
      action
      {
        play "sound/misc/menu3.wav";
        close tremulous_teamselect
      }
    }
  }
}