com.smartgwt.client.widgets.Window.setTop()方法的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(3.7k)|赞(0)|评价(0)|浏览(64)

本文整理了Java中com.smartgwt.client.widgets.Window.setTop()方法的一些代码示例,展示了Window.setTop()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Window.setTop()方法的具体详情如下:
包路径:com.smartgwt.client.widgets.Window
类名称:Window
方法名:setTop

Window.setTop介绍

暂无

代码示例

代码示例来源:origin: org.n52.sensorweb/sensorwebclient-ui

public void show() {
  if (this.toasterWindow == null) {
    getToasterWindow();
  }
  this.toasterWindow.setZIndex(Constants.Z_INDEX_ON_TOP);
  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.animateFade(100);
  this.isVisible = true;
}

代码示例来源:origin: org.n52.sensorweb/sensorwebclient-ui

public void addErrorMessage(String error) {
  Date d = new Date();
  String timeStamp = DateTimeFormat.getFormat("dd.MM.yyyy HH:mm").format(d);
  Label l = new Label(timeStamp + " " + error);
  l.setCanSelectText(true);
  l.setStyleName("n52_sensorweb_client_toasterErrorMsg");
  l.setAutoHeight();
  for (int i = 0; i < this.messages.size(); i++) {
    this.layout.removeMember(this.messages.get(i));
  }
  this.messages.add(l);
  for (int i = this.messages.size() - 1; i >= 0; i--) {
    this.layout.addMember(this.messages.get(i));
  }
  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);
  animateToaster();
}

代码示例来源: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: 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.setHeight(120);
addMixinTypeWindow.setWidth(400);
addMixinTypeWindow.setTop("30%");
addMixinTypeWindow.setLeft("35%");

代码示例来源:origin: com.github.livesense/org.liveSense.jcr.explorer

addNewNodeWindow.setHeight(200);
addNewNodeWindow.setWidth(550);
addNewNodeWindow.setTop("30%");
addNewNodeWindow.setLeft("35%");

相关文章