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

Annotation of /gigedit/trunk/src/gigedit/regionchooser.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3148 - (hide annotations) (download) (as text)
Thu May 4 11:47:45 2017 UTC (6 years, 11 months ago) by schoenebeck
File MIME type: text/x-c++hdr
File size: 6542 byte(s)
* Region Chooser: Mark all regions which are auto selected by check box
  "All Regions" with gray hatched pattern.
* Bumped version (1.0.0.svn34).

1 schoenebeck 1225 /* -*- c++ -*-
2 schoenebeck 3068 * Copyright (C) 2006-2017 Andreas Persson
3 schoenebeck 1225 *
4     * This program is free software; you can redistribute it and/or
5     * modify it under the terms of the GNU General Public License as
6     * published by the Free Software Foundation; either version 2, or (at
7     * your option) any later version.
8     *
9     * This program is distributed in the hope that it will be useful, but
10     * WITHOUT ANY WARRANTY; without even the implied warranty of
11     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12     * General Public License for more details.
13     *
14     * You should have received a copy of the GNU General Public License
15     * along with program; see the file COPYING. If not, write to the Free
16     * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
17     * 02110-1301 USA.
18     */
19    
20     #ifndef GIGEDIT_REGIONCHOOSER_H
21     #define GIGEDIT_REGIONCHOOSER_H
22    
23 persson 1623 #include <vector>
24    
25 persson 2844 #include <gtkmm/box.h>
26 schoenebeck 1225 #include <gtkmm/drawingarea.h>
27     #include <gtkmm/uimanager.h>
28     #include <gdkmm/window.h>
29     #include <gtkmm/menu.h>
30    
31     #include "dimensionmanager.h"
32 schoenebeck 1661 #include "paramedit.h"
33 persson 2169 #include "compat.h"
34 schoenebeck 1225
35 schoenebeck 3068 #ifdef LIBGIG_HEADER_FILE
36     # include LIBGIG_HEADER_FILE(gig.h)
37     #else
38     # include <gig.h>
39     #endif
40 schoenebeck 1225
41 schoenebeck 1661 enum virt_keyboard_mode_t {
42     VIRT_KEYBOARD_MODE_NORMAL,
43     VIRT_KEYBOARD_MODE_CHORD
44     };
45    
46 persson 1623 class SortedRegions {
47     private:
48     std::vector<gig::Region*> regions;
49     std::vector<gig::Region*>::iterator region_iterator;
50    
51     public:
52     void update(gig::Instrument* instrument);
53     gig::Region* first();
54     gig::Region* next();
55 persson 2841 bool operator() (gig::Region* x, gig::Region* y) const {
56 persson 1623 return x->KeyRange.low < y->KeyRange.low;
57     }
58     };
59    
60 schoenebeck 1225 class RegionChooser : public Gtk::DrawingArea
61     {
62     public:
63     RegionChooser();
64     virtual ~RegionChooser();
65    
66     void set_instrument(gig::Instrument* instrument);
67    
68 schoenebeck 3148 // ATM only used for painting auto selected regions with gray hatched pattern
69     void setModifyAllRegions(bool b);
70    
71 schoenebeck 1339 sigc::signal<void>& signal_region_selected();
72     sigc::signal<void>& signal_instrument_changed();
73 schoenebeck 1225
74 schoenebeck 1339 sigc::signal<void, gig::Instrument*>& signal_instrument_struct_to_be_changed();
75     sigc::signal<void, gig::Instrument*>& signal_instrument_struct_changed();
76 schoenebeck 1322
77 schoenebeck 1339 sigc::signal<void, gig::Region*>& signal_region_to_be_changed();
78     sigc::signal<void, gig::Region*>& signal_region_changed_signal();
79 schoenebeck 1322
80 schoenebeck 1660 sigc::signal<void, int/*key*/, int/*velocity*/>& signal_keyboard_key_hit();
81     sigc::signal<void, int/*key*/, int/*velocity*/>& signal_keyboard_key_released();
82    
83 schoenebeck 1225 gig::Region* get_region() { return region; }
84 schoenebeck 2695 void set_region(gig::Region* region);
85 schoenebeck 3123 void select_next_region();
86     void select_prev_region();
87 schoenebeck 1225
88 schoenebeck 1654 void on_note_on_event(int key, int velocity);
89     void on_note_off_event(int key, int velocity);
90    
91 schoenebeck 1661 Gtk::HBox m_VirtKeybPropsBox;
92    
93 schoenebeck 1225 protected:
94 persson 2169 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
95 schoenebeck 1225 virtual bool on_expose_event(GdkEventExpose* e);
96 persson 2246 #else
97     virtual bool on_draw(const Cairo::RefPtr<Cairo::Context>& cr);
98 persson 2169 #endif
99 schoenebeck 1225 virtual bool on_button_press_event(GdkEventButton* event);
100     virtual bool on_button_release_event(GdkEventButton* event);
101     virtual bool on_motion_notify_event(GdkEventMotion* event);
102    
103     gig::Region* get_region(int key);
104    
105 schoenebeck 3131 Gdk::RGBA activeKeyColor, blue, grey1, white, black;
106 schoenebeck 3148 Glib::RefPtr<Gdk::Pixbuf> grayBlueHatchedPatternARGB;
107     Cairo::RefPtr<Cairo::SurfacePattern> grayBlueHatchedSurfacePattern;
108 schoenebeck 1225
109 persson 1261 sigc::signal<void> region_selected;
110     sigc::signal<void> instrument_changed;
111 schoenebeck 1225
112 schoenebeck 1322 sigc::signal<void, gig::Instrument*> instrument_struct_to_be_changed_signal;
113     sigc::signal<void, gig::Instrument*> instrument_struct_changed_signal;
114    
115     sigc::signal<void, gig::Region*> region_to_be_changed_signal;
116     sigc::signal<void, gig::Region*> region_changed_signal;
117    
118 schoenebeck 1660 sigc::signal<void, int/*key*/, int/*velocity*/> keyboard_key_hit_signal;
119     sigc::signal<void, int/*key*/, int/*velocity*/> keyboard_key_released_signal;
120    
121 schoenebeck 1225 gig::Instrument* instrument;
122     gig::Region* region;
123 persson 1623 SortedRegions regions;
124 schoenebeck 1225
125 schoenebeck 1654 bool is_black_key(int key);
126 persson 2246 void draw_keyboard(const Cairo::RefPtr<Cairo::Context>& cr,
127     int clip_low, int clip_high);
128     void draw_regions(const Cairo::RefPtr<Cairo::Context>& cr,
129     int clip_low, int clip_high);
130     void draw_key(const Cairo::RefPtr<Cairo::Context>& cr, int key);
131     void draw_digit(const Cairo::RefPtr<Cairo::Context>& cr, int key);
132 persson 1262 void motion_resize_region(int x, int y);
133     void motion_move_region(int x, int y);
134 persson 2246 void update_after_resize();
135     void update_after_move(int pos);
136     void invalidate_key(int key);
137 persson 1262
138 persson 2246 // returns the leftmost pixel of a key
139     int key_to_x(double k, int w) const {
140     return int(k * w / 128.0 + 0.5);
141     }
142    
143     // returns the key given a pixel
144     int x_to_key(double x, int w) const {
145     return int(x / w * 128.0);
146     }
147    
148     // returns the key given a pixel. If the pixel is the border
149     // between two keys, the key to the r�ght is always returned.
150     int x_to_key_right(double x, int w) const {
151     return int(ceil((x + 0.5) / w * 128.0)) - 1;
152     }
153    
154 schoenebeck 1225 // information needed during a resize
155     struct {
156     bool active;
157     enum {
158     undecided,
159     moving_high_limit,
160     moving_low_limit
161     } mode;
162     int pos;
163     int min;
164     int max;
165     gig::Region* region;
166     gig::Region* prev_region;
167     } resize;
168    
169 persson 1262 // information needed during a region move
170     struct {
171     bool active;
172 persson 2246 int offset;
173 persson 1262 } move;
174    
175 schoenebeck 1225 bool cursor_is_resize;
176     bool is_in_resize_zone(double x, double y);
177    
178     int h1;
179    
180 schoenebeck 3148 // ATM only used for painting auto selected regions with gray hatched pattern
181     bool modifyallregions;
182    
183 schoenebeck 1225 Gtk::Menu* popup_menu_inside_region;
184     Gtk::Menu* popup_menu_outside_region;
185     void show_region_properties();
186     void add_region();
187     void delete_region();
188     void manage_dimensions();
189     void on_dimension_manager_changed();
190     int new_region_pos;
191    
192     Glib::RefPtr<Gtk::ActionGroup> actionGroup;
193     Glib::RefPtr<Gtk::UIManager> uiManager;
194    
195 persson 2246 // properties of the virtual keyboard
196 schoenebeck 1661 ChoiceEntry<virt_keyboard_mode_t> m_VirtKeybModeChoice;
197     Gtk::Label m_VirtKeybVelocityLabelDescr;
198     Gtk::Label m_VirtKeybVelocityLabel;
199     Gtk::Label m_VirtKeybOffVelocityLabelDescr;
200     Gtk::Label m_VirtKeybOffVelocityLabel;
201     int currentActiveKey;
202 persson 2246 bool key_pressed[128];
203 schoenebeck 1661
204 schoenebeck 1225 DimensionManager dimensionManager;
205     };
206    
207     #endif

  ViewVC Help
Powered by ViewVC