diff options
author | /dev/humancontroller <devhc@example.com> | 2015-03-28 01:51:54 +0100 |
---|---|---|
committer | /dev/humancontroller <devhc@example.com> | 2017-01-26 07:16:58 +0100 |
commit | 1f9321552c2a5a609c6d2a2cb6ed41b90a37f684 (patch) | |
tree | 6cc572e86317dbdf5ceae734b71a584890172d6d /assets/ui/tremulous_teamselect.menu | |
parent | 8e5c2cef12baa5dfafa5bfa15b743e5f6de9893f (diff) |
remove most asset and configuration files from the source tree
Diffstat (limited to 'assets/ui/tremulous_teamselect.menu')
-rw-r--r-- | assets/ui/tremulous_teamselect.menu | 136 |
1 files changed, 0 insertions, 136 deletions
diff --git a/assets/ui/tremulous_teamselect.menu b/assets/ui/tremulous_teamselect.menu deleted file mode 100644 index 70512748..00000000 --- a/assets/ui/tremulous_teamselect.menu +++ /dev/null @@ -1,136 +0,0 @@ -#include "ui/menudef.h" - -{ - -#define W 450 -#define H 250 -#define BORDER 10 - -#define LIST_W 140 -#define LIST_H (H-(2*BORDER)) -#define LIST_X BORDER -#define LIST_Y BORDER - -#define BUTT_H 25 -#define BUTT_W 45 - -#define INFO_W (W-((3*BORDER)+LIST_W)) -#define INFO_H (H-((3*BORDER)+BUTT_H)) -#define INFO_X ((2*BORDER)+LIST_W) -#define INFO_Y BORDER -#define INFO_TOFF 6 - - menuDef - { - name "tremulous_teamselect" - visible MENU_FALSE - fullscreen MENU_FALSE - outOfBoundsClick - rect (320-(W/2)) (240-(H/2)) W H - focusColor 1 .75 0 1 - style WINDOW_STYLE_FILLED - popup - onOpen { uiScript LoadTeams; setFocus list } - - itemDef - { - name window - rect 0 0 W H - style WINDOW_STYLE_FILLED - backcolor 0 0 0 1 - visible MENU_TRUE - decoration - - border WINDOW_BORDER_FULL - borderSize 1.0 - borderColor 0.5 0.5 0.5 1 - } - - itemDef - { - name "list" - rect LIST_X LIST_Y LIST_W LIST_H - type ITEM_TYPE_LISTBOX - style WINDOW_STYLE_EMPTY - elementwidth 120 - elementheight 20 - textscale .33 - elementtype LISTBOX_TEXT - feeder FEEDER_TREMTEAMS - border WINDOW_BORDER_FULL - bordercolor 0.5 0.5 0.5 0.5 - forecolor 1 1 1 1 - backcolor 0.2 0.2 0.2 1 - outlinecolor 0.1 0.1 0.1 0.5 - visible MENU_TRUE - 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 INFO_X INFO_Y INFO_W INFO_H - textscale .33 - textalign ALIGN_LEFT - textvalign VALIGN_TOP - textalignx INFO_TOFF - textaligny INFO_TOFF - border WINDOW_BORDER_FULL - bordercolor 0.5 0.5 0.5 0.5 - forecolor 1 1 1 1 - backcolor 0.2 0.2 0.2 1 - outlinecolor 0.1 0.1 0.1 0.5 - visible MENU_TRUE - decoration - } - - itemDef - { - name "OKCancel" - text "OK" - type ITEM_TYPE_BUTTON - style WINDOW_STYLE_EMPTY - rect (W-((2*BORDER)+(2*BUTT_W))) (H-(BORDER+BUTT_H)) BUTT_W BUTT_H - textalign ALIGN_CENTER - textvalign VALIGN_CENTER - textscale .4 - forecolor 1 1 1 1 - backcolor .5 0 0 .25 - visible MENU_TRUE - action - { - play "sound/misc/menu1.wav"; - uiScript JoinTeam; - close tremulous_teamselect - } - } - - itemDef - { - name "OKCancel" - text "Cancel" - type ITEM_TYPE_BUTTON - style WINDOW_STYLE_EMPTY - rect (W-(BORDER+BUTT_W)) (H-(BORDER+BUTT_H)) BUTT_W BUTT_H - textalign ALIGN_CENTER - textvalign VALIGN_CENTER - textscale .4 - forecolor 1 1 1 1 - backcolor .5 0 0 .25 - visible MENU_TRUE - action - { - play "sound/misc/menu3.wav"; - close tremulous_teamselect - } - } - } -} |