logo

const final enum

fwt::Orientation

sys::Obj
  sys::Enum
    fwt::Orientation
//
// 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, or fill.
**
enum Halign
{
  left,
  center,
  right,
  fill
}

**************************************************************************
** Valign
**************************************************************************

**
** Vertical alignment: top, center, bottom, or fill.
**
enum Valign
{
  top,
  center,
  bottom,
  fill
}

**************************************************************************
** Orientation.
**************************************************************************

**
** Horizontal or vertical.
**
enum Orientation
{
  horizontal,
  vertical
}

**************************************************************************
** ButtonMode.
**************************************************************************

**
** Button mode.
**
enum ButtonMode
{
  check,
  push,
  radio,
  toggle,
  sep
}

**************************************************************************
** MenuMode.
**************************************************************************

**
** MenuItem mode.
**
enum MenuItemMode
{
  check,
  push,
  radio,
  sep,
  menu
}