diff options
author | Ted Gould <ted@gould.cx> | 2011-02-10 14:47:52 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-02-10 14:47:52 -0600 |
commit | 18d89929cb035b798916e10a6aa253fd5bcf4e7d (patch) | |
tree | 953e74c6b5755b722efcaa63b70c23890d11418b /bindings/vala/examples/indicator-example.vala | |
parent | 41981b1b0cc723c58e515702fc34cfd6bf500ae9 (diff) | |
parent | 23a4650671cb87a0e440b5c4284e437905f768b6 (diff) | |
download | libayatana-appindicator-18d89929cb035b798916e10a6aa253fd5bcf4e7d.tar.gz libayatana-appindicator-18d89929cb035b798916e10a6aa253fd5bcf4e7d.tar.bz2 libayatana-appindicator-18d89929cb035b798916e10a6aa253fd5bcf4e7d.zip |
Import upstream version 0.2.93
Diffstat (limited to 'bindings/vala/examples/indicator-example.vala')
-rw-r--r-- | bindings/vala/examples/indicator-example.vala | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/bindings/vala/examples/indicator-example.vala b/bindings/vala/examples/indicator-example.vala new file mode 100644 index 0000000..621c962 --- /dev/null +++ b/bindings/vala/examples/indicator-example.vala @@ -0,0 +1,64 @@ +/* + * Copyright 2011 Canonical Ltd. + * + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 3, as published + * by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranties of + * MERCHANTABILITY, SATISFACTORY QUALITY, 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, see <http://www.gnu.org/licenses/>. + * + * Authors: + * Marco Trevisan (TreviƱo) <mail@3v1n0.net> + */ + +using Gtk; +using AppIndicator; + +public class IndicatorExample { + public static int main(string[] args) { + Gtk.init(ref args); + + var win = new Window(); + win.title = "Indicator Test"; + win.resize(200, 200); + win.destroy.connect(Gtk.main_quit); + + var label = new Label("Hello, world!"); + win.add(label); + + var indicator = new Indicator(win.title, "indicator-messages", + IndicatorCategory.APPLICATION_STATUS); + + indicator.set_status(IndicatorStatus.ACTIVE); + indicator.set_attention_icon("indicator-messages-new"); + + var menu = new Menu(); + + var item = new MenuItem.with_label("Foo"); + item.activate.connect(() => { + indicator.set_status(IndicatorStatus.ATTENTION); + }); + item.show(); + menu.append(item); + + item = new MenuItem.with_label("Bar"); + item.show(); + item.activate.connect(() => { + indicator.set_status(IndicatorStatus.ATTENTION); + }); + menu.append(item); + + indicator.set_menu(menu); + + win.show_all(); + + Gtk.main(); + return 0; + } +} |