2010-08-11 19:40:51 -04:00
|
|
|
/*
|
2019-08-02 17:26:43 -04:00
|
|
|
* Copyright (C) 2015-2016 Colin Fletcher <colin.m.fletcher@googlemail.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.
|
|
|
|
*/
|
2010-08-11 19:40:51 -04:00
|
|
|
|
|
|
|
#include "ardour_dialog.h"
|
|
|
|
#include "public_editor.h"
|
|
|
|
#include "editing.h"
|
|
|
|
#include "audio_clock.h"
|
|
|
|
|
2015-06-16 06:23:50 -04:00
|
|
|
class InsertRemoveTimeDialog : public ArdourDialog
|
2010-08-11 19:40:51 -04:00
|
|
|
{
|
|
|
|
public:
|
2015-06-16 06:23:50 -04:00
|
|
|
InsertRemoveTimeDialog (PublicEditor &, bool remove = false);
|
2010-08-11 19:40:51 -04:00
|
|
|
|
|
|
|
Editing::InsertTimeOption intersected_region_action ();
|
2011-09-05 19:38:18 -04:00
|
|
|
bool all_playlists () const;
|
2010-08-11 19:40:51 -04:00
|
|
|
bool move_glued () const;
|
|
|
|
bool move_markers () const;
|
2010-08-11 19:41:26 -04:00
|
|
|
bool move_glued_markers () const;
|
|
|
|
bool move_locked_markers () const;
|
2010-08-11 19:40:51 -04:00
|
|
|
bool move_tempos () const;
|
2020-10-19 14:37:54 -04:00
|
|
|
Temporal::timepos_t position () const;
|
|
|
|
Temporal::timecnt_t distance () const;
|
2010-08-11 19:40:51 -04:00
|
|
|
|
|
|
|
private:
|
2010-08-11 19:41:26 -04:00
|
|
|
void move_markers_toggled ();
|
2016-01-19 14:34:41 -05:00
|
|
|
void doit ();
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-08-11 19:40:51 -04:00
|
|
|
PublicEditor& _editor;
|
|
|
|
Gtk::ComboBoxText _intersected_combo;
|
2011-09-05 19:38:18 -04:00
|
|
|
Gtk::CheckButton _all_playlists;
|
2010-08-11 19:40:51 -04:00
|
|
|
Gtk::CheckButton _move_glued;
|
|
|
|
Gtk::CheckButton _move_markers;
|
2010-08-11 19:41:26 -04:00
|
|
|
Gtk::CheckButton _move_glued_markers;
|
|
|
|
Gtk::CheckButton _move_locked_markers;
|
2010-08-11 19:40:51 -04:00
|
|
|
Gtk::CheckButton _move_tempos;
|
2011-12-28 16:02:31 -05:00
|
|
|
Gtk::Label tempo_label;
|
2016-10-20 15:53:34 -04:00
|
|
|
AudioClock duration_clock;
|
|
|
|
AudioClock position_clock;
|
2010-08-11 19:40:51 -04:00
|
|
|
};
|