Sha256: 27170ef74177409421cfab91b7d465fa9acb6ff1ac2ba02da820e91fb4af7d2a
Contents?: true
Size: 1.03 KB
Versions: 1
Compression:
Stored size: 1.03 KB
Contents
/** * Sencha GXT 3.1.1 - Sencha for GWT * Copyright(c) 2007-2014, Sencha, Inc. * licensing@sencha.com * * http://www.sencha.com/products/gxt/license/ */ package com.dldinternet.aws.cfn.stacker.desktopapp.client; import com.google.gwt.user.client.ui.HasWidgets; import com.google.gwt.user.client.ui.IsWidget; import com.dldinternet.aws.cfn.stacker.desktop.client.layout.DesktopLayoutType; /** * Provides a desktop application view. */ public interface DesktopAppView extends IsWidget, HasWidgets { /** * Sets the type of desktop layout to use when opening subsequent windows. * * @param desktopLayoutType the layout to use when opening subsequent windows */ void setDesktopLayoutType(DesktopLayoutType desktopLayoutType); /** * Sets whether the desktop should scale the position and size of desktop windows when the browser window is resized. * * @param isScaleOnResize true if the desktop should scale desktop windows when the browser window is resized */ void setScaleOnResize(boolean scaleOnResize); }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
aws-cfn-stacker-0.0.6 | ui/src/com/dldinternet/aws/cfn/stacker/desktopapp/client/DesktopAppView.java |