Examples of StackPanelInfo


Examples of com.google.gdt.eclipse.designer.model.widgets.panels.StackPanelInfo

  //
  // MOVE
  //
  ////////////////////////////////////////////////////////////////////////////
  public void test_MOVE_widget() throws Exception {
    StackPanelInfo panel =
        openJavaInfo(
            "public class Test extends StackPanel {",
            "  public Test() {",
            "    {",
            "      Button button_1 = new Button();",
View Full Code Here

Examples of com.google.gdt.eclipse.designer.model.widgets.panels.StackPanelInfo

        "  }",
        "}");
  }

  public void test_MOVE_header() throws Exception {
    StackPanelInfo panel =
        openJavaInfo(
            "public class Test extends StackPanel {",
            "  public Test() {",
            "    {",
            "      Button button_1 = new Button();",
            "      add(button_1, 'A', false);",
            "      button_1.setSize('100%', '100%');",
            "    }",
            "    {",
            "      Button button_2 = new Button();",
            "      add(button_2, 'B', false);",
            "      button_2.setSize('100%', '100%');",
            "    }",
            "  }",
            "}");
    // drag header of "button_2"
    {
      Rectangle bounds = panel.getWidgetHandles().get(1).getBounds();
      Point handleCenter = bounds.getCenter();
      canvas.moveTo(panel, handleCenter.x, handleCenter.y);
      canvas.beginDrag().dragTo(panel, 5, 0).endDrag();
    }
    assertEditor(
View Full Code Here

Examples of com.google.gdt.eclipse.designer.model.widgets.panels.StackPanelInfo

        "      Button button = new Button('button');",
        "      add(button);",
        "    }",
        "  }",
        "}");
    StackPanelInfo panel = getJavaInfoByName("panel");
    WidgetInfo button = getJavaInfoByName("button");
    //
    canvas.beginDrag(button).dragTo(panel, 0.5, 5).endDrag();
    assertEditor(
        "public class Test extends FlowPanel {",
View Full Code Here

Examples of com.google.gdt.eclipse.designer.model.widgets.panels.StackPanelInfo

  //
  // Handle
  //
  ////////////////////////////////////////////////////////////////////////////
  public void test_canvas_doubleClickHandle() throws Exception {
    StackPanelInfo panel =
        openJavaInfo(
            "public class Test extends StackPanel {",
            "  public Test() {",
            "    {",
            "      Button button_1 = new Button();",
            "      add(button_1, 'A', false);",
            "      button_1.setSize('100%', '100%');",
            "    }",
            "    {",
            "      Button button_2 = new Button();",
            "      add(button_2, 'B', false);",
            "      button_2.setSize('100%', '100%');",
            "    }",
            "  }",
            "}");
    WidgetInfo button_1 = getJavaInfoByName("button_1");
    WidgetInfo button_2 = getJavaInfoByName("button_2");
    // initially "button_1" is visible
    assertTrue(isVisible(button_1));
    assertFalse(isVisible(button_2));
    // double click handle of "button_1"
    {
      Rectangle bounds = panel.getWidgetHandles().get(1).getBounds();
      Point handleCenter = bounds.getCenter();
      canvas.moveTo(panel, handleCenter.x, handleCenter.y).doubleClick();
    }
    // now "button_2" is visible
    assertFalse(isVisible(button_1));
View Full Code Here

Examples of com.google.gdt.eclipse.designer.model.widgets.panels.StackPanelInfo

    assertFalse(isVisible(button_1));
    assertTrue(isVisible(button_2));
  }

  public void test_canvas_directEditHandle() throws Exception {
    StackPanelInfo panel =
        openJavaInfo(
            "public class Test extends StackPanel {",
            "  public Test() {",
            "    {",
            "      Button button_1 = new Button();",
            "      add(button_1, 'AAA', false);",
            "      button_1.setSize('100%', '100%');",
            "    }",
            "  }",
            "}");
    // select header
    {
      Rectangle bounds = panel.getWidgetHandles().get(0).getBounds();
      Point handleCenter = bounds.getCenter();
      canvas.moveTo(panel, handleCenter.x, handleCenter.y).click();
    }
    // do direct edit
    canvas.performDirectEdit("123");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.