summaryrefslogtreecommitdiffstats
path: root/libjava/gnu/java/awt/peer/gtk/GtkFramePeer.java
diff options
context:
space:
mode:
authorkho <kho@138bc75d-0d04-0410-961f-82ee72b054a4>2004-01-21 20:11:08 +0000
committerkho <kho@138bc75d-0d04-0410-961f-82ee72b054a4>2004-01-21 20:11:08 +0000
commit1d293dbd833c17532bed31013a9d0eeeb61fa964 (patch)
treed695e353631e4ed149936cf8fe64f9c31a3ec356 /libjava/gnu/java/awt/peer/gtk/GtkFramePeer.java
parent37935110be840eb099ba08ec9cfd66247312249a (diff)
downloadppe42-gcc-1d293dbd833c17532bed31013a9d0eeeb61fa964.tar.gz
ppe42-gcc-1d293dbd833c17532bed31013a9d0eeeb61fa964.zip
2004-01-21 Kim Ho <kho@redhat.com>
* gnu/java/awt/peer/gtk/GtkFramePeer.java (postConfigureEvent): Fix comments. (removeMenuBarPeer): Make package private. (setMenuBarPeer): Make package private. * jni/gtk-peer/gnu_java_awt_peer_gtk_GtkWindowPeer.c (menubar_resize_cb): Mark attributes unused. (getMenuBarHeight): ditto. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@76299 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/gnu/java/awt/peer/gtk/GtkFramePeer.java')
-rw-r--r--libjava/gnu/java/awt/peer/gtk/GtkFramePeer.java13
1 files changed, 7 insertions, 6 deletions
diff --git a/libjava/gnu/java/awt/peer/gtk/GtkFramePeer.java b/libjava/gnu/java/awt/peer/gtk/GtkFramePeer.java
index c91779bfa2f..6c59847deb2 100644
--- a/libjava/gnu/java/awt/peer/gtk/GtkFramePeer.java
+++ b/libjava/gnu/java/awt/peer/gtk/GtkFramePeer.java
@@ -57,8 +57,8 @@ public class GtkFramePeer extends GtkWindowPeer
private MenuBarPeer menuBar;
native int getMenuBarHeight (MenuBarPeer bar);
- native public void setMenuBarPeer (MenuBarPeer bar);
- native public void removeMenuBarPeer (MenuBarPeer bar);
+ native void setMenuBarPeer (MenuBarPeer bar);
+ native void removeMenuBarPeer (MenuBarPeer bar);
public void setMenuBar (MenuBar bar)
{
@@ -145,12 +145,13 @@ public class GtkFramePeer extends GtkWindowPeer
protected void postConfigureEvent (int x, int y, int width, int height)
{
int frame_x = x - insets.left;
- // Add the height of the menubar (if none, menuBarHeight is 0 and has no
- // effect). To move the frame down a bit so as to still fit in the window.
+ // Since insets.top includes the MenuBar height, we need to add back
+ // the MenuBar height to the frame's y position.
+ // If no MenuBar exists in this frame, the MenuBar height will be 0.
int frame_y = y - insets.top + menuBarHeight;
int frame_width = width + insets.left + insets.right;
- // Add the height of the menubar to adjust the height so it still fits in
- // the window.
+ // Ditto as above. Since insets.top already includes the MenuBar's height,
+ // we need to subtract the MenuBar's height from the top inset.
int frame_height = height + insets.top + insets.bottom - menuBarHeight;
if (frame_x != awtComponent.getX()
|| frame_y != awtComponent.getY()
OpenPOWER on IntegriCloud