Browse Source

Pull request #1856: REPORT-35699 国际化修改对报表下拉框产生影响

Merge in DESIGN/design from ~HENRY.WANG/design:final/10.0 to final/10.0

* commit '57c22fe43b56ae478d357c29417b79b51303b0f8':
  REPORT-35699 国际化修改对报表下拉框产生影响 添加import
  REPORT-35699 国际化修改对报表下拉框产生影响
final/10.0
Kara 4 years ago
parent
commit
b57e3e7db4
  1. 55
      designer-base/src/main/java/com/fr/design/utils/gui/GUICoreUtils.java

55
designer-base/src/main/java/com/fr/design/utils/gui/GUICoreUtils.java

@ -27,6 +27,7 @@ import com.fr.design.gui.itextfield.UITextField;
import com.fr.design.layout.FRGUIPaneFactory; import com.fr.design.layout.FRGUIPaneFactory;
import com.fr.design.layout.TableLayout; import com.fr.design.layout.TableLayout;
import com.fr.design.layout.TableLayoutHelper; import com.fr.design.layout.TableLayoutHelper;
import com.fr.design.mainframe.DesignerContext;
import com.fr.design.style.color.ColorCell; import com.fr.design.style.color.ColorCell;
import com.fr.design.style.color.ColorFactory; import com.fr.design.style.color.ColorFactory;
import com.fr.design.style.color.ColorSelectBox; import com.fr.design.style.color.ColorSelectBox;
@ -387,31 +388,35 @@ public final class GUICoreUtils {
* @param y y坐标 * @param y y坐标
*/ */
public static void showPopupMenu(JPopupMenu popup, Component parentComponent, int x, int y) { public static void showPopupMenu(JPopupMenu popup, Component parentComponent, int x, int y) {
if (popup == null) {// check null. if (popup == null) {// check null.
return; return;
} }
Point point = new Point(x, y); Point point = new Point(x, y);
SwingUtilities.convertPointToScreen(point, parentComponent); SwingUtilities.convertPointToScreen(point, parentComponent);
Dimension size = popup.getPreferredSize(); Dimension size = popup.getPreferredSize();
Dimension screen = Toolkit.getDefaultToolkit().getScreenSize(); Dimension screen = Toolkit.getDefaultToolkit().getScreenSize();
screen.setSize(screen.getSize().width, screen.height - HEIGHT_GAP); screen.setSize(screen.getSize().width, screen.height - HEIGHT_GAP);
//父元素右边界的坐标
int showOnScreenX = Math.min(screen.width, parentComponent.getLocationOnScreen().x + parentComponent.getWidth()); int parentComponentRightBorderPosition = parentComponent.getLocationOnScreen().x + parentComponent.getWidth();
//设计器右边界的坐标
// peter:调整X的高度. Rectangle rectangle = DesignerContext.getDesignerFrame().getBounds();
if (point.x + size.width > showOnScreenX && size.width < showOnScreenX) { int designerRightBorderPosition = rectangle.x + rectangle.width;
x += (showOnScreenX - point.x - size.width); rectangle = SwingUtilities.getWindowAncestor(parentComponent).getBounds();
} designerRightBorderPosition = Math.max(designerRightBorderPosition, rectangle.x + rectangle.width);
// peter:调整X的高度.
// peter:调整y高度. if (point.x + size.width > designerRightBorderPosition && size.width < designerRightBorderPosition) {
if (point.y + size.height > screen.height && size.height < screen.height) { x += (parentComponentRightBorderPosition - point.x - size.width);
y -= size.height; }
}
// peter:调整y高度.
popup.show(parentComponent, x, y); if (point.y + size.height > screen.height && size.height < screen.height) {
} y -= size.height;
}
popup.show(parentComponent, x, y);
}
/** /**
* Set enabled.<br> * Set enabled.<br>

Loading…
Cancel
Save