I'm using Flamingo/Substance in a Swing application and can't figure out a simple way to affect the text color for a JCommandButton. Explicitly setting the foreground color seems to have no effect:

JCommandButton button = new JCommandButton("Button");
button.setForeground(Color.red);

Do I have to extend JCommandButton to do this? If so, how do I override this behavior? Thanks.

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

I'm not sure if this is the preferred way of doing it, but I ended up extending the delegate to get the result I wanted:

class CustomCommandButtonUI extends BasicCommandButtonUI {
  @Override
  protected Color getForegroundColor(boolean isTextPaintedEnabled) {
    return Color.red;
  }
}
link|improve this answer
Sorry, been on vacation and work deadlines and such. Yes, this is currently how you must override the text color of a command button. This sounds like an excellent RFE: github.com/insubstantial/insubstantial/issues – shemnon Aug 29 '11 at 15:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.