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 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
|
/*
===========================================================================
Copyright (C) 2007 Open Arena Team
This file is part of Open Arena.
Open Arena is free software; you can redistribute it
and/or modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the License,
or (at your option) any later version.
Open Arena is distributed in the hope that it will be
useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Open Arena; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
===========================================================================
*/
#include "ui/menudef.h"
{
menuDef {
name createfavorite
visible 0
fullscreen 0
rect 240 140 200 200
outOfBoundsClick
focuscolor MP_FOCUSCOLOR
onEsc {
close createfavorite;
open joinserver
}
itemDef {
name sopeoplecanreadit
rect 0 0 200 200
style WINDOW_STYLE_FILLED
border 1
bordercolor MP_BOX_BORDER
forecolor MP_BOX_FORE
backcolor MP_BOX_BACK
outlinecolor MP_BOX_OUTLINE
decoration
visible 1
}
itemDef {
name servername
text "Name"
type 0
decoration
textscale .2
rect 100 32 59 10
textalign 1
textaligny 10
forecolor MP_TEXTCOLOR
visible 1
}
itemDef {
name snameenter
text ""
maxchars 15
textscale .2
type 4
cvar "ui_favoritename"
rect 40 51 120 15
textalign 0
textaligny 10
visible 1
border 1
bordercolor MP_BOX_BORDER
forecolor 1 1 1 1
backcolor MP_BOX_BACK
outlinecolor MP_BOX_OUTLINE
mouseenter {
setitemcolor snameenter forecolor MP_FOCUSCOLOR
}
mouseexit {
setitemcolor snameenter forecolor 1 1 1 1
}
}
itemDef {
name addy
text "IP Address"
style 0
decoration
textscale .2
type 0
rect 100 82 70 20
textalign 1
textaligny 10
forecolor MP_TEXTCOLOR
visible 1
}
itemDef {
name adentry
text ""
maxchars 21
textscale .2
type 4
cvar "ui_favoriteAddress"
rect 40 111 120 15
textalign 0
textaligny 10
visible 1
border 1
bordercolor MP_BOX_BORDER
forecolor 1 1 1 1
backcolor MP_BOX_BACK
outlinecolor MP_BOX_OUTLINE
mouseenter {
setitemcolor adentry forecolor MP_FOCUSCOLOR
}
mouseexit {
setitemcolor adentry forecolor 1 1 1 1
}
}
itemDef {
name aaight
text "Add"
type 1
textscale .2
style ITEM_TYPE_BUTTON
rect 160 168 30 10
textalign 0
textaligny 10
forecolor MP_TEXTCOLOR
visible 1
action {
uiScript CreateFavorite;
close createfavorite;
open joinserver
}
}
itemDef {
name hellno
text "Back"
type 1
textscale .2
style ITEM_TYPE_BUTTON
rect 20 168 30 10
textalign 0
textaligny 10
forecolor MP_TEXTCOLOR
visible 1
action {
close createfavorite;
open joinserver
}
}
}
}
|