2007-04-26 20:54:31 +00:00
|
|
|
/*
|
2019-08-02 23:26:43 +02:00
|
|
|
* Copyright (C) 2005-2017 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
|
* Copyright (C) 2005 Karsten Wiese <fzuuzf@googlemail.com>
|
|
|
|
|
* Copyright (C) 2005 Taybin Rutkin <taybin@taybin.com>
|
|
|
|
|
* Copyright (C) 2008-2011 David Robillard <d@drobilla.net>
|
|
|
|
|
* Copyright (C) 2009-2010 Carl Hetherington <carl@carlh.net>
|
|
|
|
|
* Copyright (C) 2014-2015 Colin Fletcher <colin.m.fletcher@googlemail.com>
|
|
|
|
|
* Copyright (C) 2015-2017 Nick Mainsbridge <mainsbridge@gmail.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.
|
|
|
|
|
*/
|
2007-04-26 20:54:31 +00:00
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
#ifndef __ardour_gtk_tempo_dialog_h__
|
|
|
|
|
#define __ardour_gtk_tempo_dialog_h__
|
|
|
|
|
|
2005-09-26 14:33:53 +00:00
|
|
|
#include <gtkmm/entry.h>
|
|
|
|
|
#include <gtkmm/frame.h>
|
|
|
|
|
#include <gtkmm/box.h>
|
|
|
|
|
#include <gtkmm/button.h>
|
|
|
|
|
#include <gtkmm/label.h>
|
2022-12-30 19:28:47 +01:00
|
|
|
#include <gtkmm/liststore.h>
|
2005-09-26 14:33:53 +00:00
|
|
|
#include <gtkmm/table.h>
|
|
|
|
|
#include <gtkmm/entry.h>
|
2007-02-02 20:55:16 +00:00
|
|
|
#include <gtkmm/spinbutton.h>
|
2022-12-30 19:28:47 +01:00
|
|
|
#include <gtkmm/combobox.h>
|
2005-09-26 14:33:53 +00:00
|
|
|
#include <gtkmm/comboboxtext.h>
|
|
|
|
|
|
2009-02-25 18:26:51 +00:00
|
|
|
#include "ardour/types.h"
|
|
|
|
|
#include "ardour/tempo.h"
|
2022-12-30 19:28:47 +01:00
|
|
|
#include "midi++/types.h"
|
2005-09-25 18:42:24 +00:00
|
|
|
|
|
|
|
|
#include "ardour_dialog.h"
|
|
|
|
|
|
2022-12-30 19:28:47 +01:00
|
|
|
namespace MIDI {
|
|
|
|
|
class Parser;
|
|
|
|
|
}
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
|
class MidiPort;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2010-05-02 23:14:43 +00:00
|
|
|
class TempoDialog : public ArdourDialog
|
2005-09-25 18:42:24 +00:00
|
|
|
{
|
2010-05-02 23:14:43 +00:00
|
|
|
public:
|
2020-11-27 12:41:11 -07:00
|
|
|
TempoDialog (Temporal::TempoMap::SharedPtr const &, Temporal::timepos_t const & , const std::string & action);
|
|
|
|
|
TempoDialog (Temporal::TempoMap::SharedPtr const &, Temporal::TempoPoint&, const std::string & action);
|
2022-12-30 19:28:47 +01:00
|
|
|
~TempoDialog ();
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2008-02-02 03:57:35 +00:00
|
|
|
double get_bpm ();
|
2017-03-07 03:59:42 +11:00
|
|
|
double get_end_bpm ();
|
2021-01-01 15:46:11 -07:00
|
|
|
int get_note_type ();
|
2020-07-23 17:46:49 -06:00
|
|
|
bool get_bbt_time (Temporal::BBT_Time&);
|
2020-11-11 09:31:52 -07:00
|
|
|
Temporal::Tempo::Type get_tempo_type ();
|
|
|
|
|
Temporal::TimeDomain get_lock_style ();
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2023-06-12 18:00:21 -06:00
|
|
|
void on_show ();
|
|
|
|
|
|
2008-02-02 03:57:35 +00:00
|
|
|
private:
|
2020-11-11 09:31:52 -07:00
|
|
|
void init (const Temporal::BBT_Time& start, double bpm, double end_bpm, double note_type, Temporal::TempoPoint::Type type, bool movable, Temporal::TimeDomain style);
|
2014-12-07 13:54:05 +01:00
|
|
|
bool is_user_input_valid() const;
|
2008-02-02 03:57:35 +00:00
|
|
|
void bpm_changed ();
|
|
|
|
|
bool bpm_button_press (GdkEventButton* );
|
|
|
|
|
bool bpm_button_release (GdkEventButton* );
|
2008-02-17 17:49:38 +00:00
|
|
|
bool entry_key_release (GdkEventKey* );
|
2011-12-20 16:29:44 +00:00
|
|
|
void pulse_change ();
|
2015-12-21 05:42:38 +11:00
|
|
|
void tempo_type_change ();
|
2016-02-28 04:59:34 +11:00
|
|
|
void lock_style_change ();
|
2017-05-04 16:12:26 +02:00
|
|
|
bool tap_tempo_key_press (GdkEventKey*);
|
|
|
|
|
bool tap_tempo_button_press (GdkEventButton*);
|
2015-03-19 19:44:20 +00:00
|
|
|
bool tap_tempo_focus_out (GdkEventFocus* );
|
2022-12-30 19:28:47 +01:00
|
|
|
void port_changed ();
|
|
|
|
|
void ports_changed ();
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2022-12-30 19:28:47 +01:00
|
|
|
void tap_tempo (int64_t);
|
|
|
|
|
void midi_event (MIDI::byte*, size_t, MIDI::samplecnt_t);
|
2017-05-04 16:12:26 +02:00
|
|
|
|
2021-01-01 15:46:11 -07:00
|
|
|
typedef std::map<std::string,int> NoteTypes;
|
2011-12-20 16:29:44 +00:00
|
|
|
NoteTypes note_types;
|
|
|
|
|
|
2020-11-11 09:31:52 -07:00
|
|
|
typedef std::map<std::string, Temporal::Tempo::Type> TempoTypes;
|
2015-12-20 04:41:45 +11:00
|
|
|
TempoTypes tempo_types;
|
|
|
|
|
|
2020-11-11 09:31:52 -07:00
|
|
|
typedef std::map<std::string, Temporal::TimeDomain> LockStyles;
|
2016-02-28 04:59:34 +11:00
|
|
|
LockStyles lock_styles;
|
|
|
|
|
|
2015-03-19 19:44:20 +00:00
|
|
|
bool tapped; // whether the tap-tempo button has been clicked
|
2016-01-13 15:04:29 +01:00
|
|
|
double sum_x, sum_xx, sum_xy, sum_y;
|
|
|
|
|
double tap_count;
|
|
|
|
|
double last_t;
|
|
|
|
|
gint64 first_t;
|
2014-02-10 21:14:59 +00:00
|
|
|
|
2020-11-27 12:41:11 -07:00
|
|
|
Temporal::TempoMap::SharedPtr _map;
|
2020-11-11 09:31:52 -07:00
|
|
|
Temporal::TempoPoint* _section;
|
2016-03-07 06:35:32 +11:00
|
|
|
|
2011-12-20 16:29:44 +00:00
|
|
|
Gtk::ComboBoxText pulse_selector;
|
2010-05-02 23:14:43 +00:00
|
|
|
Gtk::Adjustment bpm_adjustment;
|
|
|
|
|
Gtk::SpinButton bpm_spinner;
|
2017-03-07 03:59:42 +11:00
|
|
|
Gtk::Adjustment end_bpm_adjustment;
|
|
|
|
|
Gtk::SpinButton end_bpm_spinner;
|
|
|
|
|
Gtk::Label _end_bpm_label;
|
2008-02-02 03:57:35 +00:00
|
|
|
Gtk::Entry when_bar_entry;
|
2010-05-02 23:14:43 +00:00
|
|
|
Gtk::Entry when_beat_entry;
|
|
|
|
|
Gtk::Label when_bar_label;
|
|
|
|
|
Gtk::Label when_beat_label;
|
2011-12-20 16:29:44 +00:00
|
|
|
Gtk::Label pulse_selector_label;
|
2022-12-30 19:28:47 +01:00
|
|
|
Gtk::Label _tap_source_label;
|
2014-02-10 21:14:59 +00:00
|
|
|
Gtk::Button tap_tempo_button;
|
2015-12-20 04:41:45 +11:00
|
|
|
Gtk::ComboBoxText tempo_type;
|
2016-02-28 04:59:34 +11:00
|
|
|
Gtk::ComboBoxText lock_style;
|
2022-12-30 19:28:47 +01:00
|
|
|
Gtk::ComboBox _midi_port_combo;
|
|
|
|
|
|
|
|
|
|
class MidiPortCols : public Gtk::TreeModelColumnRecord
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
MidiPortCols ()
|
|
|
|
|
{
|
|
|
|
|
add (pretty_name);
|
|
|
|
|
add (port_name);
|
|
|
|
|
}
|
|
|
|
|
Gtk::TreeModelColumn<std::string> pretty_name;
|
|
|
|
|
Gtk::TreeModelColumn<std::string> port_name;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
MidiPortCols _midi_port_cols;
|
|
|
|
|
Glib::RefPtr<Gtk::ListStore> _midi_port_list;
|
|
|
|
|
|
|
|
|
|
PBD::Signal1<void, int64_t> _midi_tap_signal;
|
2023-06-13 17:03:27 +02:00
|
|
|
std::shared_ptr<MIDI::Parser> _midi_tap_parser;
|
|
|
|
|
std::shared_ptr<ARDOUR::MidiPort> _midi_tap_port;
|
2022-12-30 19:28:47 +01:00
|
|
|
PBD::ScopedConnection _parser_connection;
|
|
|
|
|
PBD::ScopedConnection _manager_connection;
|
|
|
|
|
PBD::ScopedConnection _xthread_connection;
|
2023-06-13 17:03:27 +02:00
|
|
|
sigc::connection _port_changed_connection;
|
2010-05-02 23:14:43 +00:00
|
|
|
};
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2010-05-02 23:14:43 +00:00
|
|
|
class MeterDialog : public ArdourDialog
|
|
|
|
|
{
|
|
|
|
|
public:
|
2020-11-27 12:41:11 -07:00
|
|
|
MeterDialog (Temporal::TempoMap::SharedPtr const & , Temporal::timepos_t const &, const std::string & action);
|
|
|
|
|
MeterDialog (Temporal::MeterPoint&, const std::string & action);
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2008-02-02 03:57:35 +00:00
|
|
|
double get_bpb ();
|
2021-01-01 15:46:11 -07:00
|
|
|
int get_note_type ();
|
2020-11-11 09:31:52 -07:00
|
|
|
Temporal::TimeDomain get_lock_style ();
|
2020-07-23 17:46:49 -06:00
|
|
|
bool get_bbt_time (Temporal::BBT_Time&);
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2008-02-02 03:57:35 +00:00
|
|
|
private:
|
2023-07-25 14:54:53 -06:00
|
|
|
void init (const Temporal::BBT_Time&, double, double, bool, bool, Temporal::TimeDomain style);
|
2014-12-07 13:54:05 +01:00
|
|
|
bool is_user_input_valid() const;
|
2008-02-17 17:49:38 +00:00
|
|
|
bool entry_key_press (GdkEventKey* );
|
|
|
|
|
bool entry_key_release (GdkEventKey* );
|
2011-12-20 16:56:07 +00:00
|
|
|
void note_type_change ();
|
2016-02-28 04:59:34 +11:00
|
|
|
void lock_style_change ();
|
2011-12-20 16:56:07 +00:00
|
|
|
|
|
|
|
|
typedef std::map<std::string,float> NoteTypes;
|
|
|
|
|
NoteTypes note_types;
|
2010-05-02 23:14:43 +00:00
|
|
|
|
2020-11-11 09:31:52 -07:00
|
|
|
typedef std::map<std::string, Temporal::TimeDomain> LockStyles;
|
2016-02-28 04:59:34 +11:00
|
|
|
LockStyles lock_styles;
|
|
|
|
|
|
2010-05-02 23:14:43 +00:00
|
|
|
Gtk::Entry bpb_entry;
|
2011-12-20 16:56:07 +00:00
|
|
|
Gtk::ComboBoxText note_type;
|
2016-02-28 04:59:34 +11:00
|
|
|
Gtk::ComboBoxText lock_style;
|
2010-05-02 23:14:43 +00:00
|
|
|
std::vector<std::string> strings;
|
|
|
|
|
Gtk::Button ok_button;
|
|
|
|
|
Gtk::Button cancel_button;
|
|
|
|
|
Gtk::Entry when_bar_entry;
|
2005-09-25 18:42:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif /* __ardour_gtk_tempo_dialog_h__ */
|