2007-04-26 16:54:31 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2000-2007 Paul Davis
|
2007-04-26 16:54:31 -04: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 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"
|
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
struct TempoDialog : public ArdourDialog
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2008-02-01 22:57:35 -05:00
|
|
|
Gtk::ComboBoxText note_types;
|
2009-05-12 13:03:42 -04:00
|
|
|
std::vector<std::string> strings;
|
2008-02-01 22:57:35 -05:00
|
|
|
Gtk::Adjustment bpm_adjustment;
|
|
|
|
Gtk::SpinButton bpm_spinner;
|
|
|
|
Gtk::Button ok_button;
|
|
|
|
Gtk::Button cancel_button;
|
|
|
|
Gtk::Entry when_bar_entry;
|
|
|
|
Gtk::Entry when_beat_entry;
|
|
|
|
Gtk::Label when_bar_label;
|
|
|
|
Gtk::Label when_beat_label;
|
|
|
|
char buf[64];
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-05-12 13:03:42 -04:00
|
|
|
TempoDialog (ARDOUR::TempoMap&, nframes_t, const std::string & action);
|
|
|
|
TempoDialog (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 ();
|
|
|
|
double get_note_type ();
|
|
|
|
bool get_bbt_time (ARDOUR::BBT_Time&);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-02-01 22:57:35 -05:00
|
|
|
private:
|
|
|
|
void init (const ARDOUR::BBT_Time& start, double, double, bool);
|
|
|
|
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* );
|
2008-02-01 22:57:35 -05:00
|
|
|
void note_types_change ();
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
struct MeterDialog : public ArdourDialog
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2008-02-01 22:57:35 -05:00
|
|
|
Gtk::Entry bpb_entry;
|
|
|
|
Gtk::ComboBoxText note_types;
|
2009-05-12 13:03:42 -04:00
|
|
|
std::vector<std::string> strings;
|
2008-02-01 22:57:35 -05:00
|
|
|
Gtk::Button ok_button;
|
|
|
|
Gtk::Button cancel_button;
|
|
|
|
Gtk::Entry when_bar_entry;
|
|
|
|
char buf[64];
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-05-12 13:03:42 -04:00
|
|
|
MeterDialog (ARDOUR::TempoMap&, nframes_t, const std::string & action);
|
|
|
|
MeterDialog (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 ();
|
|
|
|
bool get_bbt_time (ARDOUR::BBT_Time&);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-02-01 22:57:35 -05:00
|
|
|
private:
|
|
|
|
void init (const ARDOUR::BBT_Time&, double, double, bool);
|
2008-02-17 12:49:38 -05:00
|
|
|
bool entry_key_press (GdkEventKey* );
|
|
|
|
bool entry_key_release (GdkEventKey* );
|
2008-02-01 22:57:35 -05:00
|
|
|
void note_types_change ();
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __ardour_gtk_tempo_dialog_h__ */
|