本文整理匯總了Java中org.eclipse.swt.widgets.Shell.getMaximized方法的典型用法代碼示例。如果您正苦於以下問題:Java Shell.getMaximized方法的具體用法?Java Shell.getMaximized怎麽用?Java Shell.getMaximized使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.eclipse.swt.widgets.Shell
的用法示例。
在下文中一共展示了Shell.getMaximized方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: 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;
}
}
示例2: 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;
}
}
示例3: 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;
}
}