aboutsummaryrefslogtreecommitdiff
path: root/src/phone.vala
blob: 2abcf1146254da0796662a767abc03f12d4455c9 (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
/*
 * Copyright 2013 Canonical Ltd.
 *
 * 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; version 3.
 *
 * 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 Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * Authors:
 *   Charles Kerr <charles.kerr@canonical.com>
 */

class PhoneMenu: BluetoothMenu
{
  private Action[] actions;

  public override void add_actions_to_group (SimpleActionGroup group)
  {
    base.add_actions_to_group (group);

    for (var i=0; i<actions.length; i++)
      group.insert (actions[i]);
  }

  public PhoneMenu ()
  {
    base ("phone");

    this.actions = {};
    this.actions += new SimpleAction.stateful ("root-phone", null, action_state_for_root());
    this.actions += create_settings_action ();

    var section = new Menu ();
    section.append (_("Sound settings…"), "indicator.phone-settings");
    this.menu.append_section (null, section);
  }

  Action create_settings_action ()
  {
    var action = new SimpleAction ("phone-settings", null);

    action.activate.connect ((action, param) => {
      try {
        Process.spawn_command_line_async ("system-settings bluetooth");
      } catch (Error e) {
        warning ("unable to launch settings: %s", e.message);
      }
    });

    return action;
  }

  protected Variant action_state_for_root ()
  {
    var label = "Hello World"; // FIXME
    var a11y = "Hello World"; // FIXME
    var visible = true; // FIXME

    string icon_name = "bluetooth"; // FIXME: enabled, disabled, connected, etc.
    var icon = new ThemedIcon.with_default_fallbacks (icon_name);

    var builder = new VariantBuilder (new VariantType ("a{sv}"));
    builder.add ("{sv}", "visible", new Variant ("b", visible));
    builder.add ("{sv}", "label", new Variant ("s", label));
    builder.add ("{sv}", "accessible-desc", new Variant ("s", a11y));
    builder.add ("{sv}", "icon", icon.serialize());
    return builder.end ();
  }
}