[hyena/gtk3] Hyena.Gui: Update for the latest gtk-sharp git master
- From: Bertrand Lorentz <blorentz src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [hyena/gtk3] Hyena.Gui: Update for the latest gtk-sharp git master
- Date: Sat, 16 Jul 2011 20:21:36 +0000 (UTC)
commit 355b268ed0c86a5a691f74853e99c3c84e25b61d
Author: Bertrand Lorentz <bertrand lorentz gmail com>
Date: Sat Jul 16 22:16:04 2011 +0200
Hyena.Gui: Update for the latest gtk-sharp git master
The value names for Gdk.WindowWindowClass have been fixed up so we need
to adapt to the right names.
.../Hyena.Data.Gui/ListView/ListView_Windowing.cs | 2 +-
Hyena.Gui/Hyena.Gui.Canvas/CanvasHost.cs | 2 +-
Hyena.Gui/Hyena.Widgets/AnimatedWidget.cs | 2 +-
Hyena.Gui/Hyena.Widgets/RatingEntry.cs | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/Hyena.Gui/Hyena.Data.Gui/ListView/ListView_Windowing.cs b/Hyena.Gui/Hyena.Data.Gui/ListView/ListView_Windowing.cs
index 645a7f6..5b20ef8 100644
--- a/Hyena.Gui/Hyena.Data.Gui/ListView/ListView_Windowing.cs
+++ b/Hyena.Gui/Hyena.Data.Gui/ListView/ListView_Windowing.cs
@@ -65,7 +65,7 @@ namespace Hyena.Data.Gui
attributes.Y = Allocation.Y;
attributes.Width = Allocation.Width;
attributes.Height = Allocation.Height;
- attributes.Wclass = WindowWindowClass.Only;
+ attributes.Wclass = WindowWindowClass.InputOnly;
attributes.EventMask = (int)(
EventMask.PointerMotionMask |
EventMask.KeyPressMask |
diff --git a/Hyena.Gui/Hyena.Gui.Canvas/CanvasHost.cs b/Hyena.Gui/Hyena.Gui.Canvas/CanvasHost.cs
index 9b06922..ac564f6 100644
--- a/Hyena.Gui/Hyena.Gui.Canvas/CanvasHost.cs
+++ b/Hyena.Gui/Hyena.Gui.Canvas/CanvasHost.cs
@@ -62,7 +62,7 @@ namespace Hyena.Gui.Canvas
attributes.Y = Allocation.Y;
attributes.Width = Allocation.Width;
attributes.Height = Allocation.Height;
- attributes.Wclass = WindowWindowClass.Only;
+ attributes.Wclass = WindowWindowClass.InputOnly;
attributes.EventMask = (int)(
EventMask.PointerMotionMask |
EventMask.ButtonPressMask |
diff --git a/Hyena.Gui/Hyena.Widgets/AnimatedWidget.cs b/Hyena.Gui/Hyena.Widgets/AnimatedWidget.cs
index 7fb99c0..becd51b 100644
--- a/Hyena.Gui/Hyena.Widgets/AnimatedWidget.cs
+++ b/Hyena.Gui/Hyena.Widgets/AnimatedWidget.cs
@@ -127,7 +127,7 @@ namespace Hyena.Widgets
Gdk.WindowAttr attributes = new Gdk.WindowAttr ();
attributes.WindowType = Gdk.WindowType.Child;
- attributes.Wclass = Gdk.WindowWindowClass.Output;
+ attributes.Wclass = Gdk.WindowWindowClass.InputOutput;
attributes.EventMask = (int)Gdk.EventMask.ExposureMask;
Window = new Gdk.Window (Parent.Window, attributes, 0);
diff --git a/Hyena.Gui/Hyena.Widgets/RatingEntry.cs b/Hyena.Gui/Hyena.Widgets/RatingEntry.cs
index 2a9a315..fb0c963 100644
--- a/Hyena.Gui/Hyena.Widgets/RatingEntry.cs
+++ b/Hyena.Gui/Hyena.Widgets/RatingEntry.cs
@@ -159,7 +159,7 @@ namespace Hyena.Widgets
attributes.Y = Allocation.Y;
attributes.Width = Allocation.Width;
attributes.Height = Allocation.Height;
- attributes.Wclass = Gdk.WindowWindowClass.Only;
+ attributes.Wclass = Gdk.WindowWindowClass.InputOnly;
attributes.EventMask = (int)(
Gdk.EventMask.PointerMotionMask |
Gdk.EventMask.EnterNotifyMask |
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]