aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ephy-gui.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ephy-gui.c')
-rw-r--r--lib/ephy-gui.c42
1 files changed, 38 insertions, 4 deletions
diff --git a/lib/ephy-gui.c b/lib/ephy-gui.c
index ae389b01f..cd8f09e02 100644
--- a/lib/ephy-gui.c
+++ b/lib/ephy-gui.c
@@ -113,14 +113,11 @@ ephy_gui_menu_position_under_widget (GtkMenu *menu,
{
GtkWidget *w = GTK_WIDGET (user_data);
GtkRequisition requisition;
- gboolean rtl;
-
- rtl = (gtk_widget_get_direction (w) == GTK_TEXT_DIR_RTL);
gdk_window_get_origin (w->window, x, y);
gtk_widget_size_request (GTK_WIDGET (menu), &requisition);
- if (rtl)
+ if (gtk_widget_get_direction (w) == GTK_TEXT_DIR_RTL)
{
*x += w->allocation.x + w->allocation.width - requisition.width;
}
@@ -134,6 +131,43 @@ ephy_gui_menu_position_under_widget (GtkMenu *menu,
ephy_gui_sanitise_popup_position (menu, w, x, y);
}
+void
+ephy_gui_menu_position_on_panel (GtkMenu *menu,
+ gint *x,
+ gint *y,
+ gboolean *push_in,
+ gpointer user_data)
+{
+ GtkWidget *widget = GTK_WIDGET (user_data);
+ GtkRequisition requisition;
+ GdkScreen *screen;
+
+ screen = gtk_widget_get_screen (widget);
+
+ gdk_window_get_origin (widget->window, x, y);
+ gtk_widget_size_request (GTK_WIDGET (menu), &requisition);
+
+ if (GTK_WIDGET_NO_WINDOW (widget))
+ {g_print ("NOT WINDOW!\n");
+ *x += widget->allocation.x;
+ *y += widget->allocation.y;
+ }
+
+ /* FIXME: Adapt to vertical panels, but egg_tray_icon_get_orientation doesn't seem to work */
+ if (*y > gdk_screen_get_height (screen) / 2)
+ {
+ *y -= requisition.height;
+ }
+ else
+ {
+ *y += widget->allocation.height;
+ }
+
+ *push_in = FALSE;
+
+ ephy_gui_sanitise_popup_position (menu, widget, x, y);
+}
+
gboolean
ephy_gui_confirm_overwrite_file (GtkWidget *parent, const char *filename)
{