ardour/gtk2_ardour/beatbox_gui.h

165 lines
3.9 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"
#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
#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 Step;
class StepSequencer;
2018-08-13 08:23:21 -04:00
}
class BBGUI;
class StepView : public ArdourCanvas::Rectangle, public sigc::trackable {
public:
StepView (BBGUI&, ARDOUR::Step&, ArdourCanvas::Item*);
void render (ArdourCanvas::Rect const &, Cairo::RefPtr<Cairo::Context>) const;
bool on_event (GdkEvent*);
private:
ARDOUR::Step& _step;
BBGUI& bbgui;
std::pair<double,double> grab_at;
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);
void step_changed (PBD::PropertyChange const &);
PBD::ScopedConnection step_connection;
};
class SequencerGrid : public ArdourCanvas::Rectangle {
public:
SequencerGrid (ARDOUR::StepSequencer&, ArdourCanvas::Item* parent);
void render (ArdourCanvas::Rect const &, Cairo::RefPtr<Cairo::Context>) const;
private:
ARDOUR::StepSequencer& _sequencer;
std::vector<StepView*> step_views;
double _width;
double _height;
void sequencer_changed (PBD::PropertyChange const &);
};
class SequencerStepIndicator : public ArdourCanvas::Rectangle {
public:
SequencerStepIndicator (ArdourCanvas::Item *, int n);
void render (ArdourCanvas::Rect const &, Cairo::RefPtr<Cairo::Context>) const;
private:
ArdourCanvas::Polygon* poly;
ArdourCanvas::Text* text;
};
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;
ArdourCanvas::ScrollGroup* v_scroll_group;
ArdourCanvas::Container* no_scroll_group;
2018-08-13 08:23:21 -04:00
SequencerGrid* _sequencer;
ArdourCanvas::Rectangle* step_indicator_bg;
ArdourCanvas::Container* step_indicator_box;
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::Button clear_button;
Gtk::HBox misc_button_box;
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-08-13 08:23:21 -04:00
};
#endif /* __gtk2_ardour_beatbox_gui_h__ */