summaryrefslogtreecommitdiff
path: root/libs/gtkmm2ext/gtkmm2ext/selector.h
blob: e1a0c1a5302731850f76af259de759280ca6f276 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/*
    Copyright (C) 1999 Paul Barton-Davis 
    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., 675 Mass Ave, Cambridge, MA 02139, USA.

*/

#ifndef __gtkselector_h__
#define __gtkselector_h__

#ifdef interface
#undef interface
#endif

#include <string>
#include <vector>

#include <gtkmm.h>

#include "gtkmm2ext/visibility.h"

namespace Gtkmm2ext {

class LIBGTKMM2EXT_API TreeView_Selector : public Gtk::TreeView
{
public:
	TreeView_Selector() {}
	virtual ~TreeView_Selector() {}

protected:
	virtual bool on_button_press_event(GdkEventButton *ev);
};

typedef void (SelectorRefillFunction)(Glib::RefPtr<Gtk::ListStore>, void *);

class LIBGTKMM2EXT_API Selector : public Gtk::VBox
{
	friend class Gtkmm2ext::TreeView_Selector;

public:
	Selector (SelectorRefillFunction, void *arg, 
		  std::vector<std::string> titles);

	virtual ~Selector ();
	Glib::RefPtr<Gtk::ListStore> liststore () { return lstore; }
	void reset (void (*refiller)(Glib::RefPtr<Gtk::ListStore>, void *), void *arg);
	void set_size (unsigned int w, unsigned int h) {
		scroll.set_size_request (w, h);
		tview.columns_autosize ();
	}

	struct Result {
	    Gtk::TreeView& view;
	    Glib::RefPtr<Gtk::TreeSelection> selection;

	    Result (Gtk::TreeView& v, Glib::RefPtr<Gtk::TreeSelection> sel)
		    : view (v), selection (sel) {}
	};

	/* selection is activated via a double click, choice via
	   a single click.
	*/
	sigc::signal<void,Result*> selection_made;
	sigc::signal<void,Result*> choice_made;
	sigc::signal<void,Result*> shift_made;
	sigc::signal<void,Result*> control_made;

	sigc::signal<void> update_contents;

	void accept();
	void cancel();
	void rescan();


  protected:
	virtual void on_map ();
	virtual void on_show ();

  private:
	Gtk::ScrolledWindow scroll;
	Gtk::TreeModel::ColumnRecord column_records;
	Glib::RefPtr<Gtk::ListStore> lstore;
	Gtkmm2ext::TreeView_Selector tview;
	void (*refiller)(Glib::RefPtr<Gtk::ListStore>, void *);
	void *refill_arg;
	gint selected_row;
	gint selected_column;
	gint chosen_row;
	gint chosen_column;

	void refill ();
	void chosen ();
	void shift_clicked ();
	void control_clicked ();

	static gint _accept (gpointer);
	static gint _chosen (gpointer);
	static gint _shift_clicked (gpointer);
	static gint _control_clicked (gpointer);

};

} /* namespace */

#endif // __gtkselector_h__