java.awt.Window.getComponentOrientation()方法的使用及代码示例

x33g5p2x  于2022-02-02 转载在 其他  
字(2.7k)|赞(0)|评价(0)|浏览(110)

本文整理了Java中java.awt.Window.getComponentOrientation()方法的一些代码示例,展示了Window.getComponentOrientation()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Window.getComponentOrientation()方法的具体详情如下:
包路径:java.awt.Window
类名称:Window
方法名:getComponentOrientation

Window.getComponentOrientation介绍

暂无

代码示例

代码示例来源:origin: com.jtattoo/JTattoo

protected boolean isLeftToRight() {
  return (window == null) ? getRootPane().getComponentOrientation().isLeftToRight() : window.getComponentOrientation().isLeftToRight();
}

代码示例来源:origin: org.java.net.substance/substance

boolean leftToRight = (window == null) ? rootPane
    .getComponentOrientation().isLeftToRight() : window
    .getComponentOrientation().isLeftToRight();

代码示例来源:origin: com.github.insubstantial/substance

boolean leftToRight = (window == null) ? rootPane
    .getComponentOrientation().isLeftToRight() : window
    .getComponentOrientation().isLeftToRight();

代码示例来源:origin: com.fifesoft/languagesupport

ComponentOrientation o = parent.getComponentOrientation();
JPanel contentPane = new JPanel(new BorderLayout());
contentPane.setBorder(TipUtil.getToolTipBorder());

代码示例来源:origin: net.sf.squirrel-sql.thirdparty-non-maven/napkinlaf

window.getComponentOrientation().isLeftToRight();
boolean isSelected = window == null || window.isActive();
int width = getWidth();

代码示例来源:origin: net.sf.squirrel-sql.thirdparty-non-maven/napkinlaf

public void layoutContainer(Container c) {
  boolean leftToRight = (window == null) ?
      getRootPane().getComponentOrientation().isLeftToRight() :
      window.getComponentOrientation().isLeftToRight();

代码示例来源:origin: com.github.insubstantial/substance

boolean leftToRight = (window == null) ? rootPane
    .getComponentOrientation().isLeftToRight() : window
    .getComponentOrientation().isLeftToRight();
int width = this.getWidth();
int height = this.getHeight();

代码示例来源:origin: org.java.net.substance/substance

boolean leftToRight = (window == null) ? rootPane
    .getComponentOrientation().isLeftToRight() : window
    .getComponentOrientation().isLeftToRight();
int width = this.getWidth();
int height = this.getHeight();

代码示例来源:origin: net.sf.squirrel-sql.thirdparty-non-maven/toniclf

(window == null)
  ? getRootPane().getComponentOrientation().isLeftToRight()
  : window.getComponentOrientation().isLeftToRight();

代码示例来源:origin: org.java.net.substance/substance

public void layoutContainer(Container c) {
  boolean leftToRight = (SubstanceTitlePane.this.window == null) ? SubstanceTitlePane.this
      .getRootPane().getComponentOrientation().isLeftToRight()
      : SubstanceTitlePane.this.window.getComponentOrientation()
          .isLeftToRight();

代码示例来源:origin: com.github.insubstantial/substance

boolean leftToRight = (SubstanceTitlePane.this.window == null) ? SubstanceTitlePane.this
    .getRootPane().getComponentOrientation().isLeftToRight()
    : SubstanceTitlePane.this.window.getComponentOrientation()
        .isLeftToRight();

相关文章

Window类方法