[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.platform.rcp] Re: Resizable ControlContribution like AddressBar?

I have tried to make this ControlContribution Resizable by overriding comuteWidth(Control) and called that method in my listener where i'm handling resize events.

 @Override
protected int computeWidth (Control control)
{
int w = control.computeSize(control.getBounds().width, control.getBounds().height, false).x;
return w;
}

once it is changing the size but at the just next second it is again comming to default position.

so can u help me how can i make it resizable

Thanks in advance
Kanchan