City button: make radius setting optional
[beifahrer] / src / city-button.vala
1 /* This file is part of Beifahrer.
2  *
3  * Copyright (C) 2010 Philipp Zabel
4  *
5  * Beifahrer 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 3 of the License, or
8  * (at your option) any later version.
9  *
10  * Beifahrer 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
16  * along with Beifahrer. If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 using Gtk;
20 using Hildon;
21
22 class CityButton : Hildon.Button {
23         private enum Response {
24                 RADIUS = 1
25         }
26
27         Gtk.Dialog dialog;
28         TouchSelector city_selector;
29         PickerButton radius_button;
30         int active = 0;
31         int radius = 0;
32         bool use_radius;
33
34         public CityButton (SizeType size, ButtonArrangement arrangement, List<City> city_list, bool with_radius = true) {
35                 GLib.Object (arrangement: arrangement, size: size);
36                 set_style (ButtonStyle.PICKER);
37
38                 use_radius = with_radius;
39                 city_selector = new TouchSelectorEntry.text ();
40                 foreach (unowned City city in city_list)
41                         city_selector.append_text (city.name);
42
43                 clicked.connect (on_clicked);
44         }
45
46         public void set_active (int _active) {
47                 active = _active;
48                 city_selector.set_active (0, active);
49                 update_value ();
50         }
51
52         public int get_active () {
53                 return active;
54         }
55
56         public void set_radius (int _radius) {
57                 radius = _radius;
58                 update_value ();
59         }
60
61         public int get_radius () {
62                 return radius;
63         }
64
65         private void on_clicked () {
66                 dialog = new Gtk.Dialog ();
67                 dialog.set_transient_for (find_parent_window ());
68
69                 var content_area = (Box) dialog.get_content_area ();
70                 content_area.pack_start (city_selector, true, true, 0);
71                 city_selector.set_size_request (-1, 5*70);
72
73                 var radius_selector = new TouchSelector.text ();
74                 for (int km = 0; km <= 50; km += 10)
75                         radius_selector.append_text ("%d km".printf (km));
76
77                 if (use_radius) {
78                         radius_button = new PickerButton (SizeType.FINGER_HEIGHT,
79                                                           ButtonArrangement.VERTICAL);
80                         radius_button.set_selector (radius_selector);
81                         radius_button.set_title (_("Radius"));
82                         radius_button.set_alignment (0.0f, 0.0f, 0.5f, 0.5f);
83                         radius_button.set_active (radius / 10);
84                         dialog.add_action_widget (radius_button, Response.RADIUS);
85
86                         var action_area = (ButtonBox) dialog.get_action_area ();
87                         action_area.set_child_secondary (radius_button, true);
88                 }
89
90                 dialog.add_button (_("Done"), Gtk.ResponseType.OK);
91
92                 dialog.response.connect (on_response);
93
94                 dialog.show_all ();
95         }
96
97         private void on_response (int response_id) {
98                 if (response_id == Gtk.ResponseType.OK) {
99                         active = city_selector.get_active (0);
100                         radius = radius_button.get_active () * 10;
101                         update_value ();
102                 }
103                 if (response_id != Response.RADIUS) {
104                         // Unlink the city_selector so it doesn't get destroyed with the dialog
105                         var content_area = (Box) dialog.get_content_area ();
106                         content_area.remove (city_selector);
107                         dialog.destroy ();
108                         dialog = null;
109                 }
110         }
111
112         private void update_value () {
113                 if (get_radius () == 0)
114                         set_value (city_selector.get_current_text ());
115                 else
116                         set_value ("%s, radius %d km".printf (city_selector.get_current_text (), radius));
117         }
118
119         private Gtk.Window? find_parent_window () {
120                 for (Gtk.Widget p = parent; p != null; p = p.parent)
121                         if (p is Gtk.Window)
122                                 return (Gtk.Window) p;
123                 return null;
124         }
125 }