super.paint(g);
final Graphics2D graphics = (Graphics2D) g.create();
graphics.setColor(GuiResources.HIGHLIGHT_COLOR_DARKER);
GuiUtil.configureGraphics(graphics);
graphics.setFont(getFont().deriveFont(Font.BOLD, 33f));
graphics.rotate(.3);
graphics.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER, .7f));
final String str = "Work in progress ...";
final int strWidth = SwingUtilities.computeStringWidth(getFontMetrics(getFont()), str);
graphics.drawString(str, getSize().width / 2 - strWidth / 2, 10);
graphics.dispose();