The listener interface for receiving component events

learn more… | top users | synonyms

0
votes
2answers
73 views

Java ComponentResized - Detect whether user resized the window or it was resized programatically

I have a JFrame in which I remove and add components and each time I do this, I resize the frame accordingly. I added a Component Listener but of course it gets triggered both by the user resizing the ...
0
votes
1answer
56 views

java JFrame resize

I have the following code segment in my project. someJFrame.addComponentListener(new ComponentAdapter(){ public void componentResized(ComponentEvent e) { pane.resize(new ...
0
votes
1answer
34 views

How to know if a component is moved relative to the screen (not relative to its parent)?

I have a component in a JFrame and I need to know when the component is moved relative to the screen space. It happens either when the frame is moved, either when the layout is changed. My problem: ...
3
votes
3answers
67 views

Is there a way to get notification when JComponent is not visible anymore beucase parent is removed from collection?

Say I have a simple JFrame with a JTabbedPane containing 3 panels, and the second panel contains a JComponent. Is there a way the JComponent to be notified when "Tab 2" panel is removed from its ...
0
votes
1answer
97 views

Problems with java swing component listener

I'm creating a GUI in netbeans and am attempting to make it so that the components stay properly aligned when the frame is resized, minimized, maximized, etc. I've added a component listener to do ...
0
votes
1answer
84 views

Trigger the change of `JFrame` size: JAVA [duplicate]

Possible Duplicate: Java AWT/Swing: Get notified on change of position/size of my window Is there an event for JFrame size changing? I tried addWindowStateListener(new ...
1
vote
1answer
98 views

Any alternatives to the componentResized method in ComponentAdapter

When I implement the code below, the method is only called when the user releases the mouse after resizing a frame. I want a method that is called continuously as the user is resizing the frame. What ...
6
votes
3answers
772 views

Swing: resizing a JFrame like Frames in Linux e.g

I would like to know if theres a possibility to implement the resizing of a JFrame in that manner, that it's been resized like for example the standart windows in linux. To be more precise: If the ...
2
votes
1answer
186 views

detect drag of jframe

Is there a way to detect the position of a JFrame while it's dragged? The problem is that on MAX OS X the position of a window updates when you stop moving the mouse. I saw a tip of calculating the ...
0
votes
1answer
144 views

Question about JInternalFrames

I have a frame that once it's minimized, I'd like to minimize other frames related to it. If the frame is no longer minimized, I want to restore the other frames too. How should I go about doing this? ...