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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3068 - (show annotations) (download) (as text)
Mon Jan 2 22:13:01 2017 UTC (7 years, 3 months ago) by schoenebeck
File MIME type: text/x-c++hdr
File size: 3885 byte(s)
- Preparations for Xcode project update.

1 /* -*- c++ -*-
2 * Copyright (C) 2006-2017 Andreas Persson
3 *
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 #include <gtkmm/uimanager.h>
25 #include <gtkmm/menu.h>
26 #include <gdkmm/window.h>
27
28 #include "compat.h"
29
30 #ifdef LIBGIG_HEADER_FILE
31 # include LIBGIG_HEADER_FILE(gig.h)
32 #else
33 # include <gig.h>
34 #endif
35
36 #include <set>
37 #include <map>
38
39 class DimRegionChooser : public Gtk::DrawingArea
40 {
41 public:
42 DimRegionChooser(Gtk::Window& window);
43 virtual ~DimRegionChooser();
44
45 void set_region(gig::Region* region);
46
47 sigc::signal<void>& signal_dimregion_selected();
48 sigc::signal<void>& signal_region_changed();
49
50 gig::DimensionRegion* get_main_dimregion() const;
51 void get_dimregions(const gig::Region* region, bool stereo,
52 std::set<gig::DimensionRegion*>& dimregs) const;
53 bool select_dimregion(gig::DimensionRegion* dimrgn);
54
55 protected:
56 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
57 virtual bool on_expose_event(GdkEventExpose* e);
58 #else
59 virtual bool on_draw(const Cairo::RefPtr<Cairo::Context>& cr);
60 #endif
61 virtual bool on_button_press_event(GdkEventButton* event);
62 virtual bool on_button_release_event(GdkEventButton* event);
63 virtual bool on_motion_notify_event(GdkEventMotion* event);
64 virtual bool on_focus(Gtk::DirectionType direction);
65 bool onKeyPressed(GdkEventKey* key);
66 bool onKeyReleased(GdkEventKey* key);
67 void refresh_all();
68 void split_dimension_zone();
69 void delete_dimension_zone();
70 void resetSelectedZones();
71
72 Gdk::RGBA red, black, white;
73
74 gig::Instrument* instrument;
75 gig::Region* region;
76
77 sigc::signal<void> dimregion_selected;
78 sigc::signal<void> region_changed;
79
80 //std::set<gig::DimensionRegion*> dimregs; ///< Reflects which dimension regions are currently selected.
81 int focus_line;
82 std::map<gig::dimension_t, std::set<int> > dimzones; ///< Reflects which zone(s) of the individual dimension are currently selected.
83 int label_width;
84 bool labels_changed;
85 int nbDimensions;
86
87 // the "main" dimension region is the one that is used to i.e. evaluate the
88 // precise custom velocity splits (could also be interpreted for focus stuff,
89 // i.e. keyboard arrow key navigation)
90 // NOTE: these may *not* necessarily currently be selected !
91 gig::dimension_t maindimtype;
92 std::map<gig::dimension_t,int> maindimcase;
93 int maindimregno;
94
95 // information needed during a resize
96 struct {
97 bool active;
98 enum {
99 none,
100 left,
101 right
102 } selected;
103 int pos;
104 int min;
105 int max;
106 int dimension;
107 int offset;
108 } resize;
109
110 bool multiSelectKeyDown;
111
112 bool cursor_is_resize;
113 bool is_in_resize_zone(double x, double y);
114 void update_after_resize();
115
116 int h;
117
118 Glib::RefPtr<Gtk::ActionGroup> actionGroup;
119 Glib::RefPtr<Gtk::UIManager> uiManager;
120 Gtk::Menu* popup_menu_inside_dimregion;
121 Gtk::Menu* popup_menu_outside_dimregion;
122 };
123
124 #endif

  ViewVC Help
Powered by ViewVC