本文整理匯總了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 );
}
}
示例2: hide
import org.eclipse.swt.widgets.Control; //導入方法依賴的package包/類
@Override
public void hide ()
{
for ( final Control control : this.controls )
{
control.setVisible ( false );
}
}
示例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);
}
示例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);
}