f84c85cb4c4153d6f7eb6adbb4377237ba30c95a
[ardour.git] / libs / gtkmm2ext / gtkmm2ext / selector.h
1 /*
2     Copyright (C) 1999 Paul Barton-Davis 
3     This program is free software; you can redistribute it and/or modify
4     it under the terms of the GNU General Public License as published by
5     the Free Software Foundation; either version 2 of the License, or
6     (at your option) any later version.
7
8     This program is distributed in the hope that it will be useful,
9     but WITHOUT ANY WARRANTY; without even the implied warranty of
10     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11     GNU General Public License for more details.
12
13     You should have received a copy of the GNU General Public License
14     along with this program; if not, write to the Free Software
15     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16
17     $Id$
18 */
19
20 #ifndef __gtkselector_h__
21 #define __gtkselector_h__
22
23 #include <string>
24 #include <vector>
25
26 #include <gtkmm.h>
27
28 namespace Gtkmm2ext {
29
30 class TreeView_Selector : public Gtk::TreeView
31 {
32 public:
33         TreeView_Selector() {}
34         virtual ~TreeView_Selector() {}
35
36 protected:
37         virtual bool on_button_press_event(GdkEventButton *ev);
38 };
39
40 typedef void (SelectorRefillFunction)(Glib::RefPtr<Gtk::ListStore>, void *);
41
42 class Selector : public Gtk::VBox
43 {
44         friend class Gtkmm2ext::TreeView_Selector;
45
46 public:
47         Selector (SelectorRefillFunction, void *arg, 
48                   std::vector<std::string> titles);
49
50         virtual ~Selector ();
51         Glib::RefPtr<Gtk::ListStore> liststore () { return lstore; }
52         void reset (void (*refiller)(Glib::RefPtr<Gtk::ListStore>, void *), void *arg);
53         void set_size (unsigned int w, unsigned int h) {
54                 scroll.set_size_request (w, h);
55                 tview.columns_autosize ();
56         }
57
58         /* selection is activated via a double click, choice via
59            a single click.
60         */
61         sigc::signal<void,Gtk::TreeView&, Glib::RefPtr<Gtk::TreeSelection> > selection_made;
62         sigc::signal<void,Gtk::TreeView&, Glib::RefPtr<Gtk::TreeSelection> > choice_made;
63         sigc::signal<void,Gtk::TreeView&, Glib::RefPtr<Gtk::TreeSelection> > shift_made;
64         sigc::signal<void,Gtk::TreeView&, Glib::RefPtr<Gtk::TreeSelection> > control_made;
65
66         sigc::signal<void> update_contents;
67
68         void accept();
69         void cancel();
70         void rescan();
71
72
73   protected:
74         virtual void on_map ();
75         virtual void on_show ();
76
77   private:
78         Gtk::ScrolledWindow scroll;
79         Gtk::TreeModel::ColumnRecord column_records;
80         Glib::RefPtr<Gtk::ListStore> lstore;
81         Gtkmm2ext::TreeView_Selector tview;
82         void (*refiller)(Glib::RefPtr<Gtk::ListStore>, void *);
83         void *refill_arg;
84         gint selected_row;
85         gint selected_column;
86         gint chosen_row;
87         gint chosen_column;
88
89         void refill ();
90         void chosen ();
91         void shift_clicked ();
92         void control_clicked ();
93
94         static gint _accept (gpointer);
95         static gint _chosen (gpointer);
96         static gint _shift_clicked (gpointer);
97         static gint _control_clicked (gpointer);
98
99 };
100
101 } /* namespace */
102
103 #endif // __gtkselector_h__