/*************************************************************************** gb.form.h (c) 2000-2007 Benoit Minisini This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. ***************************************************************************/ #ifndef __GB_FORM_H #define __GB_FORM_H #define CONST_MAGIC 0x12345678 enum { ALIGN_NORMAL = 0x00, //Qt::AlignVCenter + Qt::AlignAuto, ALIGN_LEFT = 0x01, //Qt::AlignVCenter + Qt::AlignLeft, ALIGN_RIGHT = 0x02, //Qt::AlignVCenter + Qt::AlignRight, ALIGN_CENTER = 0x03, //Qt::AlignVCenter + Qt::AlignHCenter, ALIGN_TOP_NORMAL = 0x10, //Qt::AlignTop + Qt::AlignAuto, ALIGN_TOP_LEFT = 0x11, //Qt::AlignTop + Qt::AlignLeft, ALIGN_TOP_RIGHT = 0x12, //Qt::AlignTop + Qt::AlignRight, ALIGN_TOP = 0x13, //Qt::AlignTop + Qt::AlignHCenter, ALIGN_BOTTOM_NORMAL = 0x20, //Qt::AlignBottom + Qt::AlignAuto, ALIGN_BOTTOM_LEFT = 0x21, //Qt::AlignBottom + Qt::AlignLeft, ALIGN_BOTTOM_RIGHT = 0x22, //Qt::AlignBottom + Qt::AlignRight, ALIGN_BOTTOM = 0x23, //Qt::AlignBottom + Qt::AlignHCenter, ALIGN_JUSTIFY = 0x04, //Qt::AlignVCenter + Qt::AlignJustify }; enum { BORDER_NONE = 0, BORDER_PLAIN = 1, BORDER_SUNKEN = 2, BORDER_RAISED = 3, BORDER_ETCHED = 4 }; enum { ARRANGE_NONE = 0, ARRANGE_HORIZONTAL = 1, ARRANGE_VERTICAL = 2, ARRANGE_ROW = 3, ARRANGE_LEFT_RIGHT = 3, ARRANGE_COLUMN = 4, ARRANGE_TOP_BOTTOM = 4, ARRANGE_FILL = 5 }; enum { SELECT_NONE = 0, SELECT_SINGLE = 1, SELECT_MULTIPLE = 2 }; enum { LINE_NONE = 0, //Qt::NoPen, LINE_SOLID = 1, //Qt::SolidLine, LINE_DASH = 2, //Qt::DashLine, LINE_DOT = 3, //Qt::DotLine, LINE_DASH_DOT = 4, //Qt::DashDotLine, LINE_DASH_DOT_DOT = 5, //Qt::DashDotDotLine }; enum { FILL_NONE = 0, //Qt::NoBrush, FILL_SOLID = 1, //Qt::SolidPattern, FILL_DENSE_94 = 2, //Qt::Dense1Pattern, FILL_DENSE_88 = 3, //Qt::Dense2Pattern, FILL_DENSE_63 = 4, //Qt::Dense3Pattern, FILL_DENSE_50 = 5, //Qt::Dense4Pattern, FILL_DENSE_37 = 6, //Qt::Dense5Pattern, FILL_DENSE_12 = 7, //Qt::Dense6Pattern, FILL_DENSE_06 = 8, //Qt::Dense7Pattern, FILL_HORIZONTAL = 9, //Qt::HorPattern, FILL_VERTICAL = 10, //Qt::VerPattern, FILL_CROSS = 11, //Qt::CrossPattern, FILL_DIAGONAL = 12, //Qt::BDiagPattern, FILL_BACK_DIAGONAL = 13, //Qt::FDiagPattern, FILL_CROSS_DIAGONAL = 14, //Qt::DiagCrossPattern }; enum { SCROLL_NONE = 0, SCROLL_HORIZONTAL = 1, SCROLL_VERTICAL = 2, SCROLL_BOTH = 3 }; #endif