Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/develop-activity/symbols_tree.py
blob: 939debf24730854370c6b152bd770007642301bf (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
89
90
91
92
93
94
95
96
97
98
99
100
101
# -*- coding: utf-8 -*-

# 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 2 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 St, Fifth Floor, Boston, MA  02110-1301  USA

import gtk
import gobject


class SymbolsTree(gtk.TreeView):

    __gsignals__ = {'symbol-selected': (gobject.SIGNAL_RUN_FIRST, None, [int])}

    def __init__(self):
        gtk.TreeView.__init__(self)

        self._model = gtk.TreeStore(gtk.gdk.Pixbuf, str, str)
        self.set_model(self._model)

        column = gtk.TreeViewColumn('Symbols')
        icon_cell = gtk.CellRendererPixbuf()
        column.pack_start(icon_cell, False)
        column.add_attribute(icon_cell, 'pixbuf', 0)

        name_cell = gtk.CellRendererText()
        column.pack_start(name_cell, True)
        column.add_attribute(name_cell, 'text', 1)

        line_cell = gtk.CellRendererText()
        line_cell.props.visible = False
        column.pack_start(line_cell, False)
        column.add_attribute(line_cell, 'text', 2)
        self.append_column(column)

        self.connect('cursor-changed', self._symbol_selected_cb)

    def _add_class(self, name, line):
        pixbuf = gtk.gdk.pixbuf_new_from_file_at_size('icons/class.png', 24,
                                                      24)
        parent = self._model.append(None, (pixbuf, name, line))
        return parent

    def _add_method(self, name, line, parent=None):
        pixbuf = gtk.gdk.pixbuf_new_from_file_at_size('icons/function.png',
                                                      24, 24)
        self._model.append(parent, (pixbuf, name, line))

    def _add_attribute(self, name, line, parent=None):
        pixbuf = gtk.gdk.pixbuf_new_from_file_at_size('icons/attribute.png',
                                                      24, 24)
        self._model.append(parent, (pixbuf, name, line))

    def _symbol_selected_cb(self, widget):
        selection = self.get_selection()
        model, _iter = selection.get_selected()
        line = int(model.get_value(_iter, 2))
        if line is 0:
            return
        self.emit('symbol-selected', line)

    def load_symbols(self, data):
        self._model.clear()
        if 'attributes' in data:
            attributes = data['attributes']
            for attribute in attributes.keys():
                self._add_attribute(attribute, attributes[attribute])

        if 'methods' in data:
            methods = data['methods']
            for method in methods.keys():
                self._add_method(method, methods[method])

        if 'classes' in data:
            classes = data['classes']
            for _class in classes.keys():
                class_dict = classes[_class][1]
                parent = self._add_class(_class, classes[_class][0])
                for key in class_dict.keys():
                    if key == 'attributes':
                        attributes_dict = class_dict[key]
                        for attribute in attributes_dict.keys():
                            self._add_attribute(attribute,
                                                attributes_dict[attribute],
                                                parent)
                    if key == 'functions':
                        methods_dict = class_dict[key]
                        for method in methods_dict:
                            self._add_method(method,
                                             methods_dict[method],
                                             parent)