/[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 2151 by persson, Sun Nov 21 12:38:41 2010 UTC revision 2464 by schoenebeck, Thu Sep 5 00:49:13 2013 UTC
# Line 1  Line 1 
1  /*                                                         -*- c++ -*-  /*                                                         -*- c++ -*-
2   * Copyright (C) 2006-2010 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>
# Line 31  Line 33 
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:
75      DimRegionEdit();      DimRegionEdit();
76      virtual ~DimRegionEdit();      virtual ~DimRegionEdit();
77      void set_dim_region(gig::DimensionRegion* d);      void set_dim_region(gig::DimensionRegion* d);
78      bool set_sample(gig::Sample* sample);      bool set_sample(gig::Sample* sample, bool copy_sample_unity, bool copy_sample_tune, bool copy_sample_loop);
79      Gtk::Entry* wSample;      Gtk::Entry* wSample;
80      sigc::signal<void, gig::DimensionRegion*>& signal_dimreg_to_be_changed();      sigc::signal<void, gig::DimensionRegion*>& signal_dimreg_to_be_changed();
81      sigc::signal<void, gig::DimensionRegion*>& signal_dimreg_changed();      sigc::signal<void, gig::DimensionRegion*>& signal_dimreg_changed();
# Line 61  protected: Line 99  protected:
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.2151  
changed lines
  Added in v.2464

  ViewVC Help
Powered by ViewVC