本文整理汇总了Java中org.eclipse.swt.widgets.Group.setFont方法的典型用法代码示例。如果您正苦于以下问题:Java Group.setFont方法的具体用法?Java Group.setFont怎么用?Java Group.setFont使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.eclipse.swt.widgets.Group
的用法示例。
在下文中一共展示了Group.setFont方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createContent
import org.eclipse.swt.widgets.Group; //导入方法依赖的package包/类
public Control createContent(Composite composite)
{
fGroup = new Group(composite, SWT.NONE);
fGroup.setFont(composite.getFont());
fGroup.setLayout(initGridLayout(new GridLayout(3, false), true));
fGroup.setText("Registry Project");
List<IProject> projects = new ArrayList<>();
Object[] children = new JarProjectContentProvider(null).getChildren(ResourcesPlugin.getWorkspace());
for( Object object : children )
{
projects.add((IProject) object);
}
fProject.setElements(projects);
fProject.selectFirstElement();
fProject.doFillIntoGrid(fGroup, 3);
return fGroup;
}
示例2: createOptionsGroup
import org.eclipse.swt.widgets.Group; //导入方法依赖的package包/类
/**
* Create the options specification widgets.
*/
protected void createOptionsGroup(Composite parent) {
// options group
Group optionsGroup = new Group(parent, SWT.NONE);
GridLayout layout = new GridLayout();
optionsGroup.setLayout(layout);
optionsGroup.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_FILL
| GridData.GRAB_HORIZONTAL));
optionsGroup.setText(IDEWorkbenchMessages.WizardExportPage_options);
optionsGroup.setFont(parent.getFont());
createOptionsGroupButtons(optionsGroup);
}
示例3: createGroupWidget
import org.eclipse.swt.widgets.Group; //导入方法依赖的package包/类
private void createGroupWidget() {
subGroup = new Group(inputContainer, SWT.NONE);
subGroup.setText(subgroupName);
subGroup.setFont(SWTResourceManager.getFont("Segoe UI", 9, SWT.BOLD));
}