javax.swing.JComponent.reshape()方法的使用及代码示例

x33g5p2x  于2022-01-21 转载在 其他  
字(2.2k)|赞(0)|评价(0)|浏览(98)

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

JComponent.reshape介绍

暂无

代码示例

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

/** Overridden to flag that a layout needs to be performed.  This is
 * needed since the component may be painted without a parent, so
 * invalidate will not do anything */
public void reshape (int x, int y, int w, int h) {
  super.reshape(x,y,w,h);
  needLayout = true;
}

代码示例来源:origin: org.netbeans.api/org-openide-explorer

/** Overridden to flag that a layout needs to be performed.  This is
 * needed since the component may be painted without a parent, so
 * invalidate will not do anything */
@SuppressWarnings("deprecation")
public void reshape(int x, int y, int w, int h) {
  super.reshape(x, y, w, h);
  needLayout = true;
}

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

/** Overridden to flag that a layout needs to be performed.  This is
 * needed since the component may be painted without a parent, so
 * invalidate will not do anything */
public void reshape (int x, int y, int w, int h) {
  super.reshape(x,y,w,h);
  needLayout = true;
}

代码示例来源:origin: JetBrains/jediterm

@SuppressWarnings("deprecation")
public static void setComboBoxEditorBounds(int x, int y, int width, int height, JComponent editor) {
  if (SystemInfo.isMac && isUnderAquaLookAndFeel()) {
    // fix for too wide combobox editor, see AquaComboBoxUI.layoutContainer:
    // it adds +4 pixels to editor width. WTF?!
    editor.reshape(x, y, width - 4, height - 1);
  } else {
    editor.reshape(x, y, width, height);
  }
}

代码示例来源:origin: org.netbeans.api/org-openide-explorer

@SuppressWarnings("deprecation")
public void reshape(int x, int y, int w, int h) {
  if (inner != null) {
    inner.setBounds(0, 0, w, h);
  }
  super.reshape(x, y, w, h);
}

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

public void reshape(int x, int y, int w, int h) {
  if (inner != null) {
    inner.setBounds(0,0, w,h);
  }
  super.reshape(x,y,w,h);
}

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

public void reshape(int x, int y, int w, int h) {
  if (inner != null) {
    inner.setBounds(0,0, w,h);
  }
  super.reshape(x,y,w,h);
}

代码示例来源:origin: org.fudaa.framework.ctulu/ctulu-bu

public void reshape(int _x,int _y,int _w,int _h)
 super.reshape(_x,_y,_w,_h);

相关文章

JComponent类方法