Safeguard against possibly invalid peak-requests
[ardour.git] / libs / widgets / widgets / paths_dialog.h
1 /*
2     Copyright (C) 2014 Robin Gareus <robin@gareus.org>
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
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
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
33 class LIBWIDGETS_API PathsDialog : public Gtk::Dialog
34 {
35 public:
36         PathsDialog (Gtk::Window& parent, std::string, std::string current_paths = "", std::string default_paths = "");
37         ~PathsDialog ();
38
39         std::string get_serialized_paths ();
40
41 private:
42         void on_show ();
43
44         Gtk::ListViewText  paths_list_view;
45
46         Gtk::Button    add_path_button;
47         Gtk::Button    remove_path_button;
48         Gtk::Button    set_default_button;
49
50         void selection_changed();
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