Package org.geomajas.plugin.printing.client.widget

Examples of org.geomajas.plugin.printing.client.widget.PrintPreferencesCanvas


    this.mapWidget = mapWidget;
    setTooltip(messages.printBtnTitle());
  }
 
  public void onClick(ClickEvent event) {
    PrintPreferencesCanvas canvas = new PrintPreferencesCanvas(mapWidget);
    canvas.setMargin(10);
    Window window = new Window();
    window.setTitle(messages.printPrefsTitle());
    window.addItem(canvas);
    window.centerInPage();
    window.setAutoSize(true);
View Full Code Here


    setTooltip(MESSAGES.printBtnTitle());
  }

  @Override
  public void onClick(ClickEvent event) {
    PrintPreferencesCanvas canvas = new PrintPreferencesCanvas(mapWidget);
    canvas.setMargin(WidgetLayout.marginSmall);
    Window window = new KeepInScreenWindow();
    window.setTitle(MESSAGES.printPrefsTitle());
    window.addItem(canvas);
    window.centerInPage();
    window.setAutoSize(true);
View Full Code Here

TOP

Related Classes of org.geomajas.plugin.printing.client.widget.PrintPreferencesCanvas

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.