javax.swing.JSplitPane.isOneTouchExpandable()方法的使用及代码示例

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

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

JSplitPane.isOneTouchExpandable介绍

暂无

代码示例

代码示例来源:origin: com.eas.platypus/platypus-js-forms

@ScriptFunction(jsDoc = ONE_TOUCH_EXPANDABLE_JSDOC)
@Designable(category = "split")
@Override
public boolean isOneTouchExpandable() {
  return super.isOneTouchExpandable();
}

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

if (splitPane.isOneTouchExpandable() && leftButton != null) {
  buttonMinSize = leftButton.getMinimumSize();

代码示例来源:origin: khuxtable/seaglass

if (splitPane.isOneTouchExpandable() && leftButton != null) {
  buttonMinSize = leftButton.getMinimumSize();

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

if (splitPane.isOneTouchExpandable() && centerOneTouchButtons) {
  int centerY = height / 2;
  int x = (width - horBumps.getIconWidth()) / 2 + dx;
if (splitPane.isOneTouchExpandable() && centerOneTouchButtons) {
  int centerX = width / 2;
  int x = centerX - verBumps.getIconWidth() - 40;

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

g2D.setComposite(alpha);
if (splitPane.isOneTouchExpandable() && centerOneTouchButtons) {
  int centerY = height / 2;
  int x = (width - horBumps.getIconWidth()) / 2 + dx;
AlphaComposite alpha = AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 0.7f);
g2D.setComposite(alpha);
if (splitPane.isOneTouchExpandable() && centerOneTouchButtons) {
  int centerX = width / 2;
  int x = centerX - verBumps.getIconWidth() - 40;

代码示例来源:origin: net.sf.tinylaf/tinylaf

if(splitPane.isOneTouchExpandable()) {
  if(orientation == JSplitPane.VERTICAL_SPLIT) {
    int extraY = (insets != null) ? insets.top : 0;

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

protected void oneTouchExpandableChanged()
{
  super.oneTouchExpandableChanged();
  
  if(ui.getSplitPane()!=null && ui.getSplitPane().isOneTouchExpandable())
    setDividerSize(oneTouchSize);
  else
    setDividerSize(standardSize);
}

代码示例来源:origin: khuxtable/seaglass

if (leftButton != null && rightButton != null && c == SeaGlassSplitPaneDivider.this) {
  if (splitPane.isOneTouchExpandable()) {
    Insets insets = getInsets();

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

public void layoutContainer(Container c) {
  if (leftButton != null && rightButton != null && c == BaseSplitPaneDivider.this) {
    if (splitPane.isOneTouchExpandable()) {
      Insets insets = getInsets();
      int blockSize = 11;

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

if(splitPane.isOneTouchExpandable())

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

Dimension rightSize = rightButton.getPreferredSize();
if (splitPane.isOneTouchExpandable()) {
 Insets insets = getInsets();
 if (insets == null) {

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

if (leftButton != null && rightButton != null
    && c == SubstanceSplitPaneDivider.this) {
  if (splitPane.isOneTouchExpandable()) {
    Insets insets = getInsets();

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

if (leftButton != null && rightButton != null
    && c == SubstanceSplitPaneDivider.this) {
  if (splitPane.isOneTouchExpandable()) {
    Insets insets = getInsets();

相关文章

JSplitPane类方法