summaryrefslogtreecommitdiff
path: root/tests/test_container.py
blob: a970fa44554fac9d0461f41867945a1dd163f238 (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
import unittest

from common import gtk, gobject

class MyContainer(gtk.Container):
    __gtype_name__ = 'MyContainer'
    def __init__(self):
        gtk.Container.__init__(self)
        self.children = []
        self.props = {}

    def do_add(self, child):
        child.set_parent(self)
        self.children.append(child)
        self.props[child] = '' # we just have one child property

    def do_remove(self, child):
        widget_was_visible = child.flags() & gtk.VISIBLE
        child.unparent()
        self.children.remove(child)
        del self.props[child]

        if widget_was_visible:
            self.queue_resize()

    def do_forall(self, internal, callback, data):
        for child in self.children:
            callback(child, data)

    def do_set_child_property(self, child, property_id, value, pspec):
        if pspec.name == 'dumb-prop':
            self.props[child] = value

    def do_get_child_property(self, child, property_id, pspec):
        if pspec.name == 'dumb-prop':
            return self.props[child]

MyContainer.install_child_property(1,
                                   ('dumb_prop',
                                    gobject.TYPE_STRING,
                                    'Dumb Prop',
                                    'Dumb Property for testing purposes',
                                    '', gobject.PARAM_READWRITE))
    
class ContainerTest(unittest.TestCase):

    def testChildProperties(self):
        obj = MyContainer()
        label = gtk.Label()
        obj.add(label)
        v = 'dumb value'
        obj.child_set_property(label, 'dumb_prop', v)
        self.assertEqual(v, obj.child_get_property(label, 'dumb_prop'))

if __name__ == '__main__':
    unittest.main()