Ardour  9.0-pre0-427-gd2a3450e2f
paths_dialog.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2014 Paul Davis <paul@linuxaudiosystems.com>
3  * Copyright (C) 2017 Robin Gareus <robin@gareus.org>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18  */
19 #ifndef _WIDGETS_PATHS_DIALOG_H_
20 #define _WIDGETS_PATHS_DIALOG_H_
21 
22 #include <string>
23 #include <vector>
24 
25 #include <gtkmm/button.h>
26 #include <gtkmm/dialog.h>
27 #include <gtkmm/listviewtext.h>
28 
29 #include "widgets/visibility.h"
30 
31 namespace ArdourWidgets {
32 
34 {
35 public:
36  PathsDialog (Gtk::Window& parent, std::string, std::string current_paths = "", std::string default_paths = "");
38 
39  std::string get_serialized_paths ();
40 
41 private:
42  void on_show ();
43 
45 
49 
51  void add_path();
52  void remove_path();
53  void set_default();
54 
55  std::string _default_paths;
56 };
57 
58 } /* namespace */
59 
60 #endif
PathsDialog(Gtk::Window &parent, std::string, std::string current_paths="", std::string default_paths="")
Gtk::Button set_default_button
Definition: paths_dialog.h:48
std::string get_serialized_paths()
void on_show()
This is a default handler for the signal signal_show().
Gtk::ListViewText paths_list_view
Definition: paths_dialog.h:44
Gtk::Button remove_path_button
Definition: paths_dialog.h:47
#define LIBWIDGETS_API