Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Schampijer <simon@schampijer.de>2011-11-04 08:30:01 (GMT)
committer Sascha Silbe <silbe@activitycentral.com>2011-11-22 12:28:55 (GMT)
commit2ee937bbc017fc749c9adbd7466ff7105548f89c (patch)
tree92226860b99e713e58aa4ca370f9d6ddbab5a285
parente88ffabf4bb2c5df8c1764f2888029d00d3de8e8 (diff)
Adapt to Gtk.icon_size_lookup*() API changes
In PyGTK, icon_size_lookup*() returned just the icon size as a 2-tuple [1]. In GTK3+pygi, an additional boolean value indicating whether the passed-in value was valid is returned. [3,4] [1] http://developer.gnome.org/pygtk/stable/class-gtkiconsource.html#function-gtk--icon-size-lookup [2] http://developer.gnome.org/pygtk/stable/class-gtkiconsource.html#function-gtk--icon-size-lookup-for-settings [3] http://developer.gnome.org/gtk/stable/gtk-Themeable-Stock-Images.html#gtk-icon-size-lookup [4] http://developer.gnome.org/gtk/stable/gtk-Themeable-Stock-Images.html#gtk-icon-size-lookup-for-settings
-rw-r--r--src/sugar3/graphics/combobox.py8
-rw-r--r--src/sugar3/graphics/icon.py2
-rw-r--r--src/sugar3/graphics/notebook.py2
3 files changed, 6 insertions, 6 deletions
diff --git a/src/sugar3/graphics/combobox.py b/src/sugar3/graphics/combobox.py
index 32700d1..e569ee3 100644
--- a/src/sugar3/graphics/combobox.py
+++ b/src/sugar3/graphics/combobox.py
@@ -62,7 +62,7 @@ class ComboBox(Gtk.ComboBox):
def _get_real_name_from_theme(self, name, size):
icon_theme = Gtk.IconTheme.get_default()
- width, height = Gtk.icon_size_lookup(size)
+ valid, width, height = Gtk.icon_size_lookup(size)
info = icon_theme.lookup_icon(name, max(width, height), 0)
if not info:
raise ValueError('Icon %r not found.' % name)
@@ -91,8 +91,8 @@ class ComboBox(Gtk.ComboBox):
self._icon_renderer = Gtk.CellRendererPixbuf()
settings = self.get_settings()
- w, h = Gtk.icon_size_lookup_for_settings(
- settings, Gtk.IconSize.MENU)
+ valid, w, h = Gtk.icon_size_lookup_for_settings(
+ settings, Gtk.IconSize.MENU)
self._icon_renderer.props.stock_size = max(w, h)
self.pack_start(self._icon_renderer, False)
@@ -108,7 +108,7 @@ class ComboBox(Gtk.ComboBox):
size = Gtk.IconSize.MENU
else:
size = Gtk.IconSize.LARGE_TOOLBAR
- width, height = Gtk.icon_size_lookup(size)
+ valid, width, height = Gtk.icon_size_lookup(size)
if icon_name:
file_name = self._get_real_name_from_theme(icon_name, size)
diff --git a/src/sugar3/graphics/icon.py b/src/sugar3/graphics/icon.py
index 65e576f..3cbe953 100644
--- a/src/sugar3/graphics/icon.py
+++ b/src/sugar3/graphics/icon.py
@@ -346,7 +346,7 @@ class Icon(Gtk.Image):
self._buffer.file_name = self.props.file
if self.props.pixel_size == -1:
- width, height = Gtk.icon_size_lookup(self.props.icon_size)
+ valid, width, height = Gtk.icon_size_lookup(self.props.icon_size)
else:
width = height = self.props.pixel_size
if self._buffer.width != width or self._buffer.height != height:
diff --git a/src/sugar3/graphics/notebook.py b/src/sugar3/graphics/notebook.py
index 6e96fba..57994fa 100644
--- a/src/sugar3/graphics/notebook.py
+++ b/src/sugar3/graphics/notebook.py
@@ -80,7 +80,7 @@ class Notebook(Gtk.Notebook):
Gtk.Button.set_relief(button, Gtk.ReliefStyle.NONE)
settings = Gtk.Widget.get_settings(button)
- w, h = Gtk.icon_size_lookup_for_settings(settings, Gtk.IconSize.MENU)
+ valid, w, h = Gtk.icon_size_lookup_for_settings(settings, Gtk.IconSize.MENU)
Gtk.Widget.set_size_request(button, w + 4, h + 4)
image.show()
icon_box.pack_start(image, True, False, 0)