/[svn]/gigedit/trunk/src/gigedit/regionchooser.cpp
ViewVC logotype

Diff of /gigedit/trunk/src/gigedit/regionchooser.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1658 by persson, Sat Feb 2 08:52:48 2008 UTC revision 1831 by persson, Tue Feb 3 19:38:19 2009 UTC
# Line 1  Line 1 
1  /*  /*
2   * Copyright (C) 2006-2008 Andreas Persson   * Copyright (C) 2006-2009 Andreas Persson
3   *   *
4   * This program is free software; you can redistribute it and/or   * This program is free software; you can redistribute it and/or
5   * modify it under the terms of the GNU General Public License as   * modify it under the terms of the GNU General Public License as
# Line 24  Line 24 
24  #include <gtkmm/spinbutton.h>  #include <gtkmm/spinbutton.h>
25  #include <gtkmm/dialog.h>  #include <gtkmm/dialog.h>
26  #include <math.h>  #include <math.h>
27    #include <sstream>
28    
29  #include "global.h"  #include "global.h"
30    
31    #define REGION_BLOCK_HEIGHT             20
32    #define KEYBOARD_HEIGHT                 40
33    
34  void SortedRegions::update(gig::Instrument* instrument) {  void SortedRegions::update(gig::Instrument* instrument) {
35      // Usually, the regions in a gig file are ordered after their key      // Usually, the regions in a gig file are ordered after their key
36      // range, but there are files where they are not. The      // range, but there are files where they are not. The
# Line 54  gig::Region* SortedRegions::next() { Line 58  gig::Region* SortedRegions::next() {
58    
59    
60    
61  RegionChooser::RegionChooser()  RegionChooser::RegionChooser() :
62        m_VirtKeybModeChoice(_("Virtual Keyboard Mode")),
63        currentActiveKey(-1)
64  {  {
65      Glib::RefPtr<Gdk::Colormap> colormap = get_default_colormap();      Glib::RefPtr<Gdk::Colormap> colormap = get_default_colormap();
66    
# Line 74  RegionChooser::RegionChooser() Line 80  RegionChooser::RegionChooser()
80      resize.active = false;      resize.active = false;
81      move.active = false;      move.active = false;
82      cursor_is_resize = false;      cursor_is_resize = false;
83      h1 = 20;      h1 = REGION_BLOCK_HEIGHT;
84    
85        // properties of the virtual keyboard
86        {
87            const char* choices[] = { _("normal"), _("chord"), NULL };
88            static const virt_keyboard_mode_t values[] = {
89                VIRT_KEYBOARD_MODE_NORMAL,
90                VIRT_KEYBOARD_MODE_CHORD
91            };
92            m_VirtKeybModeChoice.set_choices(choices, values);
93            m_VirtKeybModeChoice.set_value(VIRT_KEYBOARD_MODE_NORMAL);
94        }
95        m_VirtKeybVelocityLabelDescr.set_text(_("Note-On Velocity:"));
96        m_VirtKeybVelocityLabel.set_text("-");
97        m_VirtKeybOffVelocityLabelDescr.set_text(_("Note-Off Velocity:"));
98        m_VirtKeybOffVelocityLabel.set_text("-");
99        m_VirtKeybPropsBox.pack_start(m_VirtKeybModeChoice.label, Gtk::PACK_SHRINK);
100        m_VirtKeybPropsBox.pack_start(m_VirtKeybModeChoice.widget, Gtk::PACK_SHRINK);
101        m_VirtKeybPropsBox.pack_start(m_VirtKeybVelocityLabelDescr, Gtk::PACK_SHRINK);
102        m_VirtKeybPropsBox.pack_start(m_VirtKeybVelocityLabel, Gtk::PACK_SHRINK);
103        m_VirtKeybPropsBox.pack_start(m_VirtKeybOffVelocityLabelDescr, Gtk::PACK_SHRINK);
104        m_VirtKeybPropsBox.pack_start(m_VirtKeybOffVelocityLabel, Gtk::PACK_SHRINK);
105        m_VirtKeybPropsBox.set_spacing(10);
106        m_VirtKeybPropsBox.show();
107    
108      actionGroup = Gtk::ActionGroup::create();      actionGroup = Gtk::ActionGroup::create();
109      actionGroup->add(Gtk::Action::create("Properties",      actionGroup->add(Gtk::Action::create("Properties",
# Line 122  RegionChooser::RegionChooser() Line 151  RegionChooser::RegionChooser()
151              sigc::mem_fun(*this, &RegionChooser::on_dimension_manager_changed)              sigc::mem_fun(*this, &RegionChooser::on_dimension_manager_changed)
152          )          )
153      );      );
154        keyboard_key_hit_signal.connect(
155            sigc::mem_fun(*this, &RegionChooser::on_note_on_event)
156        );
157        keyboard_key_released_signal.connect(
158            sigc::mem_fun(*this, &RegionChooser::on_note_off_event)
159        );
160  }  }
161    
162  RegionChooser::~RegionChooser()  RegionChooser::~RegionChooser()
163  {  {
164  }  }
165    
166    template<class T> inline std::string ToString(T o) {
167        std::stringstream ss;
168        ss << o;
169        return ss.str();
170    }
171    
172  void RegionChooser::on_note_on_event(int key, int velocity) {  void RegionChooser::on_note_on_event(int key, int velocity) {
173      draw_region(key, key+1, activeKeyColor);      draw_region(key, key+1, activeKeyColor);
174        m_VirtKeybVelocityLabel.set_text(ToString(velocity));
175  }  }
176    
177  void RegionChooser::on_note_off_event(int key, int velocity) {  void RegionChooser::on_note_off_event(int key, int velocity) {
# Line 137  void RegionChooser::on_note_off_event(in Line 179  void RegionChooser::on_note_off_event(in
179          draw_region(key, key+1, black);          draw_region(key, key+1, black);
180      else      else
181          draw_region(key, key+1, white);          draw_region(key, key+1, white);
182        m_VirtKeybOffVelocityLabel.set_text(ToString(velocity));
183  }  }
184    
185  void RegionChooser::on_realize()  void RegionChooser::on_realize()
# Line 154  bool RegionChooser::on_expose_event(GdkE Line 197  bool RegionChooser::on_expose_event(GdkE
197  {  {
198      Glib::RefPtr<Gdk::Window> window = get_window();      Glib::RefPtr<Gdk::Window> window = get_window();
199      window->clear();      window->clear();
200      const int h = 40;      const int h = KEYBOARD_HEIGHT;
201      const int w = get_width() - 1;      const int w = get_width() - 1;
202      const int bh = int(h * 0.55);      const int bh = int(h * 0.55);
203    
# Line 224  bool RegionChooser::on_expose_event(GdkE Line 267  bool RegionChooser::on_expose_event(GdkE
267  void RegionChooser::on_size_request(GtkRequisition* requisition)  void RegionChooser::on_size_request(GtkRequisition* requisition)
268  {  {
269      *requisition = GtkRequisition();      *requisition = GtkRequisition();
270      requisition->height = 40 + 20;      requisition->height = KEYBOARD_HEIGHT + REGION_BLOCK_HEIGHT;
271      requisition->width = 500;      requisition->width = 500;
272  }  }
273    
# Line 234  bool RegionChooser::is_black_key(int key Line 277  bool RegionChooser::is_black_key(int key
277  }  }
278    
279  void RegionChooser::draw_digit(int key) {  void RegionChooser::draw_digit(int key) {
280      const int h = 40;      const int h = KEYBOARD_HEIGHT;
281      const int w = get_width() - 1;      const int w = get_width() - 1;
282      Glib::RefPtr<Pango::Layout> layout = Pango::Layout::create(get_pango_context());      Glib::RefPtr<Pango::Layout> layout = Pango::Layout::create(get_pango_context());
283      char buf[30];      char buf[30];
# Line 250  void RegionChooser::draw_digit(int key) Line 293  void RegionChooser::draw_digit(int key)
293    
294  void RegionChooser::draw_region(int from, int to, const Gdk::Color& color)  void RegionChooser::draw_region(int from, int to, const Gdk::Color& color)
295  {  {
296      const int h = 40;      const int h = KEYBOARD_HEIGHT;
297      const int w = get_width() - 1;      const int w = get_width() - 1;
298      const int bh = int(h * 0.55);      const int bh = int(h * 0.55);
299    
# Line 292  void RegionChooser::set_instrument(gig:: Line 335  void RegionChooser::set_instrument(gig::
335      region = regions.first();      region = regions.first();
336      queue_draw();      queue_draw();
337      region_selected();      region_selected();
338        dimensionManager.set_region(region);
339  }  }
340    
341  bool RegionChooser::on_button_release_event(GdkEventButton* event)  bool RegionChooser::on_button_release_event(GdkEventButton* event)
342  {  {
343        const int k = int(event->x / (get_width() - 1) * 128.0);
344    
345        // handle-note off on virtual keyboard
346        if (event->type == GDK_BUTTON_RELEASE) {
347            int velocity = (event->y >= REGION_BLOCK_HEIGHT + KEYBOARD_HEIGHT - 1) ? 127 :
348                           int(float(event->y - REGION_BLOCK_HEIGHT) / float(KEYBOARD_HEIGHT) * 128.0f) + 1;
349            if (velocity <= 0) velocity = 1;
350            switch (m_VirtKeybModeChoice.get_value()) {
351                case VIRT_KEYBOARD_MODE_CHORD:
352                    if (event->y >= REGION_BLOCK_HEIGHT)
353                        keyboard_key_released_signal.emit(k, velocity);
354                    break;
355                case VIRT_KEYBOARD_MODE_NORMAL:
356                default:
357                    if (currentActiveKey >= 0 && currentActiveKey <= 127) {
358                        keyboard_key_released_signal.emit(currentActiveKey, velocity);
359                        currentActiveKey = -1;
360                    }
361                    break;
362            }
363        }
364    
365      if (resize.active) {      if (resize.active) {
366          get_window()->pointer_ungrab(event->time);          get_window()->pointer_ungrab(event->time);
367          resize.active = false;          resize.active = false;
# Line 355  bool RegionChooser::on_button_press_even Line 421  bool RegionChooser::on_button_press_even
421  {  {
422      if (!instrument) return true;      if (!instrument) return true;
423    
424      int k = int(event->x / (get_width() - 1) * 128.0);      const int k = int(event->x / (get_width() - 1) * 128.0);
425    
426        if (event->type == GDK_BUTTON_PRESS) {
427            if (event->y >= REGION_BLOCK_HEIGHT) {
428                int velocity = (event->y >= REGION_BLOCK_HEIGHT + KEYBOARD_HEIGHT - 1) ? 127 :
429                               int(float(event->y - REGION_BLOCK_HEIGHT) / float(KEYBOARD_HEIGHT) * 128.0f) + 1;
430                currentActiveKey = k;
431                keyboard_key_hit_signal.emit(k, velocity);
432            }
433        }
434    
435        if (event->y >= REGION_BLOCK_HEIGHT) return true;
436      if (event->type == GDK_BUTTON_PRESS && event->button == 3) {      if (event->type == GDK_BUTTON_PRESS && event->button == 3) {
437          gig::Region* r = get_region(k);          gig::Region* r = get_region(k);
438          if (r) {          if (r) {
439              region = r;              region = r;
440              queue_draw();              queue_draw();
441              region_selected();              region_selected();
442                dimensionManager.set_region(region);
443              popup_menu_inside_region->popup(event->button, event->time);              popup_menu_inside_region->popup(event->button, event->time);
444          } else {          } else {
445              new_region_pos = k;              new_region_pos = k;
# Line 382  bool RegionChooser::on_button_press_even Line 459  bool RegionChooser::on_button_press_even
459                  region = r;                  region = r;
460                  queue_draw();                  queue_draw();
461                  region_selected();                  region_selected();
462                    dimensionManager.set_region(region);
463    
464                  get_window()->pointer_grab(false,                  get_window()->pointer_grab(false,
465                                             Gdk::BUTTON_RELEASE_MASK |                                             Gdk::BUTTON_RELEASE_MASK |
# Line 592  bool RegionChooser::on_motion_notify_eve Line 670  bool RegionChooser::on_motion_notify_eve
670      Gdk::ModifierType state = Gdk::ModifierType(0);      Gdk::ModifierType state = Gdk::ModifierType(0);
671      window->get_pointer(x, y, state);      window->get_pointer(x, y, state);
672    
673        // handle virtual MIDI keyboard
674        if (m_VirtKeybModeChoice.get_value() != VIRT_KEYBOARD_MODE_CHORD &&
675            currentActiveKey > 0 &&
676            event->y >= REGION_BLOCK_HEIGHT &&
677            event->y < REGION_BLOCK_HEIGHT + KEYBOARD_HEIGHT)
678        {
679            const int k = int(event->x / (get_width() - 1) * 128.0);
680            int velocity = (event->y >= REGION_BLOCK_HEIGHT + KEYBOARD_HEIGHT - 1) ? 127 :
681                           int(float(event->y - REGION_BLOCK_HEIGHT) / float(KEYBOARD_HEIGHT) * 128.0f) + 1;
682            if (velocity <= 0) velocity = 1;
683            keyboard_key_released_signal.emit(currentActiveKey, velocity);
684            currentActiveKey = k;
685            keyboard_key_hit_signal.emit(k, velocity);
686        }
687    
688      if (resize.active) {      if (resize.active) {
689          motion_resize_region(x, y);          motion_resize_region(x, y);
690      } else if (move.active) {      } else if (move.active) {
# Line 674  sigc::signal<void>& RegionChooser::signa Line 767  sigc::signal<void>& RegionChooser::signa
767  void RegionChooser::show_region_properties()  void RegionChooser::show_region_properties()
768  {  {
769      if (!region) return;      if (!region) return;
770      Gtk::Dialog dialog("Region Properties", true /*modal*/);      Gtk::Dialog dialog(_("Region Properties"), true /*modal*/);
771      // add "Keygroup" checkbox      // add "Keygroup" checkbox
772      Gtk::CheckButton checkBoxKeygroup("Member of a Keygroup (Exclusive Group)");      Gtk::CheckButton checkBoxKeygroup(_("Member of a Keygroup (Exclusive Group)"));
773      checkBoxKeygroup.set_active(region->KeyGroup);      checkBoxKeygroup.set_active(region->KeyGroup);
774      dialog.get_vbox()->pack_start(checkBoxKeygroup);      dialog.get_vbox()->pack_start(checkBoxKeygroup);
775      checkBoxKeygroup.show();      checkBoxKeygroup.show();
# Line 708  void RegionChooser::add_region() Line 801  void RegionChooser::add_region()
801    
802      queue_draw();      queue_draw();
803      region_selected();      region_selected();
804        dimensionManager.set_region(region);
805      instrument_changed();      instrument_changed();
806  }  }
807    
# Line 721  void RegionChooser::delete_region() Line 815  void RegionChooser::delete_region()
815      region = 0;      region = 0;
816      queue_draw();      queue_draw();
817      region_selected();      region_selected();
818        dimensionManager.set_region(region);
819      instrument_changed();      instrument_changed();
820  }  }
821    
# Line 751  sigc::signal<void, gig::Region*>& Region Line 846  sigc::signal<void, gig::Region*>& Region
846  sigc::signal<void, gig::Region*>& RegionChooser::signal_region_changed_signal() {  sigc::signal<void, gig::Region*>& RegionChooser::signal_region_changed_signal() {
847      return region_changed_signal;      return region_changed_signal;
848  }  }
849    
850    sigc::signal<void, int/*key*/, int/*velocity*/>& RegionChooser::signal_keyboard_key_hit() {
851        return keyboard_key_hit_signal;
852    }
853    
854    sigc::signal<void, int/*key*/, int/*velocity*/>& RegionChooser::signal_keyboard_key_released() {
855        return keyboard_key_released_signal;
856    }

Legend:
Removed from v.1658  
changed lines
  Added in v.1831

  ViewVC Help
Powered by ViewVC