// // Copyright (c) 2008, Brian Frank and Andy Frank // Licensed under the Academic Free License version 3.0 // // History: // 12 Jun 08 Brian Frank Creation // ************************************************************************** ** Halign ************************************************************************** ** ** Horizontal alignment: left, center, right, fill, or repeat. ** @js enum Halign { left, center, right, fill, repeat } ************************************************************************** ** Valign ************************************************************************** ** ** Vertical alignment: top, center, bottom, fill, or repeat. ** @js enum Valign { top, center, bottom, fill, repeat } ************************************************************************** ** Orientation. ************************************************************************** ** ** Horizontal or vertical. ** @js enum Orientation { horizontal, vertical }