1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
/***************************************************************************
gb.geom.h
(c) 2000-2017 BenoƮt Minisini <benoit.minisini@gambas-basic.org>
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
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA.
***************************************************************************/
#ifndef __GB_GEOM_H
#define __GB_GEOM_H
#include "gambas.h"
enum
{
ALIGN_NORMAL = 0x00,
ALIGN_LEFT = 0x01,
ALIGN_RIGHT = 0x02,
ALIGN_CENTER = 0x03,
ALIGN_TOP_NORMAL = 0x10,
ALIGN_TOP_LEFT = 0x11,
ALIGN_TOP_RIGHT = 0x12,
ALIGN_TOP = 0x13,
ALIGN_BOTTOM_NORMAL = 0x20,
ALIGN_BOTTOM_LEFT = 0x21,
ALIGN_BOTTOM_RIGHT = 0x22,
ALIGN_BOTTOM = 0x23,
ALIGN_JUSTIFY = 0x04,
};
#define ALIGN_IS_TOP(_align) (((_align) & 0xF0) == 0x10)
#define ALIGN_IS_BOTTOM(_align) (((_align) & 0xF0) == 0x20)
#define ALIGN_IS_MIDDLE(_align) (((_align) & 0xF0) == 0x00)
#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)
#define ALIGN_IS_NORMAL(_align) (((_align) & 0xF) == 0x0)
#define ALIGN_MAKE(_halign, _valign) (((_halign) & 0xF) | ((_valign) & 0xF0))
typedef
struct {
GB_BASE ob;
int x;
int y;
}
GEOM_POINT;
typedef
struct {
GB_BASE ob;
double x;
double y;
}
GEOM_POINTF;
typedef
struct {
GB_BASE ob;
int x;
int y;
int w;
int h;
}
GEOM_RECT;
typedef
struct {
GB_BASE ob;
double x;
double y;
double w;
double h;
}
GEOM_RECTF;
#define GEOM_INTERFACE_VERSION 1
typedef
struct {
int version;
GEOM_POINT *(*CreatePoint)(int x, int y);
GEOM_POINTF *(*CreatePointF)(double x, double y);
GEOM_RECT *(*CreateRect)(void);
GEOM_RECTF *(*CreateRectF)(void);
}
GEOM_INTERFACE;
#endif
|