Tagged Questions
6
votes
5answers
185 views
find out if text of JLabel exceeds label size
In java when the text of the JLabel could not be displayed due to lack of space the text is truncated and "..." is added in the end.
How can I easily find out if currently JLabel displays full text ...
5
votes
2answers
262 views
Java Swing getSize() returns inaccurate value?
To put this most simply, I am trying to use the width of a component to set the size of its parent container. However the width being returned for the component is off by about 4 pixels.
More ...
1
vote
1answer
508 views
Java Stopping JApplet Components from Resizing based on Applet Size
Creating a JApplet I have 2 Text Fields, a button and a Text Area.
private JPanel addressEntryPanel = new JPanel(new GridLayout(1,3));
private JPanel outputPanel = new JPanel(new GridLayout(1,1));
...
1
vote
2answers
871 views
JTextArea - very small size with long text
I'm using a JTextArea to display a long text
JTextArea _definition = new JTextArea(5, 50);
with word-wrap
_definition.setLineWrap(true);
_definition.setWrapStyleWord(true);
embedded in a ...
0
votes
2answers
126 views
Opening a new jframe with the same properties as the closed one
How can I have the newly open jframe have the same properties like Size and position on screen. Thanks