Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

15
LINES

< > BotCompany Repo | #1019419 // setSplitPaneOnFirstShowing

JavaX fragment (include) [tags: use-pretranspiled]

Libraryless. Click here for Pure Java version (3230L/19K).

static JSplitPane setSplitPaneOnFirstShowing(Component c, double value, int delay default 0) {
  final JSplitPane sp = first(childrenOfType(c, JSplitPane.class));
  if (sp != null)
    onFirstResize(sp, r {
      ifdef setSplitPaneOnFirstShowing_debug
        printVars setSplitPaneOnFirstShowing(+c, +value, size := c.getSize());
      endifdef
      if (delay == 0)
        sp.setDividerLocation(value);
      else awtLater(delay, r {
        sp.setDividerLocation(value);
      });
    });
  ret sp;
}

Author comment

Began life as a copy of #1007235

download  show line numbers  debug dex  old transpilations   

Travelled to 12 computer(s): bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, irmadwmeruwu, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1019419
Snippet name: setSplitPaneOnFirstShowing
Eternal ID of this version: #1019419/9
Text MD5: ed556fdb9db319817a23f738b57d62b0
Transpilation MD5: 27df9207cf4b7ae0ff524bd2a711100f
Author: stefan
Category: javax / gui
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2021-03-28 16:01:24
Source code size: 518 bytes / 15 lines
Pitched / IR pitched: No / No
Views / Downloads: 280 / 356
Version history: 8 change(s)
Referenced in: [show references]