Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/desktop/sweetener/item.py
blob: 80a2984ea5a143cea1e8c8f24e62c4226f51bebe (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
77
78
79
80
81
82
83
84
85
86
87
88
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2012 S. Daniel Francis <francis@sugarlabs.org>
#
# 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; either version 3 of the License, or
# (at your option) any later version.
#
# 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.

import logging
logger = logging.getLogger('option')

from gi.repository import GObject
from gi.repository import Gtk

import stock


class Item(GObject.GObject):
    __gsignals__ = {'activate': (GObject.SignalFlags.RUN_LAST,
                                 None,
                                 tuple())}
    menuitem = None
    toolitem = None

    def __init__(self, stock_id=None, important=False):
        GObject.GObject.__init__(self)
        self._stock_id = stock_id
        self.accel_group = None
        self.important = important
        self.connection = None
        self.connection_data = None
        self.tooltip = None

    def set_stock_id(self, stock_id):
        self._stock_id = stock_id

    def get_stock_id(self):
        return self._stock_id

    stock_id = property(get_stock_id, set_stock_id)

    def get_menu_item(self):
        self.menuitem = Gtk.ImageMenuItem.new_from_stock(self._stock_id,
                                                         self.accel_group)
        self.menuitem.connect('activate', self.activate_cb)
        #self.setup_accelerator()
        return self.menuitem

    def activate_cb(self, widget):
        self.emit('activate')

    def setup_accelerator(self):
        accelerator = stock.get_accelerator(self.stock_id)
        logger.debug(str(accelerator))
        if accelerator[1] > 0:
            self.menuitem.add_accelerator('activate',
                            self.accel_group, accelerator[1], accelerator[0],
                            Gtk.AccelFlags.VISIBLE)

    def get_tool_item(self):
        self.toolitem = Gtk.ToolButton(self._stock_id)
        self.toolitem.connect('clicked', self.activate_cb)
        self.setup_tooltip()
        return self.toolitem

    def setup_tooltip(self):
        if self.tooltip:
            self.toolitem.set_tooltip_text(self.tooltip)
        else:
            text = Gtk.stock_lookup(self.stock_id).label
            self.toolitem.set_tooltip_text(text.replace('_', ''))

    def emit_signal(self, widget, signal_name):
        print self.stock_id
        print self.get_stock_id()
        self.emit(signal_name)