-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcolorSettingsGUI.xml
36 lines (31 loc) · 1.82 KB
/
colorSettingsGUI.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="utf-8" standalone="no" ?>
<GUI onOpen="onOpen" onClose="onClose" onCreate="onCreate">
<GuiElement profile="newLayer"/>
<Bitmap profile="dialogFullscreenBg" />
<GuiElement profile="fs25_dialogBg" size="740px 540px">
<ThreePartBitmap profile="fs25_dialogBgMiddleSmall"/>
<ThreePartBitmap profile="fs25_dialogBgTopSmall"/>
<ThreePartBitmap profile="fs25_dialogBgBottom"/>
<BoxLayout profile="ad_common_dialogContentContainer">
<Text profile="ad_common_dialogTitle" text="$l10n_gui_ad_colorSettingsTitle"/>
<ThreePartBitmap profile="ad_common_dialogTitleLineSeparator"/>
<BoxLayout absoluteSizeOffset="40px 130px" margin="0 0 0 10px">
<SmoothList id="colorList" profile="ad_common_list" onDoubleClick="onDoubleClick">
<ListItem profile="ad_common_listItem">
<Text name="listItemText" profile="ad_common_listItemText" width="100%"/>
</ListItem>
</SmoothList>
<ThreePartBitmap profile="ad_common_listSliderBox">
<Slider profile="ad_common_listSlider" dataElementId="colorList"/>
</ThreePartBitmap>
</BoxLayout>
<BoxLayout profile="ad_common_dialogButtonBox">
<Button profile="buttonCancel" text="$l10n_button_reset_selected" onClick="onClickResetSelected" />
<Bitmap profile="fs25_dialogButtonBoxSeparator"/>
<Button profile="buttonOK" text="$l10n_gui_ad_button_export" onClick="onClickSave" />
<Bitmap profile="fs25_dialogButtonBoxSeparator"/>
<Button profile="buttonBack" text="$l10n_button_back" onClick="onClickBack" />
</BoxLayout>
</BoxLayout>
</GuiElement>
</GUI>