summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ChangeLog8
-rw-r--r--src/xmenu.c21
-rw-r--r--src/xterm.c1
3 files changed, 27 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index b465355571e..94fe3226cf8 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,11 @@
+2003-02-08 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
+
+ * xterm.c (x_make_frame_visible): Call gtk_window_deiconify.
+
+ * xmenu.c (menu_position_func): Adjust menu popup position so that
+ the menu is fully visible.
+
+
2003-02-07 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
* xterm.c (x_text_icon, x_raise_frame, x_lower_frame)
diff --git a/src/xmenu.c b/src/xmenu.c
index 2709a7641dd..6c289c45316 100644
--- a/src/xmenu.c
+++ b/src/xmenu.c
@@ -2241,6 +2241,7 @@ static Lisp_Object *volatile menu_item_selection;
create_and_show_popup_menu below. */
struct next_popup_x_y
{
+ FRAME_PTR f;
int x;
int y;
};
@@ -2252,7 +2253,7 @@ struct next_popup_x_y
PUSH_IN is not documented in the GTK manual.
USER_DATA is any data passed in when calling gtk_menu_popup.
Here it points to a struct next_popup_x_y where the coordinates
- to store in *X and *Y are.
+ to store in *X and *Y are as well as the frame for the popup.
Here only X and Y are used. */
static void
@@ -2263,8 +2264,21 @@ menu_position_func (menu, x, y, push_in, user_data)
gboolean *push_in;
gpointer user_data;
{
- *x = ((struct next_popup_x_y*)user_data)->x;
- *y = ((struct next_popup_x_y*)user_data)->y;
+ struct next_popup_x_y* data = (struct next_popup_x_y*)user_data;
+ GtkRequisition req;
+ int disp_width = FRAME_X_DISPLAY_INFO (data->f)->width;
+ int disp_height = FRAME_X_DISPLAY_INFO (data->f)->height;
+
+ *x = data->x;
+ *y = data->y;
+
+ /* Check if there is room for the menu. If not, adjust x/y so that
+ the menu is fully visible. */
+ gtk_widget_size_request (GTK_WIDGET (menu), &req);
+ if (data->x + req.width > disp_width)
+ *x -= data->x + req.width - disp_width;
+ if (data->y + req.height > disp_height)
+ *y -= data->y + req.height - disp_height;
}
static void
@@ -2316,6 +2330,7 @@ create_and_show_popup_menu (f, first_wv, x, y, for_click)
popup_x_y.x = x;
popup_x_y.y = y;
+ popup_x_y.f = f;
}
/* Display the menu. */
diff --git a/src/xterm.c b/src/xterm.c
index 2bda1e0982f..a27ddb22612 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -13696,6 +13696,7 @@ x_make_frame_visible (f)
#else /* not USE_X_TOOLKIT */
#ifdef USE_GTK
gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f));
+ gtk_window_deiconify (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
#else
XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
#endif /* not USE_GTK */