blob: 52afdceb1cbc109bfbaee5bcb7257967e3f35e26 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2002, 2013 1&1 Internet AG, Germany, http://www.1und1.de,
* EclipseSource and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* 1&1 Internet AG and others - original API and implementation
* EclipseSource - adaptation for the Eclipse Remote Application Platform
******************************************************************************/
rwt.qx.Class.define("rwt.widgets.util.Layout", {
/*
*****************************************************************************
STATICS
*****************************************************************************
*/
statics : {
ORIENTATION_HORIZONTAL : "horizontal",
ORIENTATION_VERTICAL : "vertical",
ALIGN_LEFT : "left",
ALIGN_LEFT_REVERSED : "left-reversed",
ALIGN_CENTER : "center",
ALIGN_CENTER_REVERSED : "center-reversed",
ALIGN_RIGHT : "right",
ALIGN_RIGHT_REVERSED : "right-reversed",
ALIGN_TOP : "top",
ALIGN_TOP_REVERSED : "top-reversed",
ALIGN_MIDDLE : "middle",
ALIGN_MIDDLE_REVERSED : "middle-reversed",
ALIGN_BOTTOM : "bottom",
ALIGN_BOTTOM_REVERSED : "bottom-reversed"
}
});