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

31
LINES

< > BotCompany Repo | #1023016 // screenTextOverlay_withOutline - single row only, doesn't hide automatically

JavaX fragment (include)

static JWindow screenTextOverlay_withOutline(fS text, O... _) {
  ret swing(func -> JWindow {
    new JWindow w;
    w.setAlwaysOnTop(true);
    w.setVisible(true);
    
    Font font = cast optPar font(_);
    if (font == null)
      font = w.getFont().deriveFont(boolPar bold(_, true) ? Font.BOLD : Font.PLAIN, optPar fontSize(_, 80));
    TextLayout tl = newTextLayout(text, font, w);
    Rectangle2D r = tl.getBounds();
    new AffineTransform tx;
    tx.translate(0, r.getHeight());
    Shape outline = tl.getOutline(tx);
    
    float outlineWidth = optPar outlineWidth(_, 4.0f);
    JComponent c = dynamicallyPaintedComponent(voidfunc(Graphics2D g, int w, int h) {
      fillRect(g, 0, 0, w, h, optPar color(_, Color.WHITE));
      g.setColor(Color.black);
      g.setStroke(new BasicStroke(outlineWidth);
      antiAliasOn(g);
      g.draw(outline);
    });
    w.add(c);

    centerWindow(w, iceil(r.getWidth()+optPar magicXMargin(_, 10)), 
      iceil(r.getHeight()+optPar magicYMargin(_, 10)));
    w.setShape(outline);
    ret w;
  });
}

Author comment

Began life as a copy of #1023014

download  show line numbers  debug dex  old transpilations   

Travelled to 7 computer(s): bhatertpkbcr, cfunsshuasjs, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1023016
Snippet name: screenTextOverlay_withOutline - single row only, doesn't hide automatically
Eternal ID of this version: #1023016/13
Text MD5: 27c1af0043744b3d46bf322602c9d890
Author: stefan
Category: javax / gui
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2019-04-30 20:40:34
Source code size: 1080 bytes / 31 lines
Pitched / IR pitched: No / No
Views / Downloads: 185 / 249
Version history: 12 change(s)
Referenced in: [show references]