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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3131 - (hide annotations) (download) (as text)
Thu Apr 27 17:28:01 2017 UTC (7 years ago) by schoenebeck
File MIME type: text/x-c++hdr
File size: 4700 byte(s)
* Color tweaking on selected regions and selected dimension zones.
* Dimension Region Chooser: Show main selected case in opaque blue color
  (like before), but all other selected dimension zones with a blue hatched
  pattern instead.
* Dimension Region Chooser: Show the label of the currently selected
  dimension in bold font.
* Fix: Keyboard accelerator Ctrl+Left and Ctrl+Right caused the current
  dimension zone to switch as well if Dimension Region Chooser got focus.

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_DIMREGIONCHOOSER_H
21     #define GIGEDIT_DIMREGIONCHOOSER_H
22    
23     #include <gtkmm/drawingarea.h>
24 schoenebeck 2556 #include <gtkmm/uimanager.h>
25     #include <gtkmm/menu.h>
26 schoenebeck 1225 #include <gdkmm/window.h>
27    
28 persson 2169 #include "compat.h"
29    
30 schoenebeck 3068 #ifdef LIBGIG_HEADER_FILE
31     # include LIBGIG_HEADER_FILE(gig.h)
32     #else
33     # include <gig.h>
34     #endif
35 schoenebeck 1225
36 persson 1533 #include <set>
37 schoenebeck 2626 #include <map>
38 persson 1533
39 schoenebeck 3123 #include "global.h"
40    
41 schoenebeck 1225 class DimRegionChooser : public Gtk::DrawingArea
42     {
43     public:
44 schoenebeck 2626 DimRegionChooser(Gtk::Window& window);
45 schoenebeck 1225 virtual ~DimRegionChooser();
46    
47     void set_region(gig::Region* region);
48    
49 schoenebeck 1339 sigc::signal<void>& signal_dimregion_selected();
50     sigc::signal<void>& signal_region_changed();
51 schoenebeck 1225
52 schoenebeck 2626 gig::DimensionRegion* get_main_dimregion() const;
53 persson 1533 void get_dimregions(const gig::Region* region, bool stereo,
54     std::set<gig::DimensionRegion*>& dimregs) const;
55 schoenebeck 2695 bool select_dimregion(gig::DimensionRegion* dimrgn);
56 schoenebeck 3123 void select_next_dimzone();
57     void select_prev_dimzone();
58     void select_next_dimension();
59     void select_prev_dimension();
60 schoenebeck 1225
61 schoenebeck 3089 // those 3 are ATM only relevant when resizing custom dimension region zones
62     void setModifyBothChannels(bool b);
63     void setModifyAllDimensionRegions(bool b);
64     void setModifyAllRegions(bool b);
65    
66 schoenebeck 1225 protected:
67 persson 2169 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
68 schoenebeck 1225 virtual bool on_expose_event(GdkEventExpose* e);
69 persson 2246 #else
70     virtual bool on_draw(const Cairo::RefPtr<Cairo::Context>& cr);
71 persson 2169 #endif
72 schoenebeck 1225 virtual bool on_button_press_event(GdkEventButton* event);
73     virtual bool on_button_release_event(GdkEventButton* event);
74     virtual bool on_motion_notify_event(GdkEventMotion* event);
75     virtual bool on_focus(Gtk::DirectionType direction);
76 schoenebeck 2626 bool onKeyPressed(GdkEventKey* key);
77     bool onKeyReleased(GdkEventKey* key);
78 schoenebeck 2556 void refresh_all();
79     void split_dimension_zone();
80     void delete_dimension_zone();
81 schoenebeck 2695 void resetSelectedZones();
82 schoenebeck 3123 void select_dimzone_by_dir(int dir);
83 schoenebeck 1225
84 schoenebeck 3131 Gdk::RGBA red, blue, black, white;
85     Glib::RefPtr<Gdk::Pixbuf> blueHatchedPatternARGB;
86     Cairo::RefPtr<Cairo::SurfacePattern> blueHatchedSurfacePattern;
87 schoenebeck 1225
88     gig::Instrument* instrument;
89     gig::Region* region;
90    
91 persson 1261 sigc::signal<void> dimregion_selected;
92     sigc::signal<void> region_changed;
93 schoenebeck 1225
94 schoenebeck 3089 // those 3 are ATM only relevant when resizing custom dimension region zones
95     bool modifybothchannels;
96     bool modifyalldimregs;
97     bool modifyallregions;
98    
99 schoenebeck 1225 int focus_line;
100 schoenebeck 2626 std::map<gig::dimension_t, std::set<int> > dimzones; ///< Reflects which zone(s) of the individual dimension are currently selected.
101 schoenebeck 1225 int label_width;
102 persson 2246 bool labels_changed;
103 schoenebeck 1225 int nbDimensions;
104    
105 schoenebeck 2626 // the "main" dimension region is the one that is used to i.e. evaluate the
106     // precise custom velocity splits (could also be interpreted for focus stuff,
107     // i.e. keyboard arrow key navigation)
108     // NOTE: these may *not* necessarily currently be selected !
109     gig::dimension_t maindimtype;
110 schoenebeck 3123 DimensionCase maindimcase;
111 schoenebeck 2626 int maindimregno;
112 schoenebeck 2556
113 schoenebeck 1225 // information needed during a resize
114     struct {
115     bool active;
116     enum {
117     none,
118     left,
119     right
120     } selected;
121     int pos;
122     int min;
123     int max;
124     int dimension;
125 schoenebeck 3089 gig::dimension_def_t dimensionDef;
126     int zone;
127 schoenebeck 1225 } resize;
128    
129 schoenebeck 2626 bool multiSelectKeyDown;
130 schoenebeck 3131 bool primaryKeyDown; // on Mac: Cmd key, on all other OSs: Ctrl key
131     bool shiftKeyDown;
132 schoenebeck 2626
133 schoenebeck 1225 bool cursor_is_resize;
134     bool is_in_resize_zone(double x, double y);
135 persson 2246 void update_after_resize();
136 schoenebeck 1225
137     int h;
138 schoenebeck 2556
139     Glib::RefPtr<Gtk::ActionGroup> actionGroup;
140     Glib::RefPtr<Gtk::UIManager> uiManager;
141     Gtk::Menu* popup_menu_inside_dimregion;
142     Gtk::Menu* popup_menu_outside_dimregion;
143 schoenebeck 3105
144     private:
145     Glib::RefPtr<Gtk::Action> actionDeleteDimZone;
146     Glib::RefPtr<Gtk::Action> actionSplitDimZone;
147 schoenebeck 1225 };
148    
149     #endif

  ViewVC Help
Powered by ViewVC