2010-02-10 02:12:56 +01:00
|
|
|
/***************************************************************************
|
|
|
|
|
|
|
|
gb.form.const.h
|
|
|
|
|
2011-12-31 03:39:20 +01:00
|
|
|
(c) 2000-2012 Benoît Minisini <gambas@users.sourceforge.net>
|
2010-02-10 02:12:56 +01:00
|
|
|
|
|
|
|
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 2, 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
|
2011-06-03 02:51:09 +02:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
2011-12-31 03:39:20 +01:00
|
|
|
MA 02110-1301, USA.
|
2010-02-10 02:12:56 +01:00
|
|
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#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
|
|
|
|
};
|
|
|
|
|
2012-02-25 03:59:39 +01:00
|
|
|
#define ALIGN_IS_TOP(_align) (((_align) & 0xF0) == 0x1)
|
|
|
|
#define ALIGN_IS_BOTTOM(_align) (((_align) & 0xF0) == 0x2)
|
|
|
|
#define ALIGN_IS_MIDDLE(_align) (((_align) & 0xF0) == 0x0)
|
|
|
|
#define ALIGN_IS_LEFT(_align) (((_align) & 0xF) == 0x1 || (((_align) & 0xF) == 0x0 && !GB.System.IsRightToLeft()))
|
|
|
|
#define ALIGN_IS_RIGHT(_align) (((_align) & 0xF) == 0x2 || (((_align) & 0xF) == 0x0 && GB.System.IsRightToLeft()))
|
|
|
|
#define ALIGN_IS_CENTER(_align) (((_align) & 0xF) == 0x3)
|
|
|
|
|
2010-02-10 02:12:56 +01:00
|
|
|
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,
|
|
|
|
ARRANGE_TABLE = 6
|
|
|
|
};
|
|
|
|
|
|
|
|
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
|