Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/gui/canvaslistbox.py
blob: 503f708bdce61d30ec51f103dc9b459c0596e484 (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
# Copyright 2007 World Wide Workshop Foundation
#
# 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
#
# If you find this activity useful or end up using parts of it in one of your
# own creations we would love to hear from you at info@WorldWideWorkshop.org !
#
import gi
from gi.repository import Gtk
from gi.repository import Hippo

from sugar3.graphics import style

from gui import theme
from gui import page


# TODO- height seems bust
class CanvasListBox(Hippo.CanvasWidget):
  def __init__(self):
    self._entries_div = Hippo.CanvasBox() 

    # props not set properly in constructor
    self._entries_div.props.background_color=theme.COLOR_PAGE.get_int() 
    self._entries_div.props.spacing=style.DEFAULT_SPACING    
    self._entries_div.props.padding=10
    self._entries_div.props.orientation=Hippo.Orientation.VERTICAL    

    # Munge it all up into something we can stick into a Gtk.ScrolledWindow
    canvas = Hippo.Canvas() 
    canvas.set_root(self._entries_div)
    canvas.show()
    
    hbox = Gtk.HBox()
    hbox.set_flags(Gtk.HAS_FOCUS | Gtk.CAN_FOCUS)
    hbox.pack_start(canvas, True, True, 0)
    hbox.show()

    scroller = Gtk.ScrolledWindow()
    scroller.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC)
    viewport = Gtk.Viewport()
    viewport.set_shadow_type(Gtk.ShadowType.NONE) 
    viewport.add(hbox)
    viewport.show()
    scroller.add(viewport)
    scroller.show()

    gobject.GObject.__init__(self, 
                                widget=scroller, 
                                padding=0, 
                                spacing=0,
                                border=1,
                                border_color=theme.COLOR_DARK_GREEN.get_int())


  def append(self, entry, *args):
    self._entries_div.append(entry, *args)