ardour/gtk2_ardour/beatbox_gui.h

232 lines
5.6 KiB
C
Raw Normal View History

2018-08-13 08:23:21 -04:00
/*
Copyright (C) 2017 Paul Davis
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef __gtk2_ardour_beatbox_gui_h__
#define __gtk2_ardour_beatbox_gui_h__
#include <string>
#include <boost/shared_ptr.hpp>
#include <gtkmm/radiobutton.h>
#include <gtkmm/togglebutton.h>
#include <gtkmm/button.h>
#include <gtkmm/scrollbar.h>
2018-08-13 08:23:21 -04:00
#include <gtkmm/spinbutton.h>
#include <gtkmm/box.h>
#include <gtkmm/notebook.h>
#include "gtkmm2ext/colors.h"
2018-11-07 01:22:50 -05:00
#include "widgets/ardour_button.h"
#include "canvas/box.h"
2018-08-13 08:23:21 -04:00
#include "canvas/canvas.h"
#include "canvas/rectangle.h"
2018-08-13 08:23:21 -04:00
2018-11-07 16:25:29 -05:00
#include "ardour/step_sequencer.h"
2018-08-13 08:23:21 -04:00
#include "widgets/ardour_button.h"
#include "widgets/ardour_dropdown.h"
#include "ardour_dialog.h"
namespace PBD {
class PropertyChange;
}
2018-08-13 08:23:21 -04:00
namespace ArdourCanvas {
class Grid;
class Item;
class StepButton;
class Polygon;
2018-08-13 08:23:21 -04:00
class Text;
class VBox;
class Widget;
}
namespace ARDOUR {
class BeatBox;
}
class SequencerGrid;
class StepView : public ArdourCanvas::Rectangle, public sigc::trackable {
public:
StepView (SequencerGrid&, ARDOUR::Step&, ArdourCanvas::Item*);
void render (ArdourCanvas::Rect const &, Cairo::RefPtr<Cairo::Context>) const;
bool on_event (GdkEvent*);
void view_mode_changed ();
private:
ARDOUR::Step& _step;
SequencerGrid& _seq;
2018-11-07 01:22:50 -05:00
ArdourCanvas::Text* text;
2018-11-07 20:54:22 -05:00
bool grabbed;
std::pair<double,double> grab_at;
2018-11-07 20:54:22 -05:00
std::pair<double,double> last_motion;
bool motion_event (GdkEventMotion*);
bool button_press_event (GdkEventButton*);
bool button_release_event (GdkEventButton*);
bool scroll_event (GdkEventScroll*);
void adjust_step_pitch (int amt);
void adjust_step_velocity (int amt);
2018-11-07 16:25:29 -05:00
void adjust_step_duration (ARDOUR::Step::DurationRatio const &);
void adjust_step_octave (int amt);
void step_changed (PBD::PropertyChange const &);
PBD::ScopedConnection step_connection;
2018-11-07 01:22:50 -05:00
2018-11-08 17:55:56 -05:00
void set_octave_text ();
void set_group_text ();
static Gtkmm2ext::Color on_fill_color;
static Gtkmm2ext::Color off_fill_color;
};
class SequencerStepIndicator : public ArdourCanvas::Rectangle {
public:
SequencerStepIndicator (SequencerGrid&, ArdourCanvas::Item *, size_t n);
void render (ArdourCanvas::Rect const &, Cairo::RefPtr<Cairo::Context>) const;
bool on_event (GdkEvent*);
void set_current (bool);
private:
SequencerGrid& grid;
size_t number;
ArdourCanvas::Polygon* poly;
ArdourCanvas::Text* text;
std::pair<double,double> grab_at;
std::pair<double,double> last_motion;
static int dragging;
bool motion_event (GdkEventMotion*);
bool button_press_event (GdkEventButton*);
bool button_release_event (GdkEventButton*);
bool scroll_event (GdkEventScroll*);
void set_text ();
static Gtkmm2ext::Color current_color;
static Gtkmm2ext::Color other_color;
static Gtkmm2ext::Color current_text_color;
static Gtkmm2ext::Color other_text_color;
};
class SequencerGrid : public ArdourCanvas::Rectangle, public sigc::trackable {
public:
enum Mode {
Velocity,
Pitch,
Duration,
Octave,
Group,
};
SequencerGrid (ARDOUR::StepSequencer&, ArdourCanvas::Canvas*);
2018-11-08 17:55:56 -05:00
ARDOUR::StepSequencer& sequencer() const { return _sequencer; }
Mode mode() const { return _mode; }
void set_mode (Mode m);
void render (ArdourCanvas::Rect const &, Cairo::RefPtr<Cairo::Context>) const;
2018-11-08 17:55:56 -05:00
void update ();
private:
ARDOUR::StepSequencer& _sequencer;
typedef std::vector<StepView*> StepViews;
2018-11-08 17:55:56 -05:00
StepViews step_views;
typedef std::vector<SequencerStepIndicator*> StepIndicators;
StepIndicators step_indicators;
double _width;
double _height;
Mode _mode;
ArdourCanvas::ScrollGroup* v_scroll_group;
ArdourCanvas::Container* no_scroll_group;
ArdourCanvas::Rectangle* step_indicator_bg;
ArdourCanvas::Container* step_indicator_box;
void sequencer_changed (PBD::PropertyChange const &);
PBD::ScopedConnection sequencer_connection;
};
2018-08-13 08:23:21 -04:00
class BBGUI : public ArdourDialog {
public:
BBGUI (boost::shared_ptr<ARDOUR::BeatBox> bb);
~BBGUI ();
double width() const { return _width; }
double height() const { return _height; }
2018-08-13 08:23:21 -04:00
protected:
void on_map ();
void on_unmap ();
private:
boost::shared_ptr<ARDOUR::BeatBox> bbox;
double _width;
double _height;
2018-08-13 08:23:21 -04:00
Gtk::Adjustment horizontal_adjustment;
Gtk::Adjustment vertical_adjustment;
2018-08-13 08:23:21 -04:00
ArdourCanvas::GtkCanvasViewport* _canvas_viewport;
ArdourCanvas::GtkCanvas* _canvas;
2018-08-13 08:23:21 -04:00
SequencerGrid* _sequencer;
2018-08-13 08:23:21 -04:00
ArdourWidgets::ArdourButton start_button;
void toggle_play ();
2018-08-13 08:23:21 -04:00
ArdourWidgets::ArdourButton export_as_region_button;
void export_as_region ();
Gtk::HBox canvas_hbox;
Gtk::VScrollbar vscrollbar;
2018-08-13 08:23:21 -04:00
void clear ();
void update ();
void update_sequencer ();
2018-08-13 08:23:21 -04:00
sigc::connection timer_connection;
2018-08-13 08:23:21 -04:00
void sequencer_changed (PBD::PropertyChange const &);
2018-11-07 01:22:50 -05:00
Gtk::HBox mode_box;
ArdourWidgets::ArdourButton mode_velocity_button;
ArdourWidgets:: ArdourButton mode_pitch_button;
ArdourWidgets::ArdourButton mode_octave_button;
ArdourWidgets::ArdourButton mode_group_button;
ArdourWidgets::ArdourButton mode_duration_button;
2018-11-07 01:22:50 -05:00
void mode_clicked (SequencerGrid::Mode);
PBD::ScopedConnection sequencer_connection;
2018-08-13 08:23:21 -04:00
};
#endif /* __gtk2_ardour_beatbox_gui_h__ */