2010-11-26 20:04:02 -05:00
|
|
|
/*
|
2019-08-02 17:26:43 -04:00
|
|
|
* Copyright (C) 2010 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
* Copyright (C) 2017 Robin Gareus <robin@gareus.org>
|
|
|
|
*
|
|
|
|
* 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-11-26 20:04:02 -05:00
|
|
|
|
2010-11-09 01:03:51 -05:00
|
|
|
#ifndef __gtk_ardour_missing_file_dialog_h__
|
|
|
|
#define __gtk_ardour_missing_file_dialog_h__
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <gtkmm/label.h>
|
2010-11-09 18:50:20 -05:00
|
|
|
#include <gtkmm/filechooserbutton.h>
|
2010-11-09 01:03:51 -05:00
|
|
|
#include <gtkmm/radiobutton.h>
|
|
|
|
|
|
|
|
#include "ardour/types.h"
|
|
|
|
|
|
|
|
#include "ardour_dialog.h"
|
|
|
|
|
|
|
|
namespace ARDOUR {
|
2017-07-01 12:42:24 -04:00
|
|
|
class Session;
|
2010-11-09 01:03:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
class MissingFileDialog : public ArdourDialog
|
|
|
|
{
|
2017-02-22 04:26:58 -05:00
|
|
|
public:
|
2021-07-06 18:33:50 -04:00
|
|
|
MissingFileDialog (Gtk::Window&, ARDOUR::Session*, const std::string& path, ARDOUR::DataType type);
|
2010-11-09 01:03:51 -05:00
|
|
|
|
2017-02-22 04:26:58 -05:00
|
|
|
int get_action();
|
2010-11-09 01:03:51 -05:00
|
|
|
|
2017-02-22 04:26:58 -05:00
|
|
|
private:
|
|
|
|
ARDOUR::DataType filetype;
|
2017-02-22 04:38:43 -05:00
|
|
|
bool is_absolute_path;
|
2010-11-09 01:03:51 -05:00
|
|
|
|
2017-02-22 04:26:58 -05:00
|
|
|
Gtk::FileChooserButton chooser;
|
|
|
|
Gtk::RadioButton use_chosen;
|
|
|
|
Gtk::RadioButton::Group choice_group;
|
|
|
|
Gtk::RadioButton use_chosen_and_no_more_questions;
|
|
|
|
Gtk::RadioButton stop_loading_button;
|
|
|
|
Gtk::RadioButton all_missing_ok;
|
|
|
|
Gtk::RadioButton this_missing_ok;
|
|
|
|
Gtk::Label msg;
|
2010-11-09 01:03:51 -05:00
|
|
|
|
2017-02-22 04:26:58 -05:00
|
|
|
void add_chosen ();
|
2017-02-22 04:38:43 -05:00
|
|
|
void set_absolute ();
|
2010-11-09 01:03:51 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __gtk_ardour_missing_file_dialog_h__ */
|