Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManuel QuiƱones <manuq@laptop.org>2012-08-08 13:32:31 (GMT)
committer Simon Schampijer <simon@schampijer.de>2012-08-15 12:20:32 (GMT)
commit0c50e0eb1fd95b7ed8d2883b730764fa380effc2 (patch)
tree80caa3b87a51ac0f64437fb4fad7f7bb5f777e6f
parentbf0642b2f7c847e26db9791b02a9d7509aee25d6 (diff)
Solve errors in ColorToolButton to enable activities to use it
This patch solves the following problems: * API changed in the drag and drop code in Gtk. Drag and drop is not working yet (SL #3796) but the code needed to enable drag and drop is ported. * Changes in the way to get color information from the theme this is because Gtk.Style was deprecated by Gtk.StyleContext. * The internal button was not visible. Signed-of-by: Gonzalo Odiard <gonzalo@laptop.org> ----- v2: Fixed comment based on manuq feedback, and add a note about the non working drag and drop.
-rw-r--r--src/sugar3/graphics/colorbutton.py31
1 files changed, 19 insertions, 12 deletions
diff --git a/src/sugar3/graphics/colorbutton.py b/src/sugar3/graphics/colorbutton.py
index c21da47..95d023a 100644
--- a/src/sugar3/graphics/colorbutton.py
+++ b/src/sugar3/graphics/colorbutton.py
@@ -63,21 +63,21 @@ class _ColorButton(Gtk.Button):
GObject.GObject.__init__(self, **kwargs)
+ # FIXME Drag and drop is not working, SL #3796
if self._accept_drag:
- Gtk.drag_dest_set(self, Gtk.DEST_DEFAULT_MOTION |
- Gtk.DEST_DEFAULT_HIGHLIGHT |
- Gtk.DEST_DEFAULT_DROP,
- [('application/x-color', 0, 0)],
- Gdk.DragAction.COPY)
- self.drag_source_set(Gdk.EventMask.BUTTON1_MASK | Gdk.EventMask.BUTTON3_MASK,
- [('application/x-color', 0, 0)],
- Gdk.DragAction.COPY)
+ self.drag_dest_set(Gtk.DestDefaults.MOTION |
+ Gtk.DestDefaults.HIGHLIGHT | Gtk.DestDefaults.DROP,
+ [Gtk.TargetEntry.new('application/x-color', 0, 0)],
+ Gdk.DragAction.COPY)
+ self.drag_source_set(Gdk.ModifierType.BUTTON1_MASK |
+ Gdk.ModifierType.BUTTON3_MASK,
+ [Gtk.TargetEntry.new('application/x-color', 0, 0)],
+ Gdk.DragAction.COPY)
self.connect('drag_data_received', self.__drag_data_received_cb)
self.connect('drag_data_get', self.__drag_data_get_cb)
self._preview.fill_color = get_svg_color_string(self._color)
- self._preview.stroke_color = \
- get_svg_color_string(self.style.fg[Gtk.StateType.NORMAL])
+ self._preview.stroke_color = self._get_fg_style_color_str()
self.set_image(self._preview)
if self._has_palette and self._has_invoker:
@@ -103,8 +103,14 @@ class _ColorButton(Gtk.Button):
self.color = self._palette.color
def do_style_set(self, previous_style):
- self._preview.stroke_color = \
- get_svg_color_string(self.style.fg[Gtk.StateType.NORMAL])
+ self._preview.stroke_color = self._get_fg_style_color_str()
+
+ def _get_fg_style_color_str(self):
+ context = self.get_style_context()
+ fg_color = context.get_color(Gtk.StateType.NORMAL)
+ # the color components are stored as float values between 0.0 and 1.0
+ return '#%.2X%.2X%.2X' % (fg_color.red * 255, fg_color.green * 255,
+ fg_color.blue * 255)
def do_clicked(self):
if self._palette:
@@ -438,6 +444,7 @@ class ColorToolButton(Gtk.ToolItem):
# Replace it with a ColorButton
color_button = _ColorButton(icon_name=icon_name, has_invoker=False)
self.add(color_button)
+ color_button.show()
# The following is so that the behaviour on the toolbar is correct.
color_button.set_relief(Gtk.ReliefStyle.NONE)