Search Results

0
votes

Changing java lookandfeel without modifying the application

If your final goal is native look and feel for each target OS, you can look at SWT. This will provide OS native widgets which will change a …
1
vote

Can Swing tell me if there is an active tooltip?

It appears that the isEnabled() property of the hideTipAction is directly tied to the tipShowing boolean. You could try this: public boolean isTooltipShowing(JComponent component) …
1
vote

Changing locale at runtime in Swing

You may want to save the language preference out, and then require a restart of the app for changes to take effect. Then, you should be able to use Locale.setDefault(Locale.<desire …
1
vote

Testing whether a Font is monospaced in Java

Probably not applicable for your case, but if you simply want to set the font to a monospaced font, use the logical font name: Font mono = new Font("Monospaced", Font.PLAIN, 12); …
0
votes

Implementing a log viewer GUI with C# (or java)

I've implemented something similar using a …