summaryrefslogtreecommitdiff
path: root/gtk2_ardour/crossfade_edit.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2007-01-10 16:19:13 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2007-01-10 16:19:13 +0000
commit1c167454eb2d498ed0ed453136ad3042aee0b556 (patch)
tree56b889a392cd0f9295359116d03c973a91ef881a /gtk2_ardour/crossfade_edit.h
parentc9fd6da8b184831565fc74dd6a828596f5d77840 (diff)
fix xfade logic and use shared_ptr for xfades
git-svn-id: svn://localhost/ardour2/trunk@1297 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/crossfade_edit.h')
-rw-r--r--gtk2_ardour/crossfade_edit.h284
1 files changed, 142 insertions, 142 deletions
diff --git a/gtk2_ardour/crossfade_edit.h b/gtk2_ardour/crossfade_edit.h
index ad0661c036..3c9a6a13c1 100644
--- a/gtk2_ardour/crossfade_edit.h
+++ b/gtk2_ardour/crossfade_edit.h
@@ -21,170 +21,170 @@ namespace ARDOUR
class CrossfadeEditor : public ArdourDialog
{
public:
- CrossfadeEditor (ARDOUR::Session&, ARDOUR::Crossfade&, double miny, double maxy);
- ~CrossfadeEditor ();
-
- void apply ();
-
- static const double canvas_border;
-
- /* these are public so that a caller/subclass can make them do the right thing.
- */
-
- Gtk::Button* cancel_button;
- Gtk::Button* ok_button;
-
- struct PresetPoint {
- double x;
- double y;
-
- PresetPoint (double a, double b)
- : x (a), y (b) {}
- };
-
- struct Preset : public list<PresetPoint> {
- string xpm;
+ CrossfadeEditor (ARDOUR::Session&, boost::shared_ptr<ARDOUR::Crossfade>, double miny, double maxy);
+ ~CrossfadeEditor ();
+
+ void apply ();
+
+ static const double canvas_border;
+
+ /* these are public so that a caller/subclass can make them do the right thing.
+ */
+
+ Gtk::Button* cancel_button;
+ Gtk::Button* ok_button;
+
+ struct PresetPoint {
+ double x;
+ double y;
+
+ PresetPoint (double a, double b)
+ : x (a), y (b) {}
+ };
+
+ struct Preset : public list<PresetPoint> {
+ string xpm;
+
+ Preset (string x)
+ : xpm (x) {}
+ };
+
+ typedef list<Preset*> Presets;
+
+ static Presets* fade_in_presets;
+ static Presets* fade_out_presets;
- Preset (string x)
- : xpm (x) {}
- };
-
- typedef list<Preset*> Presets;
-
- static Presets* fade_in_presets;
- static Presets* fade_out_presets;
-
private:
- ARDOUR::Crossfade& xfade;
- ARDOUR::Session& session;
-
- Gtk::VBox vpacker;
-
- struct Point {
- ~Point();
-
- ArdourCanvas::SimpleRect* box;
- ArdourCanvas::Line* curve;
- double x;
- double y;
-
- static const int32_t size;
-
- void move_to (double x, double y, double xfract, double yfract);
- };
-
- struct PointSorter
- {
- bool operator() (const CrossfadeEditor::Point* a, const CrossfadeEditor::Point *b) {
- return a->x < b->x;
- }
- };
-
- ArdourCanvas::SimpleRect* toplevel;
- ArdourCanvas::Canvas* canvas;
-
- struct Half {
- ArdourCanvas::Line* line;
- ArdourCanvas::Polygon* shading;
- list<Point*> points;
- ARDOUR::Curve normative_curve; /* 0 - 1.0, linear */
- ARDOUR::Curve gain_curve; /* 0 - 2.0, gain mapping */
- vector<ArdourCanvas::WaveView*> waves;
-
- Half();
- };
-
- enum WhichFade {
- In = 0,
- Out = 1
- };
-
- Half fade[2];
- WhichFade current;
-
- bool point_grabbed;
- vector<Gtk::Button*> fade_out_buttons;
- vector<Gtk::Button*> fade_in_buttons;
+ boost::shared_ptr<ARDOUR::Crossfade> xfade;
+ ARDOUR::Session& session;
+
+ Gtk::VBox vpacker;
+
+ struct Point {
+ ~Point();
+
+ ArdourCanvas::SimpleRect* box;
+ ArdourCanvas::Line* curve;
+ double x;
+ double y;
+
+ static const int32_t size;
+
+ void move_to (double x, double y, double xfract, double yfract);
+ };
+
+ struct PointSorter
+ {
+ bool operator() (const CrossfadeEditor::Point* a, const CrossfadeEditor::Point *b) {
+ return a->x < b->x;
+ }
+ };
+
+ ArdourCanvas::SimpleRect* toplevel;
+ ArdourCanvas::Canvas* canvas;
+
+ struct Half {
+ ArdourCanvas::Line* line;
+ ArdourCanvas::Polygon* shading;
+ list<Point*> points;
+ ARDOUR::Curve normative_curve; /* 0 - 1.0, linear */
+ ARDOUR::Curve gain_curve; /* 0 - 2.0, gain mapping */
+ vector<ArdourCanvas::WaveView*> waves;
+
+ Half();
+ };
+
+ enum WhichFade {
+ In = 0,
+ Out = 1
+ };
+
+ Half fade[2];
+ WhichFade current;
+
+ bool point_grabbed;
+ vector<Gtk::Button*> fade_out_buttons;
+ vector<Gtk::Button*> fade_in_buttons;
- Gtk::VBox vpacker2;
+ Gtk::VBox vpacker2;
- Gtk::Button clear_button;
- Gtk::Button revert_button;
+ Gtk::Button clear_button;
+ Gtk::Button revert_button;
- Gtk::ToggleButton audition_both_button;
- Gtk::ToggleButton audition_left_dry_button;
- Gtk::ToggleButton audition_left_button;
- Gtk::ToggleButton audition_right_dry_button;
- Gtk::ToggleButton audition_right_button;
+ Gtk::ToggleButton audition_both_button;
+ Gtk::ToggleButton audition_left_dry_button;
+ Gtk::ToggleButton audition_left_button;
+ Gtk::ToggleButton audition_right_dry_button;
+ Gtk::ToggleButton audition_right_button;
- Gtk::ToggleButton preroll_button;
- Gtk::ToggleButton postroll_button;
+ Gtk::ToggleButton preroll_button;
+ Gtk::ToggleButton postroll_button;
- Gtk::HBox roll_box;
+ Gtk::HBox roll_box;
- gint event_handler (GdkEvent*);
+ gint event_handler (GdkEvent*);
- bool canvas_event (GdkEvent* event);
- bool point_event (GdkEvent* event, Point*);
- bool curve_event (GdkEvent* event);
+ bool canvas_event (GdkEvent* event);
+ bool point_event (GdkEvent* event, Point*);
+ bool curve_event (GdkEvent* event);
- void canvas_allocation (Gtk::Allocation&);
- void add_control_point (double x, double y);
- Point* make_point ();
- void redraw ();
+ void canvas_allocation (Gtk::Allocation&);
+ void add_control_point (double x, double y);
+ Point* make_point ();
+ void redraw ();
- double effective_width () const { return canvas->get_allocation().get_width() - (2.0 * canvas_border); }
- double effective_height () const { return canvas->get_allocation().get_height() - (2.0 * canvas_border); }
+ double effective_width () const { return canvas->get_allocation().get_width() - (2.0 * canvas_border); }
+ double effective_height () const { return canvas->get_allocation().get_height() - (2.0 * canvas_border); }
- void clear ();
- void reset ();
+ void clear ();
+ void reset ();
- double miny;
- double maxy;
+ double miny;
+ double maxy;
- Gtk::Table fade_in_table;
- Gtk::Table fade_out_table;
+ Gtk::Table fade_in_table;
+ Gtk::Table fade_out_table;
- void build_presets ();
- void apply_preset (Preset*);
+ void build_presets ();
+ void apply_preset (Preset*);
- Gtk::RadioButton select_in_button;
- Gtk::RadioButton select_out_button;
- Gtk::HBox curve_button_box;
- Gtk::HBox audition_box;
+ Gtk::RadioButton select_in_button;
+ Gtk::RadioButton select_out_button;
+ Gtk::HBox curve_button_box;
+ Gtk::HBox audition_box;
- void curve_select_clicked (WhichFade);
+ void curve_select_clicked (WhichFade);
- double x_coordinate (double& xfract) const;
- double y_coordinate (double& yfract) const;
+ double x_coordinate (double& xfract) const;
+ double y_coordinate (double& yfract) const;
- void set (const ARDOUR::Curve& alist, WhichFade);
+ void set (const ARDOUR::Curve& alist, WhichFade);
- sigc::connection peaks_ready_connection;
+ sigc::connection peaks_ready_connection;
- void make_waves (boost::shared_ptr<ARDOUR::AudioRegion>, WhichFade);
- void peaks_ready (boost::shared_ptr<ARDOUR::AudioRegion> r, WhichFade);
+ void make_waves (boost::shared_ptr<ARDOUR::AudioRegion>, WhichFade);
+ void peaks_ready (boost::shared_ptr<ARDOUR::AudioRegion> r, WhichFade);
- void _apply_to (ARDOUR::Crossfade* xf);
- void setup (ARDOUR::Crossfade*);
- void cancel_audition ();
- void audition_state_changed (bool);
-
- void audition_toggled ();
- void audition_right_toggled ();
- void audition_right_dry_toggled ();
- void audition_left_toggled ();
- void audition_left_dry_toggled ();
-
- void audition_both ();
- void audition_left_dry ();
- void audition_left ();
- void audition_right_dry ();
- void audition_right ();
-
- void xfade_changed (ARDOUR::Change);
-
- void dump ();
+ void _apply_to (boost::shared_ptr<ARDOUR::Crossfade> xf);
+ void setup (boost::shared_ptr<ARDOUR::Crossfade>);
+ void cancel_audition ();
+ void audition_state_changed (bool);
+
+ void audition_toggled ();
+ void audition_right_toggled ();
+ void audition_right_dry_toggled ();
+ void audition_left_toggled ();
+ void audition_left_dry_toggled ();
+
+ void audition_both ();
+ void audition_left_dry ();
+ void audition_left ();
+ void audition_right_dry ();
+ void audition_right ();
+
+ void xfade_changed (ARDOUR::Change);
+
+ void dump ();
};
#endif /* __gtk_ardour_xfade_edit_h__ */