本文整理汇总了Java中org.eclipse.jface.window.Window.getDefaultOrientation方法的典型用法代码示例。如果您正苦于以下问题:Java Window.getDefaultOrientation方法的具体用法?Java Window.getDefaultOrientation怎么用?Java Window.getDefaultOrientation使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.eclipse.jface.window.Window
的用法示例。
在下文中一共展示了Window.getDefaultOrientation方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createComponent
import org.eclipse.jface.window.Window; //导入方法依赖的package包/类
protected void createComponent() {
GridLayout layout = new GridLayout(2,false);
layout.marginHeight = 0;
layout.marginWidth = 0;
setLayout(layout);
ftext = new Text(this, SWT.BORDER);
ftext.setText("");
setWidth(this, 15);
ftext.setEnabled(false);
ftext.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
btn = new Button(this, SWT.PUSH | SWT.FLAT | Window.getDefaultOrientation());
btn.setText("...");
btn.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
ParameterEditor wizard = new ParameterEditor();
wizard.setValue(parameterDTO);
wizard.setExpressionContext(getExpressionContext());
WizardDialog dialog = new WizardDialog(ftext.getShell(), wizard);
dialog.create();
if (dialog.open() == Dialog.OK){
pNode.setPropertyValue(propertyId, wizard.getValue());
if (adapter != null) adapter.widgetSelected(e);
}
}
});
}
示例2: createButton
import org.eclipse.jface.window.Window; //导入方法依赖的package包/类
@Override
public Button createButton(Composite parent, String text, int style) {
Button button = new Button(parent, style | SWT.FLAT | Window.getDefaultOrientation());
if (text != null)
button.setText(text);
return button;
}
开发者ID:OpenSoftwareSolutions,项目名称:PDFReporter-Studio,代码行数:8,代码来源:TabbedPropertySheetWidgetFactory.java