<ctab-folder> and <ctab-item>

Creates CTabFolder and CTabItem.
Example :
 

<?xml version="1.0" encoding="UTF-8"?>
<shell text="CTabFolder example" style="SWT.SHELL_TRIM">

	<fill-layout />
	<ctab-folder simple="false">
		<composite id="comp1">

			<text text="This is CTabFolder Test" style="SWT.BORDER | SWT.MULTI" />
		</composite>
		<composite id="comp2">

	        <label text="label test" style="SWT.BORDER" />
			<label text="label test2" style="SWT.BORDER" />	 
		</composite> 
			<ctab-item text="tab 1" _control="comp1" style="SWT.CLOSE" _font-id="arial12" />

		 	<ctab-item text="tab 2" _control="comp2" _image-id="img-sample" />  
		<!-- Select second Tab -->

		<select>1</select>
		</ctab-folder>
</shell>
 
 
CTabBar