2009-02-26 20:20:25 -05:00
|
|
|
/*
|
2016-02-21 16:28:44 -05:00
|
|
|
Copyright (C) 2000-2009 Paul Davis
|
2009-02-26 20:20:25 -05:00
|
|
|
|
2016-02-21 16:28:44 -05: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.
|
2009-02-26 20:20:25 -05:00
|
|
|
|
2016-02-21 16:28:44 -05:00
|
|
|
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.
|
2009-02-26 20:20:25 -05:00
|
|
|
|
2016-02-21 16:28:44 -05:00
|
|
|
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.
|
2009-02-26 20:20:25 -05:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ardour_time_fx_dialog_h__
|
|
|
|
#define __ardour_time_fx_dialog_h__
|
|
|
|
|
2016-02-21 16:28:44 -05:00
|
|
|
#include <gtkmm/adjustment.h>
|
|
|
|
#include <gtkmm/spinbutton.h>
|
|
|
|
#include <gtkmm/progressbar.h>
|
|
|
|
#include <gtkmm/box.h>
|
|
|
|
#include <gtkmm/comboboxtext.h>
|
|
|
|
#include <gtkmm/label.h>
|
|
|
|
#include <gtkmm/button.h>
|
2009-02-26 20:20:25 -05:00
|
|
|
|
2012-03-15 17:40:17 -04:00
|
|
|
#include "ardour/timefx_request.h"
|
2012-01-27 11:29:01 -05:00
|
|
|
|
2009-02-26 20:20:25 -05:00
|
|
|
#include "ardour_dialog.h"
|
2012-01-24 12:04:15 -05:00
|
|
|
#include "progress_reporter.h"
|
2009-02-26 20:20:25 -05:00
|
|
|
|
|
|
|
class Editor;
|
2016-02-21 16:28:44 -05:00
|
|
|
class AudioClock;
|
2009-02-26 20:20:25 -05:00
|
|
|
|
2012-01-24 12:04:15 -05:00
|
|
|
class TimeFXDialog : public ArdourDialog, public ProgressReporter
|
|
|
|
{
|
2017-07-01 15:11:14 -04:00
|
|
|
public:
|
2016-02-21 16:28:44 -05:00
|
|
|
/* We need a position so that BBT mode in the clock can function */
|
2017-09-18 12:39:17 -04:00
|
|
|
TimeFXDialog (Editor& e, bool for_pitch, ARDOUR::samplecnt_t old_length, ARDOUR::samplecnt_t new_length, ARDOUR::samplepos_t position);
|
2016-02-21 16:28:44 -05:00
|
|
|
|
|
|
|
ARDOUR::TimeFXRequest request;
|
|
|
|
Editor& editor;
|
|
|
|
bool pitching;
|
|
|
|
Gtk::ProgressBar progress_bar;
|
|
|
|
ARDOUR::RegionList regions;
|
|
|
|
|
|
|
|
/* SoundTouch */
|
|
|
|
Gtk::CheckButton quick_button;
|
|
|
|
Gtk::CheckButton antialias_button;
|
|
|
|
Gtk::VBox upper_button_box;
|
|
|
|
|
|
|
|
/* RubberBand */
|
|
|
|
Gtk::ComboBoxText stretch_opts_selector;
|
|
|
|
Gtk::Label stretch_opts_label;
|
|
|
|
Gtk::CheckButton precise_button;
|
|
|
|
Gtk::CheckButton preserve_formants_button;
|
|
|
|
|
|
|
|
Gtk::Button* cancel_button;
|
|
|
|
Gtk::Button* action_button;
|
|
|
|
Gtk::VBox packer;
|
|
|
|
int status;
|
|
|
|
|
|
|
|
sigc::connection first_cancel;
|
|
|
|
sigc::connection first_delete;
|
|
|
|
void cancel_in_progress ();
|
|
|
|
gint delete_in_progress (GdkEventAny*);
|
|
|
|
|
|
|
|
float get_time_fraction () const;
|
|
|
|
float get_pitch_fraction () const;
|
|
|
|
|
2016-02-22 10:17:09 -05:00
|
|
|
void start_updates ();
|
|
|
|
|
2017-04-20 13:03:52 -04:00
|
|
|
void on_response (int response_id) {
|
|
|
|
Gtk::Dialog::on_response (response_id);
|
|
|
|
}
|
|
|
|
|
2017-07-07 11:30:37 -04:00
|
|
|
void hide () {
|
|
|
|
regions.clear ();
|
|
|
|
ArdourDialog::hide ();
|
|
|
|
}
|
|
|
|
|
2017-07-01 15:11:14 -04:00
|
|
|
private:
|
2019-04-08 13:53:33 -04:00
|
|
|
ARDOUR::samplecnt_t original_length;
|
|
|
|
Gtk::Adjustment pitch_octave_adjustment;
|
|
|
|
Gtk::Adjustment pitch_semitone_adjustment;
|
|
|
|
Gtk::Adjustment pitch_cent_adjustment;
|
|
|
|
Gtk::SpinButton pitch_octave_spinner;
|
|
|
|
Gtk::SpinButton pitch_semitone_spinner;
|
|
|
|
Gtk::SpinButton pitch_cent_spinner;
|
|
|
|
Gtk::Adjustment duration_adjustment;
|
|
|
|
AudioClock* duration_clock;
|
|
|
|
bool ignore_adjustment_change;
|
|
|
|
bool ignore_clock_change;
|
|
|
|
sigc::connection update_connection;
|
|
|
|
float progress;
|
2016-02-22 10:17:09 -05:00
|
|
|
|
2016-02-21 16:28:44 -05:00
|
|
|
void update_progress_gui (float);
|
2016-02-22 10:17:09 -05:00
|
|
|
void duration_clock_changed ();
|
|
|
|
void duration_adjustment_changed ();
|
|
|
|
void timer_update ();
|
2009-02-26 20:20:25 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __ardour_time_fx_dialog_h__ */
|