Package com.google.gdt.eclipse.designer.model.widgets.panels.ILayoutPanelInfo

Examples of com.google.gdt.eclipse.designer.model.widgets.panels.ILayoutPanelInfo.ResizeDirection


      @Override
      protected void executeEdit() throws Exception {
        List<W> widgets = toWidgets(editParts);
        for (W widget : widgets) {
          Rectangle bounds = widget.getModelBounds();
          ResizeDirection hDirection =
              getDirection(
                  request.getResizeDirection(),
                  IPositionConstants.WEST,
                  IPositionConstants.EAST);
          ResizeDirection vDirection =
              getDirection(
                  request.getResizeDirection(),
                  IPositionConstants.NORTH,
                  IPositionConstants.SOUTH);
          m_panel.command_SIZE(widget, bounds.getSize(), hDirection, vDirection);
View Full Code Here

TOP

Related Classes of com.google.gdt.eclipse.designer.model.widgets.panels.ILayoutPanelInfo.ResizeDirection

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.