diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2013-03-13 18:46:17 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2013-03-13 18:46:17 +0100 |
commit | d55de707c3352a468a227d69920a56ef2550a7cc (patch) | |
tree | 3f7ac91962d7e09328fb24d4eb52707a3f6e7f22 /plugingui/plugingui.cc | |
parent | c17046353762a0893914e671f1f19eadce6f94f5 (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.cc | 13 |
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); |