[maemo-commits] [maemo-commits] r18210 - in projects/haf/trunk/gtk+: . gtk
From: subversion at stage.maemo.org subversion at stage.maemo.orgDate: Thu Apr 30 16:49:28 EEST 2009
- Previous message: [maemo-commits] r18209 - in projects/haf/trunk/clutter0.8: clutter clutter/cogl/common debian
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Author: mitch Date: 2009-04-30 16:49:26 +0300 (Thu, 30 Apr 2009) New Revision: 18210 Modified: projects/haf/trunk/gtk+/ChangeLog projects/haf/trunk/gtk+/gtk/gtkcombobox.c Log: 2009-04-30 Michael Natterer <mitch at imendio.com> Fixes the GTK+ part of: NB#103219 - Could not select Block speed to 1 from the drop down box. * gtk/gtkcombobox.c (gtk_combo_box_list_position): position the combo popup inside the area defined by the _NET_WORKAREA property. Modified: projects/haf/trunk/gtk+/ChangeLog =================================================================== --- projects/haf/trunk/gtk+/ChangeLog 2009-04-30 13:42:26 UTC (rev 18209) +++ projects/haf/trunk/gtk+/ChangeLog 2009-04-30 13:49:26 UTC (rev 18210) @@ -1,3 +1,11 @@ +2009-04-30 Michael Natterer <mitch at imendio.com> + + Fixes the GTK+ part of: NB#103219 - Could not select Block speed + to 1 from the drop down box. + + * gtk/gtkcombobox.c (gtk_combo_box_list_position): position the + combo popup inside the area defined by the _NET_WORKAREA property. + 2009-04-23 Claudio Saavedra <csaavedra at igalia.com> Released 2:2.12.12-1maemo15 Modified: projects/haf/trunk/gtk+/gtk/gtkcombobox.c =================================================================== --- projects/haf/trunk/gtk+/gtk/gtkcombobox.c 2009-04-30 13:42:26 UTC (rev 18209) +++ projects/haf/trunk/gtk+/gtk/gtkcombobox.c 2009-04-30 13:49:26 UTC (rev 18210) @@ -1691,6 +1691,70 @@ GTK_WIDGET (combo_box)->window); gdk_screen_get_monitor_geometry (screen, monitor_num, &monitor); +#ifdef MAEMO_CHANGES + { + GdkAtom prop_type; + gint prop_format; + gint prop_length; + gint32 *work_area; + +#if 0 + g_message ("%s: monitor %d: %d, %d (%d x %d)", + G_STRFUNC, private->monitor_num, + monitor.x, monitor.y, + monitor.width, monitor.height); +#endif + + if (gdk_property_get (gdk_screen_get_root_window (screen), + gdk_atom_intern_static_string ("_NET_WORKAREA"), + GDK_NONE, + 0, 16, FALSE, + &prop_type, &prop_format, &prop_length, + (guchar **) &work_area)) + { + if (prop_format == 32 && prop_length == 16) + { + GdkRectangle work_rectangle; + +#if 0 + g_message ("%s: work area: %d, %d (%d x %d)", + G_STRFUNC, + work_area[0], work_area[1], + work_area[2], work_area[3]); +#endif + + work_rectangle.x = work_area[0]; + work_rectangle.y = work_area[1]; + work_rectangle.width = work_area[2]; + work_rectangle.height = work_area[3]; + + gdk_rectangle_intersect (&monitor, &work_rectangle, &monitor); + +#if 0 + g_message ("%s: new monitor %d: %d, %d (%d x %d)", + G_STRFUNC, private->monitor_num, + monitor.x, monitor.y, + monitor.width, monitor.height); +#endif + } + else + { + g_warning ("%s: _NET_WORKAREA property has the wrong format!", + G_STRFUNC); + + } + + g_free (work_area); + } + else + { + g_warning ("%s: _NET_WORKAREA property not found!", + G_STRFUNC); + + } + } +#endif /* MAEMO_CHANGES */ + if (*x < monitor.x) *x = monitor.x; else if (*x + *width > monitor.x + monitor.width)
- Previous message: [maemo-commits] r18209 - in projects/haf/trunk/clutter0.8: clutter clutter/cogl/common debian
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]