[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Newsgroup Home]
|
[news.eclipse.platform.swt] Group some Text in a TabFolder
|
- From: jhoule@xxxxxxxxxxxx (John)
- Date: Thu, 7 Jul 2005 20:57:45 +0000 (UTC)
- Newsgroups: eclipse.platform.swt
- Organization: not organized
- User-agent: NewsPortal/0.36 (http://florian-amrhein.de/newsportal)
I have have muliple TabFolders, one in particular has 14 Text objects in a
Composite.
I want to Group some of these Text's and also use CoolBars inside one of
these TabFolders. Here is some of the code as it stands now:
tabComp1 = new Composite(tabFolder, SWT.BORDER);
tabAnalogVars = new TabItem(tabFolder, SWT.BORDER);
gridAnaSet = new GridLayout();
InvDCVoltage1Value = new Text(tabComp1, SWT.BORDER);
GridData gridDataAnaVDC1 = new GridData(GridData.VERTICAL_ALIGN_BEGINNING);
InvDCVoltage1Value.setLayoutData(gridDataAnaVDC1);
tabCompSel2.setLayout(gridAnaSet);
tabAnalogVars.setControl(tabComp1);
How can this be done?