[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
|
[news.eclipse.platform.swt] Re: Combos in menu
|
- From: jed@xxxxxxxxxxxxxxx (Jed)
- Date: Thu, 9 Jun 2005 19:51:39 +0000 (UTC)
- Newsgroups: eclipse.platform.swt
- Organization: not organized
- User-agent: NewsPortal/0.36 (http://florian-amrhein.de/newsportal)
Hey Mark,
In order to change the length of the widget, just modify the default method
computeWidth in the AddressEntry. Its length at default is 350.
protected int computeWidth(Control control) {
System.out.println(control.getLayoutData());
return control.computeSize(350, SWT.DEFAULT, true).x;
}