diff options
| author | Tim Angus <tim@ngus.net> | 2009-10-03 12:45:33 +0000 | 
|---|---|---|
| committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:16:13 +0000 | 
| commit | 947d079b94b7cfb2cf42d612ede728c34552d373 (patch) | |
| tree | ead3843ec6fdf437ca2e2837e613236135f8e426 /assets/ui/say.menu | |
| parent | 6abb3c81bbf7eee17dbc2662beda49bfd1353f6f (diff) | |
* Move all non-source-code to assets directory
Diffstat (limited to 'assets/ui/say.menu')
| -rw-r--r-- | assets/ui/say.menu | 87 | 
1 files changed, 87 insertions, 0 deletions
diff --git a/assets/ui/say.menu b/assets/ui/say.menu new file mode 100644 index 00000000..7b804b45 --- /dev/null +++ b/assets/ui/say.menu @@ -0,0 +1,87 @@ +#include "ui/menudef.h" + +{ + +#define BORDER    10 + +#define X         BORDER +#define Y         200 +#define W         (600-(2*BORDER)) +#define H         40 + +  // Say to All +  menuDef +  { +    name say +    fullScreen MENU_FALSE +    visible MENU_FALSE +    rect X Y W H +    aspectBias ALIGN_LEFT +    focusColor 1 1 1 1 +    style WINDOW_STYLE_EMPTY +    onOpen +    { +      setfocus say_field; +    } + +    itemDef +    { +      name say_field +      type ITEM_TYPE_EDITFIELD +      style WINDOW_STYLE_EMPTY +      text "Say:" +      cvar "ui_sayBuffer" +      maxchars 128 +      rect 0 0 W H +      textalign ALIGN_LEFT +      textvalign VALIGN_CENTER +      textstyle ITEM_TEXTSTYLE_SHADOWED +      textscale .4 +      forecolor 0.93 0.93 0.92 1 +      visible MENU_TRUE +      onTextEntry +      { +        uiScript Say; +        close say; +      } +    } +  } + +  // Say to Team +  menuDef +  { +    name say_team +    fullScreen MENU_FALSE +    visible MENU_FALSE +    rect X Y W H +    aspectBias ALIGN_LEFT +    focusColor 1 1 1 1 +    style WINDOW_STYLE_EMPTY +    onOpen +    { +      setfocus say_field +    } + +    itemDef +    { +      name say_field +      type ITEM_TYPE_EDITFIELD +      style WINDOW_STYLE_EMPTY +      text "Say to team:" +      cvar "ui_sayBuffer" +      maxchars 128 +      rect 0 0 W H +      textalign ALIGN_LEFT +      textvalign VALIGN_CENTER +      textstyle ITEM_TEXTSTYLE_SHADOWED +      textscale .4 +      forecolor 0.93 0.93 0.92 1 +      visible MENU_TRUE +      onTextEntry +      { +        uiScript Say; +        close say_team; +      } +    } +  } +}  | 
