2016-07-10 12:38:55 -04:00
|
|
|
/*
|
2019-08-03 08:34:29 -04:00
|
|
|
* Copyright (C) 2016-2017 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
*
|
|
|
|
* 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.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2016-07-10 12:38:55 -04:00
|
|
|
|
|
|
|
#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 {
|
2021-06-18 13:53:53 -04:00
|
|
|
struct Rect;
|
|
|
|
|
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-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 ();
|
|
|
|
|
2023-02-16 18:33:28 -05:00
|
|
|
void set_stripable (std::shared_ptr<ARDOUR::Stripable>);
|
2016-07-10 12:38:55 -04:00
|
|
|
|
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
|
|
|
|
2023-02-16 18:33:28 -05:00
|
|
|
std::shared_ptr<ARDOUR::Stripable> current_stripable() const { return _stripable; }
|
2016-09-27 15:31:17 -04:00
|
|
|
|
2016-07-10 12:38:55 -04:00
|
|
|
private:
|
2023-02-16 18:33:28 -05:00
|
|
|
std::shared_ptr<ARDOUR::Stripable> _stripable;
|
2021-06-18 16:33:32 -04:00
|
|
|
PBD::ScopedConnectionList _stripable_connections;
|
|
|
|
|
|
|
|
ArdourCanvas::Rectangle* _bg;
|
|
|
|
ArdourCanvas::Line* _upper_line;
|
|
|
|
std::vector<ArdourCanvas::Text*> _upper_text;
|
|
|
|
std::vector<ArdourCanvas::Text*> _lower_text;
|
|
|
|
ArdourCanvas::Text* _name_text;
|
|
|
|
ArdourCanvas::Text* _bbt_text;
|
|
|
|
ArdourCanvas::Text* _minsec_text;
|
|
|
|
uint8_t _selection_color;
|
|
|
|
|
|
|
|
Push2Knob* _knobs[8];
|
|
|
|
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);
|
2023-02-16 18:33:28 -05:00
|
|
|
void simple_control_change (std::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__ */
|