[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.platform.swt] Group some Text in a TabFolder

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?