本文整理汇总了Java中org.eclipse.swt.custom.CTabFolder类的典型用法代码示例。如果您正苦于以下问题:Java CTabFolder类的具体用法?Java CTabFolder怎么用?Java CTabFolder使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
CTabFolder类属于org.eclipse.swt.custom包,在下文中一共展示了CTabFolder类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createPartControl
import org.eclipse.swt.custom.CTabFolder; //导入依赖的package包/类
/**
* Create contents of the editor part.
* @param parent
*/
@Override
@PostConstruct
public void createPartControl(Composite parent) {
this.sashForm = new SashForm(parent, SWT.NONE);
this.treeViewer = new TreeViewer(this.sashForm, SWT.BORDER);
this.tree = this.treeViewer.getTree();
this.tabFolder = new CTabFolder(this.sashForm, SWT.BORDER);
this.tabFolder.setTabPosition(SWT.BOTTOM);
this.tabFolder.setSelectionBackground(Display.getCurrent().getSystemColor(SWT.COLOR_TITLE_INACTIVE_BACKGROUND_GRADIENT));
this.tabItem = new CTabItem(this.tabFolder, SWT.NONE);
this.tabItem.setText("New Item");
this.tabItem_1 = new CTabItem(this.tabFolder, SWT.NONE);
this.tabItem_1.setText("New Item");
this.sashForm.setWeights(new int[] { 3, 10 });
}
示例2: createTabFolder
import org.eclipse.swt.custom.CTabFolder; //导入依赖的package包/类
private void createTabFolder ( final Composite parent )
{
this.tabFolder = new CTabFolder ( parent, SWT.TOP );
this.tabFolder.setLayoutData ( new GridData ( GridData.FILL, GridData.FILL, true, true ) );
for ( final GeneratorPageInformation page : this.pages )
{
final CTabItem tabItem = new CTabItem ( this.tabFolder, SWT.NONE );
final Composite tabComposite = new Composite ( this.tabFolder, SWT.NONE );
tabComposite.setLayout ( new FillLayout () );
page.getGeneratorPage ().createPage ( tabComposite );
tabItem.setText ( page.getLabel () );
tabItem.setControl ( tabComposite );
page.getGeneratorPage ().setTarget ( this );
}
this.tabFolder.setSelection ( 0 );
}
示例3: open
import org.eclipse.swt.custom.CTabFolder; //导入依赖的package包/类
/**
* Setup the Disk window and display (open) it.
*/
public void open() {
shell = new Shell(parentShell, SWT.SHELL_TRIM);
shell.setLayout(new FillLayout());
shell.setImage(imageManager.get(ImageManager.ICON_DISK));
setStandardWindowTitle();
shell.addDisposeListener(new DisposeListener() {
public void widgetDisposed(DisposeEvent event) {
dispose(event);
}
});
CTabFolder tabFolder = new CTabFolder(shell, SWT.BOTTOM);
new DiskExplorerTab(tabFolder, disks, imageManager, this);
diskMapTabs = new DiskMapTab[disks.length];
for (int i=0; i<disks.length; i++) {
if (disks[i].supportsDiskMap()) {
diskMapTabs[i] = new DiskMapTab(tabFolder, disks[i]);
}
}
diskInfoTab = new DiskInfoTab(tabFolder, disks);
tabFolder.setSelection(tabFolder.getItems()[0]);
shell.open();
}
示例4: addTabFolderToPropertyWindow
import org.eclipse.swt.custom.CTabFolder; //导入依赖的package包/类
/**
* Adds the tab folder to property window.
*
* @return the tab folder
*/
public CTabFolder addTabFolderToPropertyWindow(){
CTabFolder tabFolder = new CTabFolder(container, SWT.NONE);
GridData tabFolderGridData = new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1);
tabFolder.setLayoutData(tabFolderGridData);
tabFolder.addListener(SWT.FOCUSED,getMouseClickListener() );
container.addControlListener(new ControlAdapter() {
@Override
public void controlResized(ControlEvent e) {
tabFolderGridData.heightHint = container.getBounds().height - 500;
}
});
tabFolder.addListener(SWT.FOCUSED,getMouseClickListener() );
return tabFolder;
}
示例5: hideTabs
import org.eclipse.swt.custom.CTabFolder; //导入依赖的package包/类
/**
* If there is just one page in the multi-page editor part,
* this hides the single tab at the bottom.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void hideTabs() {
if (getPageCount() <= 1) {
setPageText(0, "");
if (getContainer() instanceof CTabFolder) {
((CTabFolder)getContainer()).setTabHeight(1);
Point point = getContainer().getSize();
getContainer().setSize(point.x, point.y + 6);
}
}
}
示例6: showTabs
import org.eclipse.swt.custom.CTabFolder; //导入依赖的package包/类
/**
* If there is more than one page in the multi-page editor part,
* this shows the tabs at the bottom.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void showTabs() {
if (getPageCount() > 1) {
setPageText(0, getString("_UI_SelectionPage_label"));
if (getContainer() instanceof CTabFolder) {
((CTabFolder)getContainer()).setTabHeight(SWT.DEFAULT);
Point point = getContainer().getSize();
getContainer().setSize(point.x, point.y - 6);
}
}
}
示例7: hideTabs
import org.eclipse.swt.custom.CTabFolder; //导入依赖的package包/类
/**
* If there is just one page in the multi-page editor part,
* this hides the single tab at the bottom.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void hideTabs() {
if (getPageCount() <= 1) {
setPageText(0, "");
if (getContainer() instanceof CTabFolder) {
((CTabFolder)getContainer()).setTabHeight(1);
Point point = getContainer().getSize();
getContainer().setSize(point.x, point.y + 6);
}
}
}
示例8: showTabs
import org.eclipse.swt.custom.CTabFolder; //导入依赖的package包/类
/**
* If there is more than one page in the multi-page editor part,
* this shows the tabs at the bottom.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void showTabs() {
if (getPageCount() > 1) {
setPageText(0, getString("_UI_SelectionPage_label"));
if (getContainer() instanceof CTabFolder) {
((CTabFolder)getContainer()).setTabHeight(SWT.DEFAULT);
Point point = getContainer().getSize();
getContainer().setSize(point.x, point.y - 6);
}
}
}
示例9: hideTabs
import org.eclipse.swt.custom.CTabFolder; //导入依赖的package包/类
/**
* If there is just one page in the multi-page editor part,
* this hides the single tab at the bottom.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void hideTabs ()
{
if ( getPageCount () <= 1 )
{
setPageText ( 0, "" ); //$NON-NLS-1$
if ( getContainer () instanceof CTabFolder )
{
( (CTabFolder)getContainer () ).setTabHeight ( 1 );
Point point = getContainer ().getSize ();
getContainer ().setSize ( point.x, point.y + 6 );
}
}
}
示例10: hideTabs
import org.eclipse.swt.custom.CTabFolder; //导入依赖的package包/类
/**
* If there is just one page in the multi-page editor part,
* this hides the single tab at the bottom.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
protected void hideTabs ()
{
if ( getPageCount () <= 1 )
{
setPageText ( 0, "" ); //$NON-NLS-1$
if ( getContainer () instanceof CTabFolder )
{
( (CTabFolder)getContainer () ).setTabHeight ( 1 );
final Point point = getContainer ().getSize ();
getContainer ().setSize ( point.x, point.y + 6 );
}
}
}
示例11: showTabs
import org.eclipse.swt.custom.CTabFolder; //导入依赖的package包/类
/**
* If there is more than one page in the multi-page editor part,
* this shows the tabs at the bottom.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
protected void showTabs ()
{
if ( getPageCount () > 1 )
{
setPageText ( 0, getString ( "_UI_SelectionPage_label" ) ); //$NON-NLS-1$
if ( getContainer () instanceof CTabFolder )
{
( (CTabFolder)getContainer () ).setTabHeight ( SWT.DEFAULT );
final Point point = getContainer ().getSize ();
getContainer ().setSize ( point.x, point.y - 6 );
}
}
}
示例12: FilterAdvancedComposite
import org.eclipse.swt.custom.CTabFolder; //导入依赖的package包/类
public FilterAdvancedComposite ( final FilterChangedListener filterChangedListener, final Composite parent, final int style )
{
// fields
super ( parent, style );
// widgets
this.tabFolder = new CTabFolder ( this, SWT.TOP | SWT.BORDER | SWT.CLOSE );
this.addOrConditionButton = creteAddOrConditionButton ();
addOrCondition ();
// layout
final GridLayout layout = new GridLayout ( 1, true );
layout.marginLeft = 6;
layout.marginRight = 6;
layout.marginTop = 6;
layout.marginBottom = 6;
layout.verticalSpacing = 12;
this.setLayout ( layout );
final GridData tabFolderLayoutData = new GridData ();
tabFolderLayoutData.horizontalAlignment = GridData.FILL;
tabFolderLayoutData.grabExcessHorizontalSpace = true;
tabFolderLayoutData.verticalAlignment = GridData.FILL;
tabFolderLayoutData.grabExcessVerticalSpace = true;
this.tabFolder.setLayoutData ( tabFolderLayoutData );
this.tabFolder.setBackgroundMode ( SWT.INHERIT_FORCE );
final GridData addOrConditionButtonLayoutdata = new GridData ();
addOrConditionButtonLayoutdata.horizontalAlignment = GridData.END;
this.addOrConditionButton.setLayoutData ( addOrConditionButtonLayoutdata );
}
示例13: showTabs
import org.eclipse.swt.custom.CTabFolder; //导入依赖的package包/类
/**
* If there is more than one page in the multi-page editor part,
* this shows the tabs at the bottom.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void showTabs ()
{
if ( getPageCount () > 1 )
{
setPageText ( 0, getString ( "_UI_SelectionPage_label" ) ); //$NON-NLS-1$
if ( getContainer () instanceof CTabFolder )
{
( (CTabFolder)getContainer () ).setTabHeight ( SWT.DEFAULT );
Point point = getContainer ().getSize ();
getContainer ().setSize ( point.x, point.y - 6 );
}
}
}
示例14: EclipseTabProvider
import org.eclipse.swt.custom.CTabFolder; //导入依赖的package包/类
public EclipseTabProvider ( final Composite parent )
{
this.folder = new CTabFolder ( parent, SWT.TOP | SWT.FLAT | SWT.BORDER );
this.folder.setTabHeight ( 24 );
this.folder.setLayoutData ( new GridData ( SWT.FILL, SWT.FILL, true, true ) );
this.mgr = new MenuManager ();
final Menu menu = this.mgr.createContextMenu ( this.folder );
this.folder.setMenu ( menu );
}
示例15: hideTabs
import org.eclipse.swt.custom.CTabFolder; //导入依赖的package包/类
/**
* If there is just one page in the multi-page editor part,
* this hides the single tab at the bottom.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void hideTabs ()
{
if ( getPageCount () <= 1 )
{
setPageText ( 0, "" );
if ( getContainer () instanceof CTabFolder )
{
( (CTabFolder)getContainer () ).setTabHeight ( 1 );
Point point = getContainer ().getSize ();
getContainer ().setSize ( point.x, point.y + 6 );
}
}
}