2007-04-26 20:54:31 +00:00
|
|
|
/*
|
2009-10-14 16:10:01 +00:00
|
|
|
Copyright (C) 2000-2007 Paul Davis
|
2007-04-26 20:54:31 +00:00
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
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>
|
|
|
|
|
#include <gtkmm/table.h>
|
|
|
|
|
#include <gtkmm/entry.h>
|
2007-02-02 20:55:16 +00:00
|
|
|
#include <gtkmm/spinbutton.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"
|
2005-09-25 18:42:24 +00:00
|
|
|
|
|
|
|
|
#include "ardour_dialog.h"
|
|
|
|
|
|
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:
|
2010-12-03 22:26:29 +00:00
|
|
|
TempoDialog (ARDOUR::TempoMap&, framepos_t, const std::string & action);
|
2016-02-06 06:07:27 +11:00
|
|
|
TempoDialog (ARDOUR::TempoMap&, ARDOUR::TempoSection&, const std::string & action);
|
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 ();
|
2008-02-02 03:57:35 +00:00
|
|
|
double get_note_type ();
|
2010-12-14 18:13:37 +00:00
|
|
|
bool get_bbt_time (Timecode::BBT_Time&);
|
2015-12-22 01:21:54 +11:00
|
|
|
ARDOUR::TempoSection::Type get_tempo_type ();
|
2016-02-28 04:59:34 +11:00
|
|
|
ARDOUR::PositionLockStyle get_lock_style ();
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2008-02-02 03:57:35 +00:00
|
|
|
private:
|
2017-03-07 03:59:42 +11:00
|
|
|
void init (const Timecode::BBT_Time& start, double bpm, double end_bpm, double note_type, ARDOUR::TempoSection::Type type, bool movable, ARDOUR::PositionLockStyle 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 ();
|
2015-03-09 19:19:16 +00:00
|
|
|
bool tap_tempo_button_press (GdkEventButton* );
|
2015-03-19 19:44:20 +00:00
|
|
|
bool tap_tempo_focus_out (GdkEventFocus* );
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2011-12-20 16:29:44 +00:00
|
|
|
typedef std::map<std::string,float> NoteTypes;
|
|
|
|
|
NoteTypes note_types;
|
|
|
|
|
|
2015-12-22 01:21:54 +11:00
|
|
|
typedef std::map<std::string, ARDOUR::TempoSection::Type> TempoTypes;
|
2015-12-20 04:41:45 +11:00
|
|
|
TempoTypes tempo_types;
|
|
|
|
|
|
2016-02-28 04:59:34 +11:00
|
|
|
typedef std::map<std::string, ARDOUR::PositionLockStyle> LockStyles;
|
|
|
|
|
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
|
|
|
|
2016-03-07 06:35:32 +11:00
|
|
|
ARDOUR::TempoMap* _map;
|
|
|
|
|
ARDOUR::TempoSection* _section;
|
|
|
|
|
|
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;
|
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;
|
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:
|
2011-06-01 17:00:29 +00:00
|
|
|
|
2010-12-03 22:26:29 +00:00
|
|
|
MeterDialog (ARDOUR::TempoMap&, framepos_t, const std::string & action);
|
2016-02-06 06:07:27 +11:00
|
|
|
MeterDialog (ARDOUR::TempoMap&, ARDOUR::MeterSection&, const std::string & action);
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2008-02-02 03:57:35 +00:00
|
|
|
double get_bpb ();
|
|
|
|
|
double get_note_type ();
|
2016-02-28 04:59:34 +11:00
|
|
|
ARDOUR::PositionLockStyle get_lock_style ();
|
2010-12-14 18:13:37 +00:00
|
|
|
bool get_bbt_time (Timecode::BBT_Time&);
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2008-02-02 03:57:35 +00:00
|
|
|
private:
|
2016-02-28 04:59:34 +11:00
|
|
|
void init (const Timecode::BBT_Time&, double, double, bool, ARDOUR::PositionLockStyle 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
|
|
|
|
2016-02-28 04:59:34 +11:00
|
|
|
typedef std::map<std::string, ARDOUR::PositionLockStyle> LockStyles;
|
|
|
|
|
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__ */
|