From 383469d022e9b0c9a08321c7ec9c186fc09c1a36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Mon, 18 Jul 2011 18:13:09 +0200 Subject: examples: add secondary-activate signal usage to Vala and C --- example/simple-client-vala.vala | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'example/simple-client-vala.vala') diff --git a/example/simple-client-vala.vala b/example/simple-client-vala.vala index 61e0c2f..c0adf5b 100644 --- a/example/simple-client-vala.vala +++ b/example/simple-client-vala.vala @@ -92,6 +92,13 @@ class SimpleClient { print(@"Got scroll event! delta: $delta, direction: $direction\n"); }); + ci.secondary_activate.connect((x, y) => { + print(@"Got secondary activate event at $(x)x$(y)\n"); + + if (ci.get_status() == IndicatorStatus.ATTENTION) + ci.set_status(IndicatorStatus.ACTIVE); + }); + Timeout.add_seconds(1, () => { percentage = (percentage + 1) % 100; if (can_haz_label) { -- cgit v1.2.3