2016-07-10 12:38:55 -04:00
|
|
|
/*
|
|
|
|
Copyright (C) 2016 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 __ardour_push2_track_mix_layout_h__
|
|
|
|
#define __ardour_push2_track_mix_layout_h__
|
|
|
|
|
2016-07-11 09:07:52 -04:00
|
|
|
#include <vector>
|
|
|
|
|
2016-07-10 12:38:55 -04:00
|
|
|
#include "layout.h"
|
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
class Stripable;
|
2016-09-22 15:24:02 -04:00
|
|
|
class AutomationControl;
|
2016-07-10 12:38:55 -04:00
|
|
|
}
|
|
|
|
|
2016-09-16 09:39:28 -04:00
|
|
|
namespace ArdourCanvas {
|
2016-09-22 15:24:02 -04:00
|
|
|
class Rectangle;
|
2016-09-16 09:39:28 -04:00
|
|
|
class Text;
|
2016-09-22 15:24:02 -04:00
|
|
|
class Line;
|
2016-09-25 16:02:47 -04:00
|
|
|
class VBox;
|
2016-09-28 17:24:14 -04:00
|
|
|
class Rect;
|
2016-09-16 09:39:28 -04:00
|
|
|
}
|
|
|
|
|
2016-07-10 12:38:55 -04:00
|
|
|
namespace ArdourSurface {
|
|
|
|
|
2016-07-11 09:07:52 -04:00
|
|
|
class Push2Knob;
|
2016-09-25 16:02:47 -04:00
|
|
|
class LevelMeter;
|
2016-07-11 09:07:52 -04:00
|
|
|
|
2016-07-10 12:38:55 -04:00
|
|
|
class TrackMixLayout : public Push2Layout
|
|
|
|
{
|
|
|
|
public:
|
2016-09-27 15:31:17 -04:00
|
|
|
TrackMixLayout (Push2& p, ARDOUR::Session&, std::string const &);
|
2016-07-10 12:38:55 -04:00
|
|
|
~TrackMixLayout ();
|
|
|
|
|
|
|
|
void set_stripable (boost::shared_ptr<ARDOUR::Stripable>);
|
|
|
|
|
2016-09-16 09:39:28 -04:00
|
|
|
void render (ArdourCanvas::Rect const &, Cairo::RefPtr<Cairo::Context>) const;
|
|
|
|
|
|
|
|
void show ();
|
2016-09-22 15:24:02 -04:00
|
|
|
void hide ();
|
2016-07-10 12:38:55 -04:00
|
|
|
void button_upper (uint32_t n);
|
|
|
|
void button_lower (uint32_t n);
|
2016-09-22 15:24:02 -04:00
|
|
|
void button_left ();
|
|
|
|
void button_right ();
|
2016-07-10 12:38:55 -04:00
|
|
|
|
|
|
|
void strip_vpot (int, int);
|
|
|
|
void strip_vpot_touch (int, bool);
|
|
|
|
|
2016-09-23 19:18:27 -04:00
|
|
|
void update_meters ();
|
2016-09-25 19:29:30 -04:00
|
|
|
void update_clocks ();
|
2016-09-23 19:18:27 -04:00
|
|
|
|
2016-09-27 15:31:17 -04:00
|
|
|
boost::shared_ptr<ARDOUR::Stripable> current_stripable() const { return stripable; }
|
|
|
|
|
2016-07-10 12:38:55 -04:00
|
|
|
private:
|
|
|
|
boost::shared_ptr<ARDOUR::Stripable> stripable;
|
2016-07-10 13:02:42 -04:00
|
|
|
PBD::ScopedConnectionList stripable_connections;
|
|
|
|
|
2016-09-22 15:24:02 -04:00
|
|
|
ArdourCanvas::Rectangle* bg;
|
|
|
|
ArdourCanvas::Line* upper_line;
|
2016-09-16 09:39:28 -04:00
|
|
|
std::vector<ArdourCanvas::Text*> upper_text;
|
|
|
|
std::vector<ArdourCanvas::Text*> lower_text;
|
2016-09-22 15:24:02 -04:00
|
|
|
ArdourCanvas::Text* name_text;
|
2016-09-25 19:29:30 -04:00
|
|
|
ArdourCanvas::Text* bbt_text;
|
|
|
|
ArdourCanvas::Text* minsec_text;
|
2016-09-22 15:24:02 -04:00
|
|
|
uint8_t selection_color;
|
2016-07-10 15:22:16 -04:00
|
|
|
|
2016-07-11 18:17:04 -04:00
|
|
|
Push2Knob* knobs[8];
|
2016-09-25 16:02:47 -04:00
|
|
|
LevelMeter* meter;
|
2016-07-11 09:07:52 -04:00
|
|
|
|
2016-07-10 15:22:16 -04:00
|
|
|
void stripable_property_change (PBD::PropertyChange const& what_changed);
|
2016-09-22 15:24:02 -04:00
|
|
|
void simple_control_change (boost::shared_ptr<ARDOUR::AutomationControl> ac, Push2::ButtonID bid);
|
2016-07-10 13:02:42 -04:00
|
|
|
|
2016-09-27 15:31:17 -04:00
|
|
|
void show_state ();
|
2016-07-11 18:17:04 -04:00
|
|
|
|
2016-07-10 13:02:42 -04:00
|
|
|
void drop_stripable ();
|
|
|
|
void name_changed ();
|
2016-07-10 15:22:16 -04:00
|
|
|
void color_changed ();
|
2016-09-22 15:24:02 -04:00
|
|
|
|
2016-09-25 19:29:30 -04:00
|
|
|
void solo_mute_change ();
|
2016-09-22 15:24:02 -04:00
|
|
|
void rec_enable_change ();
|
|
|
|
void solo_iso_change ();
|
|
|
|
void solo_safe_change ();
|
|
|
|
void monitoring_change ();
|
2016-07-10 12:38:55 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
} /* namespace */
|
|
|
|
|
|
|
|
#endif /* __ardour_push2_track_mix_layout_h__ */
|