vote up 1 vote down star

I would like to have a Java component which has a resize icon on the bottom right of the component so that when I drag that icon, the component will automatically resize with it.

By resize icon, I mean the following:

resize icon in Google Talk

The above image contains the resize icon in the Google Talk messenger's main window. Is there any Java component which provides this facility?

flag

73% accept rate

3 Answers

vote up 1 vote down check

You will find in this article how to add an icon looking like the resize icon you are referring to.

alt text PixelPushing

alt text

link|flag
vote up 0 vote down

the JStatusBar ?

link|flag
I have not seen a java component called JStatusBar. Was that added after Java 1.4? – Shree Nov 4 '08 at 10:30
vote up 0 vote down

ummm putting an image there is not hard... the resizing is. you'll want to use (once you have some sort of button) code like this:

private void buttonMousePressed(java.awt.event.MouseEvent evt) {
        sx = evt.getX();
        sy = evt.getY();
}

private void buttonMouseDragged(java.awt.event.MouseEvent evt) {
        if(!evt.isMetaDown()){
                Point p = getLocation();

                locX = p.x + evt.getX()-sx;
                locY = p.y + evt.getY()-sy;
                setLocation(locX, locY);
        }
}

...except instead of Setlocation you'll want to use something like setBounds or setSize... and you'll have to modify the code a bit. What I have is for dragging it, but the principle is the same.

link|flag
I have implemented the functionality using the approach given in the 'accepted answer'. I wanted to know whether if there was already a resizable java component so that I am not reinventing the wheel. :) – Shree Apr 15 at 9:21

Your Answer

Get an OpenID
or

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