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

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

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

revision 1261 by persson, Thu Jul 5 17:12:20 2007 UTC revision 1623 by persson, Fri Jan 4 19:42:45 2008 UTC
# Line 1  Line 1 
1  /*                                                         -*- c++ -*-  /*                                                         -*- c++ -*-
2   * Copyright (C) 2006, 2007 Andreas Persson   * Copyright (C) 2006-2008 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 20  Line 20 
20  #ifndef GIGEDIT_REGIONCHOOSER_H  #ifndef GIGEDIT_REGIONCHOOSER_H
21  #define GIGEDIT_REGIONCHOOSER_H  #define GIGEDIT_REGIONCHOOSER_H
22    
23    #include <vector>
24    
25  #include <gtkmm/drawingarea.h>  #include <gtkmm/drawingarea.h>
26  #include <gdkmm/colormap.h>  #include <gdkmm/colormap.h>
27  #include <gtkmm/uimanager.h>  #include <gtkmm/uimanager.h>
# Line 30  Line 32 
32    
33  #include <gig.h>  #include <gig.h>
34    
35    class SortedRegions {
36    private:
37        std::vector<gig::Region*> regions;
38        std::vector<gig::Region*>::iterator region_iterator;
39    
40    public:
41        void update(gig::Instrument* instrument);
42        gig::Region* first();
43        gig::Region* next();
44        bool operator() (gig::Region* x, gig::Region* y) {
45            return x->KeyRange.low < y->KeyRange.low;
46        }
47    };
48    
49  class RegionChooser : public Gtk::DrawingArea  class RegionChooser : public Gtk::DrawingArea
50  {  {
51  public:  public:
# Line 38  public: Line 54  public:
54    
55      void set_instrument(gig::Instrument* instrument);      void set_instrument(gig::Instrument* instrument);
56    
57      sigc::signal<void> signal_region_selected();      sigc::signal<void>& signal_region_selected();
58      sigc::signal<void> signal_instrument_changed();      sigc::signal<void>& signal_instrument_changed();
59    
60        sigc::signal<void, gig::Instrument*>& signal_instrument_struct_to_be_changed();
61        sigc::signal<void, gig::Instrument*>& signal_instrument_struct_changed();
62    
63        sigc::signal<void, gig::Region*>& signal_region_to_be_changed();
64        sigc::signal<void, gig::Region*>& signal_region_changed_signal();
65    
66      gig::Region* get_region() { return region; }      gig::Region* get_region() { return region; }
67    
# Line 54  protected: Line 76  protected:
76      gig::Region* get_region(int key);      gig::Region* get_region(int key);
77    
78      Glib::RefPtr<Gdk::GC> gc;      Glib::RefPtr<Gdk::GC> gc;
79      Gdk::Color blue, red, black, white, green, grey1;      Gdk::Color blue, red, grey1;
80    
81      void draw_region(int from, int to, const Gdk::Color& color);      void draw_region(int from, int to, const Gdk::Color& color);
82    
83      sigc::signal<void> region_selected;      sigc::signal<void> region_selected;
84      sigc::signal<void> instrument_changed;      sigc::signal<void> instrument_changed;
85    
86        sigc::signal<void, gig::Instrument*> instrument_struct_to_be_changed_signal;
87        sigc::signal<void, gig::Instrument*> instrument_struct_changed_signal;
88    
89        sigc::signal<void, gig::Region*> region_to_be_changed_signal;
90        sigc::signal<void, gig::Region*> region_changed_signal;
91    
92      gig::Instrument* instrument;      gig::Instrument* instrument;
93      gig::Region* region;      gig::Region* region;
94        SortedRegions regions;
95    
96        void motion_resize_region(int x, int y);
97        void motion_move_region(int x, int y);
98    
99      // information needed during a resize      // information needed during a resize
100      struct {      struct {
# Line 79  protected: Line 111  protected:
111          gig::Region* prev_region;          gig::Region* prev_region;
112      } resize;      } resize;
113    
114        // information needed during a region move
115        struct {
116            bool active;
117            double from_x;
118            int pos;
119            bool touch_left;
120            bool touch_right;
121        } move;
122    
123      bool cursor_is_resize;      bool cursor_is_resize;
124      bool is_in_resize_zone(double x, double y);      bool is_in_resize_zone(double x, double y);
125    
126      int h1;      int h1;
     int width;  
127    
128      Gtk::Menu* popup_menu_inside_region;      Gtk::Menu* popup_menu_inside_region;
129      Gtk::Menu* popup_menu_outside_region;      Gtk::Menu* popup_menu_outside_region;

Legend:
Removed from v.1261  
changed lines
  Added in v.1623

  ViewVC Help
Powered by ViewVC