当前位置: 首页>>代码示例>>Java>>正文


Java Shell.computeTrim方法代码示例

本文整理汇总了Java中org.eclipse.swt.widgets.Shell.computeTrim方法的典型用法代码示例。如果您正苦于以下问题:Java Shell.computeTrim方法的具体用法?Java Shell.computeTrim怎么用?Java Shell.computeTrim使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.eclipse.swt.widgets.Shell的用法示例。


在下文中一共展示了Shell.computeTrim方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getShellTitlebarHeight

import org.eclipse.swt.widgets.Shell; //导入方法依赖的package包/类
/**
 * Get height of the shell's titlebar
 * @param s
 * @return
 */
public static int getShellTitlebarHeight(Shell s){
	Rectangle b = s.getBounds();
	Rectangle t = s.computeTrim(b.x, b.y, b.width, b.height);
	int tbarHeight = (b.y-t.y);
	return tbarHeight;
}
 
开发者ID:avoCADo-3d,项目名称:avoCADo,代码行数:12,代码来源:SWTUtils.java

示例2: getShellLeftEdgeWidth

import org.eclipse.swt.widgets.Shell; //导入方法依赖的package包/类
/**
 * Get the width of the shell's left edge
 * @param s
 * @return
 */
public static int getShellLeftEdgeWidth(Shell s){
	Rectangle b = s.getBounds();
	Rectangle t = s.computeTrim(b.x, b.y, b.width, b.height);
	int leftEW = (b.x-t.x);
	if(s.getMaximized()){
		return 0;
	}else{
		return leftEW;
	}
}
 
开发者ID:avoCADo-3d,项目名称:avoCADo,代码行数:16,代码来源:SWTUtils.java

示例3: getShellRightEdgeWidth

import org.eclipse.swt.widgets.Shell; //导入方法依赖的package包/类
/**
 * Get the width of the shell's right edge
 * @param s
 * @return
 */
public static int getShellRightEdgeWidth(Shell s){
	Rectangle b = s.getBounds();
	Rectangle t = s.computeTrim(b.x, b.y, b.width, b.height);
	int rightEW = ((t.width-b.width)-(b.x-t.x));
	if(s.getMaximized()){
		return 0;
	}else{
		return rightEW;
	}
}
 
开发者ID:avoCADo-3d,项目名称:avoCADo,代码行数:16,代码来源:SWTUtils.java

示例4: getShellBottomEdgeHeight

import org.eclipse.swt.widgets.Shell; //导入方法依赖的package包/类
/**
 * Get the height of the shell's bottom edge
 * @param s
 * @return
 */
public static int getShellBottomEdgeHeight(Shell s){
	Rectangle b = s.getBounds();
	Rectangle t = s.computeTrim(b.x, b.y, b.width, b.height);
	int bottomEH = ((t.height-b.height)-(b.y-t.y));
	if(s.getMaximized()){
		return 0;
	}else{
		return bottomEH;
	}
}
 
开发者ID:avoCADo-3d,项目名称:avoCADo,代码行数:16,代码来源:SWTUtils.java

示例5: openFilesMiniView

import org.eclipse.swt.widgets.Shell; //导入方法依赖的package包/类
private void openFilesMiniView(DownloadManager dm, TableCell cell) {
	Shell shell = ShellFactory.createShell(Utils.findAnyShell(), SWT.SHELL_TRIM);

	FillLayout fillLayout = new FillLayout();
	fillLayout.marginHeight = 2;
	fillLayout.marginWidth = 2;
	shell.setLayout(fillLayout);

	Rectangle bounds = ((TableCellSWT) cell).getBoundsOnDisplay();
	bounds.y += bounds.height;
	bounds.width = 630;
	bounds.height = (16 * dm.getNumFileInfos()) + 60;
	Rectangle realBounds = shell.computeTrim(0, 0, bounds.width, bounds.height);
	realBounds.width -= realBounds.x;
	realBounds.height -= realBounds.y;
	realBounds.x = bounds.x;
	realBounds.y = bounds.y;
	if (bounds.height > 500) {
		bounds.height = 500;
	}
	shell.setBounds(realBounds);
	shell.setAlpha(230);

	Utils.verifyShellRect(shell, true);


	final FilesView view = new FilesView(false);
	view.dataSourceChanged(dm);

	view.initialize(shell);

	Composite composite = view.getComposite();
	//composite.setLayoutData(null);
	//shell.setLayout(new FillLayout());

	view.viewActivated();
	view.refresh();

	final UIUpdatable viewUpdater = new UIUpdatable() {
		@Override
		public void updateUI() {
			view.refresh();
		}

		@Override
		public String getUpdateUIName() {
			return view.getFullTitle();
		}
	};
	UIUpdaterSWT.getInstance().addUpdater(viewUpdater);

	shell.addDisposeListener(new DisposeListener() {
		@Override
		public void widgetDisposed(DisposeEvent e) {
			UIUpdaterSWT.getInstance().removeUpdater(viewUpdater);
			view.delete();
		}
	});

	shell.layout(true, true);


	shell.setText(dm.getDisplayName());

	shell.open();
}
 
开发者ID:BiglySoftware,项目名称:BiglyBT,代码行数:67,代码来源:ColumnFileCount.java


注:本文中的org.eclipse.swt.widgets.Shell.computeTrim方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。