summaryrefslogtreecommitdiff
path: root/plugingui/plugingui.cc
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2013-03-13 18:46:17 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2013-03-13 18:46:17 +0100
commitd55de707c3352a468a227d69920a56ef2550a7cc (patch)
tree3f7ac91962d7e09328fb24d4eb52707a3f6e7f22 /plugingui/plugingui.cc
parentc17046353762a0893914e671f1f19eadce6f94f5 (diff)
Added path lineedit and drive selection (win32) to filebrowser. Made a lot of small layout tweaks.
Diffstat (limited to 'plugingui/plugingui.cc')
-rw-r--r--plugingui/plugingui.cc13
1 files changed, 3 insertions, 10 deletions
diff --git a/plugingui/plugingui.cc b/plugingui/plugingui.cc
index ea0e4ad..7e4bb59 100644
--- a/plugingui/plugingui.cc
+++ b/plugingui/plugingui.cc
@@ -178,11 +178,12 @@ void PluginGUI::init()
// printf("%p\n", eventhandler);
window = new GUI::Window(gctx);
window->resize(640, 200);
-
+ window->setCaption("DrumGizmo v"VERSION);
+
// Enable Velocity
check = new GUI::CheckBox(window);
check->setText("Enable Velocity Modifier");
- check->move(210,82);
+ check->move(215,82);
check->resize(200,16);
check->setChecked(Conf::enable_velocity_modifier);
check->registerClickHandler(checkClick, this);
@@ -266,14 +267,6 @@ void PluginGUI::init()
btn_brw->registerClickHandler(midimapBrowseClick, this);
}
- /*
- btn_cancel = new GUI::Button(window);
- btn_cancel->setText("Close");
- btn_cancel->move(520, 160);
- btn_cancel->resize(100, 20);
- btn_cancel->registerClickHandler(closeClick, this);
- */
-
GUI::Label *lbl3 = new GUI::Label(window);
lbl3->setText("v"VERSION);
lbl3->move(120, 180);