[geany/geany] 751421: GTK: Fix popup positioning on monitors not positioned at 0, 0
Colomban Wendling
git-noreply at xxxxx
Fri Mar 17 12:59:48 UTC 2017
Branch: refs/heads/master
Author: Colomban Wendling <ban at herbesfolles.org>
Committer: Colomban Wendling <ban at herbesfolles.org>
Date: Fri, 17 Mar 2017 12:59:48 UTC
Commit: 7514212d32d3a562051c03ee2e9522ba3c13bf1f
https://github.com/geany/geany/commit/7514212d32d3a562051c03ee2e9522ba3c13bf1f
Log Message:
-----------
GTK: Fix popup positioning on monitors not positioned at 0,0
Fixes #1422.
X-Scintilla-Bug-URL: https://sourceforge.net/p/scintilla/bugs/1920/
X-Scintilla-Commit-ID: 8e0cb37c4972cd66b33293b88031acf453685cfd
Modified Paths:
--------------
scintilla/gtk/PlatGTK.cxx
Modified: scintilla/gtk/PlatGTK.cxx
34 lines changed, 14 insertions(+), 20 deletions(-)
===================================================================
@@ -1059,25 +1059,21 @@ void Window::SetPositionRelative(PRectangle rc, Window relativeTo) {
GdkWindow *wndRelativeTo = WindowFromWidget(PWidget(relativeTo.wid));
gdk_window_get_origin(wndRelativeTo, &ox, &oy);
ox += rc.left;
- if (ox < 0)
- ox = 0;
oy += rc.top;
- if (oy < 0)
- oy = 0;
- GdkRectangle rcScreen = MonitorRectangleForWidget(PWidget(relativeTo.wid));
+ GdkRectangle rcMonitor = MonitorRectangleForWidget(PWidget(relativeTo.wid));
/* do some corrections to fit into screen */
int sizex = rc.right - rc.left;
int sizey = rc.bottom - rc.top;
- const int screenWidth = rcScreen.width;
- const int screenHeight = rcScreen.height;
- if (sizex > screenWidth)
- ox = 0; /* the best we can do */
- else if (ox + sizex > screenWidth)
- ox = screenWidth - sizex;
- if (oy + sizey > screenHeight)
- oy = screenHeight - sizey;
+ if (sizex > rcMonitor.width || ox < rcMonitor.x)
+ ox = rcMonitor.x; /* the best we can do */
+ else if (ox + sizex > rcMonitor.x + rcMonitor.width)
+ ox = rcMonitor.x + rcMonitor.width - sizex;
+ if (sizey > rcMonitor.height || oy < rcMonitor.y)
+ oy = rcMonitor.y;
+ else if (oy + sizey > rcMonitor.y + rcMonitor.height)
+ oy = rcMonitor.y + rcMonitor.height - sizey;
gtk_window_move(GTK_WINDOW(PWidget(wid)), ox, oy);
@@ -1929,20 +1925,18 @@ void Menu::Show(Point pt, Window &wnd) {
// Rely on GTK+ to do the right thing with positioning
gtk_menu_popup_at_pointer(widget, NULL);
#else
- GdkRectangle rcScreen = MonitorRectangleForWidget(PWidget(wnd.GetID()));
- const int screenWidth = rcScreen.width;
- const int screenHeight = rcScreen.height;
+ GdkRectangle rcMonitor = MonitorRectangleForWidget(PWidget(wnd.GetID()));
GtkRequisition requisition;
#if GTK_CHECK_VERSION(3,0,0)
gtk_widget_get_preferred_size(GTK_WIDGET(widget), NULL, &requisition);
#else
gtk_widget_size_request(GTK_WIDGET(widget), &requisition);
#endif
- if ((pt.x + requisition.width) > screenWidth) {
- pt.x = screenWidth - requisition.width;
+ if ((pt.x + requisition.width) > rcMonitor.x + rcMonitor.width) {
+ pt.x = rcMonitor.x + rcMonitor.width - requisition.width;
}
- if ((pt.y + requisition.height) > screenHeight) {
- pt.y = screenHeight - requisition.height;
+ if ((pt.y + requisition.height) > rcMonitor.y + rcMonitor.height) {
+ pt.y = rcMonitor.y + rcMonitor.height - requisition.height;
}
gtk_menu_popup(widget, NULL, NULL, MenuPositionFunc,
GINT_TO_POINTER((static_cast<int>(pt.y) << 16) | static_cast<int>(pt.x)), 0,
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
More information about the Commits
mailing list