source: trunk/Packages/bgracontrols/DataType.inc

Last change on this file was 2, checked in by chronos, 5 years ago
File size: 427 bytes
Line 
1type
2 TCoord = packed record
3 x1 : LongInt;
4 y1 : LongInt;
5 x2 : LongInt;
6 y2 : LongInt;
7 end;
8
9 TRatio = packed record
10 Horizontal : LongInt;
11 Vertical : LongInt;
12 end;
13
14 TCardinalDirection = (NORTH, SOUTH, WEST, EAST);
15 TDirection = set of TCardinalDirection;
16
17 TSizeLimits = packed record
18 minWidth : LongInt;
19 maxWidth : LongInt;
20 minHeight : LongInt;
21 maxHeight : LongInt;
22 end;
23
Note: See TracBrowser for help on using the repository browser.