1 /*
2  * Copyright (C) 2015-2016 Colin Fletcher <colin.m.fletcher@googlemail.com>
3  *
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.
8  *
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.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18 
19 #include "ardour_dialog.h"
20 #include "public_editor.h"
21 #include "editing.h"
22 #include "audio_clock.h"
23 
24 class InsertRemoveTimeDialog : public ArdourDialog
25 {
26 public:
27 	InsertRemoveTimeDialog (PublicEditor &, bool remove = false);
28 
29 	Editing::InsertTimeOption intersected_region_action ();
30 	bool all_playlists () const;
31 	bool move_glued () const;
32 	bool move_markers () const;
33 	bool move_glued_markers () const;
34 	bool move_locked_markers () const;
35 	bool move_tempos () const;
36 	samplepos_t position () const;
37 	samplepos_t distance () const;
38 
39 private:
40 	void move_markers_toggled ();
41 	void doit ();
42 
43 	PublicEditor& _editor;
44 	Gtk::ComboBoxText _intersected_combo;
45 	Gtk::CheckButton _all_playlists;
46 	Gtk::CheckButton _move_glued;
47 	Gtk::CheckButton _move_markers;
48 	Gtk::CheckButton _move_glued_markers;
49 	Gtk::CheckButton _move_locked_markers;
50 	Gtk::CheckButton _move_tempos;
51 	Gtk::Label tempo_label;
52 	AudioClock duration_clock;
53 	AudioClock position_clock;
54 };
55