本文整理了Java中com.smartgwt.client.widgets.Window.setCanDragResize()
方法的一些代码示例,展示了Window.setCanDragResize()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Window.setCanDragResize()
方法的具体详情如下:
包路径:com.smartgwt.client.widgets.Window
类名称:Window
方法名:setCanDragResize
[英]Can the window be drag-resized? If true the window may be drag resized from its edges, and if showing, via the resizer icon in the footer.
[中]可以拖动窗口调整大小吗?如果为true,则窗口可以从其边缘拖动调整大小,如果显示,则通过页脚中的调整器图标进行调整。
代码示例来源:origin: org.geomajas.widget/geomajas-widget-featureinfo-gwt
private Window createWindow(String subtitle) {
Window w = new Window();
w.setWidth(windowWidth);
w.setHeight(windowHeight);
w.setTitle(I18nProvider.getAttribute().getAttributeWindowTitle(subtitle));
w.setCanDragReposition(true);
w.setCanDragResize(true);
w.setAutoCenter(true);
w.setKeepInParentRect(true);
return w;
}
代码示例来源:origin: org.geomajas.widget/geomajas-widget-featureinfo-gwt-example-jar
public Window createFeatureDetailWindow(Feature feature, boolean editingAllowed) {
Window w = new Window();
w.setAutoSize(true);
w.setTitle(I18nProvider.getAttribute().getAttributeWindowTitle(feature.getLabel()));
w.setCanDragReposition(true);
w.setCanDragResize(true);
w.addItem(new CustomCountriesFeatureInfoCanvas(feature));
return w;
}
代码示例来源:origin: org.n52.sensorweb/sensorwebclient-ui
private void getToasterWindow() {
if (this.toasterWindow == null) {
this.toasterWindow = new Window();
this.layout = new VLayout();
this.layout.setTabIndex( -1);
this.toasterWindow.setParentElement(this.parentElem);
this.toasterWindow.setAnimateFadeTime(fadeout);
this.toasterWindow.setHeight(this.height);
this.toasterWindow.setWidth(this.width);
this.toasterWindow.setTitle(this.title);
this.toasterWindow.setAutoSize(new Boolean(false));
this.toasterWindow.setOverflow(Overflow.AUTO);
this.left = this.toasterWindow.getParentElement().getWidth().intValue() - this.width - 10;
this.top = this.toasterWindow.getParentElement().getHeight().intValue() - this.height - 30;
this.toasterWindow.setLeft(this.left);
this.toasterWindow.setTop(this.top);
this.toasterWindow.setCanDragResize(true);
this.toasterWindow.setShowMaximizeButton(true);
this.toasterWindow.setID(this.id);
this.toasterWindow.addItem(this.layout);
this.toasterWindow.addCloseClickHandler(new CloseClickHandler() {
public void onCloseClick(CloseClickEvent event) {
hide();
}
});
}
}
代码示例来源:origin: com.github.livesense/org.liveSense.jcr.explorer
private Window createRemoteWindow(String title, String url) {
Window remoteWindow = new Window();
HTMLPane htmlPane = new HTMLPane();
htmlPane.setContentsURL(url);
htmlPane.setContentsType(ContentsType.PAGE);
remoteWindow.addItem(htmlPane);
remoteWindow.setTitle(title);
remoteWindow.setShowMaximizeButton(true);
remoteWindow.setCanDragReposition(true);
remoteWindow.setCanDragResize(true);
remoteWindow.setHeight("40%");
remoteWindow.setWidth("40%");
remoteWindow.setAutoCenter(true);
remoteWindow.setShowResizeBar(true);
remoteWindow.setDefaultResizeBars(LayoutResizeBarPolicy.MARKED);
remoteWindow.show();
return remoteWindow;
}
代码示例来源:origin: com.github.livesense/org.liveSense.jcr.explorer
private Window createBinaryImgWindow(String title, String path, String mimeType) {
Window binaryWindow = new Window();
Img img = new Img(BINARY_SERVLET_PATH + path);
img.setImageType(ImageStyle.STRETCH);
img.setHeight100();
img.setWidth100();
binaryWindow.addItem(img);
binaryWindow.setTitle(title);
binaryWindow.setShowMaximizeButton(true);
binaryWindow.setCanDragReposition(true);
binaryWindow.setCanDragResize(true);
binaryWindow.setHeight("40%");
binaryWindow.setWidth("40%");
binaryWindow.setAutoCenter(true);
binaryWindow.setShowResizeBar(true);
//binaryWindow.setDefaultResizeBars(LayoutResizeBarPolicy.MARKED);
binaryWindow.show();
return binaryWindow;
}
代码示例来源:origin: org.geomajas.plugin/geomajas-plugin-geocoder-gwt
public void onSelectAlternative(SelectAlternativeEvent event) {
if (null == altWindow) {
altGrid = new GeocoderAlternativesGrid(geocoderWidget, event.getAlternatives());
altWindow = new Window();
altWindow.setAutoSize(true);
altWindow.setTitle(messages.alternativeSelectTitle());
altWindow.setAutoSize(true);
altWindow.setLeft(20);
altWindow.setTop(20);
altWindow.setCanDragReposition(true);
altWindow.setCanDragResize(true);
altWindow.addItem(altGrid);
altWindow.addCloseClickHandler(new CloseClickHandler() {
public void onCloseClick(CloseClickEvent closeClickEvent) {
removeAltWindow();
}
});
map.addChild(altWindow);
} else {
altGrid.update(event.getAlternatives());
}
}
// @extract-end
代码示例来源:origin: com.github.livesense/org.liveSense.jcr.explorer
addMixinTypeWindow.setCanDragResize(true);
addMixinTypeWindow.setHeight(120);
addMixinTypeWindow.setWidth(400);
代码示例来源:origin: org.n52.sensorweb/sensorwebclient-ui
this.styleChanger.setIsModal(true);
this.styleChanger.centerInPage();
this.styleChanger.setCanDragResize(true);
this.styleChanger.setShowCloseButton(true);
代码示例来源:origin: com.github.livesense/org.liveSense.jcr.explorer
changeNodeTypeWindow.setTitle("Change Node Type Icon");
changeNodeTypeWindow.setCanDragReposition(true);
changeNodeTypeWindow.setCanDragResize(false);
changeNodeTypeWindow.setAutoCenter(true);
changeNodeTypeWindow.setWidth(500);
代码示例来源:origin: com.github.livesense/org.liveSense.jcr.explorer
addNewNodeWindow.setCanDragResize(true);
addNewNodeWindow.setHeight(200);
addNewNodeWindow.setWidth(550);
代码示例来源:origin: org.n52.sensorweb/sensorwebclient-ui
window.setTitle(i18n.createNewUser());
window.setCanDragReposition(true);
window.setCanDragResize(true);
window.centerInPage();
代码示例来源:origin: org.n52.sensorweb/sensorwebclient-ui
window.setTitle(i18n.editUserData());
window.setCanDragReposition(true);
window.setCanDragResize(true);
window.centerInPage();
EditUserWindow.window = window;
代码示例来源:origin: org.n52.sensorweb/sensorwebclient-ui
this.expertsWindow.setCanDragResize(true);
this.expertsWindow.setShowModalMask(true);
代码示例来源:origin: com.github.livesense/org.liveSense.jcr.explorer
editPropertyWindow.setCanDragResize(true);
editPropertyWindow.setHeight(600);
editPropertyWindow.setWidth(800);
内容来源于网络,如有侵权,请联系作者删除!