當前位置: 首頁>>代碼示例>>Java>>正文


Java Control.setVisible方法代碼示例

本文整理匯總了Java中org.eclipse.swt.widgets.Control.setVisible方法的典型用法代碼示例。如果您正苦於以下問題:Java Control.setVisible方法的具體用法?Java Control.setVisible怎麽用?Java Control.setVisible使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.eclipse.swt.widgets.Control的用法示例。


在下文中一共展示了Control.setVisible方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: show

import org.eclipse.swt.widgets.Control; //導入方法依賴的package包/類
@Override
public void show ()
{
    logger.debug ( "Showing component" );

    for ( final Control control : this.controls )
    {
        control.setVisible ( true );
    }
}
 
開發者ID:eclipse,項目名稱:neoscada,代碼行數:11,代碼來源:TrackingVisibleComponent.java

示例2: hide

import org.eclipse.swt.widgets.Control; //導入方法依賴的package包/類
@Override
public void hide ()
{
    for ( final Control control : this.controls )
    {
        control.setVisible ( false );
    }
}
 
開發者ID:eclipse,項目名稱:neoscada,代碼行數:9,代碼來源:TrackingVisibleComponent.java

示例3: update

import org.eclipse.swt.widgets.Control; //導入方法依賴的package包/類
public void update(String currentPageId) {
	if (composite == null || composite.isDisposed())
		return;
	GC metricsGC = new GC(composite);
	FontMetrics metrics = metricsGC.getFontMetrics();
	metricsGC.dispose();
	List buttons = (List) buttonMap.get(currentPageId);
	Control[] children = composite.getChildren();

	int visibleChildren = 0;
	Button closeButton = getButton(IDialogConstants.CLOSE_ID);

	for (int i = 0; i < children.length; i++) {
		Control control = children[i];
		if (closeButton == control)
			closeButton.dispose();
		else {
			control.setVisible(false);
			setButtonLayoutData(metrics, control, false);
		}
	}
	if (buttons != null) {
		for (int i = 0; i < buttons.size(); i++) {
			Button button = (Button) buttons.get(i);
			button.setVisible(true);
			setButtonLayoutData(metrics, button, true);
			GridData data = (GridData) button.getLayoutData();
			data.exclude = false;
			visibleChildren++;
		}
	}

	GridLayout compositeLayout = (GridLayout) composite.getLayout();
	compositeLayout.numColumns = visibleChildren;
	composite.layout(true);
}
 
開發者ID:capitalone,項目名稱:Hydrograph,代碼行數:37,代碼來源:HydrographInstallationDialog.java

示例4: addPages

import org.eclipse.swt.widgets.Control; //導入方法依賴的package包/類
public void addPages() {
	super.addPages();

	mainPage = new NewJavaProjectWizardPageOne() {
		public void createControl(Composite parent) {
			initializeDialogUnits(parent);

			Composite composite = new Composite(parent, SWT.NULL);
			composite.setFont(parent.getFont());
			composite.setLayout(new GridLayout(1, false));
			composite.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_FILL));

			// create UI elements
			Control nameControl = createNameControl(composite);
			nameControl.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));

			Control jreControl = createJRESelectionControl(composite);
			jreControl.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));

			Control workingSetControl = createWorkingSetControl(composite);
			workingSetControl.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
			workingSetControl.setVisible(false);

			Control infoControl = createInfoControl(composite);
			infoControl.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
			infoControl.setVisible(false);

			setControl(composite);
		}

		public IClasspathEntry[] getSourceClasspathEntries() {
			return  GW4ENature.getSourceClasspathEntries(getProjectName());
		}

		public IPath getOutputLocation() {
			return GW4ENature.getOutputLocation(getProjectName());
		}
	};

	addPage(mainPage);
	javaPage = new NewJavaProjectWizardPageTwo(mainPage);
	addPage(javaPage);
	List<TemplateProvider>  templates = TemplateProvider.getTemplates();
	fExtraPage = new GW4ETemplatePage(this,templates,false);
	addPage(fExtraPage);
	fMavenPage = new MavenTemplatePage(this);
	addPage(fMavenPage);
}
 
開發者ID:gw4e,項目名稱:gw4e.project,代碼行數:49,代碼來源:GW4ECreationWizard.java


注:本文中的org.eclipse.swt.widgets.Control.setVisible方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。