ardour/gtk2_ardour/audio_trigger_properties_box.h

99 lines
2.6 KiB
C
Raw Normal View History

2021-12-15 21:48:10 -05:00
/*
* Copyright (C) 2021 Paul Davis <paul@linuxaudiosystems.com>
* Copyright (C) 2021 Ben Loftis <ben@harrisonconsoles.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.
*/
2021-12-17 09:48:58 -05:00
#ifndef _gtk_ardour_audio_trigger_properties_box_h_
#define _gtk_ardour_audio_trigger_properties_box_h_
2021-12-15 21:48:10 -05:00
#include <gtkmm/box.h>
#include <gtkmm/label.h>
#include <gtkmm/table.h>
#include "ardour/ardour.h"
#include "ardour/session_handle.h"
#include "widgets/ardour_button.h"
#include "audio_clock.h"
class TriggerPropertiesBox : public Gtk::VBox, public ARDOUR::SessionHandlePtr
{
public:
TriggerPropertiesBox () {}
~TriggerPropertiesBox () {}
virtual void set_trigger (ARDOUR::TriggerReference) = 0;
protected:
ARDOUR::TriggerReference tref;
Gtk::Label _header_label;
virtual void trigger_changed (const PBD::PropertyChange& what_changed) = 0;
void trigger_swap (uint32_t);
PBD::ScopedConnection _state_connection;
PBD::ScopedConnection trigger_swap_connection;
2021-12-15 21:48:10 -05:00
};
class AudioTriggerPropertiesBox : public TriggerPropertiesBox
{
public:
AudioTriggerPropertiesBox ();
~AudioTriggerPropertiesBox ();
void set_trigger (ARDOUR::TriggerReference);
2021-12-15 21:48:10 -05:00
2021-12-17 09:48:58 -05:00
void set_session (ARDOUR::Session*);
2021-12-15 21:48:10 -05:00
protected:
void toggle_stretch ();
void trigger_changed (const PBD::PropertyChange& what_changed);
2021-12-15 21:48:10 -05:00
void start_clock_changed();
void length_clock_changed();
2022-01-10 20:33:30 -05:00
void follow_clock_changed();
2022-01-10 20:33:30 -05:00
void gain_changed();
2021-12-15 21:48:10 -05:00
private:
2021-12-17 09:48:58 -05:00
Gtk::Table _table;
Gtk::Label _abpm_label;
AudioClock _length_clock;
AudioClock _start_clock;
2021-12-15 21:48:10 -05:00
Gtk::Adjustment _follow_length_adjustment;
Gtk::SpinButton _follow_length_spinner;
2022-01-10 20:33:30 -05:00
Gtk::Adjustment _gain_adjustment;
Gtk::SpinButton _gain_spinner;
2021-12-17 09:48:58 -05:00
ArdourWidgets::ArdourButton _bpm_button;
ArdourWidgets::ArdourButton _metrum_button;
2021-12-15 21:48:10 -05:00
2021-12-17 09:48:58 -05:00
ArdourWidgets::ArdourButton _stretch_toggle;
2021-12-15 21:48:10 -05:00
2021-12-17 09:48:58 -05:00
ArdourWidgets::ArdourButton _fade_in_enable_button;
ArdourWidgets::ArdourButton _fade_out_enable_button;
2021-12-15 21:48:10 -05:00
2021-12-17 09:48:58 -05:00
ArdourWidgets::ArdourButton _stretch_selector;
2021-12-15 21:48:10 -05:00
};
2021-12-17 09:48:58 -05:00
#endif