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

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

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

revision 3736 by schoenebeck, Sat Dec 7 15:04:51 2019 UTC revision 3737 by schoenebeck, Sat Feb 1 20:39:39 2020 UTC
# Line 50  Line 50 
50    
51  #include "paramedit.h"  #include "paramedit.h"
52  #include "global.h"  #include "global.h"
53    #include "ScriptPatchVars.h"
54    #include "wrapLabel.hh"
55    
56  class VelocityCurve : public Gtk::DrawingArea {  class VelocityCurve : public Gtk::DrawingArea {
57  public:  public:
# Line 209  public: Line 211  public:
211    
212      std::set<gig::DimensionRegion*> dimregs;      std::set<gig::DimensionRegion*> dimregs;
213    
214        ScriptPatchVars scriptVars;
215        Gtk::Button editScriptSlotsButton;
216    
217  protected:  protected:
218      sigc::signal<void, gig::DimensionRegion*> dimreg_to_be_changed_signal;      sigc::signal<void, gig::DimensionRegion*> dimreg_to_be_changed_signal;
219      sigc::signal<void, gig::DimensionRegion*> dimreg_changed_signal;      sigc::signal<void, gig::DimensionRegion*> dimreg_changed_signal;
# Line 235  protected: Line 240  protected:
240      Gtk::Tooltips tooltips;      Gtk::Tooltips tooltips;
241  #endif  #endif
242    
243        static const int tableSize = 10;
244  #if USE_GTKMM_GRID  #if USE_GTKMM_GRID
245      Gtk::Grid* table[9];      Gtk::Grid* table[tableSize];
246  #else  #else
247      Gtk::Table* table[9];      Gtk::Table* table[tableSize];
248  #endif  #endif
249    
250      Gtk::Label* lSample;      Gtk::Label* lSample;
# Line 358  protected: Line 364  protected:
364    
365      Gtk::Button buttonSelectSample;      Gtk::Button buttonSelectSample;
366    
367        Gtk::HBox scriptVarsDescrBox;
368    #if GTKMM_MAJOR_VERSION < 3
369        view::WrapLabel m_labelPatchVarsDescr;
370    #else
371        MultiLineLabel  m_labelPatchVarsDescr;
372    #endif
373    
374      int rowno;      int rowno;
375      int pageno;      int pageno;
376      int firstRowInBlock;      int firstRowInBlock;

Legend:
Removed from v.3736  
changed lines
  Added in v.3737

  ViewVC Help
Powered by ViewVC