2 * app - zavai main window
4 * Copyright (C) 2009 Enrico Zini <enrico@enricozini.org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 public class Zavai : Gtk.Window, zavai.Resource
27 public bool visibility = true;
28 public signal void visibility_changed(bool visible);
38 destroy += Gtk.main_quit;
39 set_events(get_events() | Gdk.EventMask.VISIBILITY_NOTIFY_MASK);
40 visibility_notify_event += on_visibility;
41 set_skip_pager_hint(true);
42 set_skip_taskbar_hint(true);
43 //set_type_hint(Gdk.WindowTypeHint.DESKTOP);
46 private bool on_visibility(Gdk.Event event)
48 visibility = (event.visibility.state == Gdk.VisibilityState.UNOBSCURED);
49 visibility_changed(visibility);
53 public void toggle_visibility()
59 visibility_changed(visibility);
60 //zavai.app.iconify();
64 set_skip_pager_hint(true);
65 set_skip_taskbar_hint(true);
69 public void ensure_visible()
75 set_skip_pager_hint(true);
76 set_skip_taskbar_hint(true);
80 public void show_applet(string name)
82 zavai.Applet applet = zavai.registry.geta(name);
84 // Remove the current applet
101 public void push_applet(string name)
103 // Make the function idempotent
104 if (current_name == name)
107 //stderr.printf("push applet %s -> %s\n", current_name, name);
108 zavai.Applet applet = zavai.registry.geta(name);
110 // Remove the current applet
113 //stderr.printf("push applet remove %s\n", current_name);
114 applet.back_link = current_name;
121 //stderr.printf("push applet add %s\n", name);
122 // Add the new applet
130 public void shutdown()
136 set_size_request(300, 500);
142 class Zavai(gtk.Window, zavai.Resource):
143 def __init__(self, registry, name):
144 super(Zavai, self).__init__()
145 self.registry = registry
147 self.activate_resource("menu.main")
149 def activate_resource(self, name):
150 widget = self.registry.resource(name)
152 widget = self.registry.resource("menu.main")
153 if isinstance(widget, gtk.Action):
156 self.show_widget(name, widget)
159 public abstract class Applet : Gtk.VBox, Resource
161 // 'label' property: label to show in window title or button names
162 protected string _label;
163 public string label {
164 get { return this._label; }
173 public signal void label_changed();
175 // 'back_link' property: link to use to "go back". If null, do not show
177 protected AppletLink _back_link = null;
178 public string back_link {
179 get { return _back_link.target; }
181 //stderr.printf("Set back link of %s to %s\n", _label, value);
182 if (value == null && _back_link != null)
184 _back_link.target = value;
186 } else if (value != null) {
187 if (_back_link.target == null)
189 _back_link.target = value;
190 pack_end(_back_link, false, false, 0);
193 _back_link.target = value;
200 this.homogeneous = false;
202 _back_link = new AppletStraightLink();
205 name = gobject.property(type=str)
206 label = gobject.property(type=str)
208 def __init__(self, registry, name, label = None):
209 super(Applet, self).__init__()
211 self.zavai_registry = registry
213 self.props.name = name
215 self.props.label = zavai.default_label(name)
217 self.props.label = label
219 self.back_link = zavai.LinkButton(registry, zavai.get_parent(name), _("Back"))
220 self.pack_end(self.back_link, False, False)
222 def add(self, widget):
223 self.pack_start(widget, True, True)
226 public void shutdown()
231 public virtual void start() {}
232 public virtual void stop() {}
235 public class Menu : Applet
237 public Menu(string label)
242 public void add_applet(string target)
244 pack_start(new AppletPushLink(target), false, false, 0);
247 public void add_service_toggle(string service_name, string label_start, string label_stop)
249 pack_start(new ServiceRequestLink(service_name, label_start, label_stop), false, false, 0);
252 public void add_widget(Gtk.Widget w)
254 pack_start(w, false, false, 0);
258 public class BigButton : Gtk.Button
262 set_size_request(0, zavai.config.min_button_height);
266 public abstract class AppletLink : BigButton
268 protected string _target;
269 public string target {
270 get { return _target; }
275 Applet a = zavai.registry.geta(_target);
276 a.label_changed -= on_label_changed;
278 bool was_shown = _target != null;
282 Applet a = zavai.registry.geta(_target);
284 a.label_changed += on_label_changed;
285 if (!was_shown) show();
287 if (was_shown) hide();
292 private void on_label_changed(Applet a)
297 private abstract void on_clicked(Gtk.Button src);
299 public AppletLink(string? name = null)
304 clicked += on_clicked;
308 public class AppletStraightLink : AppletLink
310 private override void on_clicked(Gtk.Button src)
312 //stderr.printf("straight link: %s\n", _target);
314 zavai.app.show_applet(_target);
317 public AppletStraightLink(string? name = null)
323 public class AppletPushLink : AppletLink
325 private override void on_clicked(Gtk.Button src)
327 //stderr.printf("push link: %s\n", _target);
329 zavai.app.push_applet(_target);
332 public AppletPushLink(string? name = null)
338 public class ServiceRequestLink : Gtk.ToggleButton
340 protected string service_name;
341 protected string label_start;
342 protected string label_stop;
344 private void on_toggled(Gtk.Button src)
346 Service s = zavai.registry.gets(service_name);
348 s.request("servicerequestlink");
350 s.release("servicerequestlink");
351 set_label(get_active() ? label_stop : label_start);
354 public ServiceRequestLink(string service_name, string label_start, string label_stop)
356 this.service_name = service_name;
357 this.label_start = label_start;
358 this.label_stop = label_stop;
359 set_size_request(0, zavai.config.min_button_height);
360 toggled += on_toggled;
362 set_label(get_active() ? label_stop : label_start);
366 public class CommandButton : Gtk.Button
368 private string command;
370 public CommandButton(string name, string command)
373 this.command = command;
374 clicked += on_clicked;
375 set_size_request(0, zavai.config.min_button_height);
378 public void on_clicked()
380 zavai.log.info("Run program: " + command);
381 string[] args = command.split(" ");
384 Environment.get_home_dir(),
387 SpawnFlags.SEARCH_PATH,