DevX Home    Today's Headlines   Articles Archive   Tip Bank   Forums   

+ Reply to Thread
Results 1 to 3 of 3

Hybrid View

  1. #1
    Join Date
    Apr 2006
    Posts
    2

    Detecting Dynamic Resizing of a window in real time

    Is there some kind of a window listener with a method that can return the size of a jframe constantly during runtime so if a resize happens you can manipulate other things in the program accordingly. I have a simple program with circles bouncing around and i want to make it so if i resize the jframe (while viewing it with jcreators applet viewer) that i can resize the boundaries of where the circles can bounce to. - Sorry if thats confusing.

    Thanks -

  2. #2
    Join Date
    Feb 2006
    Location
    Cologne - Germany
    Posts
    271
    yes there is. you will have to add a componentlistener to your frame:


    Code:
    frame.addComponentListener(
    	new ComponentListener(){
    		public void componentResized(ComponentEvent e){
    			System.out.println("*FRAME: component resized");
    			Dimension size = frame.getSize();
    			doSomething();
    		}
    				
    		public void componentMoved(ComponentEvent e) {
    			System.out.println("*FRAME: component moved");
    			Point location = frame.getLocation();
    		}
    
    		public void componentHidden(ComponentEvent e) {}
    		public void componentShown(ComponentEvent e) {}
    	}
    );
    this will enable you to trace: resizing, moving, hiding and showing of your frame.

  3. #3
    Join Date
    Apr 2006
    Posts
    2
    Thanks a lot, I appreciate your help. Worked perfect.

Similar Threads

  1. query tuning
    By dhaya in forum Database
    Replies: 11
    Last Post: 08-25-2003, 05:24 PM
  2. Replies: 3
    Last Post: 08-02-2002, 12:11 PM
  3. Real time data-binding
    By Andrew Ball in forum ASP.NET
    Replies: 0
    Last Post: 10-25-2001, 01:51 AM
  4. Real time updates
    By lilbit29831 in forum Web
    Replies: 1
    Last Post: 10-05-2001, 09:18 AM
  5. Disabling MDI Form window resizing
    By John Nelson in forum VB Classic
    Replies: 0
    Last Post: 08-22-2000, 10:54 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
HTML5 Development Center
 
 
FAQ
Latest Articles
Java
.NET
XML
Database
Enterprise
Questions? Contact us.
C++
Web Development
Wireless
Latest Tips
Open Source


Top DevX Stories

Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL


Sponsored Links