Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAleksey Lim <alsroot@member.fsf.org>2010-01-31 23:28:25 (GMT)
committer Aleksey Lim <alsroot@member.fsf.org>2010-01-31 23:28:25 (GMT)
commit35e9e405f59d86ad45605b5c2903a847491fe387 (patch)
treee9477e19ae90e3164bf73f21651427f2ee0a7943
parentdbcade013706cca271810ce5344f5e30ee362256 (diff)
New SugarBin widget to implement some of hippo features
-rw-r--r--src/jarabe/journal/Makefile.am1
-rw-r--r--src/jarabe/journal/homogenetable.py60
-rw-r--r--src/jarabe/journal/sugarbin.py129
3 files changed, 152 insertions, 38 deletions
diff --git a/src/jarabe/journal/Makefile.am b/src/jarabe/journal/Makefile.am
index 2a75284..295939d 100644
--- a/src/jarabe/journal/Makefile.am
+++ b/src/jarabe/journal/Makefile.am
@@ -18,6 +18,7 @@ sugar_PYTHON = \
objectchooser.py \
palettes.py \
preview.py \
+ sugarbin.py \
thumbsview.py \
view.py \
volumestoolbar.py
diff --git a/src/jarabe/journal/homogenetable.py b/src/jarabe/journal/homogenetable.py
index d6b8a14..3e66e73 100644
--- a/src/jarabe/journal/homogenetable.py
+++ b/src/jarabe/journal/homogenetable.py
@@ -20,11 +20,14 @@ import math
import bisect
import logging
+from jarabe.journal.sugarbin import SugarBin
+
+
# Having spare rows let us making smooth scrolling w/o empty spaces
_SPARE_ROWS_COUNT = 2
-class HomogeneTable(gtk.Container):
+class HomogeneTable(SugarBin):
"""
Grid widget with homogeneously placed children of the same class.
@@ -65,7 +68,7 @@ class HomogeneTable(gtk.Container):
self._hover_selection = False
self._cursor_visible = True
- gtk.Container.__init__(self, **kwargs)
+ SugarBin.__init__(self, **kwargs)
# when focused cell is out of visible frame,
# table itslef will be focused to follow gtk focusing scheme
@@ -249,8 +252,8 @@ class HomogeneTable(gtk.Container):
if self._empty:
return None
- x = min(max(0, x), self.allocation.width - 1)
- y = min(max(0, y), self.allocation.height - 1)
+ x = min(max(0, x), self.width - 1)
+ y = min(max(0, y), self.height - 1)
x, y = self._rotate(x, y)
y += self._pos
@@ -309,25 +312,13 @@ class HomogeneTable(gtk.Container):
return False
def do_realize(self):
- self.set_flags(gtk.REALIZED)
-
- self.window = gtk.gdk.Window(
- self.get_parent_window(),
- window_type=gtk.gdk.WINDOW_CHILD,
- x=self.allocation.x,
- y=self.allocation.y,
- width=self.allocation.width,
- height=self.allocation.height,
- wclass=gtk.gdk.INPUT_OUTPUT,
- colormap=self.get_colormap(),
- event_mask=gtk.gdk.VISIBILITY_NOTIFY_MASK)
- self.window.set_user_data(self)
+ SugarBin.do_realize(self)
self._bin_window = gtk.gdk.Window(
self.window,
window_type=gtk.gdk.WINDOW_CHILD,
- x=self._rotate(0, -self._pos)[0],
- y=self._rotate(-self._pos, 0)[0],
+ x=self._rotate(self.x, -self._pos)[0],
+ y=self._rotate(-self._pos, self.y)[0],
width=self._rotate(self._thickness, self._length)[0],
height=self._rotate(self._length, self._thickness)[0],
colormap=self.get_colormap(),
@@ -335,9 +326,6 @@ class HomogeneTable(gtk.Container):
event_mask=(self.get_events() | gtk.gdk.EXPOSURE_MASK |
gtk.gdk.SCROLL_MASK))
self._bin_window.set_user_data(self)
-
- self.set_style(self.style.attach(self.window))
- self.style.set_background(self.window, gtk.STATE_NORMAL)
self.style.set_background(self._bin_window, gtk.STATE_NORMAL)
for row in self._row_cache:
@@ -347,37 +335,33 @@ class HomogeneTable(gtk.Container):
if self._pending_allocate is not None:
self._allocate_rows(force=self._pending_allocate)
self._pending_allocate = None
- #self.queue_resize()
def do_size_allocate(self, allocation):
resize_tabel = tuple(self.allocation) != tuple(allocation)
- self.allocation = allocation
-
+ SugarBin.do_size_allocate(self, allocation)
if resize_tabel:
self._resize_table()
- if self.flags() & gtk.REALIZED:
- self.window.move_resize(*allocation)
-
def do_unrealize(self):
self._bin_window.set_user_data(None)
self._bin_window.destroy()
self._bin_window = None
- gtk.Container.do_unrealize(self)
+ SugarBin.do_unrealize(self)
+ """
def do_style_set(self, style):
- gtk.Widget.do_style_set(self, style)
+ SugarBin.do_style_set(self, style)
if self.flags() & gtk.REALIZED:
self.style.set_background(self._bin_window, gtk.STATE_NORMAL)
+ """
def do_expose_event(self, event):
- if event.window != self._bin_window:
- return False
- gtk.Container.do_expose_event(self, event)
+ if event.window == self._bin_window:
+ SugarBin.do_expose_event(self, event)
return False
def do_map(self):
- self.set_flags(gtk.MAPPED)
+ SugarBin.do_map(self)
for row in self._row_cache:
for cell in row:
@@ -385,7 +369,6 @@ class HomogeneTable(gtk.Container):
cell.widget.map()
self._bin_window.show()
- self.window.show()
def do_size_request(self, req):
req.width = 0
@@ -416,6 +399,7 @@ class HomogeneTable(gtk.Container):
def do_forall(self, include_internals, callback, data):
for row in self._row_cache:
for cell in row:
+ #if cell.widget.has_screen():
callback(cell.widget, data)
def do_add(self, widget):
@@ -506,11 +490,11 @@ class HomogeneTable(gtk.Container):
@property
def _thickness(self):
- return self._rotate(self.allocation.width, self.allocation.height)[0]
+ return self._rotate(self.width, self.height)[0]
@property
def _frame_length(self):
- return self._rotate(self.allocation.height, self.allocation.width)[0]
+ return self._rotate(self.height, self.width)[0]
@property
def _length(self):
@@ -726,7 +710,7 @@ class HomogeneTable(gtk.Container):
try_insert_spare_row(next_row_pos, page_end)
- self._bin_window.move(*self._rotate(0, int(-pos)))
+ self._bin_window.move(*self._rotate(self.x, self.y + int(-pos)))
self._bin_window.process_updates(True)
if frame_rows:
diff --git a/src/jarabe/journal/sugarbin.py b/src/jarabe/journal/sugarbin.py
new file mode 100644
index 0000000..5596c67
--- /dev/null
+++ b/src/jarabe/journal/sugarbin.py
@@ -0,0 +1,129 @@
+# Copyright (C) 2010, Aleksey Lim
+#
+# 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 SugarBin(gtk.EventBox):
+
+ def __init__(self, **kwargs):
+ gtk.EventBox.__init__(self, **kwargs)
+
+ self._padding_left = 0
+ self._padding_right = 0
+ self._padding_top = 0
+ self._padding_bottom = 0
+
+ @property
+ def padding_left(self):
+ return self._padding_left
+
+ @padding_left.setter
+ def padding_left(self, value):
+ if value == self._padding_left:
+ return
+ self._padding_left = value
+ self.queue_resize()
+
+ @property
+ def padding_right(self):
+ return self._padding_right
+
+ @padding_right.setter
+ def padding_right(self, value):
+ if value == self._padding_right:
+ return
+ self._padding_right = value
+ self.queue_resize()
+
+ @property
+ def padding_top(self):
+ return self._padding_top
+
+ @padding_top.setter
+ def padding_top(self, value):
+ if value == self._padding_top:
+ return
+ self._padding_top = value
+ self.queue_resize()
+
+ @property
+ def padding_bottom(self):
+ return self._padding_bottom
+
+ @padding_bottom.setter
+ def padding_bottom(self, value):
+ if value == self._padding_bottom:
+ return
+ self._padding_bottom = value
+ self.queue_resize()
+
+ def set_padding(self, value):
+ self._padding_left = value
+ self._padding_right = value
+ self._padding_top = value
+ self._padding_bottom = value
+ self.queue_resize()
+
+ padding = property(None, set_padding)
+
+ @property
+ def x(self):
+ return self._padding_left
+
+ @property
+ def y(self):
+ return self._padding_top
+
+ @property
+ def width(self):
+ return self.allocation.width - self._padding_left - self._padding_right
+
+ @property
+ def height(self):
+ return self.allocation.height - self._padding_top - self._padding_bottom
+
+ # gtk.Widget overrides
+
+ def get_pointer(self):
+ x, y = gtk.EventBox.get_pointer(self)
+ return (x - self.x, y - self.y)
+
+ def do_size_request(self, requisition):
+ if self.child is not None:
+ requisition.width, requisition.height = self.child.size_request()
+ else:
+ requisition.width, requisition.height = (0, 0)
+ requisition.width += self._padding_left + self._padding_right
+ requisition.height += self._padding_top + self._padding_bottom
+
+ def do_size_allocate(self, allocation):
+ self.allocation = allocation
+
+ if self.flags() & gtk.REALIZED:
+ self.window.move_resize(*allocation)
+
+ if self.child is not None:
+ __, __, width, height = allocation
+ child_allocation = gtk.gdk.Rectangle(
+ x=self._padding_left, y=self._padding_top,
+ width=width - self._padding_left - self._padding_right,
+ height=height - self._padding_top - self._padding_bottom)
+ self.child.size_allocate(child_allocation)
+
+
+gobject.type_register(SugarBin)