-
Notifications
You must be signed in to change notification settings - Fork 1
/
control_panel_gui.lua
222 lines (164 loc) · 5.08 KB
/
control_panel_gui.lua
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
--------------------------------------------------------------------------------
-- functions
--------------------------------------------------------------------------------
local function get_app_path(value)
local output = nil
if value == "" then
output = "Click .. button"
elseif is_app_located == false then
output = "Application path is invalid"
else
output = string.len(app_path) > 50 and string.sub(app_path, 1, 50) .. '..' or app_path
end
return output
end
--------------------------------------------------------------------------------
-- gui
--------------------------------------------------------------------------------
function show_controlpanel_dialog()
vb = renoise.ViewBuilder()
local DIALOG_MARGIN =
renoise.ViewBuilder.DEFAULT_DIALOG_MARGIN
local CONTENT_SPACING =
renoise.ViewBuilder.DEFAULT_CONTROL_SPACING
local CONTENT_MARGIN =
renoise.ViewBuilder.DEFAULT_CONTROL_MARGIN
local DEFAULT_CONTROL_HEIGHT =
renoise.ViewBuilder.DEFAULT_CONTROL_HEIGHT
local DEFAULT_DIALOG_BUTTON_HEIGHT =
renoise.ViewBuilder.DEFAULT_DIALOG_BUTTON_HEIGHT
local DEFAULT_MINI_CONTROL_HEIGHT =
renoise.ViewBuilder.DEFAULT_MINI_CONTROL_HEIGHT
local TEXT_ROW_WIDTH = 80
if controlpanel_dialog and controlpanel_dialog.visible then
controlpanel_dialog:show()
return
end
local dialog_title = "Xrns2XMod Control Panel"
-- bitmap
local bitmap_logo = vb:button {
-- recolor to match the GUI theme:
--mode = "plain",
width = 180,
height = 43,
bitmap = "images/xrns2xmod_logo.bmp",
notifier = function()
renoise.app():open_url(XRNS2XMOD_URL);
end
}
local text_app_path = vb:text
{
id = "text_app_path",
width = 140,
align = "center",
text = get_app_path(app_path),
tooltip = app_path,
}
-- download button
local button_download = vb:button {
id = "button_download",
text = "Download",
width = 100,
height = DEFAULT_DIALOG_BUTTON_HEIGHT,
notifier = function()
renoise.app():open_url(XRNS2XMOD_URL);
end,
}
-- button locate
local button_locate_app = vb:button {
text = "...",
width = 30,
notifier = function()
local exe_file = renoise.app():prompt_for_filename_to_read({XRNS2XMOD_EXE}, "Locate Xrns2XMod Path");
local is_app_found = #exe_file > 0
if (is_app_found) then
my_options.app_path.value = exe_file;
text_app_path.text = get_app_path(app_path)
end
end,
}
local dialog_content = vb:column {
margin = DIALOG_MARGIN,
spacing = CONTENT_SPACING,
vb:horizontal_aligner {
mode = "center",
bitmap_logo
},
--vb:space {height = (CONTENT_MARGIN)},
vb:horizontal_aligner {
mode = "distribute",
--spacing = 20,
margin = CONTENT_MARGIN,
button_download,
},
--vb:space {height = (CONTENT_MARGIN)},
vb:column
{
style = "group",
vb:horizontal_aligner {
mode = "center",
margin = CONTENT_MARGIN,
spacing = CONTENT_SPACING,
vb:text
{
text = "Path",
},
vb:column {
style = "plain",
text_app_path
},
button_locate_app,
},
vb:horizontal_aligner {
mode = "right",
margin = CONTENT_MARGIN,
vb:text
{
text = "Enable note validation"
},
vb:space
{
width = CONTENT_MARGIN,
},
vb:checkbox
{
value = enable_note_validation,
notifier = function(value)
my_options.enable_note_validation.value = value
toggle_notifier_for_note_validation(value)
end
}
},
vb:horizontal_aligner {
mode = "right",
margin = CONTENT_MARGIN,
vb:text
{
text = "Enable instrument settings"
},
vb:space
{
width = CONTENT_MARGIN,
},
vb:checkbox
{
value = enable_instrument_settings,
notifier = function(value)
my_options.enable_instrument_settings.value = value
toggle_notifier_for_instrument_settings(value)
end
}
},
vb:horizontal_aligner {
mode = "distribute",
margin = CONTENT_MARGIN,
vb:text
{
text = "* Disable features to avoid unused routines call",
font = "italic"
},
}
},
}
controlpanel_dialog = renoise.app():show_custom_dialog(dialog_title, dialog_content)
end