Package com.google.gwt.user.client.ui

Examples of com.google.gwt.user.client.ui.NamedFrame


   * The default constructor.
   */
  protected ClsiLocalEngine(String publicPath){
    this.publicPath = publicPath;
    this.setupJavascriptInterface(this);
    this.frame = new NamedFrame("Engine");
    this.frame.setPixelSize(0, 0);
    this.frame.setUrl(publicPath + "empty.html");
    this.frame.getElement().setPropertyString("frameborder", "0");
    RootPanel.get().add(this.frame);
  }
View Full Code Here


  protected final String scopeName;

  public PrivateScopeImpl() {
    scopeName = nextScopeName();

    NamedFrame frame = new NamedFrame(scopeName);
    frame.setUrl("javascript:''");
    initWidget(frame);

    setVisible(false);
  }
View Full Code Here

  }-*/;

  protected void performOperation() {
    MantleTabPanel contentTabPanel = SolutionBrowserPanel.getInstance().getContentTabPanel();
    contentTabPanel.showNewURLTab( this.tabName, this.tabToolTip, "about:blank", false ); //$NON-NLS-1$
    NamedFrame namedFrame = ( (IFrameTabPanel) contentTabPanel.getSelectedTab().getContent() ).getFrame();
    final FormPanel form = new FormPanel( namedFrame );
    RootPanel.get().add( form );
    form.setMethod( FormPanel.METHOD_POST );
    form.setAction( url );
    form.add( new Hidden( "reportXml", URL.encode( xml ) ) ); //$NON-NLS-1$
View Full Code Here

* Warning message in IE6 when using NamedFrame on SSL-secured web-site.
*/
public class Issue2318 extends AbstractIssue {
  @Override
  public Widget createIssue() {
    return new NamedFrame("myFrame");
  }
View Full Code Here

    // assertEquals("Widget has top", 20, p.getWidgetTop(w));
    // }
  }

  public void testNamedFrame() {
    NamedFrame p = widgetUi.myNamedFrame;
    assertNotNull("NamedFrame exists", p);
  }
View Full Code Here

        description.setValue("Specify backup name");

        setControls(description, name);
        setAction(GWT.getModuleBaseForStaticFiles() + "restore/do");

        NamedFrame frame = new NamedFrame(TARGET);
        frame.setWidth("1px");
        frame.setHeight("1px");
        frame.setVisible(false);
       
        form().setEncoding(Encoding.MULTIPART);
        form().setMethod(FormMethod.POST);
        form().setTarget(TARGET);
       
View Full Code Here

        HTML html = new HTML("<hr />", true);
        centerAbsolutePanel.add(html, 10, 43);
        html.setSize("380px", "15px");

        this.frame = new NamedFrame("download-frame");
        frame.setStyleName("download-frame");
        rootPanel.add(frame);

        this.exportButton = new Button("Export site", new ClickHandler() {
View Full Code Here

TOP

Related Classes of com.google.gwt.user.client.ui.NamedFrame

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.