2007-04-26 16:54:31 -04:00
|
|
|
/*
|
2019-08-02 17:26:43 -04: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 16:54:31 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
#ifndef __ardour_gtk_tempo_dialog_h__
|
|
|
|
#define __ardour_gtk_tempo_dialog_h__
|
|
|
|
|
2005-09-26 10:33:53 -04: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 15:55:16 -05:00
|
|
|
#include <gtkmm/spinbutton.h>
|
2005-09-26 10:33:53 -04:00
|
|
|
#include <gtkmm/comboboxtext.h>
|
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/types.h"
|
|
|
|
#include "ardour/tempo.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include "ardour_dialog.h"
|
|
|
|
|
2010-05-02 19:14:43 -04:00
|
|
|
class TempoDialog : public ArdourDialog
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2010-05-02 19:14:43 -04:00
|
|
|
public:
|
2017-09-18 12:39:17 -04:00
|
|
|
TempoDialog (ARDOUR::TempoMap&, samplepos_t, const std::string & action);
|
2016-02-05 14:07:27 -05:00
|
|
|
TempoDialog (ARDOUR::TempoMap&, ARDOUR::TempoSection&, const std::string & action);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-02-01 22:57:35 -05:00
|
|
|
double get_bpm ();
|
2017-03-06 11:59:42 -05:00
|
|
|
double get_end_bpm ();
|
2008-02-01 22:57:35 -05:00
|
|
|
double get_note_type ();
|
2010-12-14 13:13:37 -05:00
|
|
|
bool get_bbt_time (Timecode::BBT_Time&);
|
2015-12-21 09:21:54 -05:00
|
|
|
ARDOUR::TempoSection::Type get_tempo_type ();
|
2016-02-27 12:59:34 -05:00
|
|
|
ARDOUR::PositionLockStyle get_lock_style ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-02-01 22:57:35 -05:00
|
|
|
private:
|
2017-03-06 11:59:42 -05: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 07:54:05 -05:00
|
|
|
bool is_user_input_valid() const;
|
2008-02-01 22:57:35 -05:00
|
|
|
void bpm_changed ();
|
|
|
|
bool bpm_button_press (GdkEventButton* );
|
|
|
|
bool bpm_button_release (GdkEventButton* );
|
2008-02-17 12:49:38 -05:00
|
|
|
bool entry_key_release (GdkEventKey* );
|
2011-12-20 11:29:44 -05:00
|
|
|
void pulse_change ();
|
2015-12-20 13:42:38 -05:00
|
|
|
void tempo_type_change ();
|
2016-02-27 12:59:34 -05:00
|
|
|
void lock_style_change ();
|
2017-05-04 10:12:26 -04:00
|
|
|
bool tap_tempo_key_press (GdkEventKey*);
|
|
|
|
bool tap_tempo_button_press (GdkEventButton*);
|
2015-03-19 15:44:20 -04:00
|
|
|
bool tap_tempo_focus_out (GdkEventFocus* );
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2017-05-04 10:12:26 -04:00
|
|
|
void tap_tempo ();
|
|
|
|
|
2011-12-20 11:29:44 -05:00
|
|
|
typedef std::map<std::string,float> NoteTypes;
|
|
|
|
NoteTypes note_types;
|
|
|
|
|
2015-12-21 09:21:54 -05:00
|
|
|
typedef std::map<std::string, ARDOUR::TempoSection::Type> TempoTypes;
|
2015-12-19 12:41:45 -05:00
|
|
|
TempoTypes tempo_types;
|
|
|
|
|
2016-02-27 12:59:34 -05:00
|
|
|
typedef std::map<std::string, ARDOUR::PositionLockStyle> LockStyles;
|
|
|
|
LockStyles lock_styles;
|
|
|
|
|
2015-03-19 15:44:20 -04:00
|
|
|
bool tapped; // whether the tap-tempo button has been clicked
|
2016-01-13 09:04:29 -05:00
|
|
|
double sum_x, sum_xx, sum_xy, sum_y;
|
|
|
|
double tap_count;
|
|
|
|
double last_t;
|
|
|
|
gint64 first_t;
|
2014-02-10 16:14:59 -05:00
|
|
|
|
2016-03-06 14:35:32 -05:00
|
|
|
ARDOUR::TempoMap* _map;
|
|
|
|
ARDOUR::TempoSection* _section;
|
|
|
|
|
2011-12-20 11:29:44 -05:00
|
|
|
Gtk::ComboBoxText pulse_selector;
|
2010-05-02 19:14:43 -04:00
|
|
|
Gtk::Adjustment bpm_adjustment;
|
|
|
|
Gtk::SpinButton bpm_spinner;
|
2017-03-06 11:59:42 -05:00
|
|
|
Gtk::Adjustment end_bpm_adjustment;
|
|
|
|
Gtk::SpinButton end_bpm_spinner;
|
|
|
|
Gtk::Label _end_bpm_label;
|
2008-02-01 22:57:35 -05:00
|
|
|
Gtk::Entry when_bar_entry;
|
2010-05-02 19:14:43 -04:00
|
|
|
Gtk::Entry when_beat_entry;
|
|
|
|
Gtk::Label when_bar_label;
|
|
|
|
Gtk::Label when_beat_label;
|
2011-12-20 11:29:44 -05:00
|
|
|
Gtk::Label pulse_selector_label;
|
2014-02-10 16:14:59 -05:00
|
|
|
Gtk::Button tap_tempo_button;
|
2015-12-19 12:41:45 -05:00
|
|
|
Gtk::ComboBoxText tempo_type;
|
2016-02-27 12:59:34 -05:00
|
|
|
Gtk::ComboBoxText lock_style;
|
2010-05-02 19:14:43 -04:00
|
|
|
};
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-05-02 19:14:43 -04:00
|
|
|
class MeterDialog : public ArdourDialog
|
|
|
|
{
|
|
|
|
public:
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2017-09-18 12:39:17 -04:00
|
|
|
MeterDialog (ARDOUR::TempoMap&, samplepos_t, const std::string & action);
|
2016-02-05 14:07:27 -05:00
|
|
|
MeterDialog (ARDOUR::TempoMap&, ARDOUR::MeterSection&, const std::string & action);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-02-01 22:57:35 -05:00
|
|
|
double get_bpb ();
|
|
|
|
double get_note_type ();
|
2016-02-27 12:59:34 -05:00
|
|
|
ARDOUR::PositionLockStyle get_lock_style ();
|
2010-12-14 13:13:37 -05:00
|
|
|
bool get_bbt_time (Timecode::BBT_Time&);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-02-01 22:57:35 -05:00
|
|
|
private:
|
2016-02-27 12:59:34 -05:00
|
|
|
void init (const Timecode::BBT_Time&, double, double, bool, ARDOUR::PositionLockStyle style);
|
2014-12-07 07:54:05 -05:00
|
|
|
bool is_user_input_valid() const;
|
2008-02-17 12:49:38 -05:00
|
|
|
bool entry_key_press (GdkEventKey* );
|
|
|
|
bool entry_key_release (GdkEventKey* );
|
2011-12-20 11:56:07 -05:00
|
|
|
void note_type_change ();
|
2016-02-27 12:59:34 -05:00
|
|
|
void lock_style_change ();
|
2011-12-20 11:56:07 -05:00
|
|
|
|
|
|
|
typedef std::map<std::string,float> NoteTypes;
|
|
|
|
NoteTypes note_types;
|
2010-05-02 19:14:43 -04:00
|
|
|
|
2016-02-27 12:59:34 -05:00
|
|
|
typedef std::map<std::string, ARDOUR::PositionLockStyle> LockStyles;
|
|
|
|
LockStyles lock_styles;
|
|
|
|
|
2010-05-02 19:14:43 -04:00
|
|
|
Gtk::Entry bpb_entry;
|
2011-12-20 11:56:07 -05:00
|
|
|
Gtk::ComboBoxText note_type;
|
2016-02-27 12:59:34 -05:00
|
|
|
Gtk::ComboBoxText lock_style;
|
2010-05-02 19:14:43 -04:00
|
|
|
std::vector<std::string> strings;
|
|
|
|
Gtk::Button ok_button;
|
|
|
|
Gtk::Button cancel_button;
|
|
|
|
Gtk::Entry when_bar_entry;
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __ardour_gtk_tempo_dialog_h__ */
|