-
Notifications
You must be signed in to change notification settings - Fork 128
/
Copy pathvisui-1.2.3.usl
289 lines (233 loc) · 10.3 KB
/
visui-1.2.3.usl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
//VisUI 1.2.3 style
#com.badlogic.gdx.graphics.g2d.BitmapFont: {
default-font: { file: default.fnt }
small-font: { file: font-small.fnt }
}
#com.badlogic.gdx.graphics.Color: {
black: { a: 1, b: 0, g: 0, r: 0 }
white: { a: 1, b: 1, g: 1, r: 1 }
green: { a: 1, b: 0, g: 1, r: 0 }
red: { a: 1, b: 0, g: 0, r: 1 }
blue: { a: 1, b: 1, g: 0, r: 0 }
grey: { a: 1, b: 0.32, g: 0.32, r: 0.32 }
vis-blue: { a: 1, b: 0.886, g: 0.631, r: 0.105 }
vis-red: { a: 1, b: 0.047, g: 0, r: 0.862 }
menuitem: { a: 1, b: 0.65, g: 0.65, r: 0.65 }
link-label: { a: 1, b: 0.886, g: 0.631, r: 0.105 }
}
.font: { font: default-font, fontColor: white, }
.font-disabled: { disabledFontColor: grey }
.font-small: { font: small-font, fontColor: white }
.font-small-disabled: { disabledFontColor: grey }
.focus-border: { focusBorder: border }
.focus-border-dark-blue: { focusBorder: border-dark-blue }
.focus-border-circle: { focusBorder: border-circle }
.error-border: { errorBorder: border-error }
.error-border-circle: { errorBorder: border-circle-error }
package com.badlogic.gdx.scenes.scene2d.ui {
#Skin$TintedDrawable: {
dialogDim: { name: white, color: { r: 0, g: 0, b: 0, a: 0.45 } }
}
#Button$ButtonStyle: {
default: { down: button-down, up: button }
blue: { down: button-blue-down, up: button-blue }
toggle inherits default: { checked: button-down }
}
#TextButton$TextButtonStyle extends ButtonStyle: {
default inherits .font, .font-disabled: { over: button-over, disabled: button }
blue inherits .font, .font-disabled: { over: button-blue-over, disabled: button }
toggle inherits default, .font: {}
}
//all styles inherited without any change required
#ImageButton$ImageButtonStyle extends ButtonStyle: {
}
//all styles inherited without any change required
#ImageTextButton$ImageTextButtonStyle extends TextButtonStyle: {
}
#ScrollPane$ScrollPaneStyle: {
list: { vScroll: scroll, vScrollKnob: scroll-knob-vertical, hScroll: scroll-horizontal, hScrollKnob: scroll-knob-horizontal }
default inherits list: { background: border }
}
#SelectBox$SelectBoxStyle: {
default inherits .font, .font-disabled: {
background: default-select,
scrollStyle: default,
listStyle: { font: default-font, selection: padded-list-selection, background: select-box-list-bg }
}
}
#SplitPane$SplitPaneStyle: {
default-vertical: { handle: splitpane-vertical }
default-horizontal: { handle: splitpane }
}
#Window$WindowStyle: {
default: { titleFont: default-font, background: window, titleFontColor: white }
resizable inherits default: { background: window-resizable }
noborder inherits default: { background: window-noborder }
dialog inherits default: { stageBackground: dialogDim }
}
#ProgressBar$ProgressBarStyle: {
default-horizontal: { background: progressbar, knob: progressbar-filled, knobBefore: progressbar-filled}
default-vertical: { background: progressbar-vertical, knob: progressbar-filled-vertical, knobBefore: progressbar-filled-vertical }
}
#Slider$SliderStyle: {
-base: { knob: slider-knob, knobOver: slider-knob-over, knobDown: slider-knob-down, disabledKnob: slider-knob-disabled}
default-horizontal inherits base: { background: slider }
default-vertical inherits base: { background: slider-vertical }
}
#Label$LabelStyle: {
default inherits .font: { }
link-label inherits default: { fontColor: link-label }
small inherits .font-small: { }
menuitem-shortcut: { font: default-font, fontColor: menuitem }
}
#TextField$TextFieldStyle: {
-base: { selection: selection, background: textfield, cursor: cursor, messageFont: default-font, messageFontColor: grey }
default inherits .font, .font-disabled, base: { }
small inherits .font-small, .font-small-disabled, base: { }
}
#CheckBox$CheckBoxStyle: {
default inherits .font, .font-disabled: { checkboxOn: check-on, checkboxOff: check-off }
radio inherits .font, .font-disabled: { checkboxOn: radio-on, checkboxOff: radio-off }
}
#List$ListStyle: { default: { fontColorUnselected: white, selection: padded-list-selection, fontColorSelected: white, font: default-font } }
#Touchpad$TouchpadStyle: { default: { background: default-pane, knob: touchpad-knob } }
#Tree$TreeStyle: { default: { minus: tree-minus, plus: tree-plus, selection: tree-selection, over: tree-over } }
#TextTooltip$TextTooltipStyle: {
default: {
background: default-pane,
label inherits .font: { }
}
}
}
#com.kotcrab.vis.ui.Sizes: {
default: {
scaleFactor: 1,
spacingBottom: 8,
spacingRight: 6,
buttonBarSpacing: 10,
menuItemIconSize: 22,
borderSize: 1,
spinnerButtonHeight: 12,
spinnerFieldSize: 40,
fileChooserViewModeBigIconsSize: 200,
fileChooserViewModeMediumIconsSize: 128,
fileChooserViewModeSmallIconsSize: 64,
fileChooserViewModeListWidthSize: 155,
}
x2 inherits default: {
scaleFactor: 2,
menuItemIconSize: 44,
spinnerButtonHeight: 24,
spinnerFieldSize: 80,
}
}
package com.kotcrab.vis.ui.widget {
#VisTextField$VisTextFieldStyle: {
-base: { selection: selection, background: textfield, backgroundOver: textfield-over, cursor: cursor }
default inherits .focus-border, .error-border, .font, .font-disabled, base: { }
textArea inherits default: { backgroundOver: NULL, focusBorder: NULL }
small inherits .focus-border, .error-border, .font-small, .font-small-disabled, base: { }
label inherits .error-border, .font, .font-disabled: { selection: selection }
}
#VisTextButton$VisTextButtonStyle extends TextButtonStyle: {
default inherits .focus-border: {}
toggle inherits .focus-border: {}
blue inherits .focus-border-dark-blue: {}
menu-bar inherits default, .font: { over: button-down, focusBorder: NULL }
}
#VisImageButton$VisImageButtonStyle: {
default inherits .focus-border: { down: button-down, up: button, over: button-over, disabled: button }
blue inherits .focus-border-dark-blue: { down: button-blue-down, up: button-blue, over: button-blue-over, disabled: button-blue }
toggle inherits default, .focus-border: { checked: button-down }
close: { down: button-red, up: button, over: button-over, imageUp: icon-close, disabled: button }
close-active-tab inherits blue: { down: button-red, imageUp: icon-close, focusBorder: NULL }
close-window inherits close: { up: button-window-bg }
}
#VisImageTextButton$VisImageTextButtonStyle extends VisTextButtonStyle: {
default: { }
toggle: { }
blue: { }
default-noborder inherits default: { focusBorder: NULL }
toggle-noborder inherits toggle: { focusBorder: NULL }
}
#VisCheckBox$VisCheckBoxStyle: {
default inherits .focus-border, .error-border, .font, .font-disabled:
{ checkBackground: vis-check, checkBackgroundOver: vis-check-over, checkBackgroundDown: vis-check-down, tick: vis-check-tick, tickDisabled: vis-check-tick-disabled }
radio inherits .focus-border-circle, .error-border-circle, .font, .font-disabled:
{ checkBackground: vis-radio, checkBackgroundOver: vis-radio-over, checkBackgroundDown: vis-radio-down, tick: vis-radio-tick, tickDisabled: vis-radio-tick-disabled }
}
#PopupMenu$PopupMenuStyle: {
noborder: { background: button }
default inherits noborder: { background: button, border: border }
}
#Menu$MenuStyle extends PopupMenuStyle: {
-base: { openButtonStyle: menu-bar }
default inherits base: {}
noborder inherits base: {}
}
#MenuBar$MenuBarStyle: {
default: { background: menu-bg }
}
#Separator$SeparatorStyle: {
default: {background: separator, thickness: 4}
menu: {background: separator-menu, thickness: 3}
}
#VisSplitPane$VisSplitPaneStyle: {
default-vertical: { handle: splitpane-vertical, handleOver: splitpane-vertical-over }
default-horizontal: { handle: splitpane, handleOver: splitpane-over }
}
#MultiSplitPane$MultiSplitPaneStyle extends VisSplitPaneStyle: {
}
#MenuItem$MenuItemStyle extends TextButtonStyle: {
default: { subMenu: sub-menu }
}
#Tooltip$TooltipStyle: {
default: { background: tooltip-bg }
}
#LinkLabel$LinkLabelStyle: {
default inherits .font: { fontColor: link-label, underline: white }
}
#tabbedpane.TabbedPane$TabbedPaneStyle: {
default: { background: menu-bg, separatorBar: list-selection, vertical: false,
buttonStyle inherits .font, .font-disabled: { down: button-down, up: button, checked: button-down, over: button-over, disabled: button } }
vertical inherits default: { vertical: true }
}
#spinner.Spinner$SpinnerStyle: {
default: { down: select-down, up: select-up }
}
#file.FileChooserStyle: {
default: { highlight: list-selection, popupMenuStyle: "default", iconArrowLeft: icon-arrow-left, iconArrowRight: icon-arrow-right,
iconFolder: icon-folder, iconFolderParent: icon-folder-parent, iconFolderNew: icon-folder-new, iconDrive: icon-drive,
iconFolderStar: icon-folder-star, iconTrash: icon-trash, iconStar: icon-star, iconStarOutline: icon-star-outline, iconRefresh: icon-refresh
iconFileText: icon-file-text, iconFileImage: icon-file-image, iconFilePdf: icon-file-pdf, iconFileAudio: icon-file-audio
iconListSettings: icon-list-settings,
contextMenuSelectedItem: vis-radio-tick, expandDropdown: select-down }
}
#color.ColorPickerWidgetStyle: {
default: { barSelector: color-picker-bar-selector, cross: color-picker-cross, iconArrowRight: icon-arrow-right
verticalSelector: color-picker-selector-vertical, horizontalSelector: color-picker-selector-horizontal }
}
#color.ColorPickerStyle extends ~WindowStyle: {
default: { pickerStyle: { barSelector: color-picker-bar-selector, cross: color-picker-cross, iconArrowRight: icon-arrow-right
verticalSelector: color-picker-selector-vertical, horizontalSelector: color-picker-selector-horizontal }}
}
#toast.Toast$ToastStyle: {
default: { background: tooltip-bg, closeButtonStyle: close }
dark: { background: window-border-bg, closeButtonStyle: close-window }
}
#BusyBar$BusyBarStyle: {
-base: { segment: vis-blue, segmentWidth: 100, segmentOverflow: 50 }
default inherits base: { height: 2 }
slim inherits base: { height: 1 }
thick inherits base: { height: 6 }
}
}
package com.kotcrab.vis.ui.util {
#form.SimpleFormValidator$FormValidatorStyle: {
default: { errorLabelColor: vis-red, validLabelColor: white }
smooth inherits default: { colorTransitionDuration: 0.3 }
}
#adapter.SimpleListAdapter$SimpleListAdapterStyle: {
default: { background: window-bg, selection: list-selection }
}
}