Implement the grid, regress UI a bit

This commit is contained in:
Marco Pesenti Gritti
2006-09-07 15:11:51 +02:00
parent 61058e0110
commit 21b19924ea
6 changed files with 187 additions and 151 deletions
+101 -12
View File
@@ -1,40 +1,129 @@
import gobject
import goocanvas
class GridConstraints:
def __init__(x, y, width, height):
def __init__(self, x, y, width, height):
self.x = x
self.y = y
self.width = width
self.height = height
self.padding = 0
class GridLayout:
def __init__(self, rows, cols):
def __init__(self, rows=16, cols=12):
self._rows = rows
self._cols = cols
self._constraints = {}
def set_constraints(component, constraints):
def set_constraints(self, component, constraints):
self._constraints[component] = constraints
def _get_geometry(self, container, component):
constraints = self._constraints[component]
if constraints:
x = constraints.x * component.props.width / self._rows
y = constraints.y * component.props.height / self._cols
width = constraints.width * component.props.width / self._rows
height = constraints.height * component.props.height / self._cols
return [x, y, width, height]
return self.get_bounds(container, constraints)
else:
return [0, 0, 0, 0]
def layout_canvas_group(group):
def get_bounds(self, container, constraints):
w = container.props.width
h = container.props.height
padding = constraints.padding
x = constraints.x * w / self._rows + padding
y = constraints.y * h / self._cols + padding
width = constraints.width * w / self._rows - padding * 2
height = constraints.height * h / self._cols + padding * 2
return [x, y, width, height]
def layout_canvas_group(self, group):
i = 0
while i < group.get_n_children():
item = group.get_child(i)
[x, y, width, height] = self._get_geometry(group, item)
print item
print [x, y, width, height]
print group.props.width
item.props.x = x
item.props.y = y
item.props.width = width
item.props.height = height
try:
item.props.width = width
item.props.height = height
except:
item.props.size = width
i += 1
def layout_screen(self, screen):
for window in screen.get_windows():
[x, y, width, height] = self._get_geometry(screen, window)
window.move(x, y)
window.resize(width, height)
class GridGroup(goocanvas.Group):
__gproperties__ = {
'x' : (int, None, None, 0, 1600, 800,
gobject.PARAM_READWRITE),
'y' : (int, None, None, 0, 1200, 600,
gobject.PARAM_READWRITE),
'width' : (int, None, None, 0, 1600, 800,
gobject.PARAM_READWRITE),
'height' : (int, None, None, 0, 1200, 600,
gobject.PARAM_READWRITE)
}
def _update_position(self):
if self._x != 0 or self._y != 0:
self.translate(self._x, self._y)
def do_set_property(self, pspec, value):
if pspec.name == 'width':
self._width = value
self._layout.layout_canvas_group(self)
elif pspec.name == 'height':
self._height = value
self._layout.layout_canvas_group(self)
elif pspec.name == 'x':
self._x = value
self._update_position()
elif pspec.name == 'y':
self._y = value
self._update_position()
def do_get_property(self, pspec):
if pspec.name == 'width':
return self._width
elif pspec.name == 'height':
return self._height
elif pspec.name == 'x':
return self._x
elif pspec.name == 'x':
return self._x
def __init__(self, rows=-1, cols=-1):
self._x = 0
self._y = 0
self._width = 0
self._height = 0
goocanvas.Group.__init__(self)
if rows < 0 and cols < 0:
self._layout = GridLayout()
else:
self._layout = GridLayout(rows, cols)
self.connect('child-added', self.__child_added_cb)
def get_layout(self):
return self._layout
def __child_added_cb(self, child, position):
self._layout.layout_canvas_group(self)
+5 -6
View File
@@ -119,9 +119,10 @@ class IconView(goocanvas.ItemViewSimple, goocanvas.ItemView):
cr.translate(self.item.x, self.item.y)
scale_factor = float(self.item.size) / float(_ICON_SIZE)
cr.scale(scale_factor, scale_factor)
handle.render_cairo(cr)
if scale_factor != 0.0:
cr.scale(scale_factor, scale_factor)
handle.render_cairo(cr)
cr.restore()
@@ -139,20 +140,18 @@ class IconItem(goocanvas.ItemSimple, goocanvas.Item):
'y' : (float, None, None, -10e6, 10e6, 0,
gobject.PARAM_READWRITE),
'icon-name': (str, None, None, None,
gobject.PARAM_CONSTRUCT_ONLY |
gobject.PARAM_READWRITE),
'color' : (object, None, None,
gobject.PARAM_CONSTRUCT_ONLY |
gobject.PARAM_READWRITE),
'size' : (int, None, None,
0, 1024, 24,
gobject.PARAM_CONSTRUCT_ONLY |
gobject.PARAM_READWRITE)
}
def __init__(self, **kwargs):
self.x = 0.0
self.y = 0.0
self.size = 24
goocanvas.ItemSimple.__init__(self, **kwargs)