summaryrefslogtreecommitdiff
path: root/gtk2_ardour/insert_time_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-08-11 23:40:51 +0000
committerCarl Hetherington <carl@carlh.net>2010-08-11 23:40:51 +0000
commit636efaabc47afa556d391f30dd7d2380f69d21f3 (patch)
treef34bec736d1a0782a5b1481ac97da97f3af2c879 /gtk2_ardour/insert_time_dialog.h
parent95813bfaece20b10d9f23f91ecabec92c720f100 (diff)
Move insert time dialog to its own file.
git-svn-id: svn://localhost/ardour2/branches/3.0@7603 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/insert_time_dialog.h')
-rw-r--r--gtk2_ardour/insert_time_dialog.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/gtk2_ardour/insert_time_dialog.h b/gtk2_ardour/insert_time_dialog.h
new file mode 100644
index 0000000000..f6231bc05c
--- /dev/null
+++ b/gtk2_ardour/insert_time_dialog.h
@@ -0,0 +1,43 @@
+/*
+ Copyright (C) 2000-2010 Paul Davis
+
+ 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.
+
+*/
+
+#include "ardour_dialog.h"
+#include "public_editor.h"
+#include "editing.h"
+#include "audio_clock.h"
+
+class InsertTimeDialog : public ArdourDialog
+{
+public:
+ InsertTimeDialog (PublicEditor &);
+
+ Editing::InsertTimeOption intersected_region_action ();
+ bool move_glued () const;
+ bool move_markers () const;
+ bool move_tempos () const;
+ nframes64_t distance () const;
+
+private:
+ PublicEditor& _editor;
+ Gtk::ComboBoxText _intersected_combo;
+ Gtk::CheckButton _move_glued;
+ Gtk::CheckButton _move_markers;
+ Gtk::CheckButton _move_tempos;
+ AudioClock _clock;
+};