本文整理汇总了Java中org.eclipse.swt.widgets.ToolBar.computeSize方法的典型用法代码示例。如果您正苦于以下问题:Java ToolBar.computeSize方法的具体用法?Java ToolBar.computeSize怎么用?Java ToolBar.computeSize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.eclipse.swt.widgets.ToolBar
的用法示例。
在下文中一共展示了ToolBar.computeSize方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createContents
import org.eclipse.swt.widgets.ToolBar; //导入方法依赖的package包/类
protected Control createContents(Composite parent) {
// --- Create the window title. ---
getShell().setText("CoolBar Test");
String asCoolItemSection[] = { "File", "Formatting", "Search" };
CoolBar composite = new CoolBar(parent, SWT.NONE);
for (int idxCoolItem = 0; idxCoolItem < 3; ++idxCoolItem) {
CoolItem item = new CoolItem(composite, SWT.NONE);
ToolBar tb = new ToolBar(composite, SWT.FLAT);
for (int idxItem = 0; idxItem < 3; ++idxItem) {
ToolItem ti = new ToolItem(tb, SWT.NONE);
ti
.setText(asCoolItemSection[idxCoolItem] + " Item #"
+ idxItem);
}
Point p = tb.computeSize(SWT.DEFAULT, SWT.DEFAULT);
tb.setSize(p);
Point p2 = item.computeSize(p.x, p.y);
item.setControl(tb);
item.setSize(p2);
}
return composite;
}
示例2: updateToolbarSize
import org.eclipse.swt.widgets.ToolBar; //导入方法依赖的package包/类
public static void updateToolbarSize(ToolBar tb, Rectangle clientArea) {
if (tb == null)
return;
Point size = tb.computeSize(SWT.DEFAULT, clientArea.height);
// logger.debug("tb1 size: "+size);
tb.setSize(size);
}
示例3: computeDefaultTrimHeight
import org.eclipse.swt.widgets.ToolBar; //导入方法依赖的package包/类
private int computeDefaultTrimHeight() {
int result;
Shell shell = new Shell( getDisplay(), SWT.NONE );
try {
ToolBar toolBar = new ToolBar( shell, SWT.NONE );
ToolItem toolItem = new ToolItem( toolBar, SWT.PUSH );
toolItem.setImage( JFaceResources.getImageRegistry().get( Dialog.DLG_IMG_MESSAGE_INFO ) );
int toolItemHeight = toolBar.computeSize( SWT.DEFAULT, SWT.DEFAULT ).y;
result = Math.max( toolItemHeight, measureText( "Wg" ).y );
} finally {
shell.dispose();
}
return result;
}