increase threshold for drag-playhead-does-vertical-zoom
[ardour2.git] / gtk2_ardour / tempo_dialog.h
blobb22ef7bc26a3dd2de1482e45c77fd0c433b4814e
1 /*
2 Copyright (C) 2000-2007 Paul Davis
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 #ifndef __ardour_gtk_tempo_dialog_h__
21 #define __ardour_gtk_tempo_dialog_h__
23 #include <gtkmm/entry.h>
24 #include <gtkmm/frame.h>
25 #include <gtkmm/box.h>
26 #include <gtkmm/button.h>
27 #include <gtkmm/label.h>
28 #include <gtkmm/table.h>
29 #include <gtkmm/entry.h>
30 #include <gtkmm/spinbutton.h>
31 #include <gtkmm/comboboxtext.h>
33 #include "ardour/types.h"
34 #include "ardour/tempo.h"
36 #include "ardour_dialog.h"
38 class TempoDialog : public ArdourDialog
40 public:
41 TempoDialog (ARDOUR::TempoMap&, framepos_t, const std::string & action);
42 TempoDialog (ARDOUR::TempoSection&, const std::string & action);
44 double get_bpm ();
45 double get_note_type ();
46 bool get_bbt_time (Timecode::BBT_Time&);
48 private:
49 void init (const Timecode::BBT_Time& start, double, double, bool);
50 void bpm_changed ();
51 bool bpm_button_press (GdkEventButton* );
52 bool bpm_button_release (GdkEventButton* );
53 bool entry_key_release (GdkEventKey* );
54 void note_types_change ();
56 Gtk::ComboBoxText note_types;
57 std::vector<std::string> strings;
58 Gtk::Adjustment bpm_adjustment;
59 Gtk::SpinButton bpm_spinner;
60 Gtk::Button ok_button;
61 Gtk::Button cancel_button;
62 Gtk::Entry when_bar_entry;
63 Gtk::Entry when_beat_entry;
64 Gtk::Label when_bar_label;
65 Gtk::Label when_beat_label;
66 char buf[64];
69 class MeterDialog : public ArdourDialog
71 public:
73 MeterDialog (ARDOUR::TempoMap&, framepos_t, const std::string & action);
74 MeterDialog (ARDOUR::MeterSection&, const std::string & action);
76 double get_bpb ();
77 double get_note_type ();
78 bool get_bbt_time (Timecode::BBT_Time&);
80 private:
81 void init (const Timecode::BBT_Time&, double, double, bool);
82 bool entry_key_press (GdkEventKey* );
83 bool entry_key_release (GdkEventKey* );
84 void note_types_change ();
86 Gtk::Entry bpb_entry;
87 Gtk::ComboBoxText note_types;
88 std::vector<std::string> strings;
89 Gtk::Button ok_button;
90 Gtk::Button cancel_button;
91 Gtk::Entry when_bar_entry;
92 char buf[64];
95 #endif /* __ardour_gtk_tempo_dialog_h__ */