Add infos into target window
[ryzomcore.git] / ryzom / client / data / gamedev / interfaces_v3 / game_config.xml
blob184d6bf0d7f81dc5ece27fa7c1193ac431306bd2
1 <interface_config>
2   <root id="interface"
3         x="0"
4         y="0"
5         w="800"
6         h="600"
7         active="true" />
8   <lua file="game_config.lua" />
9   <!-- ******************** -->
10   <!-- * UI COLOR & ALPHA * -->
11   <!-- ******************** -->
12   <!-- ********* -->
13   <!-- Templates -->
14   <!-- ********* -->
15   <!-- all container must be initialized with those templates to use data exchange -->
16   <style style="sgc_title"
17          type="text"
18          color="255 255 255 255"
19          fontsize="14"
20          shadow="true"
21          case_mode="%case_normal" />
22   <style style="sgc_title2"
23          type="text"
24          color="255 255 255 192"
25          fontsize="12"
26          shadow="true" />
27   <!-- WIDGET TO CHOOSE A COLOR -->
28   <!-- the modal window (with the color picker) -->
29   <group type="modal"
30          id="define_mcw_color"
31          exit_click_out="true"
32          posref="TR TR"
33          w="276"
34          h="110"
35          global_color="false"
36          options="skin_modal"
37          on_enter="lua"
38          on_enter_params="game:mcwValidateColor()">
39     <view type="text"
40           id="text"
41           posref="TL TL"
42           x="4"
43           y="-4"
44           color="255 255 255 255"
45           fontsize="12"
46           shadow="true"
47           global_color="false"
48           hardtext="uiDefmcwCol" />
49     <view type="bitmap"
50           id="pick_back"
51           posref="MM MM"
52           x="0"
53           y="0"
54           scale="true"
55           color="0 0 0 255"
56           w="260"
57           h="68"
58           texture="blank.tga" />
59     <ctrl type="colpick"
60           id="pick"
61           posref="MM MM"
62           x="0"
63           y="0"
64           texture="color_palette.tga"
65           onchange="lua"
66           onchange_params="game:mcwOnColorChanged()" />
67     <ctrl type="colpick"
68           id="pick2"
69           posref="MM MM"
70           x="0"
71           y="0"
72           texture="color_palette2.tga"
73           onchange="lua"
74           onchange_params="game:mcwOnColorChanged()" />
75     <instance template="button_ok_cancel"
76               posref="BR BR"
77               x="-4"
78               y="4"
79               ok_text="uittGCValid"
80               cancel_text="uittGCCancel"
81               onclick_ok="lua"
82               onclick_ok_param="game:mcwValidateColor()"
83               onclick_cancel="leave_modal"
84               onclick_cancel_param="" />
85   </group>
86   <!-- the 2 templates (one for each palette type) -->
87   <template name="tgcw_color"
88             id="color_chooser"
89             posref="TL TL"
90             x="0"
91             y="0"
92             posparent="parent">
93     <group id="#id"
94            posref="#posref"
95            x="#x"
96            y="#y"
97            posparent="#posparent"
98            child_resize_w="true"
99            h="14">
100       <ctrl type="button"
101             id="c"
102             button_type="push_button"
103             posref="TL TL"
104             x="0"
105             y="0"
106             global_color_normal="false"
107             tx_normal="W_affected.tga"
108             tx_pushed="W_affected.tga"
109             tx_over="W_button_14_over.tga"
110             global_color_over="false"
111             onclick_l="lua"
112             params_l="game:mcwChooseColor('#title',0)"
113             tooltip="#tooltip"
114             global_color_pushed="false" />
115       <view type="text"
116             id="text"
117             posparent="c"
118             posref="MR ML"
119             x="4"
120             y="-1"
121             color="255 255 255 192"
122             fontsize="10"
123             shadow="true"
124             hardtext="#text" />
125     </group>
126   </template>
127   <template name="tgcw_color2"
128             id="color_chooser"
129             posref="TL TL"
130             x="0"
131             y="0"
132             posparent="parent">
133     <group id="#id"
134            posref="#posref"
135            x="#x"
136            y="#y"
137            posparent="#posparent"
138            child_resize_w="true"
139            h="14">
140       <ctrl type="button"
141             id="c"
142             button_type="push_button"
143             posref="TL TL"
144             x="0"
145             y="0"
146             global_color_normal="false"
147             tx_normal="W_affected.tga"
148             tx_pushed="W_affected.tga"
149             tx_over="W_button_14_over.tga"
150             global_color_over="false"
151             onclick_l="lua"
152             params_l="game:mcwChooseColor('#title',1)"
153             tooltip="#tooltip"
154             global_color_pushed="false" />
155       <view type="text"
156             id="text"
157             posparent="c"
158             posref="MR ML"
159             x="4"
160             y="-1"
161             color="255 255 255 192"
162             fontsize="10"
163             shadow="true"
164             hardtext="#text" />
165     </group>
166   </template>
167   <!-- WIDGET TO CHOOSE AN INTEGER FROM A SCROLL BAR -->
168   <template name="tgcw_scrollbarint"
169             id="color_chooser"
170             posref="TL TL"
171             x="0"
172             y="0"
173             posparent="parent">
174     <group id="#id"
175            posref="#posref"
176            x="#x"
177            y="#y"
178            posparent="#posparent"
179            child_resize_w="true"
180            h="20">
181       <view type="bitmap"
182             id="bk"
183             posref="BL BL"
184             scale="true"
185             y="4"
186             w="130"
187             h="2"
188             texture="W_line_hor2.tga" />
189       <view type="text"
190             id="text"
191             posparent="bk"
192             posref="TL BL"
193             x="0"
194             y="1"
195             color="255 255 255 192"
196             fontsize="10"
197             shadow="true"
198             hardtext="#text" />
199       <ctrl type="scroll"
200             id="c"
201             posparent="bk"
202             posref="MM MM"
203             x="0"
204             y="-1"
205             w="130"
206             h="8"
207             vertical="false"
208             align="L"
209             min="0"
210             max="255"
211             tracksize="8"
212             tx_topright="w_scroll_R.tga"
213             tx_middle="w_scroll_l123_m.tga"
214             tx_bottomleft="w_scroll_L.tga"
215             onscroll="ddx_scroll"
216             onscrollend="ddx_scroll_end"
217             params="ui:interface:game_config:content:all" />
218       <!-- The Scroll Result view-->
219       <view type="text"
220             id="c_res"
221             posparent="bk"
222             posref="MR ML"
223             x="8"
224             y="1"
225             color="255 255 255 192"
226             fontsize="10"
227             shadow="true" />
228     </group>
229   </template>
230   <!-- WIDGET TO CHOOSE A FLOAT FROM A SCROLL BAR -->
231   <template name="tgcw_scrollbarfloat"
232             id="color_chooser"
233             posref="TL TL"
234             x="0"
235             y="0"
236             posparent="parent">
237     <group id="#id"
238            posref="#posref"
239            x="#x"
240            y="#y"
241            posparent="#posparent"
242            child_resize_w="true"
243            h="20">
244       <view type="bitmap"
245             id="bk"
246             posref="BL BL"
247             scale="true"
248             y="4"
249             w="130"
250             h="2"
251             texture="W_line_hor2.tga" />
252       <view type="text"
253             id="text"
254             posparent="bk"
255             posref="TL BL"
256             x="0"
257             y="1"
258             color="255 255 255 192"
259             fontsize="10"
260             shadow="true"
261             hardtext="#text" />
262       <ctrl type="scroll"
263             id="c"
264             posparent="bk"
265             posref="MM MM"
266             x="0"
267             y="-1"
268             w="130"
269             h="8"
270             vertical="false"
271             align="L"
272             min="0"
273             max="255"
274             tracksize="8"
275             tx_topright="w_scroll_R.tga"
276             tx_middle="w_scroll_l123_m.tga"
277             tx_bottomleft="w_scroll_L.tga"
278             onscroll="ddx_scroll"
279             onscrollend="ddx_scroll_end"
280             params="ui:interface:game_config:content:all" />
281       <!-- The Scroll Result view-->
282       <view type="text"
283             id="c_res"
284             posparent="bk"
285             posref="MR ML"
286             x="8"
287             y="1"
288             color="255 255 255 192"
289             fontsize="10"
290             shadow="true" />
291     </group>
292   </template>
293   <!-- WIDGET TO CHOOSE A BOOLEAN FROM A CHECK BOX -->
294   <template name="tgcw_checkbox"
295             id="color_chooser"
296             posref="TL TL"
297             x="0"
298             y="0"
299             posparent="parent"
300             tooltip="">
301     <group id="#id"
302            posref="#posref"
303            x="#x"
304            y="#y"
305            posparent="#posparent"
306            child_resize_w="true"
307            h="14">
308       <ctrl type="button"
309             id="c"
310             button_type="toggle_button"
311             posref="TL TL"
312             x="0"
313             y="0"
314             tx_normal="w_slot_on.tga"
315             tx_pushed="w_opacity_on.tga"
316             tx_over="w_slot_on.tga"
317             color="255 255 255 255"
318             col_pushed="255 255 255 255"
319             col_over="255 255 255 0"
320             onclick_l="ddx_bool_button"
321             tooltip="#tooltip" />
322       <view type="text"
323             id="text"
324             posparent="c"
325             posref="MR ML"
326             x="4"
327             y="-1"
328             color="255 255 255 192"
329             fontsize="12"
330             shadow="true"
331             hardtext="#text" />
332     </group>
333   </template>
334   <template name="tgcw_checkbox2"
335             id="color_chooser"
336             posref="TL TL"
337             x="0"
338             y="0"
339             posparent="parent">
340     <group id="#id"
341            posref="#posref"
342            x="#x"
343            y="#y"
344            posparent="#posparent"
345            child_resize_w="true"
346            h="14">
347       <ctrl type="button"
348             id="c"
349             button_type="toggle_button"
350             posref="TL TL"
351             x="0"
352             y="0"
353             tx_normal="w_slot_on.tga"
354             tx_pushed="w_opacity_on.tga"
355             tx_over="w_slot_on.tga"
356             color="255 255 255 255"
357             col_pushed="255 255 255 255"
358             col_over="255 255 255 0"
359             onclick_l="ddx_bool_button" />
360       <view type="text"
361             id="text"
362             posparent="c"
363             posref="MR ML"
364             x="4"
365             y="-2"
366             color="255 255 255 192"
367             fontsize="10"
368             shadow="true"
369             hardtext="#text" />
370     </group>
371   </template>
372   <!-- WIDGET TO CHOOSE A DEFAULT SETUP -->
373   <template name="tgcw_combo_default"
374             id="combo_default"
375             posparent="parent"
376             posref="TL TL"
377             x="0"
378             y="-18"
379             value="">
380     <group id="#id"
381            w="184"
382            h="20"
383            posparent="#posparent"
384            posref="#posref"
385            x="#x"
386            y="#y">
387       <view type="text"
388             id="text"
389             posparent="#posparent"
390             posref="ML ML"
391             x="0"
392             y="-2"
393             color="255 255 255 192"
394             fontsize="12"
395             shadow="true"
396             hardtext="uigcPreSet" />
397       <group type="combo_box"
398              id="combo"
399              posref="MR MR"
400              x="0"
401              y="0"
402              w="120"
403              h="20"
404              value="#value">
405         <instance template="combo_box_def1" />
406         <combo_text name="uigcPreSetLow" />
407         <combo_text name="uigcPreSetMedium" />
408         <combo_text name="uigcPreSetNormal" />
409         <combo_text name="uigcPreSetHigh" />
410         <combo_text name="uigcPreSetCustom" />
411       </group>
412     </group>
413   </template>
414   <!-- ************** -->
415   <!-- Main container -->
416   <!-- ************** -->
417   <variable entry="UI:TEMP:VID_MODE"
418             type="sint32"
419             value="-1" />
420   <variable entry="UI:TEMP:VID_FREQ"
421             type="sint32"
422             value="-1" />
423   <variable entry="UI:TEMP:PRESET_LAND"
424             type="sint32"
425             value="0" />
426   <variable entry="UI:TEMP:PRESET_CHAR"
427             type="sint32"
428             value="0" />
429   <variable entry="UI:TEMP:PRESET_FX"
430             type="sint32"
431             value="0" />
432   <variable entry="UI:TEMP:ANISOTROPIC"
433             type="sint32"
434             value="0" />
435   <variable entry="UI:TEMP:VR_DEVICE"
436             type="sint32"
437             value="0" />
438   <variable entry="UI:TEMP:TEXTURE_MODE"
439             type="sint32"
440             value="0" />
441   <variable entry="UI:TEMP:LANGUAGE"
442             type="sint32"
443             value="0" />
444   <variable entry="UI:TEMP:SCREEN_RATIO_MODE"
445             type="sint32"
446             value="0" />
447   <define id="game_config_screen_ratio_eb"
448           value="ui:interface:game_config:content:general:screen_ratio:edit:eb" />
449   <define id="game_config_screen_ratio_cb"
450           value="ui:interface:game_config:content:general:screen_ratio:combo" />
451   <define id="game_config_save_channel_cb"
452           value="ui:interface:game_config:content:chat_colors:save_channel_cb:c" />
453   <define id="game_config_auto_channel_cb"
454           value="ui:interface:game_config:content:chat_colors:auto_channel_cb:c" />
455   <proc id="game_config_init">
456     <action handler="set"
457             params="dblink=UI:VARIABLES:ISACTIVE:GAME_CONFIG|value=1" />
458     <action handler="ddx_init"
459             params="ui:interface:game_config:content:all" />
460     <action handler="tree_reset"
461             params="ui:interface:game_config:content:sbtree:tree_list" />
462     <action handler="lua"
463             params="game:configShowOne('explanation')" />
464     <action handler="lua"
465             params="game:configInit()" />
466   </proc>
467   <proc id="game_config_uninit">
468     <!-- Yoyo: on close window, same than cancel! -->
469     <action handler="ddx_cancel"
470             params="ui:interface:game_config:content:all" />
471     <action handler="game_config_cancel"
472             params="" />
473     <action handler="set"
474             params="dblink=UI:VARIABLES:ISACTIVE:GAME_CONFIG|value=0" />
475   </proc>
476   <proc id="game_config_ok">
477     <action handler="proc"
478             params="game_config_apply" />
479     <action handler="set"
480             params="target_property=ui:interface:game_config:active|value=0" />
481   </proc>
482   <proc id="game_config_apply">
483     <action handler="game_config_change_screen_ratio_custom"
484             params="" />
485     <action handler="ddx_update"
486             params="ui:interface:game_config:content:all" />
487     <action handler="game_config_apply"
488             params="" />
489   </proc>
490   <proc id="game_config_cancel">
491     <action handler="ddx_cancel"
492             params="ui:interface:game_config:content:all" />
493     <action handler="game_config_cancel"
494             params="" />
495     <action handler="set"
496             params="target_property=ui:interface:game_config:active|value=0" />
497   </proc>
498   <group type="container"
499          id="game_config"
500          w="432"
501          h="400"
502          title="uiGlobalSettingsTitle"
503          global_color="false"
504          line_at_bottom="false"
505          movable="true"
506          active="false"
507          opened="true"
508          openable="false"
509          resizer="true"
510          header_color="UI:SAVE:WIN:COLORS:OPT"
511          on_active="proc"
512          on_active_params="game_config_init"
513          on_deactive="proc"
514          on_deactive_params="game_config_uninit"
515          pop_min_w="430"
516          pop_min_h="240"
517          pop_max_w="800"
518          pop_max_h="600">
519     <group id="header_closed"
520            x="0"
521            y="0"
522            child_resize_w="true"
523            h="16"
524            posref="TL TL"
525            group_onclick_r="active_menu"
526            group_params_r="menu=ui:interface:base_menu_with_color">
527            </group>
528     <group id="header_opened"
529            x="0"
530            y="0"
531            w="430"
532            h="16"
533            posref="TL TL"
534            group_onclick_r="active_menu"
535            group_params_r="menu=ui:interface:base_menu_with_color">
536                 <view type="text_number" id="fps" posref="MR MR" x="-20" y="-2" color="255 255 255 255" shadow="true" fontsize="10" value="UI:VARIABLES:FPS" global_color="false" positive="true"/>
537                 <view type="text" id="fpstext" posref="MR MR" x="-40" y="-2" color="255 255 255 255" shadow="true" fontsize="10" global_color="false" positive="true" hardtext="uiFPS" />
538     </group>
539     <group id="content"
540            x="0"
541            y="0"
542            sizeref="wh"
543            w="0"
544            h="0"
545            posref="TL TL">
546       <group id="sbtree"
547              posref="TL TL"
548              sizeref="w3h"
549              x="0"
550              w="-14"
551              y="-4"
552              h="-4">
553         <group id="tree_list"
554                type="tree"
555                posref="TL TL"
556                x="14"
557                y="0"
558                col_over="255 255 255 48"
559                col_select="255 255 255 80"
560                max_sizeparent="parent"
561                max_sizeref="wh"
562                max_w="-10"
563                max_h="0">
564           <node id="language"
565                 name="uigcLanguage"
566                 handler="lua"
567                 params="game:configShowOne('language')"
568                 fontsize="11"
569                 y_decal="-1" />
570           <node id="inter"
571                 name="uigcInterface"
572                 handler=""
573                 params=""
574                 fontsize="11"
575                 y_decal="-1">
576             <node id="hud"
577                   name="uigcHUD"
578                   handler="lua"
579                   params="game:configShowOne('hud')"
580                   fontsize="10"
581                   y_decal="-1" />
582             <node id="aco"
583                   name="uigcAlphaColor"
584                   handler="lua"
585                   params="game:configShowOne('alpha_colors')"
586                   fontsize="10"
587                   y_decal="-1" />
588             <node id="winco"
589                   name="uigcWinColor"
590                   handler="lua"
591                   params="game:configShowOne('win_colors')"
592                   fontsize="10"
593                   y_decal="-1" />
594             <node id="winco_r2"
595                   name="uigcWinColorR2"
596                   handler="lua"
597                   params="game:configShowOne('win_colors_r2')"
598                   fontsize="10"
599                   y_decal="-1" />
600             <node id="chatco"
601                   name="uigcChatColor"
602                   handler="lua"
603                   params="game:configShowOne('chat_colors')"
604                   fontsize="10"
605                   y_decal="-1" />
606             <node id="entityco"
607                   name="uigcEntityColor"
608                   handler="lua"
609                   params="game:configShowOne('entity_colors')"
610                   fontsize="10"
611                   y_decal="-1" />
612             <node id="in_scene"
613                   name="uigcInSceneInterface"
614                   handler=""
615                   params=""
616                   fontsize="11"
617                   y_decal="-1">
618               <node id="in_scene_user"
619                     name="uigcInSceneInterfaceUser"
620                     handler="lua"
621                     params="game:configShowOne('in_scene_user')"
622                     fontsize="10"
623                     y_decal="-1" />
624               <node id="in_scene_friend"
625                     name="uigcInSceneInterfaceFriend"
626                     handler="lua"
627                     params="game:configShowOne('in_scene_friend')"
628                     fontsize="10"
629                     y_decal="-1" />
630               <node id="in_scene_enemy"
631                     name="uigcInSceneInterfaceEnemy"
632                     handler="lua"
633                     params="game:configShowOne('in_scene_enemy')"
634                     fontsize="10"
635                     y_decal="-1" />
636               <node id="in_scene_chat_messages"
637                     name="uigcInSceneChatMessages"
638                     handler="lua"
639                     params="game:configShowOne('in_scene_chat_messages')"
640                     fontsize="10"
641                     y_decal="-1" />
642             </node>
643             <node id="landmarkco"
644                   name="uigcLandmarkColor"
645                   handler="lua"
646                   params="game:configShowOne('landmark_colors')"
647                   fontsize="10"
648                   y_decal="-1" />                               
649             <node id="help"
650                   name="uimHelp"
651                   handler="lua"
652                   params="game:configShowOne('help')"
653                   fontsize="10"
654                   y_decal="-1" />
655           </node>
656           <node id="input"
657                 name="uigcInput"
658                 handler=""
659                 params=""
660                 fontsize="11"
661                 y_decal="-1">
662             <node id="mou"
663                   name="uigcMouse"
664                   handler="lua"
665                   params="game:configShowOne('mouse')"
666                   fontsize="10"
667                   y_decal="-1" />
668             <node id="key"
669                   name="uigcKeyboard"
670                   handler="lua"
671                   params="game:configShowOne('keyb')"
672                   fontsize="10"
673                   y_decal="-1" />
674           </node>
675           <node id="graph"
676                 name="uigcGraph"
677                 handler=""
678                 params=""
679                 fontsize="11"
680                 y_decal="-1">
681             <node id="gen"
682                   name="uigcGeneral"
683                   handler="lua"
684                   params="game:configShowOne('general')"
685                   fontsize="10"
686                   y_decal="-1" />
687             <node id="lan"
688                   name="uigcLandscape"
689                   handler="lua"
690                   params="game:configShowOne('landscape')"
691                   fontsize="10"
692                   y_decal="-1" />
693             <node id="cha"
694                   name="uigcCharacter"
695                   handler="lua"
696                   params="game:configShowOne('char')"
697                   fontsize="10"
698                   y_decal="-1" />
699             <node id="fxs"
700                   name="uigcSpecialFX"
701                   handler="lua"
702                   params="game:configShowOne('fx')"
703                   fontsize="10"
704                   y_decal="-1" />
705             <node id="vr"
706                   name="uigcVR"
707                   handler="lua"
708                   params="game:configShowOne('vr')"
709                   fontsize="10"
710                   y_decal="-1" />
711           </node>
712           <node id="sound"
713                 name="uigcSound"
714                 handler="lua"
715                 params="game:configShowOne('sound')"
716                 fontsize="11"
717                 y_decal="-1" />
718         </group>
719         <ctrl style="skin_scroll"
720               id="scroll_bar"
721               align="T"
722               target="tree_list" />
723       </group>
724       <!-- ok, apply, cancel -->
725       <ctrl style="text_button_16"
726             id="cancel"
727             posref="BR BR"
728             y="1"
729             wmargin="8"
730             hardtext="uiGCCancel"
731             color="255 255 255 255"
732             col_over="255 255 255 255"
733             col_pushed="255 255 255 255"
734             onclick_l="proc"
735             params_l="game_config_cancel" />
736       <ctrl style="text_button_16"
737             id="apply"
738             posparent="cancel"
739             posref="TL TR"
740             x="-4"
741             wmargin="8"
742             hardtext="uiGCApply"
743             color="255 255 255 255"
744             col_over="255 255 255 255"
745             col_pushed="255 255 255 255"
746             onclick_l="proc"
747             params_l="game_config_apply"
748             frozen="true" />
749       <ctrl style="text_button_16"
750             id="ok"
751             posparent="apply"
752             posref="TL TR"
753             x="-4"
754             wmargin="8"
755             hardtext="uiGCOk"
756             color="255 255 255 255"
757             col_over="255 255 255 255"
758             col_pushed="255 255 255 255"
759             onclick_l="proc"
760             params_l="game_config_ok" />
761       <!-- Tabs -->
762       <!-- *** -->
763       <group id="graph"
764              posref="TR TR"
765              x="0"
766              y="-4"
767              sizeref="w7h"
768              w="-4"
769              h="-24">
770         <instance template="box_widget"
771                   id="back"
772                   sizeref="wh"
773                   w="0"
774                   h="0" />
775       </group>
776       <group id="crop"
777              posparent="graph"
778              posref="MM MM"
779              x="0"
780              y="0"
781              sizeref="wh"
782              w="-4"
783              h="-12" />
784       <!-- Explanation -->
785       <group id="explanation"
786              posparent="crop"
787              posref="TM TM"
788              x="0"
789              y="-8"
790              sizeref="w"
791              child_resize_h="true"
792              child_resize_hmargin="4"
793              w="-4"
794              max_sizeparent="crop"
795              max_sizeref="h"
796              max_h="-4">
797         <group type="scroll_text"
798                id="explanation_txt"
799                sizeref="w"
800                child_resize_h="true"
801                child_resize_wmargin="16"
802                child_resize_hmargin="16"
803                posref="TL TL"
804                x="0"
805                y="0"
806                min_height="160"
807                max_height="160">
808           <group type="list"
809                  id="text_list"
810                  hardtext="uiCongifExplanation"
811                  shadow="true"
812                  fontsize="10"
813                  justification="justified"
814                  color="255 255 255 160"
815                  space="3"
816                  global_color="true"
817                  posref="TL TL"
818                  x="8"
819                  y="-8"
820                  sizeref="hw"
821                  w="-16"
822                  h="-16" />
823         </group>
824       </group>
825       <ctrl style="skin_scroll"
826             id="sb_explanation"
827             align="T"
828             target="explanation"
829             posparent="crop"
830             posref="TL TR"
831             x="-8"
832             y="0" />
833       <!-- *** -->
834       <group id="general"
835              active="false"
836              posparent="crop"
837              posref="TM TM"
838              x="0"
839              y="-8"
840              sizeref="w"
841              child_resize_h="true"
842              child_resize_hmargin="4"
843              w="-4"
844              max_sizeparent="crop"
845              max_sizeref="h"
846              max_h="-4">
847         <!-- Color -->
848         <view style="sgc_title"
849               type="text"
850               id="gcol"
851               posref="TM TM"
852               x="0"
853               y="0"
854               hardtext="uiGeneralColor" />
855         <view style="sgc_title2"
856               type="text"
857               id="screen"
858               posref="TL TL"
859               x="0"
860               y="-20"
861               hardtext="uiScreen" />
862         <instance template="tgcw_scrollbarfloat"
863                   id="con"
864                   text="uiContrast"
865                   posref="BL TL"
866                   posparent="screen"
867                   x="20"
868                   y="-2" />
869         <instance template="tgcw_scrollbarfloat"
870                   id="lum"
871                   text="uiLuminosity"
872                   posref="BL TL"
873                   posparent="con"
874                   x="0"
875                   y="-2" />
876         <instance template="tgcw_scrollbarfloat"
877                   id="gam"
878                   text="uiGamma"
879                   posref="BL TL"
880                   posparent="lum"
881                   x="0"
882                   y="-2" />
883         <!-- interface scale -->
884         <instance template="tgcw_checkbox"
885                   id="scale_auto"
886                   text="uiInterfaceScaleAuto"
887                   posref="BL TL"
888                   posparent="gam"
889                   x="-20"
890                   y="-28" />
891         <instance template="tgcw_scrollbarfloat"
892                   id="scale"
893                   text="uiInterfaceScale"
894                   posref="BL TL"
895                   posparent="scale_auto"
896                   x="20"
897                   y="-2" />
898         <!-- window snap -->
899         <view style="sgc_title2"
900               type="text"
901               id="title_win_snap"
902               posref="BL TL"
903               x="-20"
904               y="-28"
905               hardtext="uiWindowSnap"
906               posparent="scale" />
907         <instance template="tgcw_scrollbarint"
908                   id="window_snap_distance"
909                   text="uiWindowSnapDistance"
910                   posref="BL TL"
911                   posparent="title_win_snap"
912                   x="20"
913                   y="-2" />
914         <instance template="tgcw_checkbox"
915                   id="window_snap_invert"
916                   text="uiWindowSnapInvert"
917                   posparent="window_snap_distance"
918                   posref="BL TL"
919                   x="0"
920                   y="-2" />
921         <!-- wait vbl -->
922         <instance template="tgcw_checkbox"
923                   id="waitvbl"
924                   text="uiWaitVBL"
925                   posparent="window_snap_invert"
926                   posref="BL TL"
927                   x="-20"
928                   y="-28" />
929         <!-- Special case for video modes -->
930         <group id="fullscreen"
931                posref="TR TR"
932                x="-16"
933                y="-30"
934                child_resize_w="true"
935                h="14">
936           <ctrl type="button"
937                 id="c"
938                 button_type="toggle_button"
939                 posref="TL TL"
940                 x="0"
941                 y="0"
942                 tx_normal="w_slot_on.tga"
943                 tx_pushed="w_opacity_on.tga"
944                 tx_over="w_slot_on.tga"
945                 color="255 255 255 255"
946                 col_pushed="255 255 255 255"
947                 col_over="255 255 255 0"
948                 onclick_l="game_config_change_vid_fullscreen"
949                 params_l="" />
950           <view type="text"
951                 id="text"
952                 posparent="c"
953                 posref="MR ML"
954                 x="4"
955                 y="-2"
956                 color="255 255 255 192"
957                 fontsize="12"
958                 shadow="true"
959                 hardtext="uiFullscreen" />
960         </group>
961         <group type="combo_box"
962                id="video_modes"
963                w="100"
964                h="20"
965                value="UI:TEMP:VID_MODE"
966                posparent="fullscreen"
967                posref="BL TL"
968                x="0"
969                y="-4">
970           <instance template="combo_box_def1" />
971         </group>
972         <link expr="@UI:TEMP:VID_MODE"
973               action="game_config_change_vid_mode" />
974         <group type="combo_box"
975                id="video_freqs"
976                w="60"
977                h="20"
978                value="UI:TEMP:VID_FREQ"
979                posparent="video_modes"
980                posref="BL TL"
981                x="0"
982                y="-4">
983           <instance template="combo_box_def1" />
984         </group>
985         <link expr="@UI:TEMP:VID_FREQ"
986               action="game_config_change_vid_freq" />
987         <!-- Special case for texture modes -->
988         <group id="texture_mode"
989                posparent="waitvbl"
990                posref="BL TL"
991                x="0"
992                y="-12"
993                w="240"
994                h="20">
995           <view type="text"
996                 id="text"
997                 posref="ML ML"
998                 x="0"
999                 y="0"
1000                 color="255 255 255 192"
1001                 fontsize="12"
1002                 shadow="true"
1003                 hardtext="uigcTextureMode" />
1004           <group type="combo_box"
1005                  id="combo"
1006                  w="140"
1007                  h="20"
1008                  value="UI:TEMP:TEXTURE_MODE"
1009                  posref="MR ML"
1010                  posparent="text"
1011                  x="4"
1012                  y="0">
1013             <instance template="combo_box_def1" />
1014           </group>
1015           <link expr="@UI:TEMP:TEXTURE_MODE"
1016                 action="game_config_change_texture_mode" />
1017         </group>
1018         <!-- Special case for Screen Aspect Ratio -->
1019         <!-- see game_config_screen_ratio_* defines -->
1020         <group id="screen_ratio"
1021                posparent="texture_mode"
1022                posref="BL TL"
1023                x="0"
1024                y="-12"
1025                w="240"
1026                h="52">
1027           <view type="text"
1028                 id="text"
1029                 posref="TL TL"
1030                 x="0"
1031                 y="-4"
1032                 color="255 255 255 192"
1033                 fontsize="12"
1034                 shadow="true"
1035                 hardtext="uigcScreenRatio" />
1036           <instance template="text_tt"
1037                     posparent="text"
1038                     tooltip="uigcttScreenRatio" />
1039           <instance template="edit_box_widget"
1040                     id="edit"
1041                     posparent="text"
1042                     posref="MR ML"
1043                     x="4"
1044                     y="0"
1045                     text_x="0"
1046                     text_ref="ML ML"
1047                     w="60"
1048                     prompt=""
1049                     enter_loose_focus="true"
1050                     multi_line="false"
1051                     onenter="game_config_change_screen_ratio_custom"
1052                     enter_recover_focus="false"
1053                     reset_focus_on_hide="true"
1054                     max_historic="0"
1055                     entry_type="positive_float"
1056                     max_float_prec="5"
1057                     onchange="set"
1058                     onchange_params="target_property=ui:interface:game_config:content:apply:frozen|value=0" />
1059           <group type="combo_box"
1060                  id="combo"
1061                  w="140"
1062                  h="20"
1063                  value="UI:TEMP:SCREEN_RATIO_MODE"
1064                  posref="BL TL"
1065                  posparent="text"
1066                  x="40"
1067                  y="-8">
1068             <instance template="combo_box_def1" />
1069             <combo_text name="uigcScreenRatio43" />
1070             <combo_text name="uigcScreenRatio169" />
1071             <combo_text name="uigcScreenRatioCustom" />
1072             <combo_text name="uiConfigAuto" />
1073           </group>
1074           <link expr="@UI:TEMP:SCREEN_RATIO_MODE"
1075                 action="game_config_change_screen_ratio_mode" />
1076         </group>
1077       </group>
1078       <ctrl style="skin_scroll"
1079             id="sb_general"
1080             align="T"
1081             target="general"
1082             posparent="crop"
1083             posref="TL TR"
1084             x="-8"
1085             y="0" />
1086       <!-- *** -->
1087       <group id="landscape"
1088              active="false"
1089              posparent="crop"
1090              posref="TM TM"
1091              x="0"
1092              y="-8"
1093              sizeref="w"
1094              child_resize_h="true"
1095              child_resize_hmargin="4"
1096              w="-4"
1097              max_sizeparent="crop"
1098              max_sizeref="h"
1099              max_h="-4">
1100         <view style="sgc_title"
1101               type="text"
1102               id="glan"
1103               posref="TM TM"
1104               x="0"
1105               y="0"
1106               hardtext="uiLandGeneral" />
1107         <instance template="tgcw_combo_default"
1108                   value="UI:TEMP:PRESET_LAND" />
1109         <view style="sgc_title2"
1110               type="text"
1111               id="lan"
1112               posref="TL TL"
1113               x="0"
1114               y="-44"
1115               hardtext="uiLand" />
1116         <!-- NB float are mul by 10000 -->
1117         <instance template="tgcw_scrollbarfloat"
1118                   id="lvi"
1119                   text="uiVision"
1120                   posparent="lan"
1121                   posref="BL TL"
1122                   x="20"
1123                   y="-2" />
1124         <instance template="tgcw_scrollbarfloat"
1125                   id="ltn"
1126                   text="uiTileNear"
1127                   posparent="lvi"
1128                   posref="BL TL"
1129                   x="0"
1130                   y="-2" />
1131         <instance template="tgcw_scrollbarfloat"
1132                   id="lth"
1133                   text="uiThreshold"
1134                   posparent="ltn"
1135                   posref="BL TL"
1136                   x="0"
1137                   y="-2" />
1138         <instance template="tgcw_checkbox"
1139                   id="lmv"
1140                   text="uiMicroVeget"
1141                   posparent="lth"
1142                   posref="BL TL"
1143                   x="-20"
1144                   y="-12" />
1145         <instance template="tgcw_scrollbarfloat"
1146                   id="mvd"
1147                   text="uiMicroVegetDensity"
1148                   posparent="lmv"
1149                   posref="BL TL"
1150                   x="20"
1151                   y="-2" />
1152       </group>
1153       <ctrl style="skin_scroll"
1154             id="sb_landscape"
1155             align="T"
1156             target="landscape"
1157             posparent="crop"
1158             posref="TL TR"
1159             x="-8"
1160             y="0" />
1161       <!-- *** -->
1162       <group id="char"
1163              active="false"
1164              posparent="crop"
1165              posref="TM TM"
1166              x="0"
1167              y="-8"
1168              sizeref="w"
1169              child_resize_h="true"
1170              child_resize_hmargin="4"
1171              w="-4"
1172              max_sizeparent="crop"
1173              max_sizeref="h"
1174              max_h="-4">
1175         <view style="sgc_title"
1176               type="text"
1177               id="cpol"
1178               posref="TM TM"
1179               x="0"
1180               y="0"
1181               hardtext="uiCharPoly" />
1182         <instance template="tgcw_combo_default"
1183                   value="UI:TEMP:PRESET_CHAR" />
1184         <view style="sgc_title2"
1185               type="text"
1186               id="model"
1187               posref="TL TL"
1188               x="0"
1189               y="-46"
1190               hardtext="uiCharModel" />
1191         <instance template="tgcw_scrollbarint"
1192                   id="maxpoly"
1193                   text="uiCharMaxPoly"
1194                   posref="BL TL"
1195                   posparent="model"
1196                   x="20"
1197                   y="-2" />
1198         <instance template="tgcw_scrollbarint"
1199                   id="maxnotclod"
1200                   text="uiCharMaxNotCLod"
1201                   posparent="maxpoly"
1202                   posref="BL TL"
1203                   x="0"
1204                   y="-2" />
1205         <instance template="tgcw_scrollbarfloat"
1206                   id="farclip"
1207                   text="uiCharFarClip"
1208                   posparent="maxnotclod"
1209                   posref="BL TL"
1210                   x="0"
1211                   y="-2" />
1212         <instance template="tgcw_checkbox"
1213                   id="race_anim"
1214                   text="uiEnableRacialAnimation"
1215                   posparent="farclip"
1216                   posref="BL TL"
1217                   x="-20"
1218                   y="-12" />
1219       </group>
1220       <ctrl style="skin_scroll"
1221             id="sb_char"
1222             align="T"
1223             target="char"
1224             posparent="crop"
1225             posref="TL TR"
1226             x="-8"
1227             y="0" />
1228       <!-- *** -->
1229       <group id="fx"
1230              active="false"
1231              posparent="crop"
1232              posref="TM TM"
1233              x="0"
1234              y="-8"
1235              sizeref="w"
1236              child_resize_h="true"
1237              child_resize_hmargin="4"
1238              w="-4"
1239              max_sizeparent="crop"
1240              max_sizeref="h"
1241              max_h="-4">
1242         <view style="sgc_title"
1243               type="text"
1244               id="gfx"
1245               posref="TM TM"
1246               x="0"
1247               y="0"
1248               hardtext="uiFXGeneral" />
1249         <instance template="tgcw_combo_default"
1250                   value="UI:TEMP:PRESET_FX" />
1251         <view style="sgc_title2"
1252               type="text"
1253               id="limit"
1254               posref="TL TL"
1255               x="0"
1256               y="-46"
1257               hardtext="uiFxLimitations" />
1258         <instance template="tgcw_scrollbarint"
1259                   id="maxpoly"
1260                   text="uiFxMaxPoly"
1261                   posparent="limit"
1262                   posref="BL TL"
1263                   x="20"
1264                   y="-2" />
1265         <!--
1266                         <instance template="tgcw_checkbox" id="cloud" text="uiFxCloud" posparent="maxpoly" posref="BL TL" x="-20" y="-12" />
1267                         <instance template="tgcw_scrollbarfloat" id="cqual" text="uiFxCloudQuality" posparent="cloud" posref="BL TL" x="20" y="-2" />
1268                         <instance template="tgcw_scrollbarint" id="cup" text="uiFxCloudUpdate" posparent="cqual" posref="BL TL" x="0" y="-2" />
1269                         -->
1270         <instance template="tgcw_checkbox"
1271                   id="shadow"
1272                   text="uiFxShadow"
1273                   posparent="maxpoly"
1274                   posref="BL TL"
1275                   x="-20"
1276                   y="-12" />
1277         <instance template="tgcw_checkbox"
1278                   id="fxaa"
1279                   text="uiFXAA"
1280                   posparent="shadow"
1281                   posref="BL TL"
1282                   x="0"
1283                   y="-12" />
1284         <group id="anisotropic_gr"
1285                posparent="fxaa"
1286                sizeparent="parent"
1287                sizeref="w"
1288                h="20"
1289                posref="BL TL"
1290                x="0"
1291                y="-12">
1292           <view type="text"
1293                     id="text"
1294                     posref="TL TL"
1295                     x="0"
1296                     y="-4"
1297                     color="255 255 255 192"
1298                     fontsize="12"
1299                     shadow="true"
1300                     hardtext="uigcFxAnisotropicFilter" />
1301           <group type="combo_box"
1302                     id="anisotropic"
1303                     w="70"
1304                     h="20"
1305                     value="UI:TEMP:ANISOTROPIC"
1306                     posref="MR ML"
1307                     posparent="text"
1308                     x="4"
1309                     y="0">
1310             <instance template="combo_box_def1" />
1311           </group>
1312           <link expr="@UI:TEMP:ANISOTROPIC"
1313                 action="game_config_change_anisotropic" />
1314         </group>
1315         <group id="bloom_gr"
1316                posparent="anisotropic_gr"
1317                sizeparent="parent"
1318                sizeref="w"
1319                h="100"
1320                posref="BL TL"
1321                x="0"
1322                y="-12"
1323                tooltip="uiFxTooltipBloom"
1324                tooltip_parent="win">
1325           <instance template="tgcw_checkbox"
1326                     id="bloom"
1327                     text="uiFxBloom"
1328                     posref="TL TL"
1329                     x="0"
1330                     y="0" />
1331           <instance template="tgcw_checkbox"
1332                     id="square_bloom"
1333                     text="uiFxSquareBloom"
1334                     posparent="bloom"
1335                     posref="BL TL"
1336                     x="20"
1337                     y="-2" />
1338           <instance template="tgcw_scrollbarfloat"
1339                     id="density_bloom"
1340                     text="uiFxDensityBloom"
1341                     posparent="square_bloom"
1342                     posref="BL TL"
1343                     x="0"
1344                     y="-2" />
1345         </group>
1346       </group>
1347       <ctrl style="skin_scroll"
1348             id="sb_fx"
1349             align="T"
1350             target="fx"
1351             posparent="crop"
1352             posref="TL TR"
1353             x="-8"
1354             y="0" />
1355       <!-- *** -->
1356       <group id="hud"
1357              active="false"
1358              posparent="crop"
1359              posref="TM TM"
1360              x="0"
1361              y="-8"
1362              sizeref="w"
1363              child_resize_h="true"
1364              child_resize_hmargin="4"
1365              w="-4"
1366              max_sizeparent="crop"
1367              max_sizeref="h"
1368              max_h="-4">
1369         <!-- Entities Names -->
1370         <view style="sgc_title"
1371               type="text"
1372               id="en"
1373               posref="TM TM"
1374               x="0"
1375               y="0"
1376               hardtext="uiHud" />
1377         <!--<instance template="tgcw_checkbox" id="suc"  text="uiShowUnderCursor"               posref="TL TL" x="0" y="-20" />
1378                         <instance template="tgcw_checkbox" id="sta"  text="uiShowTargeted"                      posref="BL TL" posparent="suc"  x="0" y="-12" />-->
1379         <instance template="tgcw_checkbox"
1380                   id="swrc"
1381                   text="uiSelectWithRClick"
1382                   posref="TL TL"
1383                   x="0"
1384                   y="-20" />
1385         <instance template="tgcw_checkbox"
1386                   id="foa"
1387                   text="uiFollowOnAtk"
1388                   posref="BL TL"
1389                   posparent="swrc"
1390                   x="0"
1391                   y="-12" />
1392         <instance template="tgcw_checkbox"
1393                   id="aos"
1394                   text="uiAtkOnSelect"
1395                   posref="BL TL"
1396                   posparent="foa"
1397                   x="0"
1398                   y="-12" />
1399         <instance template="tgcw_checkbox"
1400                   id="aet"
1401                   text="uiAutoEquipTool"
1402                   posref="BL TL"
1403                   posparent="aos"
1404                   x="0"
1405                   y="-12" />
1406         <instance template="tgcw_checkbox"
1407                   id="auc"
1408                   text="uiAutomaticCamera"
1409                   posref="BL TL"
1410                   posparent="aet"
1411                   x="0"
1412                   y="-12" />
1413         <instance template="tgcw_checkbox"
1414                   id="aul"
1415                   text="uiAutomaticLight"
1416                   posref="BL TL"
1417                   posparent="auc"
1418                   x="0"
1419                   y="-12" />
1420         <instance template="tgcw_checkbox"
1421                   id="fade"
1422                   text="uiCharFade"
1423                   posref="BL TL"
1424                   posparent="aul"
1425                   x="0"
1426                   y="-12" />
1427         <instance template="tgcw_scrollbarint"
1428                   id="opamin"
1429                   text="uiCharOpacityMin"
1430                   posref="BL TL"
1431                   posparent="fade"
1432                   x="20"
1433                   y="-2" />
1434         <instance template="tgcw_checkbox"
1435                   id="cao"
1436                   text="uiCurrentActionOut"
1437                   tooltip="uittCurrentActionOut"
1438                   posref="BL TL"
1439                   posparent="opamin"
1440                   x="-20"
1441                   y="-12" />
1442         <instance template="tgcw_checkbox"
1443                   id="show_icon_buffs"
1444                   text="uiShowIconBuffs"
1445                   tooltip="uittShowIconBuffs"
1446                   posref="BL TL"
1447                   posparent="cao"
1448                   x="0"
1449                   y="-12" />
1450         <instance template="tgcw_checkbox"
1451                   id="show_clock"
1452                   text="uiShowClock"
1453                   tooltip="uittShowClock"
1454                   posref="BL TL"
1455                   posparent="show_icon_buffs"
1456                   x="0"
1457                   y="-12" />
1458         <instance template="tgcw_checkbox"
1459                   id="show_clock_12h"
1460                   text="uiShowClock12h"
1461                   tooltip="uittShowClock12h"
1462                   posref="BL TL"
1463                   posparent="show_clock"
1464                   x="0"
1465                   y="-12" />
1466         <instance template="tgcw_checkbox"
1467                   id="show_reticle"
1468                   text="uiShowReticle"
1469                   tooltip="uittShowReticle"
1470                   posref="BL TL"
1471                   posparent="show_clock_12h"
1472                   x="0"
1473                   y="-12" />
1474         <instance template="tgcw_checkbox"
1475                   id="radar_use_camera"
1476                   text="uiRadarUseCamera"
1477                   tooltip="uittRadarUseCamera"
1478                   posref="BL TL"
1479                   posparent="show_reticle"
1480                   x="0"
1481                   y="-12" />
1482       </group>
1483       <ctrl style="skin_scroll"
1484             id="sb_hud"
1485             align="T"
1486             target="hud"
1487             posparent="crop"
1488             posref="TL TR"
1489             x="-8"
1490             y="0" />
1491       <!-- *** -->
1492       <group id="language"
1493              active="false"
1494              posparent="crop"
1495              posref="TM TM"
1496              x="0"
1497              y="-8"
1498              sizeref="w"
1499              child_resize_h="true"
1500              child_resize_hmargin="4"
1501              w="-4"
1502              max_sizeparent="crop"
1503              max_sizeref="h"
1504              max_h="-4">
1505         <!-- Language selector -->
1506         <view style="sgc_title"
1507               type="text"
1508               id="en"
1509               posref="TM TM"
1510               x="0"
1511               y="0"
1512               hardtext="uigcLanguage" />
1513         <group type="combo_box"
1514                id="languages"
1515                w="150"
1516                h="20"
1517                value="UI:TEMP:LANGUAGE"
1518                posref="TL TL"
1519                x="0"
1520                y="-20">
1521           <instance template="combo_box_def1" />
1522           <combo_text name="uigcEnglish" />
1523           <combo_text name="uigcFrancais" />
1524           <combo_text name="uigcDeutch" />
1525           <combo_text name="uigcRussian" />
1526           <combo_text name="uigcSpanish" />
1527         </group>
1528         <link expr="@UI:TEMP:LANGUAGE"
1529               action="game_config_change_language" />
1530         
1531         <view style="sgc_title"
1532               type="text"
1533               id="translation_header_text"
1534               posref="BL TL"
1535               x="0"
1536               y="-20"
1537               hardtext="uiTranslationHeader"
1538               posparent="languages" />
1539         <view style="sgc_title2"
1540               type="text"
1541               id="translation_languages_header"
1542               posref="BL TL"
1543               x="0"
1544               y="-10"
1545               hardtext="uiTranslationLanguages"
1546               posparent="translation_header_text" />
1547         <view style="sgc_title2"
1548               type="text"
1549               id="translation_inverse_header"
1550               posref="TR TL"
1551               x="20"
1552               y="0"
1553               hardtext="uiTranslationInverse"
1554               posparent="translation_languages_header" />
1555         <view style="sgc_title2"
1556               type="text"
1557               id="translation_hide_flag_header"
1558               posref="TR TL"
1559               x="20"
1560               y="0"
1561               hardtext="uiTranslationHide"
1562               posparent="translation_inverse_header" />
1563         <view style="sgc_title2"
1564               type="text"
1565               id="translation_english_text"
1566               posref="BL TL"
1567               x="0"
1568               y="-5"
1569               hardtext="uiTranslationEnglish"
1570               posparent="translation_languages_header" />
1571         <instance template="tgcw_checkbox"
1572                   id="translation_english_inverse"
1573                   posref="BM TM"
1574                   x="0"
1575                   y="-5"
1576                   text=" "
1577                   tooltip="uittTranslationInverse"
1578                   posparent="translation_inverse_header" />
1579         <instance template="tgcw_checkbox"
1580                   id="translation_english_hide_flag"
1581                   posref="BM TM"
1582                   x="0"
1583                   y="-5"
1584                   text=" "
1585                   tooltip="uittTranslationHide"
1586                   posparent="translation_hide_flag_header" />
1587         <view style="sgc_title2"
1588               type="text"
1589               id="translation_french_text"
1590               posref="BL TL"
1591               x="0"
1592               y="-2"
1593               hardtext="uiTranslationFrench"
1594               posparent="translation_english_text" />
1595         <instance template="tgcw_checkbox"
1596                   id="translation_french_inverse"
1597                   posref="BL TL"
1598                   x="0"
1599                   y="-2"
1600                   text=" "
1601                   tooltip="uittTranslationInverse"
1602                   posparent="translation_english_inverse" />
1603         <instance template="tgcw_checkbox"
1604                   id="translation_french_hide_flag"
1605                   posref="BL TL"
1606                   x="0"
1607                   y="-2"
1608                   text=" "
1609                   tooltip="uittTranslationHide"
1610                   posparent="translation_english_hide_flag" />
1611         <view style="sgc_title2"
1612               type="text"
1613               id="translation_german_text"
1614               posref="BL TL"
1615               x="0"
1616               y="-2"
1617               hardtext="uiTranslationGerman"
1618               posparent="translation_french_text" />
1619         <instance template="tgcw_checkbox"
1620                   id="translation_german_inverse"
1621                   posref="BL TL"
1622                   x="0"
1623                   y="-2"
1624                   text=" "
1625                   tooltip="uittTranslationInverse"
1626                   posparent="translation_french_inverse" />
1627         <instance template="tgcw_checkbox"
1628                   id="translation_german_hide_flag"
1629                   posref="BL TL"
1630                   x="0"
1631                   y="-2"
1632                   text=" "
1633                   tooltip="uittTranslationHide"
1634                   posparent="translation_french_hide_flag" />
1635         <view style="sgc_title2"
1636               type="text"
1637               id="translation_russian_text"
1638               posref="BL TL"
1639               x="0"
1640               y="-2"
1641               hardtext="uiTranslationRussian"
1642               posparent="translation_german_text" />
1643         <instance template="tgcw_checkbox"
1644                   id="translation_russian_inverse"
1645                   posref="BL TL"
1646                   x="0"
1647                   y="-2"
1648                   text=" "
1649                   tooltip="uittTranslationInverse"
1650                   posparent="translation_german_inverse" />
1651         <instance template="tgcw_checkbox"
1652                   id="translation_russian_hide_flag"
1653                   posref="BL TL"
1654                   x="0"
1655                   y="-2"
1656                   text=" "
1657                   tooltip="uittTranslationHide"
1658                   posparent="translation_german_hide_flag" />
1659         <view style="sgc_title2"
1660               type="text"
1661               id="translation_spanish_text"
1662               posref="BL TL"
1663               x="0"
1664               y="-2"
1665               hardtext="uiTranslationSpanish"
1666               posparent="translation_russian_text" />
1667         <instance template="tgcw_checkbox"
1668                   id="translation_spanish_inverse"
1669                   posref="BL TL"
1670                   x="0"
1671                   y="-2"
1672                   text=" "
1673                   tooltip="uittTranslationInverse"
1674                   posparent="translation_russian_inverse" />
1675         <instance template="tgcw_checkbox"
1676                   id="translation_spanish_hide_flag"
1677                   posref="BL TL"
1678                   x="0"
1679                   y="-2"
1680                   text=" "
1681                   tooltip="uittTranslationHide"
1682                   posparent="translation_russian_hide_flag" />
1684         <view style="sgc_title2"
1685               type="text"
1686               id="disable_translation_text"
1687               posref="BL TL"
1688               x="0"
1689               y="-10"
1690               hardtext="uiTranslationDisable"
1691               posparent="translation_spanish_text" />
1692         <instance template="tgcw_checkbox"
1693                   id="disable_translation_around"
1694                   posref="BL TL"
1695                   x="0"
1696                   y="-5"
1697                   text="uiTranslationDisableAround"
1698                   tooltip="uittTranslationDisableAround"
1699                   posparent="disable_translation_text" />
1700         <instance template="tgcw_checkbox"
1701                   id="disable_translation_guild"
1702                   posref="BL TL"
1703                   x="0"
1704                   y="-2"
1705                   text="uiTranslationDisableGuild"
1706                   tooltip="uittTranslationDisableGuild"
1707                   posparent="disable_translation_around" />
1708         <instance template="tgcw_checkbox"
1709                   id="disable_translation_universe"
1710                   posref="BL TL"
1711                   x="0"
1712                   y="-2"
1713                   text="uiTranslationDisableUniverse"
1714                   tooltip="uittTranslationDisableUniverse"
1715                   posparent="disable_translation_guild" />
1716         <instance template="tgcw_checkbox"
1717                   id="disable_translation_region"
1718                   posref="BL TL"
1719                   x="0"
1720                   y="-2"
1721                   text="uiTranslationDisableRegion"
1722                   tooltip="uittTranslationDisableRegion"
1723                   posparent="disable_translation_universe" />
1726         <link expr="@UI:SAVE:TRANSLATION:EN:INVERSE_DISPLAY"
1727               target="translation_english_inverse:c:pushed" />
1728         <link expr="@UI:SAVE:TRANSLATION:EN:HIDE_FLAG"
1729               target="translation_english_hide_flag:c:pushed" />
1730         <link expr="@UI:SAVE:TRANSLATION:FR:INVERSE_DISPLAY"
1731               target="translation_french_inverse:c:pushed" />
1732         <link expr="@UI:SAVE:TRANSLATION:FR:HIDE_FLAG"
1733               target="translation_french_hide_flag:c:pushed" />
1734         <link expr="@UI:SAVE:TRANSLATION:DE:INVERSE_DISPLAY"
1735               target="translation_german_inverse:c:pushed" />
1736         <link expr="@UI:SAVE:TRANSLATION:DE:HIDE_FLAG"
1737               target="translation_german_hide_flag:c:pushed" />
1738         <link expr="@UI:SAVE:TRANSLATION:RU:INVERSE_DISPLAY"
1739               target="translation_russian_inverse:c:pushed" />
1740         <link expr="@UI:SAVE:TRANSLATION:RU:HIDE_FLAG"
1741               target="translation_russian_hide_flag:c:pushed" />
1742         <link expr="@UI:SAVE:TRANSLATION:ES:INVERSE_DISPLAY"
1743               target="translation_spanish_inverse:c:pushed" />
1744         <link expr="@UI:SAVE:TRANSLATION:ES:HIDE_FLAG"
1745               target="translation_spanish_hide_flag:c:pushed" />
1747         <link expr="@UI:SAVE:TRANSLATION:ARROUND:DISABLE"
1748               target="disable_translation_around:c:pushed" />
1749         <link expr="@UI:SAVE:TRANSLATION:GUILD:DISABLE"
1750               target="disable_translation_guild:c:pushed" />
1751         <link expr="@UI:SAVE:TRANSLATION:UNIVERSE:DISABLE"
1752               target="disable_translation_universe:c:pushed" />
1753         <link expr="@UI:SAVE:TRANSLATION:REGION:DISABLE"
1754               target="disable_translation_region:c:pushed" />
1756       </group>
1757       <ctrl style="skin_scroll"
1758             id="sb_language"
1759             align="T"
1760             target="language"
1761             posparent="crop"
1762             posref="TL TR"
1763             x="-8"
1764             y="0" />
1765       <!-- *** -->
1766       <group id="alpha_colors"
1767              active="false"
1768              posparent="crop"
1769              posref="TM TM"
1770              x="0"
1771              y="-8"
1772              sizeref="w"
1773              child_resize_h="true"
1774              child_resize_hmargin="4"
1775              w="-4"
1776              max_sizeparent="crop"
1777              max_sizeref="h"
1778              max_h="-4">
1779         <!-- Night and day colors -->
1780         <view style="sgc_title"
1781               type="text"
1782               id="gcol"
1783               posref="TM TM"
1784               x="0"
1785               y="0"
1786               hardtext="uiGlobalColor" />
1787         <view style="sgc_title2"
1788               type="text"
1789               id="gcol2"
1790               posref="TL TL"
1791               x="0"
1792               y="-20"
1793               hardtext="uiUIColor" />
1794         <instance template="tgcw_color"
1795                   id="col_day"
1796                   text="uiColorD"
1797                   title="uiDefDayCol"
1798                   tooltip="uittColDay"
1799                   posref="BL TL"
1800                   posparent="gcol2"
1801                   x="20"
1802                   y="-2" />
1803         <instance template="tgcw_color"
1804                   id="col_night"
1805                   text="uiColorN"
1806                   title="uiDefNightCol"
1807                   tooltip="uittColNight"
1808                   posref="BL TL"
1809                   posparent="col_day"
1810                   x="0"
1811                   y="-2" />
1812         <!-- Global Opacity -->
1813         <view style="sgc_title2"
1814               type="text"
1815               id="gopa"
1816               posref="BL TL"
1817               x="-20"
1818               y="-12"
1819               hardtext="uiGlobalOpacity"
1820               posparent="col_night" />
1821         <instance template="tgcw_scrollbarint"
1822                   id="ga_win"
1823                   text="uiAlphaBG"
1824                   posref="BL TL"
1825                   posparent="gopa"
1826                   x="20"
1827                   y="-2" />
1828         <instance template="tgcw_scrollbarint"
1829                   id="ga_con"
1830                   text="uiAlphaContent"
1831                   posref="BL TL"
1832                   posparent="ga_win"
1833                   x="0"
1834                   y="-2" />
1835         <!-- MouseOver Opacity -->
1836         <view style="sgc_title2"
1837               type="text"
1838               id="moopa"
1839               posref="BL TL"
1840               x="-20"
1841               y="-12"
1842               hardtext="uiMouseOverOpacity"
1843               posparent="ga_con" />
1844         <instance template="tgcw_scrollbarint"
1845                   id="moa_win"
1846                   text="uiAlphaRolloverBG"
1847                   posref="BL TL"
1848                   posparent="moopa"
1849                   x="20"
1850                   y="-2" />
1851         <instance template="tgcw_scrollbarint"
1852                   id="moa_con"
1853                   text="uiAlphaRolloverContent"
1854                   posref="BL TL"
1855                   posparent="moa_win"
1856                   x="0"
1857                   y="-2" />
1858         <instance template="tgcw_scrollbarint"
1859                   id="moa_speed"
1860                   text="uiRolloverAlphaSpeed"
1861                   posref="BL TL"
1862                   posparent="moa_con"
1863                   x="0"
1864                   y="-2" />
1865         <!-- Tooltip Opacity -->
1866         <view style="sgc_title2"
1867               type="text"
1868               id="chopa"
1869               posref="BL TL"
1870               x="-20"
1871               y="-12"
1872               hardtext="uiTooltipOpacity"
1873               posparent="moa_speed" />
1874         <instance template="tgcw_scrollbarint"
1875                   id="ch_win"
1876                   text="uiAlphaBG"
1877                   posref="BL TL"
1878                   posparent="chopa"
1879                   x="20"
1880                   y="-2" />
1881         <instance template="tgcw_scrollbarint"
1882                   id="ch_con"
1883                   text="uiAlphaContent"
1884                   posref="BL TL"
1885                   posparent="ch_win"
1886                   x="0"
1887                   y="-2" />
1888         <instance template="tgcw_color2"
1889                   id="ch_col"
1890                   text="uiTooltipColor"
1891                   title="uiDefTooltipColor"
1892                   tooltip="uiDefTooltipColor"
1893                   posref="BL TL"
1894                   posparent="ch_con"
1895                   x="0"
1896                   y="-2" />
1897         <instance template="tgcw_checkbox"
1898                   id="show_3d_item_preview"
1899                   text="uiShow3dItemPreview"
1900                   tooltip="uittShow3dItemPreview"
1901                   posref="BL TL"
1902                   posparent="ch_col"
1903                   x="-20"
1904                   y="-12" />
1905       </group>
1906       <ctrl style="skin_scroll"
1907             id="sb_alpha_colors"
1908             align="T"
1909             target="alpha_colors"
1910             posparent="crop"
1911             posref="TL TR"
1912             x="-8"
1913             y="0" />
1914       <!-- *** -->
1915       <group id="chat_colors"
1916              active="false"
1917              posparent="crop"
1918              posref="TM TM"
1919              x="0"
1920              y="-8"
1921              sizeref="w"
1922              child_resize_h="true"
1923              child_resize_hmargin="4"
1924              w="-4"
1925              max_sizeparent="crop"
1926              max_sizeref="h"
1927              max_h="-4">
1928         <!-- Chat colors -->
1929         <view style="sgc_title"
1930               id="ccol"
1931               posref="TM TM"
1932               x="0"
1933               y="0"
1934               hardtext="uiChatColors" />
1935         <instance template="tgcw_color"
1936                   id="cc_say"
1937                   text="uiSayColor"
1938                   title="uiCCDSay"
1939                   tooltip="uittChooseSayColor"
1940                   posref="TL TL"
1941                   x="0"
1942                   y="-20" />
1943         <instance template="tgcw_color"
1944                   id="cc_tell"
1945                   text="uiTellColor"
1946                   title="uiCCDTell"
1947                   tooltip="uittChooseTellColor"
1948                   posref="BL TL"
1949                   posparent="cc_say"
1950                   x="0"
1951                   y="-4" />
1952         <instance template="tgcw_color"
1953                   id="cc_team"
1954                   text="uiTeamColor"
1955                   title="uiCCDTeam"
1956                   tooltip="uittChooseTeamColor"
1957                   posref="BL TL"
1958                   posparent="cc_tell"
1959                   x="0"
1960                   y="-4" />
1961         <instance template="tgcw_color"
1962                   id="cc_guild"
1963                   text="uiGuildColor"
1964                   title="uiCCDGuild"
1965                   tooltip="uittChooseGuildColor"
1966                   posref="BL TL"
1967                   posparent="cc_team"
1968                   x="0"
1969                   y="-4" />
1970         <instance template="tgcw_color"
1971                   id="cc_region"
1972                   text="uiRegionColor"
1973                   title="uiCCDRegion"
1974                   tooltip="uittChooseRegionColor"
1975                   posref="BL TL"
1976                   posparent="cc_guild"
1977                   x="0"
1978                   y="-4" />
1979         <instance template="tgcw_color"
1980                   id="cc_univ"
1981                   text="uiUnivColor"
1982                   title="uiCCDUniv"
1983                   tooltip="uittChooseUnivColor"
1984                   posref="BL TL"
1985                   posparent="cc_region"
1986                   x="0"
1987                   y="-4" />
1988         <instance template="tgcw_color"
1989                   id="cc_shout"
1990                   text="uiShoutColor"
1991                   title="uiCCDShout"
1992                   tooltip="uittChooseShoutColor"
1993                   posref="BL TL"
1994                   posparent="cc_univ"
1995                   x="0"
1996                   y="-4" />
1997         <instance template="tgcw_color"
1998                   id="cc_dyn0"
1999                   text="uiDynColor0"
2000                   title="uiCCDDyn0"
2001                   tooltip="uittChooseDynColor0"
2002                   posref="BL TL"
2003                   posparent="cc_shout"
2004                   x="0"
2005                   y="-16" />
2006         <instance template="tgcw_color"
2007                   id="cc_dyn1"
2008                   text="uiDynColor1"
2009                   title="uiCCDDyn1"
2010                   tooltip="uittChooseDynColor1"
2011                   posref="BL TL"
2012                   posparent="cc_dyn0"
2013                   x="0"
2014                   y="-4" />
2015         <instance template="tgcw_color"
2016                   id="cc_dyn2"
2017                   text="uiDynColor2"
2018                   title="uiCCDDyn2"
2019                   tooltip="uittChooseDynColor2"
2020                   posref="BL TL"
2021                   posparent="cc_dyn1"
2022                   x="0"
2023                   y="-4" />
2024         <instance template="tgcw_color"
2025                   id="cc_dyn3"
2026                   text="uiDynColor3"
2027                   title="uiCCDDyn3"
2028                   tooltip="uittChooseDynColor3"
2029                   posref="BL TL"
2030                   posparent="cc_dyn2"
2031                   x="0"
2032                   y="-4" />
2033         <instance template="tgcw_color"
2034                   id="cc_dyn4"
2035                   text="uiDynColor4"
2036                   title="uiCCDDyn4"
2037                   tooltip="uittChooseDynColor4"
2038                   posref="BL TL"
2039                   posparent="cc_dyn3"
2040                   x="0"
2041                   y="-4" />
2042         <instance template="tgcw_color"
2043                   id="cc_dyn5"
2044                   text="uiDynColor5"
2045                   title="uiCCDDyn5"
2046                   tooltip="uittChooseDynColor5"
2047                   posref="BL TL"
2048                   posparent="cc_dyn4"
2049                   x="0"
2050                   y="-4" />
2051         <instance template="tgcw_color"
2052                   id="cc_dyn6"
2053                   text="uiDynColor6"
2054                   title="uiCCDDyn6"
2055                   tooltip="uittChooseDynColor6"
2056                   posref="BL TL"
2057                   posparent="cc_dyn5"
2058                   x="0"
2059                   y="-4" />
2060         <instance template="tgcw_color"
2061                   id="cc_dyn7"
2062                   text="uiDynColor7"
2063                   title="uiCCDDyn7"
2064                   tooltip="uittChooseDynColor7"
2065                   posref="BL TL"
2066                   posparent="cc_dyn6"
2067                   x="0"
2068                   y="-4" />
2069         <instance template="tgcw_checkbox"
2070                   id="save_channel_cb"
2071                   text="uiChanSaveCB"
2072                   tooltip="uittChanSave"
2073                   posparent="cc_dyn7"
2074                   posref="BL TL"
2075                   x="0"
2076                   y="-16" />
2077         <instance template="tgcw_checkbox"
2078                   id="auto_channel_cb"
2079                   text="uiChanAutoCB"
2080                   tooltip="uittChanAuto"
2081                   posparent="save_channel_cb"
2082                   posref="BL TL"
2083                   x="0"
2084                   y="-8" />
2085         <instance template="tgcw_checkbox"
2086                   id="show_times_in_chat_cb"
2087                   text="uiShowTimesInChatCB"
2088                   tooltip="uittShowTimesInChat"
2089                   posparent="auto_channel_cb"
2090                   posref="BL TL"
2091                   x="0"
2092                   y="-8" />
2093         <instance template="tgcw_checkbox"
2094                   id="show_dyn_channel_name_in_chat_cb"
2095                   text="uiShowDynChannelNameInChatCB"
2096                   tooltip="uittShowDynChannelNameInChat"
2097                   posparent="show_times_in_chat_cb"
2098                   posref="BL TL"
2099                   x="0"
2100                   y="-8" />
2101         <instance template="tgcw_checkbox"
2102                   id="show_online_offline_notifications_cb"
2103                   text="uiShowOnlineOfflineNotifications"
2104                   tooltip="uittShowOnlineOfflineNotifications"
2105                   posparent="show_dyn_channel_name_in_chat_cb"
2106                   posref="BL TL"
2107                   x="0"
2108                   y="-8" />
2109         <instance template="tgcw_scrollbarint"
2110                   id="font_size"
2111                   text="uiFontSize"
2112                   posref="BL TL"
2113                   posparent="show_online_offline_notifications_cb"
2114                   x="0"
2115                   y="-8" />
2116         <instance template="tgcw_checkbox"
2117                   id="enter_dontquit_cb"
2118                   text="uiEnterDontQuitCB"
2119                   tooltip="uittChatEnter"
2120                   posparent="font_size"
2121                   posref="BL TL"
2122                   x="0"
2123                   y="-8" />
2124         <link expr="@UI:SAVE:CHAT:ENTER_DONT_QUIT_CB"
2125               target="enter_dontquit_cb:c:pushed" />
2126         <link expr="@UI:SAVE:CHAT:SAVE_CHANNEL"
2127               target="save_channel_cb:c:pushed" />
2128         <link expr="@UI:SAVE:CHAT:AUTO_CHANNEL"
2129               target="auto_channel_cb:c:pushed" />
2130         <link expr="@UI:SAVE:CHAT:SHOW_TIMES_IN_CHAT_CB"
2131               target="show_times_in_chat_cb:c:pushed" />
2132         <link expr="@UI:SAVE:CHAT:SHOW_DYN_CHANNEL_NAME_IN_CHAT_CB"
2133               target="show_dyn_channel_name_in_chat_cb:c:pushed" />
2134         <link expr="@UI:SAVE:CHAT:SHOW_ONLINE_OFFLINE_NOTIFICATIONS_CB"
2135               target="show_online_offline_notifications_cb:c:pushed" />
2136       </group>
2137       <ctrl style="skin_scroll"
2138             id="sb_chat_colors"
2139             align="T"
2140             target="chat_colors"
2141             posparent="crop"
2142             posref="TL TR"
2143             x="-8"
2144             y="0" />
2145       <!-- *** -->
2146       <group id="entity_colors"
2147              active="false"
2148              posparent="crop"
2149              posref="TM TM"
2150              x="0"
2151              y="-8"
2152              sizeref="w"
2153              child_resize_h="true"
2154              child_resize_hmargin="4"
2155              w="-4"
2156              max_sizeparent="crop"
2157              max_sizeref="h"
2158              max_h="-4">
2159         <!-- Entity colors -->
2160         <view style="sgc_title"
2161               id="ccol"
2162               posref="TM TM"
2163               x="0"
2164               y="0"
2165               hardtext="uiEntityColors" />
2166         <instance template="tgcw_color"
2167                   id="cc_user"
2168                   text="uiUserColor"
2169                   title="uiUserColor"
2170                   tooltip="uittUserColor"
2171                   posref="TL TL"
2172                   x="0"
2173                   y="-20" />
2174         <instance template="tgcw_color"
2175                   id="cc_target"
2176                   text="uiTargetColor"
2177                   title="uiTargetColor"
2178                   tooltip="uittTargetColor"
2179                   posref="BL TL"
2180                   posparent="cc_user"
2181                   x="0"
2182                   y="-4" />
2183         <instance template="tgcw_color"
2184                   id="cc_group"
2185                   text="uiGroupColor"
2186                   title="uiGroupColor"
2187                   tooltip="uittGroupColor"
2188                   posref="BL TL"
2189                   posparent="cc_target"
2190                   x="0"
2191                   y="-16" />
2192         <instance template="tgcw_color"
2193                   id="cc_guild"
2194                   text="uiGuildRadarColor"
2195                   title="uiGuildRadarColor"
2196                   tooltip="uittGuildRadarColor"
2197                   posref="BL TL"
2198                   posparent="cc_group"
2199                   x="0"
2200                   y="-4" />
2201         <instance template="tgcw_color"
2202                   id="cc_player"
2203                   text="uiPlayerColor"
2204                   title="uiPlayerColor"
2205                   tooltip="uittPlayerColor"
2206                   posref="BL TL"
2207                   posparent="cc_guild"
2208                   x="0"
2209                   y="-4" />
2210         <instance template="tgcw_color"
2211                   id="cc_npc"
2212                   text="uiNPCColor"
2213                   title="uiNPCColor"
2214                   tooltip="uittNPCColor"
2215                   posref="BL TL"
2216                   posparent="cc_player"
2217                   x="0"
2218                   y="-4" />
2219         <instance template="tgcw_color"
2220                   id="cc_fauna"
2221                   text="uiFaunaColor"
2222                   title="uiFaunaColor"
2223                   tooltip="uittFaunaColor"
2224                   posref="BL TL"
2225                   posparent="cc_npc"
2226                   x="0"
2227                   y="-16" />
2228         <instance template="tgcw_color"
2229                   id="cc_mount"
2230                   text="uiMountColor"
2231                   title="uiMountColor"
2232                   tooltip="uittMountColor"
2233                   posref="BL TL"
2234                   posparent="cc_fauna"
2235                   x="0"
2236                   y="-4" />
2237         <instance template="tgcw_color"
2238                   id="cc_beast"
2239                   text="uiBeastColor"
2240                   title="uiBeastColor"
2241                   tooltip="uittBeastColor"
2242                   posref="BL TL"
2243                   posparent="cc_mount"
2244                   x="0"
2245                   y="-4" />
2246         <instance template="tgcw_color"
2247                   id="cc_source"
2248                   text="uiSourceColor"
2249                   title="uiSourceColor"
2250                   tooltip="uittSourceColor"
2251                   posref="BL TL"
2252                   posparent="cc_beast"
2253                   x="0"
2254                   y="-16" />
2255         <instance template="tgcw_color"
2256                   id="cc_dead"
2257                   text="uiDeadColor"
2258                   title="uiDeadColor"
2259                   tooltip="uittDeadColor"
2260                   posref="BL TL"
2261                   posparent="cc_source"
2262                   x="0"
2263                   y="-16" />
2264         <instance template="tgcw_color"
2265                   id="cc_pvpenemy"
2266                   text="uiPvpEnemyColor"
2267                   title="uiPvpEnemyColor"
2268                   tooltip="uittPvpEnemyColor"
2269                   posref="BL TL"
2270                   posparent="cc_dead"
2271                   x="0"
2272                   y="-16" />
2273         <instance template="tgcw_color"
2274                   id="cc_pvpally"
2275                   text="uiPvpAllyColor"
2276                   title="uiPvpAllyColor"
2277                   tooltip="uittPvpAllyColor"
2278                   posref="BL TL"
2279                   posparent="cc_pvpenemy"
2280                   x="0"
2281                   y="-4" />
2282         <instance template="tgcw_color"
2283                   id="cc_pvpallyinteam"
2284                   text="uiPvpAllyInTeamColor"
2285                   title="uiPvpAllyInTeamColor"
2286                   tooltip="uittPvpAllyInTeamColor"
2287                   posref="BL TL"
2288                   posparent="cc_pvpally"
2289                   x="0"
2290                   y="-4" />
2291         <instance template="tgcw_color"
2292                   id="cc_pvpallyinguild"
2293                   text="uiPvpAllyInGuildColor"
2294                   title="uiPvpAllyInGuildColor"
2295                   tooltip="uittPvpAllyInGuildColor"
2296                   posref="BL TL"
2297                   posparent="cc_pvpallyinteam"
2298                   x="0"
2299                   y="-4" />
2300         <instance template="tgcw_color"
2301                   id="cc_pvpneutral"
2302                   text="uiPvpNeutralColor"
2303                   title="uiPvpNeutralColor"
2304                   tooltip="uittPvpNeutralColor"
2305                   posref="BL TL"
2306                   posparent="cc_pvpallyinguild"
2307                   x="0"
2308                   y="-4" />
2309       </group>
2310       <ctrl style="skin_scroll"
2311             id="sb_entity_colors"
2312             align="T"
2313             target="entity_colors"
2314             posparent="crop"
2315             posref="TL TR"
2316             x="-8"
2317             y="0" />
2318       <!-- *** -->
2319       <group id="in_scene_user"
2320              active="false"
2321              posparent="crop"
2322              posref="TM TM"
2323              x="0"
2324              y="-8"
2325              sizeref="w"
2326              child_resize_h="true"
2327              child_resize_hmargin="4"
2328              w="-4"
2329              max_sizeparent="crop"
2330              max_sizeref="h"
2331              max_h="-4">
2332         <!-- In scene user colors -->
2333         <view style="sgc_title"
2334               id="ccol"
2335               posref="TM TM"
2336               x="0"
2337               y="0"
2338               hardtext="uiUserIS" />
2339         <instance template="tgcw_checkbox"
2340                   id="is_user_guild_symbol"
2341                   text="uiGuildSymbol"
2342                   tooltip="uittGuildSymbol"
2343                   posref="TL TL"
2344                   x="0"
2345                   y="-20" />
2346         <instance template="tgcw_checkbox"
2347                   id="is_user_name"
2348                   text="uiWindowName"
2349                   tooltip="uittName"
2350                   posref="BL TL"
2351                   posparent="is_user_guild_symbol"
2352                   x="0"
2353                   y="-4" />
2354         <instance template="tgcw_checkbox"
2355                   id="is_user_title"
2356                   text="uiTitle"
2357                   tooltip="uittTitle"
2358                   posref="BL TL"
2359                   posparent="is_user_name"
2360                   x="0"
2361                   y="-4" />
2362         <instance template="tgcw_checkbox"
2363                   id="is_user_rptags"
2364                   text="uiRpTags"
2365                   tooltip="uittRpTags"
2366                   posref="BL TL"
2367                   posparent="is_user_title"
2368                   x="0"
2369                   y="-4" />
2370         <instance template="tgcw_checkbox"
2371                   id="is_user_guild_name"
2372                   text="uigcGuildName"
2373                   tooltip="uittGuildName"
2374                   posref="BL TL"
2375                   posparent="is_user_rptags"
2376                   x="0"
2377                   y="-4" />
2378         <instance template="tgcw_checkbox"
2379                   id="is_user_hp"
2380                   text="uiHP"
2381                   tooltip="uittHP"
2382                   posref="BL TL"
2383                   posparent="is_user_guild_name"
2384                   x="0"
2385                   y="-4" />
2386         <instance template="tgcw_checkbox"
2387                   id="is_user_sap"
2388                   text="uiSAP"
2389                   tooltip="uittSAP"
2390                   posref="BL TL"
2391                   posparent="is_user_hp"
2392                   x="0"
2393                   y="-4" />
2394         <instance template="tgcw_checkbox"
2395                   id="is_user_sta"
2396                   text="uiSTA"
2397                   tooltip="uittSTA"
2398                   posref="BL TL"
2399                   posparent="is_user_sap"
2400                   x="0"
2401                   y="-4" />
2402         <instance template="tgcw_checkbox"
2403                   id="is_user_focus"
2404                   text="uiFOC"
2405                   tooltip="uittFocus"
2406                   posref="BL TL"
2407                   posparent="is_user_sta"
2408                   x="0"
2409                   y="-4" />
2410         <instance template="tgcw_checkbox"
2411                   id="is_user_action"
2412                   text="uiActionBar"
2413                   tooltip="uittActionBar"
2414                   posref="BL TL"
2415                   posparent="is_user_focus"
2416                   x="0"
2417                   y="-4" />
2418         <instance template="tgcw_checkbox"
2419                   id="is_user_pvp_logo"
2420                   text="uiPvpLogo"
2421                   tooltip="uittPvpLogo"
2422                   posref="BL TL"
2423                   posparent="is_user_action"
2424                   x="0"
2425                   y="-4" />
2426       </group>
2427       <ctrl style="skin_scroll"
2428             id="sb_in_scene_user"
2429             align="T"
2430             target="in_scene_user"
2431             posparent="crop"
2432             posref="TL TR"
2433             x="-8"
2434             y="0" />
2435       <!-- *** -->
2436       <group id="in_scene_friend"
2437              active="false"
2438              posparent="crop"
2439              posref="TM TM"
2440              x="0"
2441              y="-8"
2442              sizeref="w"
2443              child_resize_h="true"
2444              child_resize_hmargin="4"
2445              w="-4"
2446              max_sizeparent="crop"
2447              max_sizeref="h"
2448              max_h="-4">
2449         <!-- In scene friend colors -->
2450         <view style="sgc_title"
2451               id="ccol"
2452               posref="TM TM"
2453               x="0"
2454               y="0"
2455               hardtext="uiFriendIS" />
2456         <instance template="tgcw_checkbox"
2457                   id="is_friend_guild_symbol"
2458                   text="uiGuildSymbol"
2459                   tooltip="uittGuildSymbol"
2460                   posref="TL TL"
2461                   x="0"
2462                   y="-20" />
2463         <instance template="tgcw_checkbox"
2464                   id="is_friend_name"
2465                   text="uiWindowName"
2466                   tooltip="uittName"
2467                   posref="BL TL"
2468                   posparent="is_friend_guild_symbol"
2469                   x="0"
2470                   y="-4" />
2471         <instance template="tgcw_checkbox"
2472                   id="is_friend_title"
2473                   text="uiTitle"
2474                   tooltip="uittTitle"
2475                   posref="BL TL"
2476                   posparent="is_friend_name"
2477                   x="0"
2478                   y="-4" />
2479         <instance template="tgcw_checkbox"
2480                   id="is_friend_rptags"
2481                   text="uiRpTags"
2482                   tooltip="uittRpTags"
2483                   posref="BL TL"
2484                   posparent="is_friend_title"
2485                   x="0"
2486                   y="-4" />
2487         <instance template="tgcw_checkbox"
2488                   id="is_friend_guild_name"
2489                   text="uigcGuildName"
2490                   tooltip="uittGuildName"
2491                   posref="BL TL"
2492                   posparent="is_friend_rptags"
2493                   x="0"
2494                   y="-4" />
2495         <instance template="tgcw_checkbox"
2496                   id="is_friend_hp"
2497                   text="uiHP"
2498                   tooltip="uittHP"
2499                   posref="BL TL"
2500                   posparent="is_friend_guild_name"
2501                   x="0"
2502                   y="-4" />
2503         <instance template="tgcw_checkbox"
2504                   id="is_friend_sap"
2505                   text="uiSAP"
2506                   tooltip="uittSTA"
2507                   posref="BL TL"
2508                   posparent="is_friend_hp"
2509                   x="0"
2510                   y="-4" />
2511         <instance template="tgcw_checkbox"
2512                   id="is_friend_sta"
2513                   text="uiSTA"
2514                   tooltip="uittSAP"
2515                   posref="BL TL"
2516                   posparent="is_friend_sap"
2517                   x="0"
2518                   y="-4" />
2519         <instance template="tgcw_checkbox"
2520                   id="is_friend_focus"
2521                   text="uiFOC"
2522                   tooltip="uittFocus"
2523                   posref="BL TL"
2524                   posparent="is_friend_sta"
2525                   x="0"
2526                   y="-4" />
2527         <instance template="tgcw_checkbox"
2528                   id="is_friend_pvp_logo"
2529                   text="uiPvpLogo"
2530                   tooltip="uittPvpLogo"
2531                   posref="BL TL"
2532                   posparent="is_friend_focus"
2533                   x="0"
2534                   y="-4" />
2535         <instance template="tgcw_checkbox"
2536                   id="is_friend_npcname"
2537                   text="uiWindowNpcName"
2538                   tooltip="uittNpcName"
2539                   posref="BL TL"
2540                   posparent="is_friend_pvp_logo"
2541                   x="0"
2542                   y="-8" />
2543         <instance template="tgcw_checkbox"
2544                   id="is_friend_npctitle"
2545                   text="uiNpcTitle"
2546                   tooltip="uittNpcTitle"
2547                   posref="BL TL"
2548                   posparent="is_friend_npcname"
2549                   x="0"
2550                   y="-4" />
2551         <instance template="tgcw_checkbox"
2552                   id="is_friend_mission_icon"
2553                   text="uiMissionIcon"
2554                   tooltip="uittMissionIcon"
2555                   posref="BL TL"
2556                   posparent="is_friend_npctitle"
2557                   x="0"
2558                   y="-4" />
2559         <instance template="tgcw_checkbox"
2560                   id="is_friend_mission_mini_icon"
2561                   text="uiMiniMissionIcon"
2562                   tooltip="uittMiniMissionIcon"
2563                   posref="BL TL"
2564                   posparent="is_friend_mission_icon"
2565                   x="16"
2566                   y="-4" />
2567       </group>
2568       <ctrl style="skin_scroll"
2569             id="sb_in_scene_friend"
2570             align="T"
2571             target="in_scene_friend"
2572             posparent="crop"
2573             posref="TL TR"
2574             x="-8"
2575             y="0" />
2576       <!-- *** -->
2577       <group id="in_scene_enemy"
2578              active="false"
2579              posparent="crop"
2580              posref="TM TM"
2581              x="0"
2582              y="-8"
2583              sizeref="w"
2584              child_resize_h="true"
2585              child_resize_hmargin="4"
2586              w="-4"
2587              max_sizeparent="crop"
2588              max_sizeref="h"
2589              max_h="-4">
2590         <!-- In scene enemy colors -->
2591         <view style="sgc_title"
2592               id="ccol"
2593               posref="TM TM"
2594               x="0"
2595               y="0"
2596               hardtext="uiEnemyIS" />
2597         <instance template="tgcw_checkbox"
2598                   id="is_enemy_guild_symbol"
2599                   text="uiGuildSymbol"
2600                   tooltip="uittGuildSymbol"
2601                   posref="TL TL"
2602                   x="0"
2603                   y="-20" />
2604         <instance template="tgcw_checkbox"
2605                   id="is_enemy_name"
2606                   text="uiWindowName"
2607                   tooltip="uittName"
2608                   posref="BL TL"
2609                   posparent="is_enemy_guild_symbol"
2610                   x="0"
2611                   y="-4" />
2612         <instance template="tgcw_checkbox"
2613                   id="is_enemy_title"
2614                   text="uiTitle"
2615                   tooltip="uittTitle"
2616                   posref="BL TL"
2617                   posparent="is_enemy_name"
2618                   x="0"
2619                   y="-4" />
2620         <instance template="tgcw_checkbox"
2621                   id="is_enemy_rptags"
2622                   text="uiRpTags"
2623                   tooltip="uittRpTags"
2624                   posref="BL TL"
2625                   posparent="is_enemy_title"
2626                   x="0"
2627                   y="-4" />                    
2628         <instance template="tgcw_checkbox"
2629                   id="is_enemy_guild_name"
2630                   text="uigcGuildName"
2631                   tooltip="uittGuildName"
2632                   posref="BL TL"
2633                   posparent="is_enemy_rptags"
2634                   x="0"
2635                   y="-4" />
2636         <instance template="tgcw_checkbox"
2637                   id="is_enemy_hp"
2638                   text="uiHP"
2639                   tooltip="uittHP"
2640                   posref="BL TL"
2641                   posparent="is_enemy_guild_name"
2642                   x="0"
2643                   y="-4" />
2644         <instance template="tgcw_checkbox"
2645                   id="is_ennemy_pvp_logo"
2646                   text="uiPvpLogo"
2647                   tooltip="uittPvpLogo"
2648                   posref="BL TL"
2649                   posparent="is_enemy_hp"
2650                   x="0"
2651                   y="-4" />
2652       </group>
2653       <ctrl style="skin_scroll"
2654             id="sb_in_scene_enemy"
2655             align="T"
2656             target="in_scene_enemy"
2657             posparent="crop"
2658             posref="TL TR"
2659             x="-8"
2660             y="0" />
2661       <!-- *** -->
2662       <group id="in_scene_chat_messages"
2663              active="false"
2664              posparent="crop"
2665              posref="TM TM"
2666              x="0"
2667              y="-8"
2668              sizeref="w"
2669              child_resize_h="true"
2670              child_resize_hmargin="4"
2671              w="-4"
2672              max_sizeparent="crop"
2673              max_sizeref="h"
2674              max_h="-4">
2675         <!-- In scene enemy colors -->
2676         <view style="sgc_title"
2677               id="ccol"
2678               posref="TM TM"
2679               x="0"
2680               y="0"
2681               hardtext="uiChatIS" />
2682         <instance template="tgcw_checkbox"
2683                   id="is_user_messages"
2684                   text="uiUserMessages"
2685                   tooltip="uittUserMessages"
2686                   posref="TL TL"
2687                   x="0"
2688                   y="-20" />
2689         <instance template="tgcw_checkbox"
2690                   id="is_friend_messages"
2691                   text="uiFriendMessages"
2692                   tooltip="uittFriendMessages"
2693                   posref="BL TL"
2694                   posparent="is_user_messages"
2695                   x="0"
2696                   y="-4" />
2697         <instance template="tgcw_checkbox"
2698                   id="is_enemy_messages"
2699                   text="uiEnemyMessages"
2700                   tooltip="uittEnemyMessages"
2701                   posref="BL TL"
2702                   posparent="is_friend_messages"
2703                   x="0"
2704                   y="-4" />
2705       </group>
2706       <ctrl style="skin_scroll"
2707             id="sb_in_scene_chat_messages"
2708             align="T"
2709             target="in_scene_chat_messages"
2710             posparent="crop"
2711             posref="TL TR"
2712             x="-8"
2713             y="0" />
2714       <!-- *** -->
2715       <group id="win_colors"
2716              active="false"
2717              posparent="crop"
2718              posref="TM TM"
2719              x="0"
2720              y="-8"
2721              sizeref="w"
2722              child_resize_h="true"
2723              child_resize_hmargin="4"
2724              w="-4"
2725              max_sizeparent="crop"
2726              max_sizeref="h"
2727              max_h="-4">
2728         <!-- win colors -->
2729         <view style="sgc_title"
2730               id="wcol"
2731               posref="TM TM"
2732               x="0"
2733               y="0"
2734               hardtext="uiWinColors" />
2735         <instance template="tgcw_color"
2736                   id="wc_pla"
2737                   text="uiPlaColor"
2738                   title="uiCCDPla"
2739                   tooltip="uittChoosePlaColor"
2740                   posref="TL TL"
2741                   x="0"
2742                   y="-20" />
2743         <instance template="tgcw_color"
2744                   id="wc_inv"
2745                   text="uiInvColor"
2746                   title="uiCCDInv"
2747                   tooltip="uittChooseInvColor"
2748                   posref="BL TL"
2749                   posparent="wc_pla"
2750                   x="0"
2751                   y="-4" />
2752         <instance template="tgcw_color"
2753                   id="wc_ani"
2754                   text="uiAniColor"
2755                   title="uiCCDAni"
2756                   tooltip="uittChooseAniColor"
2757                   posref="BL TL"
2758                   posparent="wc_inv"
2759                   x="0"
2760                   y="-4" />
2761         <instance template="tgcw_color"
2762                   id="wc_help"
2763                   text="uiHelColor"
2764                   title="uiCCDHel"
2765                   tooltip="uittChooseHelColor"
2766                   posref="BL TL"
2767                   posparent="wc_ani"
2768                   x="0"
2769                   y="-16" />
2770         <instance template="tgcw_color"
2771                   id="wc_infos"
2772                   text="uiInfColor"
2773                   title="uiCCDInf"
2774                   tooltip="uittChooseInfColor"
2775                   posref="BL TL"
2776                   posparent="wc_help"
2777                   x="0"
2778                   y="-4" />
2779         <instance template="tgcw_color"
2780                   id="wc_opt"
2781                   text="uiOptColor"
2782                   title="uiCCDOpt"
2783                   tooltip="uittChooseOptColor"
2784                   posref="BL TL"
2785                   posparent="wc_infos"
2786                   x="0"
2787                   y="-4" />
2788         <instance template="tgcw_color"
2789                   id="wc_mem"
2790                   text="uiMemColor"
2791                   title="uiCCDMem"
2792                   tooltip="uittChooseMemColor"
2793                   posref="TL TL"
2794                   posparent="wc_opt"
2795                   x="0"
2796                   y="-16" />
2797         <instance template="tgcw_color"
2798                   id="wc_lab"
2799                   text="uiLabColor"
2800                   title="uiCCDLab"
2801                   tooltip="uittChooseLabColor"
2802                   posref="BL TL"
2803                   posparent="wc_mem"
2804                   x="0"
2805                   y="-4" />
2806         <instance template="tgcw_color"
2807                   id="wc_com"
2808                   text="uiComColor"
2809                   title="uiCCDCom"
2810                   tooltip="uittChooseComColor"
2811                   posref="BL TL"
2812                   posparent="wc_lab"
2813                   x="0"
2814                   y="-16" />
2815         <instance template="tgcw_color"
2816                   id="wc_trade"
2817                   text="uiTraColor"
2818                   title="uiCCDTra"
2819                   tooltip="uittChooseTraColor"
2820                   posref="BL TL"
2821                   posparent="wc_com"
2822                   x="0"
2823                   y="-4" />
2824         <instance template="tgcw_color"
2825                   id="wc_bot"
2826                   text="uiBotColor"
2827                   title="uiCCDBot"
2828                   tooltip="uittChooseBotColor"
2829                   posref="BL TL"
2830                   posparent="wc_trade"
2831                   x="0"
2832                   y="-4" />
2833       </group>
2834       <ctrl style="skin_scroll"
2835             id="sb_win_colors"
2836             align="T"
2837             target="win_colors"
2838             posparent="crop"
2839             posref="TL TR"
2840             x="-8"
2841             y="0" />
2842       <group id="win_colors_r2"
2843              active="false"
2844              posparent="crop"
2845              posref="TM TM"
2846              x="0"
2847              y="-8"
2848              sizeref="w"
2849              child_resize_h="true"
2850              child_resize_hmargin="4"
2851              w="-4"
2852              max_sizeparent="crop"
2853              max_sizeref="h"
2854              max_h="-4">
2855         <view style="sgc_title"
2856               id="wcol"
2857               posref="TM TM"
2858               x="0"
2859               y="0"
2860               hardtext="uiR2WinColors" />
2861         <instance template="tgcw_color"
2862                   id="wc_r2_palette"
2863                   text="uiR2Palette"
2864                   title="uiCCDR2_palette"
2865                   tooltip="uittR2_Palette"
2866                   posref="TL TL"
2867                   x="0"
2868                   y="-20" />
2869         <instance template="tgcw_color"
2870                   id="wc_r2_scenario"
2871                   text="uiR2Scenario"
2872                   title="uiCCDR2_scenario"
2873                   tooltip="uittR2_Scenario"
2874                   posparent="wc_r2_palette"
2875                   posref="BL TL"
2876                   x="0"
2877                   y="-4" />
2878         <instance template="tgcw_color"
2879                   id="wc_r2_prop_window"
2880                   text="uiR2Prop_window"
2881                   title="uiCCDR2_prop_window"
2882                   tooltip="uittR2_Prop_window"
2883                   posparent="wc_r2_scenario"
2884                   posref="BL TL"
2885                   x="0"
2886                   y="-4" />
2887         <instance template="tgcw_color"
2888                   id="wc_r2_form"
2889                   text="uiR2Form"
2890                   title="uiCCDR2_form"
2891                   tooltip="uittR2_Form"
2892                   posparent="wc_r2_prop_window"
2893                   posref="BL TL"
2894                   x="0"
2895                   y="-4" />
2896         <instance template="tgcw_color"
2897                   id="wc_r2_custom_look"
2898                   text="uiR2Custom_look"
2899                   title="uiCCDR2_custom_look"
2900                   tooltip="uittR2_Custom_look"
2901                   posparent="wc_r2_form"
2902                   posref="BL TL"
2903                   x="0"
2904                   y="-4" />
2905         <instance template="tgcw_color"
2906                   id="wc_r2_dialogs"
2907                   text="uiR2Dialogs"
2908                   title="uiCCDR2_dialogs"
2909                   tooltip="uittR2_Dialogs"
2910                   posparent="wc_r2_custom_look"
2911                   posref="BL TL"
2912                   x="0"
2913                   y="-4" />
2914         <instance template="tgcw_color"
2915                   id="wc_r2_events"
2916                   text="uiR2Events"
2917                   title="uiCCDR2_events"
2918                   tooltip="uittR2_Events"
2919                   posparent="wc_r2_dialogs"
2920                   posref="BL TL"
2921                   x="0"
2922                   y="-4" />
2923         <instance template="tgcw_color"
2924                   id="wc_r2_activities"
2925                   text="uiR2Activities"
2926                   title="uiCCDR2_activities"
2927                   tooltip="uittR2_Activities"
2928                   posparent="wc_r2_events"
2929                   posref="BL TL"
2930                   x="0"
2931                   y="-4" />
2932         <instance template="tgcw_color"
2933                   id="wc_r2_feature_help"
2934                   text="uiR2Feature_help"
2935                   title="uiCCDR2_feature_help"
2936                   tooltip="uittR2_Feature_help"
2937                   posparent="wc_r2_activities"
2938                   posref="BL TL"
2939                   x="0"
2940                   y="-4" />
2941         <instance template="tgcw_color"
2942                   id="wc_r2_connect"
2943                   text="uiR2Connect"
2944                   title="uiCCDR2_connect"
2945                   tooltip="uittR2_Connect"
2946                   posparent="wc_r2_feature_help"
2947                   posref="BL TL"
2948                   x="0"
2949                   y="-4" />
2950         <instance template="tgcw_color"
2951                   id="wc_r2_session_browser"
2952                   text="uiR2Session_browser"
2953                   title="uiCCDR2_session_browser"
2954                   tooltip="uittR2_Session_browser"
2955                   posparent="wc_r2_connect"
2956                   posref="BL TL"
2957                   x="0"
2958                   y="-4" />
2959         <instance template="tgcw_color"
2960                   id="wc_r2_scenario_control"
2961                   text="uiR2Scenario_control"
2962                   title="uiCCDR2_scenario_control"
2963                   tooltip="uittR2_Scenario_control"
2964                   posparent="wc_r2_session_browser"
2965                   posref="BL TL"
2966                   x="0"
2967                   y="-4" />
2968         <instance template="tgcw_color"
2969                   id="wc_r2_player_tracking"
2970                   text="uiR2Player_tracking"
2971                   title="uiCCDR2_player_tracking"
2972                   tooltip="uittR2_Player_tracking"
2973                   posparent="wc_r2_scenario_control"
2974                   posref="BL TL"
2975                   x="0"
2976                   y="-4" />
2977       </group>
2978       <ctrl style="skin_scroll"
2979             id="sb_win_colors_r2"
2980             align="T"
2981             target="win_colors_r2"
2982             posparent="crop"
2983             posref="TL TR"
2984             x="-8"
2985             y="0" />
2986       <!-- *** -->
2987       <group id="mouse"
2988              active="false"
2989              posparent="crop"
2990              posref="TM TM"
2991              x="0"
2992              y="-8"
2993              sizeref="w"
2994              child_resize_h="true"
2995              child_resize_hmargin="4"
2996              w="-4"
2997              max_sizeparent="crop"
2998              max_sizeref="h"
2999              max_h="-4">
3000         <view style="sgc_title"
3001               id="mouseopt"
3002               posref="TM TM"
3003               x="0"
3004               y="0"
3005               hardtext="uiMouseOptions" />
3006         <instance template="tgcw_checkbox"
3007                   id="hard"
3008                   text="uiMouseHardware"
3009                   posref="TM TL"
3010                   x="0"
3011                   y="-35" />
3012         <instance template="tgcw_checkbox"
3013                   id="inverted"
3014                   text="uiMouseInverted"
3015                   posparent="hard"
3016                   posref="BL TL"
3017                   x="0"
3018                   y="-2" />
3019         <instance template="tgcw_checkbox"
3020                   id="dbl"
3021                   text="uiMouseDblClickMode"
3022                   posparent="inverted"
3023                   posref="BL TL"
3024                   x="0"
3025                   y="-2" />
3026         <instance template="tgcw_checkbox"
3027                   id="tablet"
3028                   text="uiFreeViewTablet"
3029                   posparent="dbl"
3030                   posref="BL TL"
3031                   x="0"
3032                   y="-2" />
3033         <view style="sgc_title2"
3034               type="text"
3035               id="inter"
3036               posref="TL TL"
3037               x="0"
3038               y="-20"
3039               hardtext="uiMouseInterface" />
3040         <instance template="tgcw_scrollbarint"
3041                   id="dcspeed"
3042                   text="uiDoubleClickSpeed"
3043                   posparent="inter"
3044                   posref="BL TL"
3045                   x="20"
3046                   y="-2" />
3047         <instance template="tgcw_scrollbarfloat"
3048                   id="curspeed"
3049                   text="uiCursorSpeed"
3050                   posparent="dcspeed"
3051                   posref="BL TL"
3052                   x="0"
3053                   y="-2" />
3054         <instance template="tgcw_scrollbarint"
3055                   id="curaccel"
3056                   text="uiCursorAccel"
3057                   posparent="curspeed"
3058                   posref="BL TL"
3059                   x="0"
3060                   y="-2" />
3061         <view style="sgc_title2"
3062               type="text"
3063               id="head"
3064               posref="BL TL"
3065               hardtext="uiMouseHead"
3066               posparent="curaccel"
3067               x="-20"
3068               y="-12" />
3069         <instance template="tgcw_scrollbarfloat"
3070                   id="headspeed"
3071                   text="uiHeadSpeed"
3072                   posparent="head"
3073                   posref="BL TL"
3074                   x="20"
3075                   y="-2" />
3076         <instance template="tgcw_scrollbarint"
3077                   id="headaccel"
3078                   text="uiHeadAccel"
3079                   posparent="headspeed"
3080                   posref="BL TL"
3081                   x="0"
3082                   y="-2" />
3083       </group>
3084       <ctrl style="skin_scroll"
3085             id="sb_mouse"
3086             align="T"
3087             target="mouse"
3088             posparent="crop"
3089             posref="TL TR"
3090             x="-8"
3091             y="0" />
3092       <!-- *** -->
3093       <group id="keyb"
3094              active="false"
3095              posparent="crop"
3096              posref="TM TM"
3097              x="0"
3098              y="-8"
3099              sizeref="w"
3100              child_resize_h="true"
3101              child_resize_hmargin="4"
3102              w="-4"
3103              max_sizeparent="crop"
3104              max_sizeref="h"
3105              max_h="-4">
3106         <view style="sgc_title"
3107               id="mouseopt"
3108               posref="TM TM"
3109               x="0"
3110               y="0"
3111               hardtext="uiKeybOptions" />
3112         <view style="sgc_title2"
3113               type="text"
3114               id="cam"
3115               posref="TL TL"
3116               x="0"
3117               y="-20"
3118               hardtext="uiKeybCamera" />
3119         <instance template="tgcw_scrollbarfloat"
3120                   id="speedmax"
3121                   text="uiKeybCamSpeedMax"
3122                   posparent="cam"
3123                   posref="BL TL"
3124                   x="20"
3125                   y="-2" />
3126         <instance template="tgcw_scrollbarfloat"
3127                   id="speedmin"
3128                   text="uiKeybCamSpeedMin"
3129                   posparent="speedmax"
3130                   posref="BL TL"
3131                   x="0"
3132                   y="-2" />
3133       </group>
3134       <ctrl style="skin_scroll"
3135             id="sb_keyb"
3136             align="T"
3137             target="keyb"
3138             posparent="crop"
3139             posref="TL TR"
3140             x="-8"
3141             y="0" />
3142       <!-- *** -->
3143       <group id="vr"
3144              active="false"
3145              posparent="crop"
3146              posref="TM TM"
3147              x="0"
3148              y="-8"
3149              sizeref="w"
3150              child_resize_h="true"
3151              child_resize_hmargin="4"
3152              w="-4"
3153              max_sizeparent="crop"
3154              max_sizeref="h"
3155              max_h="-4">
3156         <view style="sgc_title"
3157               type="text"
3158               id="gen"
3159               posref="TM TM"
3160               x="0"
3161               y="0"
3162               hardtext="uiVRGeneral" />
3163         <group id="enabler"
3164                posref="TL TL"
3165                x="0"
3166                y="-16"
3167                child_resize_w="true"
3168                h="14">
3169           <ctrl type="button"
3170                 id="c"
3171                 button_type="toggle_button"
3172                 posref="TL TL"
3173                 x="0"
3174                 y="0"
3175                 tx_normal="w_slot_on.tga"
3176                 tx_pushed="w_opacity_on.tga"
3177                 tx_over="w_slot_on.tga"
3178                 color="255 255 255 255"
3179                 col_pushed="255 255 255 255"
3180                 col_over="255 255 255 0"
3181                 onclick_l="game_config_change_vr_enable"
3182                 params_l="" />
3183           <view type="text"
3184                 id="text"
3185                 posparent="c"
3186                 posref="MR ML"
3187                 x="4"
3188                 y="-2"
3189                 color="255 255 255 192"
3190                 fontsize="12"
3191                 shadow="true"
3192                 hardtext="uiVREnable" />
3193         </group>
3194         <group type="combo_box"
3195                id="vr_devices"
3196                sizeparent="parent"
3197                sizeref="w"
3198                w="0"
3199                h="20"
3200                value="UI:TEMP:VR_DEVICE"
3201                posparent="enabler"
3202                posref="BL TL"
3203                x="0"
3204                y="-4">
3205           <instance template="combo_box_def1" />
3206         </group>
3207         <link expr="@UI:TEMP:VR_DEVICE"
3208               action="game_config_change_vr_device" />
3209       </group>
3210       <ctrl style="skin_scroll"
3211             id="sb_vr"
3212             align="T"
3213             target="vr"
3214             posparent="crop"
3215             posref="TL TR"
3216             x="-8"
3217             y="0" />
3218       <!-- *** -->
3219       <group id="sound"
3220              active="false"
3221              posparent="crop"
3222              posref="TM TM"
3223              x="0"
3224              y="-8"
3225              sizeref="w"
3226              child_resize_h="true"
3227              child_resize_hmargin="4"
3228              w="-4"
3229              max_sizeparent="crop"
3230              max_sizeref="h"
3231              max_h="-4">
3232         <view style="sgc_title"
3233               type="text"
3234               id="gen"
3235               posref="TM TM"
3236               x="0"
3237               y="0"
3238               hardtext="uiSoundGeneral" />
3239         <instance template="tgcw_checkbox"
3240                   id="enabler"
3241                   text="uiSoundOnOff"
3242                   posref="TL TL"
3243                   x="0"
3244                   y="-16" />
3245         <instance template="tgcw_checkbox"
3246                   id="useeax"
3247                   text="uiUseEax"
3248                   posref="BL TL"
3249                   posparent="enabler"
3250                   x="0"
3251                   y="-12" />
3252         <instance template="tgcw_checkbox"
3253                   id="forcesoftbuf"
3254                   text="uiSoundFSB"
3255                   posref="BL TL"
3256                   posparent="useeax"
3257                   x="0"
3258                   y="-12" />
3259         <view style="sgc_title2"
3260               type="text"
3261               id="perf"
3262               posparent="forcesoftbuf"
3263               posref="BL TL"
3264               x="0"
3265               y="-8"
3266               hardtext="uiSoundPerf" />
3267         <instance template="tgcw_scrollbarint"
3268                   id="maxtrack"
3269                   text="uiMaxTracks"
3270                   posparent="perf"
3271                   posref="BL TL"
3272                   x="20"
3273                   y="-2" />
3274         <view style="sgc_title2"
3275               type="text"
3276               id="volume"
3277               posparent="maxtrack"
3278               posref="BL TL"
3279               x="-20"
3280               y="-2"
3281               hardtext="uiSoundVolume" />
3282         <instance template="tgcw_scrollbarfloat"
3283                   id="sfx_volume"
3284                   text="uiSoundSFXVolume"
3285                   posparent="volume"
3286                   posref="BL TL"
3287                   x="20"
3288                   y="-2" />
3289         <instance template="tgcw_scrollbarfloat"
3290                   id="music_volume"
3291                   text="uiSoundGameMusicVolume"
3292                   posparent="sfx_volume"
3293                   posref="BL TL"
3294                   x="0"
3295                   y="-2" />
3296         <instance template="tgcw_scrollbarint"
3297                   id="mp3_volume"
3298                   text="uimwMP3Player"
3299                   posparent="music_volume"
3300                   posref="BL TL"
3301                   x="0"
3302                   y="-2" />
3303       </group>
3304       <ctrl style="skin_scroll"
3305             id="sb_sound"
3306             align="T"
3307             target="sound"
3308             posparent="crop"
3309             posref="TL TR"
3310             x="-8"
3311             y="0" />
3312       <!-- *** -->
3313       <group id="landmark_colors"
3314              active="false"
3315              posparent="crop"
3316              posref="TM TM"
3317              x="0"
3318              y="-8"
3319              sizeref="w"
3320              child_resize_h="true"
3321              child_resize_hmargin="4"
3322              w="-4"
3323              max_sizeparent="crop"
3324              max_sizeref="h"
3325                  max_h="-4">
3326         <!-- Landmark colors -->
3327         <view style="sgc_title"
3328               id="ccol"
3329               posref="TM TM"
3330               x="0"
3331               y="0"
3332               hardtext="uiLandmarkColors" />
3333         <instance template="tgcw_color"
3334                   id="cc_misc"
3335                   text="uiLMMiscColor"
3336                   title="uiCCDLMMisc"
3337                   tooltip="uittChooseLMMiscColor"
3338                   posref="TL TL"
3339                   x="0"
3340                   y="-20" />
3341         <instance template="tgcw_color" id="cc_tribe" text="uiLMTribeColor" title="uiCCDLMTribe" tooltip="uittChooseLMTribeColor" posref="BL TL" posparent="cc_misc" x="0" y="-16" />
3342                 <instance template="tgcw_color" id="cc_bandit" text="uiLMBanditColor" title="uiCCDLMBandit" tooltip="uittChooseLMBanditColor" posref="BL TL" posparent="cc_tribe" x="0" y="-4" />
3343                 <instance template="tgcw_color" id="cc_citizen" text="uiLMCitizenColor" title="uiCCDLMCitizen" tooltip="uittChooseLMCitizenColor" posref="BL TL" posparent="cc_bandit" x="0" y="-4" />
3344                 <instance template="tgcw_color" id="cc_fauna" text="uiLMFaunaColor" title="uiCCDLMFauna" tooltip="uittChooseLMFaunaColor" posref="BL TL" posparent="cc_citizen" x="0" y="-16" />
3345                 <instance template="tgcw_color" id="cc_faunaexcel" text="uiLMFaunaExcelColor" title="uiCCDLMFaunaExcel" tooltip="uittChooseLMFaunaExcelColor" posref="BL TL" posparent="cc_fauna" x="0" y="-4" />
3346                 <instance template="tgcw_color" id="cc_faunasup" text="uiLMFaunaSupColor" title="uiCCDLMFaunaSup" tooltip="uittChooseLMFaunaSupColor" posref="BL TL" posparent="cc_faunaexcel" x="0" y="-4" />
3347                 <instance template="tgcw_color" id="cc_forage" text="uiLMForageColor" title="uiCCDLMForage" tooltip="uittChooseLMForageColor" posref="BL TL" posparent="cc_faunasup" x="0" y="-16" />
3348                 <instance template="tgcw_color" id="cc_forageexcel" text="uiLMForageExcelColor" title="uiCCDLMForageExcel" tooltip="uittChooseLMForageExcelColor" posref="BL TL" posparent="cc_forage" x="0" y="-4" />
3349                 <instance template="tgcw_color" id="cc_foragesup" text="uiLMForageSupColor" title="uiCCDLMForageSup" tooltip="uittChooseLMForageSupColor" posref="BL TL" posparent="cc_forageexcel" x="0" y="-4" />
3350                 <instance template="tgcw_color" id="cc_sap" text="uiLMSapColor" title="uiCCDLMSap" tooltip="uittChooseLMSapColor" posref="BL TL" posparent="cc_foragesup" x="16" y="-4" />
3351                 <instance template="tgcw_color" id="cc_amber" text="uiLMAmberColor" title="uiCCDLMAmber" tooltip="uittChooseLMAmberColor" posref="BL TL" posparent="cc_sap" x="0" y="-4" />
3352                 <instance template="tgcw_color" id="cc_node" text="uiLMNodeColor" title="uiCCDLMNode" tooltip="uittChooseLMNodeColor" posref="BL TL" posparent="cc_amber" x="0" y="-4" />
3353                 <instance template="tgcw_color" id="cc_fiber" text="uiLMFiberColor" title="uiCCDLMFiber" tooltip="uittChooseLMFiberColor" posref="BL TL" posparent="cc_node" x="0" y="-4" />
3354                 <instance template="tgcw_color" id="cc_bark" text="uiLMBarkColor" title="uiCCDLMBark" tooltip="uittChooseLMBarkColor" posref="BL TL" posparent="cc_fiber" x="0" y="-4" />
3355                 <instance template="tgcw_color" id="cc_seed" text="uiLMSeedColor" title="uiCCDLMSeed" tooltip="uittChooseLMSeedColor" posref="BL TL" posparent="cc_bark" x="0" y="-4" />
3356                 <instance template="tgcw_color" id="cc_shell" text="uiLMShellColor" title="uiCCDLMShell" tooltip="uittChooseLMShellColor" posref="BL TL" posparent="cc_seed" x="0" y="-4" />
3357                 <instance template="tgcw_color" id="cc_resin" text="uiLMResinColor" title="uiCCDLMResin" tooltip="uittChooseLMResinColor" posref="BL TL" posparent="cc_shell" x="0" y="-4" />
3358                 <instance template="tgcw_color" id="cc_wood" text="uiLMWoodColor" title="uiCCDLMWood" tooltip="uittChooseLMWoodColor" posref="BL TL" posparent="cc_resin" x="0" y="-4" />
3359                 <instance template="tgcw_color" id="cc_oil" text="uiLMOilColor" title="uiCCDLMOil" tooltip="uittChooseLMOilColor" posref="BL TL" posparent="cc_wood" x="0" y="-4" />
3360                 <instance template="tgcw_color" id="cc_mission" text="uiLMMissionColor" title="uiCCDLMMission" tooltip="uittChooseLMMissionColor" posref="BL TL" posparent="cc_oil" x="-16" y="-16" />
3361                 <instance template="tgcw_color" id="cc_food" text="uiLMFoodColor" title="uiCCDLMFood" tooltip="uittChooseLMFoodColor" posref="BL TL" posparent="cc_mission" x="16" y="-4" />
3362                 <instance template="tgcw_color" id="cc_construction" text="uiLMConstructionColor" title="uiCCDLMConstruction" tooltip="uittChooseLMConstructionColor" posref="BL TL" posparent="cc_food" x="0" y="-4" />
3363                 <instance template="tgcw_color" id="cc_goo" text="uiLMGooColor" title="uiCCDLMGoo" tooltip="uittChooseLMGooColor" posref="BL TL" posparent="cc_construction" x="0" y="-4" />
3364                 <instance template="tgcw_color" id="cc_insect" text="uiLMInsectColor" title="uiCCDLMInsect" tooltip="uittChooseLMInsectColor" posref="BL TL" posparent="cc_goo" x="0" y="-4" />
3365                 <instance template="tgcw_color" id="cc_kitin" text="uiLMKitinColor" title="uiCCDLMKitin" tooltip="uittChooseLMKitinColor" posref="BL TL" posparent="cc_insect" x="0" y="-4" />
3366                 <instance template="tgcw_color" id="cc_nocive" text="uiLMNociveColor" title="uiCCDLMNocive" tooltip="uittChooseLMNociveColor" posref="BL TL" posparent="cc_kitin" x="0" y="-4" />
3367                 <instance template="tgcw_color" id="cc_preservative" text="uiLMPreservativeColor" title="uiCCDLMPreservative" tooltip="uittChooseLMPreservativeColor" posref="BL TL" posparent="cc_nocive" x="0" y="-4" />
3368                 <instance template="tgcw_color" id="cc_passage" text="uiLMPassageColor" title="uiCCDLMPassage" tooltip="uittChooseLMPassageColor" posref="BL TL" posparent="cc_preservative" x="-16" y="-16" />
3369                 <instance template="tgcw_color" id="cc_teleporter" text="uiLMTeleporterColor" title="uiCCDLMTeleporter" tooltip="uittChooseLMTeleporterColor" posref="BL TL" posparent="cc_passage" x="0" y="-4" />
3371       </group>
3372       <ctrl style="skin_scroll"
3373             id="sb_landmark_colors"
3374             align="T"
3375             target="landmark_colors"
3376             posparent="crop"
3377             posref="TL TR"
3378             x="-8"
3379             y="0" />                    
3380       <!-- *** -->
3381       <group id="help"
3382              active="false"
3383              posparent="crop"
3384              posref="TM TM"
3385              x="0"
3386              y="-8"
3387              sizeref="w"
3388              child_resize_h="true"
3389              child_resize_hmargin="4"
3390              w="-4"
3391              max_sizeparent="crop"
3392              max_sizeref="h"
3393              max_h="-4">
3394         <!-- Entities Names -->
3395         <view style="sgc_title"
3396               type="text"
3397               id="hen"
3398               posref="TM TM"
3399               x="0"
3400               y="0"
3401               hardtext="uiHelp" />
3402         <instance template="tgcw_checkbox"
3403                   id="context_help"
3404                   text="uiShowContextHelp"
3405                   posref="TL TL"
3406                   x="0"
3407                   y="-20" />
3408       </group>
3409       <ctrl style="skin_scroll"
3410             id="sb_help"
3411             align="T"
3412             target="help"
3413             posparent="crop"
3414             posref="TL TR"
3415             x="-8"
3416             y="0" />
3417       <!-- *** -->
3418       <!-- *** -->
3419       <ddx id="all">
3420         <!-- This ref to the apply button -->
3421         <apply ui="apply" />
3422         <param ui="general:con:c"
3423                type="cfg"
3424                realtime="true"
3425                widget="sbfloat"
3426                link="Contrast" />
3427         <param ui="general:lum:c"
3428                type="cfg"
3429                realtime="true"
3430                widget="sbfloat"
3431                link="Luminosity" />
3432         <param ui="general:gam:c"
3433                type="cfg"
3434                realtime="true"
3435                widget="sbfloat"
3436                link="Gamma" />
3437         <param ui="general:scale_auto:c"
3438                type="cfg"
3439                realtime="true"
3440                ui_view="general:scale_auto:c_res"
3441                ui_decimal="2"
3442                widget="boolbut"
3443                link="InterfaceScaleAuto" />
3444         <param ui="general:scale:c"
3445                type="cfg"
3446                realtime="false"
3447                ui_view="general:scale:c_res"
3448                ui_decimal="2"
3449                widget="sbfloat"
3450                link="InterfaceScale" />
3451         <param ui="general:waitvbl:c"
3452                type="cfg"
3453                realtime="true"
3454                widget="boolbut"
3455                link="WaitVBL" />
3456         <param ui="general:window_snap_distance:c"
3457                type="cfg"
3458                realtime="true"
3459                ui_view="general:window_snap_distance:c_res"
3460                ui_decimal="2"
3461                widget="sbint"
3462                link="WindowSnapDistance" />
3463         <param ui="general:window_snap_invert:c"
3464                type="cfg"
3465                realtime="true"
3466                widget="boolbut"
3467                link="WindowSnapInvert" />
3468         <param ui="landscape:lvi:c"
3469                type="cfg"
3470                widget="sbfloat_round"
3471                realtime="end_scroll"
3472                ui_view="landscape:lvi:c_res"
3473                ui_unit="uigcUnitMeters"
3474                link="Vision"
3475                preset="UI:TEMP:PRESET_LAND" />
3476         <param ui="landscape:ltn:c"
3477                type="cfg"
3478                widget="sbfloat_round"
3479                realtime="true"
3480                ui_view="landscape:ltn:c_res"
3481                ui_unit="uigcUnitMeters"
3482                link="LandscapeTileNear"
3483                preset="UI:TEMP:PRESET_LAND" />
3484         <param ui="landscape:lth:c"
3485                type="cfg"
3486                widget="sbfloat"
3487                realtime="true"
3488                ui_view="landscape:lth:c_res"
3489                ui_decimal="4"
3490                link="LandscapeThreshold"
3491                preset="UI:TEMP:PRESET_LAND" />
3492         <param ui="landscape:lmv:c"
3493                type="cfg"
3494                widget="boolbut"
3495                realtime="true"
3496                link="MicroVeget"
3497                preset="UI:TEMP:PRESET_LAND" />
3498         <param ui="landscape:mvd:c"
3499                type="cfg"
3500                widget="sbfloat_round"
3501                realtime="end_scroll"
3502                ui_view="landscape:mvd:c_res"
3503                ui_unit="uigcUnitPercent"
3504                link="MicroVegetDensity"
3505                preset="UI:TEMP:PRESET_LAND" />
3506         <param ui="char:maxpoly:c"
3507                type="cfg"
3508                widget="sbint"
3509                realtime="true"
3510                ui_view="char:maxpoly:c_res"
3511                link="SkinNbMaxPoly"
3512                preset="UI:TEMP:PRESET_CHAR" />
3513         <param ui="char:maxnotclod:c"
3514                type="cfg"
3515                widget="sbint"
3516                realtime="true"
3517                ui_view="char:maxnotclod:c_res"
3518                ui_unit="uigcUnitChar"
3519                link="NbMaxSkeletonNotCLod"
3520                preset="UI:TEMP:PRESET_CHAR" />
3521         <param ui="char:farclip:c"
3522                type="cfg"
3523                widget="sbfloat_round"
3524                realtime="true"
3525                ui_view="char:farclip:c_res"
3526                ui_unit="uigcUnitMeters"
3527                link="CharacterFarClip"
3528                preset="UI:TEMP:PRESET_CHAR" />
3529         <param ui="char:race_anim:c"
3530                type="cfg"
3531                widget="boolbut"
3532                realtime="true"
3533                link="EnableRacialAnimation" />
3534         <param ui="fx:maxpoly:c"
3535                type="cfg"
3536                widget="sbint"
3537                realtime="true"
3538                ui_view="fx:maxpoly:c_res"
3539                link="FxNbMaxPoly"
3540                preset="UI:TEMP:PRESET_FX" />
3541         <param ui="fx:cloud:c"
3542                type="cfg"
3543                widget="boolbut"
3544                realtime="true"
3545                link="Cloud"
3546                preset="UI:TEMP:PRESET_FX" />
3547         <param ui="fx:cqual:c"
3548                type="cfg"
3549                widget="sbfloat_round"
3550                realtime="true"
3551                ui_view="fx:cqual:c_res"
3552                link="CloudQuality"
3553                preset="UI:TEMP:PRESET_FX" />
3554         <param ui="fx:cup:c"
3555                type="cfg"
3556                widget="sbint"
3557                realtime="true"
3558                ui_view="fx:cup:c_res"
3559                link="CloudUpdate"
3560                preset="UI:TEMP:PRESET_FX" />
3561         <param ui="fx:shadow:c"
3562                type="cfg"
3563                widget="boolbut"
3564                realtime="true"
3565                link="Shadows"
3566                preset="UI:TEMP:PRESET_FX" />
3567         <param ui="fx:fxaa:c"
3568                type="cfg"
3569                widget="boolbut"
3570                realtime="true"
3571                link="FXAA"
3572                preset="UI:TEMP:PRESET_FX" />
3573         <param ui="fx:anisotropic_gr:anisotropic:c"
3574                type="db"
3575                widget="boolbut"
3576                realtime="true"
3577                link="UI:TEMP:ANISOTROPIC" />
3578         <param ui="fx:bloom_gr:bloom:c"
3579                type="cfg"
3580                widget="boolbut"
3581                realtime="true"
3582                link="Bloom"
3583                preset="UI:TEMP:PRESET_FX" />
3584         <param ui="fx:bloom_gr:square_bloom:c"
3585                type="cfg"
3586                widget="boolbut"
3587                realtime="true"
3588                link="SquareBloom"
3589                preset="UI:TEMP:PRESET_FX" />
3590         <param ui="fx:bloom_gr:density_bloom:c"
3591                type="cfg"
3592                widget="sbfloat_round"
3593                realtime="true"
3594                ui_view="fx:bloom_gr:density_bloom:c_res"
3595                link="DensityBloom"
3596                preset="UI:TEMP:PRESET_FX" />
3597         <!--
3598                         <param ui="hud:suc:c"  type="cfg" widget="boolbut" link="ShowNameUnderCursor" realtime="true"/>
3599                         <param ui="hud:sta:c"  type="cfg" widget="boolbut" link="ShowNameSelected"    realtime="true"/>
3601         <param ui="hud:swrc:c"
3602                type="cfg"
3603                widget="boolbut"
3604                link="SelectWithRClick"
3605                realtime="true" />
3606         <param ui="hud:foa:c"
3607                type="cfg"
3608                widget="boolbut"
3609                link="FollowOnAtk"
3610                realtime="true" />
3611         <param ui="hud:aos:c"
3612                type="cfg"
3613                widget="boolbut"
3614                link="AtkOnSelect"
3615                realtime="true" />
3616         <param ui="hud:aet:c"
3617                type="cfg"
3618                widget="boolbut"
3619                link="AutoEquipTool"
3620                realtime="true" />
3621         <param ui="hud:auc:c"
3622                type="cfg"
3623                widget="boolbut"
3624                link="AutomaticCamera"
3625                realtime="true" />
3626         <param ui="hud:aul:c"
3627                type="db"
3628                widget="boolbut"
3629                link="UI:SAVE:AUTO_LIGHT"
3630                realtime="true" />
3631         <param ui="hud:fade:c"
3632                type="db"
3633                widget="boolbut"
3634                link="UI:SAVE:USER_CHAR_FADE"
3635                realtime="true" />
3636         <param ui="hud:opamin:c"
3637                type="db"
3638                widget="sbint"
3639                link="UI:SAVE:USER_CHAR_OPA_MIN"
3640                min="0"
3641                max="255"
3642                realtime="true" />
3643         <param ui="hud:cao:c"
3644                type="db"
3645                widget="boolbut"
3646                link="UI:SAVE:ACT_BAR_OUT"
3647                realtime="true" />
3648         <param ui="hud:show_icon_buffs:c"
3649                type="db"
3650                widget="boolbut"
3651                link="UI:SAVE:SHOW_ICON_BUFFS"
3652                realtime="true" />
3653         <param ui="hud:show_clock:c"
3654                type="db"
3655                widget="boolbut"
3656                link="UI:SAVE:SHOW_CLOCK"
3657                realtime="true" />
3658         <param ui="hud:show_clock_12h:c"
3659                type="db"
3660                widget="boolbut"
3661                link="UI:SAVE:SHOW_CLOCK_12H"
3662                realtime="true" />
3663         <param ui="hud:show_reticle:c"
3664                type="db"
3665                widget="boolbut"
3666                link="UI:SAVE:SHOW_RETICLE"
3667                realtime="true" />
3668         <param ui="hud:radar_use_camera:c"
3669                type="db"
3670                widget="boolbut"
3671                link="UI:SAVE:RADAR:USE_CAMERA"
3672                realtime="true" />
3673         <param ui="alpha_colors:col_day:c"
3674                type="db"
3675                widget="colbut"
3676                link="UI:SAVE:DAY_COLOR"
3677                realtime="true" />
3678         <param ui="alpha_colors:col_night:c"
3679                type="db"
3680                widget="colbut"
3681                link="UI:SAVE:NIGHT_COLOR"
3682                realtime="true" />
3683         <param ui="alpha_colors:ga_win:c"
3684                type="db"
3685                widget="sbint"
3686                link="UI:SAVE:CONTAINER_ALPHA"
3687                min="0"
3688                max="255"
3689                realtime="true" />
3690         <param ui="alpha_colors:ga_con:c"
3691                type="db"
3692                widget="sbint"
3693                link="UI:SAVE:CONTENT_ALPHA"
3694                min="64"
3695                max="255"
3696                realtime="true" />
3697         <param ui="alpha_colors:moa_win:c"
3698                type="db"
3699                widget="sbint"
3700                link="UI:SAVE:CONTAINER_ROLLOVER_FACTOR"
3701                min="0"
3702                max="255"
3703                realtime="true" />
3704         <param ui="alpha_colors:moa_con:c"
3705                type="db"
3706                widget="sbint"
3707                link="UI:SAVE:CONTENT_ROLLOVER_FACTOR"
3708                min="64"
3709                max="255"
3710                realtime="true" />
3711         <param ui="alpha_colors:moa_speed:c"
3712                type="db"
3713                widget="sbint"
3714                link="UI:SAVE:ALPHA_ROLLOVER_SPEED"
3715                min="0"
3716                max="100"
3717                realtime="true" />
3718         <param ui="alpha_colors:ch_win:c"
3719                type="db"
3720                widget="sbint"
3721                link="UI:SAVE:CONTEXT_HELP_CONTAINER_ALPHA"
3722                min="0"
3723                max="255"
3724                realtime="true" />
3725         <param ui="alpha_colors:ch_con:c"
3726                type="db"
3727                widget="sbint"
3728                link="UI:SAVE:CONTEXT_HELP_CONTENT_ALPHA"
3729                min="0"
3730                max="255"
3731                realtime="true" />
3732         <param ui="alpha_colors:ch_col:c"
3733                type="db"
3734                widget="colbut"
3735                link="UI:SAVE:CONTEXT_HELP_CONTAINER_COLOR"
3736                realtime="true" />
3737         <param ui="alpha_colors:show_3d_item_preview:c"
3738                type="db"
3739                widget="boolbut"
3740                link="UI:SAVE:SHOW_3D_ITEM_PREVIEW"
3741                realtime="true" />
3742         <param ui="language:translation_english_inverse:c"
3743                type="db"
3744                widget="boolbut"
3745                link="UI:SAVE:TRANSLATION:EN:INVERSE_DISPLAY"
3746                realtime="true" />
3747         <param ui="language:translation_english_hide_flag:c"
3748                type="db"
3749                widget="boolbut"
3750                link="UI:SAVE:TRANSLATION:EN:HIDE_FLAG"
3751                realtime="true" />
3752         <param ui="language:translation_french_inverse:c"
3753                type="db"
3754                widget="boolbut"
3755                link="UI:SAVE:TRANSLATION:FR:INVERSE_DISPLAY"
3756                realtime="true" />
3757         <param ui="language:translation_french_hide_flag:c"
3758                type="db"
3759                widget="boolbut"
3760                link="UI:SAVE:TRANSLATION:FR:HIDE_FLAG"
3761                realtime="true" />
3762         <param ui="language:translation_german_inverse:c"
3763                type="db"
3764                widget="boolbut"
3765                link="UI:SAVE:TRANSLATION:DE:INVERSE_DISPLAY"
3766                realtime="true" />
3767         <param ui="language:translation_german_hide_flag:c"
3768                type="db"
3769                widget="boolbut"
3770                link="UI:SAVE:TRANSLATION:DE:HIDE_FLAG"
3771                realtime="true" />
3772         <param ui="language:translation_russian_inverse:c"
3773                type="db"
3774                widget="boolbut"
3775                link="UI:SAVE:TRANSLATION:RU:INVERSE_DISPLAY"
3776                realtime="true" />
3777         <param ui="language:translation_russian_hide_flag:c"
3778                type="db"
3779                widget="boolbut"
3780                link="UI:SAVE:TRANSLATION:RU:HIDE_FLAG"
3781                realtime="true" />
3782         <param ui="language:translation_spanish_inverse:c"
3783                type="db"
3784                widget="boolbut"
3785                link="UI:SAVE:TRANSLATION:ES:INVERSE_DISPLAY"
3786                realtime="true" />
3787         <param ui="language:translation_spanish_hide_flag:c"
3788                type="db"
3789                widget="boolbut"
3790                link="UI:SAVE:TRANSLATION:ES:HIDE_FLAG"
3791                realtime="true" />
3793         <param ui="language:disable_translation_around:c"
3794                type="db"
3795                widget="boolbut"
3796                link="UI:SAVE:TRANSLATION:ARROUND:DISABLE"
3797                realtime="true" />
3798         <param ui="language:disable_translation_guild:c"
3799                type="db"
3800                widget="boolbut"
3801                link="UI:SAVE:TRANSLATION:GUILD:DISABLE"
3802                realtime="true" />
3803         <param ui="language:disable_translation_universe:c"
3804                type="db"
3805                widget="boolbut"
3806                link="UI:SAVE:TRANSLATION:UNIVERSE:DISABLE"
3807                realtime="true" />
3808         <param ui="language:disable_translation_region:c"
3809                type="db"
3810                widget="boolbut"
3811                link="UI:SAVE:TRANSLATION:REGION:DISABLE"
3812                realtime="true" />
3814         
3815         <param ui="chat_colors:cc_say:c"
3816                type="db"
3817                widget="colbut"
3818                link="UI:SAVE:CHAT:COLORS:SAY"
3819                realtime="true" />
3820         <param ui="chat_colors:cc_tell:c"
3821                type="db"
3822                widget="colbut"
3823                link="UI:SAVE:CHAT:COLORS:TELL"
3824                realtime="true" />
3825         <param ui="chat_colors:cc_team:c"
3826                type="db"
3827                widget="colbut"
3828                link="UI:SAVE:CHAT:COLORS:GROUP"
3829                realtime="true" />
3830         <param ui="chat_colors:cc_guild:c"
3831                type="db"
3832                widget="colbut"
3833                link="UI:SAVE:CHAT:COLORS:CLADE"
3834                realtime="true" />
3835         <param ui="chat_colors:cc_region:c"
3836                type="db"
3837                widget="colbut"
3838                link="UI:SAVE:CHAT:COLORS:REGION"
3839                realtime="true" />
3840         <param ui="chat_colors:cc_univ:c"
3841                type="db"
3842                widget="colbut"
3843                link="UI:SAVE:CHAT:COLORS:UNIVERSE_NEW"
3844                realtime="true" />
3845         <param ui="chat_colors:cc_shout:c"
3846                type="db"
3847                widget="colbut"
3848                link="UI:SAVE:CHAT:COLORS:SHOUT"
3849                realtime="true" />
3850         <param ui="chat_colors:cc_dyn0:c"
3851                type="db"
3852                widget="colbut"
3853                link="UI:SAVE:CHAT:COLORS:DYN:0"
3854                realtime="true" />
3855         <param ui="chat_colors:cc_dyn1:c"
3856                type="db"
3857                widget="colbut"
3858                link="UI:SAVE:CHAT:COLORS:DYN:1"
3859                realtime="true" />
3860         <param ui="chat_colors:cc_dyn2:c"
3861                type="db"
3862                widget="colbut"
3863                link="UI:SAVE:CHAT:COLORS:DYN:2"
3864                realtime="true" />
3865         <param ui="chat_colors:cc_dyn3:c"
3866                type="db"
3867                widget="colbut"
3868                link="UI:SAVE:CHAT:COLORS:DYN:3"
3869                realtime="true" />
3870         <param ui="chat_colors:cc_dyn4:c"
3871                type="db"
3872                widget="colbut"
3873                link="UI:SAVE:CHAT:COLORS:DYN:4"
3874                realtime="true" />
3875         <param ui="chat_colors:cc_dyn5:c"
3876                type="db"
3877                widget="colbut"
3878                link="UI:SAVE:CHAT:COLORS:DYN:5"
3879                realtime="true" />
3880         <param ui="chat_colors:cc_dyn6:c"
3881                type="db"
3882                widget="colbut"
3883                link="UI:SAVE:CHAT:COLORS:DYN:6"
3884                realtime="true" />
3885         <param ui="chat_colors:cc_dyn7:c"
3886                type="db"
3887                widget="colbut"
3888                link="UI:SAVE:CHAT:COLORS:DYN:7"
3889                realtime="true" />
3890         <!--
3891                         <param ui="chat_colors:cc_shout:c"              type="db" widget="colbut" link="UI:SAVE:CHAT:COLORS:SHOUT" realtime="true" />
3892                         <param ui="chat_colors:cc_civi:c"               type="db" widget="colbut" link="UI:SAVE:CHAT:COLORS:CIVILIZATION" realtime="true" />
3893                         <param ui="chat_colors:cc_terri:c"              type="db" widget="colbut" link="UI:SAVE:CHAT:COLORS:TERRITORY"  realtime="true" />
3894                         -->
3895         <param ui="chat_colors:enter_dontquit_cb:c"
3896                type="db"
3897                widget="boolbut"
3898                link="UI:SAVE:CHAT:ENTER_DONT_QUIT_CB"
3899                realtime="true" />
3900         <param ui="chat_colors:save_channel_cb:c"
3901                type="db"
3902                widget="boolbut"
3903                link="UI:SAVE:CHAT:SAVE_CHANNEL"
3904                realtime="true" />
3905         <param ui="chat_colors:auto_channel_cb:c"
3906                type="db"
3907                widget="boolbut"
3908                link="UI:SAVE:CHAT:AUTO_CHANNEL"
3909                realtime="true" />
3910         <param ui="chat_colors:show_times_in_chat_cb:c"
3911                type="db"
3912                widget="boolbut"
3913                link="UI:SAVE:CHAT:SHOW_TIMES_IN_CHAT_CB"
3914                realtime="true" />
3915         <param ui="chat_colors:show_dyn_channel_name_in_chat_cb:c"
3916                type="db"
3917                widget="boolbut"
3918                link="UI:SAVE:CHAT:SHOW_DYN_CHANNEL_NAME_IN_CHAT_CB"
3919                realtime="true" />
3920         <param ui="chat_colors:show_online_offline_notifications_cb:c"
3921                type="db"
3922                widget="boolbut"
3923                link="UI:SAVE:CHAT:SHOW_ONLINE_OFFLINE_NOTIFICATIONS_CB"
3924                realtime="true" />
3925         <param ui="chat_colors:font_size:c"
3926                type="db"
3927                widget="sbint"
3928                link="UI:SAVE:CHAT:FONT_SIZE"
3929                min="9"
3930                max="20"
3931                realtime="true" />
3932         <param ui="entity_colors:cc_user:c"
3933                type="db"
3934                widget="colbut"
3935                link="UI:SAVE:ENTITY:COLORS:USER"
3936                realtime="true" />
3937         <param ui="entity_colors:cc_player:c"
3938                type="db"
3939                widget="colbut"
3940                link="UI:SAVE:ENTITY:COLORS:PLAYER"
3941                realtime="true" />
3942         <param ui="entity_colors:cc_npc:c"
3943                type="db"
3944                widget="colbut"
3945                link="UI:SAVE:ENTITY:COLORS:NPC"
3946                realtime="true" />
3947         <param ui="entity_colors:cc_fauna:c"
3948                type="db"
3949                widget="colbut"
3950                link="UI:SAVE:ENTITY:COLORS:FAUNA"
3951                realtime="true" />
3952         <param ui="entity_colors:cc_target:c"
3953                type="db"
3954                widget="colbut"
3955                link="UI:SAVE:ENTITY:COLORS:TARGET"
3956                realtime="true" />
3957         <param ui="entity_colors:cc_group:c"
3958                type="db"
3959                widget="colbut"
3960                link="UI:SAVE:ENTITY:COLORS:GROUP"
3961                realtime="true" />
3962         <param ui="entity_colors:cc_guild:c"
3963                type="db"
3964                widget="colbut"
3965                link="UI:SAVE:ENTITY:COLORS:GUILD"
3966                realtime="true" />
3967         <param ui="entity_colors:cc_mount:c"
3968                type="db"
3969                widget="colbut"
3970                link="UI:SAVE:ENTITY:COLORS:MOUNT"
3971                realtime="true" />
3972         <param ui="entity_colors:cc_beast:c"
3973                type="db"
3974                widget="colbut"
3975                link="UI:SAVE:ENTITY:COLORS:BEAST"
3976                realtime="true" />
3977         <param ui="entity_colors:cc_source:c"
3978                type="db"
3979                widget="colbut"
3980                link="UI:SAVE:ENTITY:COLORS:SOURCE"
3981                realtime="true" />
3982         <param ui="entity_colors:cc_dead:c"
3983                type="db"
3984                widget="colbut"
3985                link="UI:SAVE:ENTITY:COLORS:DEAD"
3986                realtime="true" />
3987         <param ui="entity_colors:cc_pvpenemy:c"
3988                type="db"
3989                widget="colbut"
3990                link="UI:SAVE:ENTITY:COLORS:PVPENEMY"
3991                realtime="true" />
3992         <param ui="entity_colors:cc_pvpally:c"
3993                type="db"
3994                widget="colbut"
3995                link="UI:SAVE:ENTITY:COLORS:PVPALLY"
3996                realtime="true" />
3997         <param ui="entity_colors:cc_pvpneutral:c"
3998                type="db"
3999                widget="colbut"
4000                link="UI:SAVE:ENTITY:COLORS:PVPNEUTRAL"
4001                realtime="true" />
4002         <param ui="entity_colors:cc_pvpallyinteam:c"
4003                type="db"
4004                widget="colbut"
4005                link="UI:SAVE:ENTITY:COLORS:PVPALLYINTEAM"
4006                realtime="true" />
4007         <param ui="entity_colors:cc_pvpallyinguild:c"
4008                type="db"
4009                widget="colbut"
4010                link="UI:SAVE:ENTITY:COLORS:PVPALLYINGUILD"
4011                realtime="true" />
4012         <param ui="in_scene_user:is_user_guild_symbol:c"
4013                type="db"
4014                widget="boolbut"
4015                link="UI:SAVE:INSCENE:USER:GUILD_SYMBOL"
4016                realtime="true" />
4017         <param ui="in_scene_user:is_user_name:c"
4018                type="db"
4019                widget="boolbut"
4020                link="UI:SAVE:INSCENE:USER:NAME"
4021                realtime="true" />
4022         <param ui="in_scene_user:is_user_title:c"
4023                type="db"
4024                widget="boolbut"
4025                link="UI:SAVE:INSCENE:USER:TITLE"
4026                realtime="true" />
4027         <param ui="in_scene_user:is_user_rptags:c"
4028                type="db"
4029                widget="boolbut"
4030                link="UI:SAVE:INSCENE:USER:RPTAGS"
4031                realtime="true" />
4032         <param ui="in_scene_user:is_user_guild_name:c"
4033                type="db"
4034                widget="boolbut"
4035                link="UI:SAVE:INSCENE:USER:GUILD_NAME"
4036                realtime="true" />
4037         <param ui="in_scene_user:is_user_hp:c"
4038                type="db"
4039                widget="boolbut"
4040                link="UI:SAVE:INSCENE:USER:HP"
4041                realtime="true" />
4042         <param ui="in_scene_user:is_user_sap:c"
4043                type="db"
4044                widget="boolbut"
4045                link="UI:SAVE:INSCENE:USER:SAP"
4046                realtime="true" />
4047         <param ui="in_scene_user:is_user_sta:c"
4048                type="db"
4049                widget="boolbut"
4050                link="UI:SAVE:INSCENE:USER:STA"
4051                realtime="true" />
4052         <param ui="in_scene_user:is_user_focus:c"
4053                type="db"
4054                widget="boolbut"
4055                link="UI:SAVE:INSCENE:USER:FOCUS"
4056                realtime="true" />
4057         <param ui="in_scene_user:is_user_action:c"
4058                type="db"
4059                widget="boolbut"
4060                link="UI:SAVE:INSCENE:USER:ACTION"
4061                realtime="true" />
4062         <param ui="in_scene_user:is_user_pvp_logo:c"
4063                type="db"
4064                widget="boolbut"
4065                link="UI:SAVE:INSCENE:USER:PVP_LOGO"
4066                realtime="true" />
4067         <param ui="in_scene_friend:is_friend_guild_symbol:c"
4068                type="db"
4069                widget="boolbut"
4070                link="UI:SAVE:INSCENE:FRIEND:GUILD_SYMBOL"
4071                realtime="true" />
4072         <param ui="in_scene_friend:is_friend_name:c"
4073                type="db"
4074                widget="boolbut"
4075                link="UI:SAVE:INSCENE:FRIEND:NAME"
4076                realtime="true" />
4077         <param ui="in_scene_friend:is_friend_title:c"
4078                type="db"
4079                widget="boolbut"
4080                link="UI:SAVE:INSCENE:FRIEND:TITLE"
4081                realtime="true" />
4082         <param ui="in_scene_friend:is_friend_rptags:c"
4083                type="db"
4084                widget="boolbut"
4085                link="UI:SAVE:INSCENE:FRIEND:RPTAGS"
4086                realtime="true" />
4087         <param ui="in_scene_friend:is_friend_guild_name:c"
4088                type="db"
4089                widget="boolbut"
4090                link="UI:SAVE:INSCENE:FRIEND:GUILD_NAME"
4091                realtime="true" />
4092         <param ui="in_scene_friend:is_friend_hp:c"
4093                type="db"
4094                widget="boolbut"
4095                link="UI:SAVE:INSCENE:FRIEND:HP"
4096                realtime="true" />
4097         <param ui="in_scene_friend:is_friend_sap:c"
4098                type="db"
4099                widget="boolbut"
4100                link="UI:SAVE:INSCENE:FRIEND:SAP"
4101                realtime="true" />
4102         <param ui="in_scene_friend:is_friend_sta:c"
4103                type="db"
4104                widget="boolbut"
4105                link="UI:SAVE:INSCENE:FRIEND:STA"
4106                realtime="true" />
4107         <param ui="in_scene_friend:is_friend_focus:c"
4108                type="db"
4109                widget="boolbut"
4110                link="UI:SAVE:INSCENE:FRIEND:FOCUS"
4111                realtime="true" />
4112         <param ui="in_scene_friend:is_friend_pvp_logo:c"
4113                type="db"
4114                widget="boolbut"
4115                link="UI:SAVE:INSCENE:FRIEND:PVP_LOGO"
4116                realtime="true" />
4117         <param ui="in_scene_friend:is_friend_npcname:c"
4118                type="db"
4119                widget="boolbut"
4120                link="UI:SAVE:INSCENE:FRIEND:NPCNAME"
4121                realtime="true" />
4122         <param ui="in_scene_friend:is_friend_npctitle:c"
4123                type="db"
4124                widget="boolbut"
4125                link="UI:SAVE:INSCENE:FRIEND:NPCTITLE"
4126                realtime="true" />
4127         <param ui="in_scene_friend:is_friend_mission_icon:c"
4128                type="db"
4129                widget="boolbut"
4130                link="UI:SAVE:INSCENE:FRIEND:MISSION_ICON"
4131                realtime="true" />
4132         <param ui="in_scene_friend:is_friend_mission_mini_icon:c"
4133                type="db"
4134                widget="boolbut"
4135                link="UI:SAVE:INSCENE:FRIEND:MINI_MISSION_ICON"
4136                realtime="true" />
4137         <param ui="in_scene_enemy:is_enemy_guild_symbol:c"
4138                type="db"
4139                widget="boolbut"
4140                link="UI:SAVE:INSCENE:ENEMY:GUILD_SYMBOL"
4141                realtime="true" />
4142         <param ui="in_scene_enemy:is_enemy_name:c"
4143                type="db"
4144                widget="boolbut"
4145                link="UI:SAVE:INSCENE:ENEMY:NAME"
4146                realtime="true" />
4147         <param ui="in_scene_enemy:is_enemy_title:c"
4148                type="db"
4149                widget="boolbut"
4150                link="UI:SAVE:INSCENE:ENEMY:TITLE"
4151                realtime="true" />
4152         <param ui="in_scene_enemy:is_enemy_rptags:c"
4153                type="db"
4154                widget="boolbut"
4155                link="UI:SAVE:INSCENE:ENEMY:RPTAGS"
4156                realtime="true" />
4157         <param ui="in_scene_enemy:is_enemy_guild_name:c"
4158                type="db"
4159                widget="boolbut"
4160                link="UI:SAVE:INSCENE:ENEMY:GUILD_NAME"
4161                realtime="true" />
4162         <param ui="in_scene_enemy:is_enemy_hp:c"
4163                type="db"
4164                widget="boolbut"
4165                link="UI:SAVE:INSCENE:ENEMY:HP"
4166                realtime="true" />
4167         <param ui="in_scene_enemy:is_ennemy_pvp_logo:c"
4168                type="db"
4169                widget="boolbut"
4170                link="UI:SAVE:INSCENE:ENEMY:PVP_LOGO"
4171                realtime="true" />
4172         <param ui="in_scene_chat_messages:is_user_messages:c"
4173                type="db"
4174                widget="boolbut"
4175                link="UI:SAVE:INSCENE:USER:MESSAGES"
4176                realtime="true" />
4177         <param ui="in_scene_chat_messages:is_friend_messages:c"
4178                type="db"
4179                widget="boolbut"
4180                link="UI:SAVE:INSCENE:FRIEND:MESSAGES"
4181                realtime="true" />
4182         <param ui="in_scene_chat_messages:is_enemy_messages:c"
4183                type="db"
4184                widget="boolbut"
4185                link="UI:SAVE:INSCENE:ENEMY:MESSAGES"
4186                realtime="true" />
4187         <param ui="win_colors:wc_pla:c"
4188                type="db"
4189                widget="colbut"
4190                link="UI:SAVE:WIN:COLORS:PLA"
4191                realtime="true" />
4192         <param ui="win_colors:wc_ani:c"
4193                type="db"
4194                widget="colbut"
4195                link="UI:SAVE:WIN:COLORS:ANI"
4196                realtime="true" />
4197         <param ui="win_colors:wc_com:c"
4198                type="db"
4199                widget="colbut"
4200                link="UI:SAVE:WIN:COLORS:COM"
4201                realtime="true" />
4202         <param ui="win_colors:wc_inv:c"
4203                type="db"
4204                widget="colbut"
4205                link="UI:SAVE:WIN:COLORS:INV"
4206                realtime="true" />
4207         <param ui="win_colors:wc_opt:c"
4208                type="db"
4209                widget="colbut"
4210                link="UI:SAVE:WIN:COLORS:OPT"
4211                realtime="true" />
4212         <param ui="win_colors:wc_lab:c"
4213                type="db"
4214                widget="colbut"
4215                link="UI:SAVE:WIN:COLORS:LAB"
4216                realtime="true" />
4217         <param ui="win_colors:wc_mem:c"
4218                type="db"
4219                widget="colbut"
4220                link="UI:SAVE:WIN:COLORS:MEM"
4221                realtime="true" />
4222         <param ui="win_colors:wc_help:c"
4223                type="db"
4224                widget="colbut"
4225                link="UI:SAVE:WIN:COLORS:HELP"
4226                realtime="true" />
4227         <param ui="win_colors:wc_infos:c"
4228                type="db"
4229                widget="colbut"
4230                link="UI:SAVE:WIN:COLORS:INFOS"
4231                realtime="true" />
4232         <param ui="win_colors:wc_trade:c"
4233                type="db"
4234                widget="colbut"
4235                link="UI:SAVE:WIN:COLORS:TRADE"
4236                realtime="true" />
4237         <param ui="win_colors:wc_bot:c"
4238                type="db"
4239                widget="colbut"
4240                link="UI:SAVE:WIN:COLORS:BOT"
4241                realtime="true" />
4242         <param ui="win_colors_r2:wc_r2_palette:c"
4243                type="db"
4244                widget="colbut"
4245                link="UI:SAVE:WIN:COLORS:R2_PALETTE"
4246                realtime="true" />
4247         <param ui="win_colors_r2:wc_r2_scenario:c"
4248                type="db"
4249                widget="colbut"
4250                link="UI:SAVE:WIN:COLORS:R2_SCENARIO"
4251                realtime="true" />
4252         <param ui="win_colors_r2:wc_r2_prop_window:c"
4253                type="db"
4254                widget="colbut"
4255                link="UI:SAVE:WIN:COLORS:R2_PROP_WINDOW"
4256                realtime="true" />
4257         <param ui="win_colors_r2:wc_r2_form:c"
4258                type="db"
4259                widget="colbut"
4260                link="UI:SAVE:WIN:COLORS:R2_FORM"
4261                realtime="true" />
4262         <param ui="win_colors_r2:wc_r2_custom_look:c"
4263                type="db"
4264                widget="colbut"
4265                link="UI:SAVE:WIN:COLORS:R2_CUSTOM_LOOK"
4266                realtime="true" />
4267         <param ui="win_colors_r2:wc_r2_dialogs:c"
4268                type="db"
4269                widget="colbut"
4270                link="UI:SAVE:WIN:COLORS:R2_DIALOGS"
4271                realtime="true" />
4272         <param ui="win_colors_r2:wc_r2_events:c"
4273                type="db"
4274                widget="colbut"
4275                link="UI:SAVE:WIN:COLORS:R2_EVENTS"
4276                realtime="true" />
4277         <param ui="win_colors_r2:wc_r2_activities:c"
4278                type="db"
4279                widget="colbut"
4280                link="UI:SAVE:WIN:COLORS:R2_ACTIVITIES"
4281                realtime="true" />
4282         <param ui="win_colors_r2:wc_r2_feature_help:c"
4283                type="db"
4284                widget="colbut"
4285                link="UI:SAVE:WIN:COLORS:R2_FEATURE_HELP"
4286                realtime="true" />
4287         <param ui="win_colors_r2:wc_r2_connect:c"
4288                type="db"
4289                widget="colbut"
4290                link="UI:SAVE:WIN:COLORS:R2_CONNECT"
4291                realtime="true" />
4292         <param ui="win_colors_r2:wc_r2_session_browser:c"
4293                type="db"
4294                widget="colbut"
4295                link="UI:SAVE:WIN:COLORS:R2_SESSION_BROWSER"
4296                realtime="true" />
4297         <param ui="win_colors_r2:wc_r2_scenario_control:c"
4298                type="db"
4299                widget="colbut"
4300                link="UI:SAVE:WIN:COLORS:R2_SCENARIO_CONTROL"
4301                realtime="true" />
4302         <param ui="win_colors_r2:wc_r2_player_tracking:c"
4303                type="db"
4304                widget="colbut"
4305                link="UI:SAVE:WIN:COLORS:R2_PLAYER_TRACKING"
4306                realtime="true" />
4307         <param ui="mouse:hard:c"
4308                type="cfg"
4309                widget="boolbut"
4310                link="HardwareCursor"
4311                realtime="true" />
4312         <param ui="mouse:inverted:c"
4313                type="cfg"
4314                widget="boolbut"
4315                link="FreeLookInverted"
4316                realtime="true" />
4317         <param ui="mouse:dbl:c"
4318                type="cfg"
4319                widget="boolbut"
4320                link="DblClickMode"
4321                realtime="true" />
4322         <param ui="mouse:tablet:c"
4323                type="cfg"
4324                widget="boolbut"
4325                link="FreeLookTablet"
4326                realtime="true" />
4327         <param ui="mouse:dcspeed:c"
4328                type="db"
4329                widget="sbint"
4330                link="UI:SAVE:DOUBLE_CLICK_SPEED"
4331                min="0"
4332                max="100"
4333                realtime="true" />
4334         <param ui="mouse:curspeed:c"
4335                type="cfg"
4336                widget="sbfloat"
4337                link="CursorSpeed"
4338                realtime="true" />
4339         <param ui="mouse:curaccel:c"
4340                type="cfg"
4341                widget="sbint"
4342                link="CursorAcceleration"
4343                realtime="true" />
4344         <param ui="mouse:headspeed:c"
4345                type="cfg"
4346                widget="sbfloat"
4347                link="FreeLookSpeed"
4348                realtime="true" />
4349         <param ui="mouse:headaccel:c"
4350                type="cfg"
4351                widget="sbint"
4352                link="FreeLookAcceleration"
4353                realtime="true" />
4354         <param ui="keyb:speedmax:c"
4355                type="cfg"
4356                widget="sbfloat"
4357                link="RotKeySpeedMax"
4358                realtime="true" />
4359         <param ui="keyb:speedmin:c"
4360                type="cfg"
4361                widget="sbfloat"
4362                link="RotKeySpeedMin"
4363                realtime="true" />
4364         <param ui="sound:enabler:c"
4365                type="cfg"
4366                widget="boolbut"
4367                link="SoundOn"
4368                realtime="true" />
4369         <param ui="sound:useeax:c"
4370                type="cfg"
4371                widget="boolbut"
4372                link="UseEax"
4373                realtime="true" />
4374         <param ui="sound:forcesoftbuf:c"
4375                type="cfg"
4376                widget="boolbut"
4377                link="SoundForceSoftwareBuffer"
4378                realtime="true" />
4379         <param ui="sound:maxtrack:c"
4380                type="cfg"
4381                widget="sbint"
4382                link="MaxTrack"
4383                realtime="end_scroll"
4384                ui_view="sound:maxtrack:c_res" />
4385         <param ui="sound:sfx_volume:c"
4386                type="cfg"
4387                widget="sbfloat"
4388                link="SoundSFXVolume"
4389                realtime="true" />
4390         <param ui="sound:music_volume:c"
4391                type="cfg"
4392                widget="sbfloat"
4393                link="SoundGameMusicVolume"
4394                realtime="true" />
4395         <param ui="sound:mp3_volume:c"
4396                type="db"
4397                widget="sbint"
4398                link="UI:SAVE:MP3_VOLUME"
4399                min="0"
4400                max="255"
4401                realtime="true" />
4402         <param ui="landmark_colors:cc_misc:c"
4403                type="db"
4404                widget="colbut"
4405                link="UI:SAVE:LANDMARK:COLORS:MISC"
4406                realtime="true" />
4407         <param ui="landmark_colors:cc_tribe:c"
4408                type="db"
4409                widget="colbut"
4410                link="UI:SAVE:LANDMARK:COLORS:TRIBE"
4411                realtime="true" />
4412         <param ui="landmark_colors:cc_bandit:c"
4413                type="db"
4414                widget="colbut"
4415                link="UI:SAVE:LANDMARK:COLORS:BANDIT"
4416                realtime="true" />
4417         <param ui="landmark_colors:cc_citizen:c"
4418                type="db"
4419                widget="colbut"
4420                link="UI:SAVE:LANDMARK:COLORS:CITIZEN"
4421                realtime="true" />
4422         <param ui="landmark_colors:cc_fauna:c"
4423                type="db"
4424                widget="colbut"
4425                link="UI:SAVE:LANDMARK:COLORS:FAUNA"
4426                realtime="true" />
4427         <param ui="landmark_colors:cc_faunaexcel:c"
4428                type="db"
4429                widget="colbut"
4430                link="UI:SAVE:LANDMARK:COLORS:FAUNAEXCEL"
4431                realtime="true" />
4432         <param ui="landmark_colors:cc_faunasup:c"
4433                type="db"
4434                widget="colbut"
4435                link="UI:SAVE:LANDMARK:COLORS:FAUNASUP"
4436                realtime="true" />
4437         <param ui="landmark_colors:cc_forage:c"
4438                type="db"
4439                widget="colbut"
4440                link="UI:SAVE:LANDMARK:COLORS:FORAGE"
4441                realtime="true" />
4442         <param ui="landmark_colors:cc_forageexcel:c"
4443                type="db"
4444                widget="colbut"
4445                link="UI:SAVE:LANDMARK:COLORS:FORAGEEXCEL"
4446                realtime="true" />
4447         <param ui="landmark_colors:cc_foragesup:c"
4448                type="db"
4449                widget="colbut"
4450                link="UI:SAVE:LANDMARK:COLORS:FORAGESUP"
4451                realtime="true" />
4452         <param ui="landmark_colors:cc_sap:c"
4453                type="db"
4454                widget="colbut"
4455                link="UI:SAVE:LANDMARK:COLORS:SAP"
4456                realtime="true" />
4457         <param ui="landmark_colors:cc_amber:c"
4458                type="db"
4459                widget="colbut"
4460                link="UI:SAVE:LANDMARK:COLORS:AMBER"
4461                realtime="true" />
4462         <param ui="landmark_colors:cc_node:c"
4463                type="db"
4464                widget="colbut"
4465                link="UI:SAVE:LANDMARK:COLORS:NODE"
4466                realtime="true" />
4467         <param ui="landmark_colors:cc_fiber:c"
4468                type="db"
4469                widget="colbut"
4470                link="UI:SAVE:LANDMARK:COLORS:FIBER"
4471                realtime="true" />
4472         <param ui="landmark_colors:cc_bark:c"
4473                type="db"
4474                widget="colbut"
4475                link="UI:SAVE:LANDMARK:COLORS:BARK"
4476                realtime="true" />
4477         <param ui="landmark_colors:cc_seed:c"
4478                type="db"
4479                widget="colbut"
4480                link="UI:SAVE:LANDMARK:COLORS:SEED"
4481                realtime="true" />
4482         <param ui="landmark_colors:cc_shell:c"
4483                type="db"
4484                widget="colbut"
4485                link="UI:SAVE:LANDMARK:COLORS:SHELL"
4486                realtime="true" />
4487         <param ui="landmark_colors:cc_resin:c"
4488                type="db"
4489                widget="colbut"
4490                link="UI:SAVE:LANDMARK:COLORS:RESIN"
4491                realtime="true" />
4492         <param ui="landmark_colors:cc_wood:c"
4493                type="db"
4494                widget="colbut"
4495                link="UI:SAVE:LANDMARK:COLORS:WOOD"
4496                realtime="true" />
4497         <param ui="landmark_colors:cc_oil:c"
4498                type="db"
4499                widget="colbut"
4500                link="UI:SAVE:LANDMARK:COLORS:OIL"
4501                realtime="true" />
4502         <param ui="landmark_colors:cc_mission:c"
4503                type="db"
4504                widget="colbut"
4505                link="UI:SAVE:LANDMARK:COLORS:MISSION"
4506                realtime="true" />
4507         <param ui="landmark_colors:cc_food:c"
4508                type="db"
4509                widget="colbut"
4510                link="UI:SAVE:LANDMARK:COLORS:FOOD"
4511                realtime="true" />
4512         <param ui="landmark_colors:cc_construction:c"
4513                type="db"
4514                widget="colbut"
4515                link="UI:SAVE:LANDMARK:COLORS:CONSTRUCTION"
4516                realtime="true" />
4517         <param ui="landmark_colors:cc_goo:c"
4518                type="db"
4519                widget="colbut"
4520                link="UI:SAVE:LANDMARK:COLORS:GOO"
4521                realtime="true" />
4522         <param ui="landmark_colors:cc_insect:c"
4523                type="db"
4524                widget="colbut"
4525                link="UI:SAVE:LANDMARK:COLORS:INSECT"
4526                realtime="true" />
4527         <param ui="landmark_colors:cc_kitin:c"
4528                type="db"
4529                widget="colbut"
4530                link="UI:SAVE:LANDMARK:COLORS:KITIN"
4531                realtime="true" />
4532         <param ui="landmark_colors:cc_nocive:c"
4533                type="db"
4534                widget="colbut"
4535                link="UI:SAVE:LANDMARK:COLORS:NOCIVE"
4536                realtime="true" />
4537         <param ui="landmark_colors:cc_preservative:c"
4538                type="db"
4539                widget="colbut"
4540                link="UI:SAVE:LANDMARK:COLORS:PRESERVATIVE"
4541                realtime="true" />
4542         <param ui="landmark_colors:cc_passage:c"
4543                type="db"
4544                widget="colbut"
4545                link="UI:SAVE:LANDMARK:COLORS:PASSAGE"
4546                realtime="true" />
4547         <param ui="landmark_colors:cc_teleporter:c"
4548                type="db"
4549                widget="colbut"
4550                link="UI:SAVE:LANDMARK:COLORS:TELEPORTER"
4551                realtime="true" />
4552                            
4553         <param ui="help:context_help:c"
4554                type="db"
4555                widget="boolbut"
4556                link="UI:SAVE:ENTITY:CONTEXT_HELP"
4557                realtime="true" />
4558       </ddx>
4559     </group>
4560   </group>
4561   <tree node="game_config" />
4562   <link expr="depends(@UI:SAVE:CONTENT_ALPHA)"
4563         action="set"
4564         params="dblink=UI:SAVE:CONTAINER_ALPHA|value=min(@UI:SAVE:CONTENT_ALPHA, @UI:SAVE:CONTAINER_ALPHA)" />
4565   <link expr="depends(@UI:SAVE:CONTAINER_ALPHA)"
4566         action="set"
4567         params="dblink=UI:SAVE:CONTENT_ALPHA|value=max(@UI:SAVE:CONTENT_ALPHA, @UI:SAVE:CONTAINER_ALPHA)" />
4568   <link expr="depends(@UI:SAVE:CONTENT_ROLLOVER_FACTOR)"
4569         action="set"
4570         params="dblink=UI:SAVE:CONTAINER_ROLLOVER_FACTOR|value=min(@UI:SAVE:CONTENT_ROLLOVER_FACTOR, @UI:SAVE:CONTAINER_ROLLOVER_FACTOR)" />
4571   <link expr="depends(@UI:SAVE:CONTAINER_ROLLOVER_FACTOR)"
4572         action="set"
4573         params="dblink=UI:SAVE:CONTENT_ROLLOVER_FACTOR|value=max(@UI:SAVE:CONTENT_ROLLOVER_FACTOR, @UI:SAVE:CONTAINER_ROLLOVER_FACTOR)" />
4574   <link expr="depends(@UI:SAVE:CONTEXT_HELP_CONTENT_ALPHA)"
4575         action="set"
4576         params="dblink=UI:SAVE:CONTEXT_HELP_CONTAINER_ALPHA|value=min(@UI:SAVE:CONTEXT_HELP_CONTENT_ALPHA, @UI:SAVE:CONTEXT_HELP_CONTAINER_ALPHA)" />
4577   <link expr="depends(@UI:SAVE:CONTEXT_HELP_CONTAINER_ALPHA)"
4578         action="set"
4579         params="dblink=UI:SAVE:CONTEXT_HELP_CONTENT_ALPHA|value=max(@UI:SAVE:CONTEXT_HELP_CONTENT_ALPHA, @UI:SAVE:CONTEXT_HELP_CONTAINER_ALPHA)" />
4580 </interface_config>