/[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 1623 by persson, Fri Jan 4 19:42:45 2008 UTC revision 2442 by persson, Sun Apr 14 07:29:59 2013 UTC
# Line 1  Line 1 
1  /*                                                         -*- c++ -*-  /*                                                         -*- c++ -*-
2   * Copyright (C) 2006-2008 Andreas Persson   * Copyright (C) 2006-2013 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 22  Line 22 
22    
23  #include <gig.h>  #include <gig.h>
24    
25    #include <cairomm/context.h>
26    #include <gtkmm/drawingarea.h>
27  #include <gtkmm/entry.h>  #include <gtkmm/entry.h>
28  #include <gtkmm/label.h>  #include <gtkmm/label.h>
29  #include <gtkmm/notebook.h>  #include <gtkmm/notebook.h>
30  #include <gtkmm/table.h>  #include <gtkmm/table.h>
 #include <gtkmm/tooltips.h>  
31    
32  #include <set>  #include <set>
33    
34  #include "paramedit.h"  #include "paramedit.h"
35    
36    class VelocityCurve : public Gtk::DrawingArea {
37    public:
38        VelocityCurve(double (gig::DimensionRegion::*getter)(uint8_t));
39        void set_dim_region(gig::DimensionRegion* d) { dimreg = d; }
40    
41    protected:
42    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
43        bool on_expose_event(GdkEventExpose* e);
44    #else
45        bool on_draw(const Cairo::RefPtr<Cairo::Context>& cr);
46    #endif
47    
48    private:
49        double (gig::DimensionRegion::* const getter)(uint8_t);
50        gig::DimensionRegion* dimreg;
51    };
52    
53    class CrossfadeCurve : public Gtk::DrawingArea {
54    public:
55        CrossfadeCurve();
56        void set_dim_region(gig::DimensionRegion* d) { dimreg = d; }
57    
58    protected:
59    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
60        bool on_expose_event(GdkEventExpose* e);
61    #else
62        bool on_draw(const Cairo::RefPtr<Cairo::Context>& cr);
63    #endif
64    
65    private:
66        gig::DimensionRegion* dimreg;
67        void draw_one_curve(const Cairo::RefPtr<Cairo::Context>& cr,
68                            const gig::DimensionRegion* d,
69                            bool sensitive);
70    };
71    
72  class DimRegionEdit : public Gtk::Notebook  class DimRegionEdit : public Gtk::Notebook
73  {  {
74  public:  public:
# Line 54  protected: Line 91  protected:
91    
92      gig::DimensionRegion* dimregion;      gig::DimensionRegion* dimregion;
93    
94    #ifdef OLD_TOOLTIPS
95      Gtk::Tooltips tooltips;      Gtk::Tooltips tooltips;
96    #endif
97    
98      Gtk::Table* table[7];      Gtk::Table* table[7];
99    
100      Gtk::Label* lSample;      Gtk::Label* lSample;
101    
102        VelocityCurve velocity_curve;
103        VelocityCurve release_curve;
104        VelocityCurve cutoff_curve;
105        CrossfadeCurve crossfade_curve;
106    
107      NumEntryPermille eEG1PreAttack;      NumEntryPermille eEG1PreAttack;
108      NumEntryTemp<double> eEG1Attack;      NumEntryTemp<double> eEG1Attack;
109      NumEntryTemp<double> eEG1Decay1;      NumEntryTemp<double> eEG1Decay1;

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

  ViewVC Help
Powered by ViewVC