ardour
paths_dialog.h
Go to the documentation of this file.
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 __gtkmmext_paths_dialog_h__
20 #define __gtkmmext_paths_dialog_h__
21 
22 #include <string>
23 #include <vector>
24 #include <gtkmm.h>
25 
26 #include "gtkmm2ext/visibility.h"
27 
28 namespace Gtkmm2ext {
29 
30 class LIBGTKMM2EXT_API PathsDialog : public Gtk::Dialog
31 {
32  public:
33  PathsDialog (std::string, std::string current_paths = "", std::string default_paths = "");
34  ~PathsDialog ();
35 
36  std::string get_serialized_paths ();
37 
38  private:
39  void on_show ();
40 
41  Gtk::ListViewText paths_list_view;
42 
43  Gtk::Button add_path_button;
44  Gtk::Button remove_path_button;
45  Gtk::Button set_default_button;
46 
47  void selection_changed();
48  void add_path();
49  void remove_path();
50  void set_default();
51 
52  std::string _default_paths;
53 };
54 
55 } /* namespace */
56 
57 #endif /* __gtkmmext_paths_dialog_h__ */
LIBGTKMM2EXT_API
Gtk::Button add_path_button
Definition: paths_dialog.h:43
Gtk::Button remove_path_button
Definition: paths_dialog.h:44
Gtk::Button set_default_button
Definition: paths_dialog.h:45
std::string _default_paths
Definition: paths_dialog.h:52
Gtk::ListViewText paths_list_view
Definition: paths_dialog.h:41