summaryrefslogtreecommitdiff
path: root/src/corelib
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graeme@mastermaths.co.za>2011-11-29 10:16:30 +0200
committerGraeme Geldenhuys <graeme@mastermaths.co.za>2011-11-29 10:45:00 +0200
commit050fe83b0041cbe3fac78199dbb87c32d1298e33 (patch)
treeb893212d3aadf4489a04a06b03b1d95285e032c2 /src/corelib
parenta0d425adbe572eebc3c4631c2bc0a23190d060c9 (diff)
downloadfpGUI-050fe83b0041cbe3fac78199dbb87c32d1298e33.tar.xz
move declaration of TfpgEditBorderStyle so it is more accessible.
This now makes it easier to reuse this border style declaration in other widgets. We need to refactor some other widgets too, that have there own border styles as well.
Diffstat (limited to 'src/corelib')
-rw-r--r--src/corelib/fpg_base.pas3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/corelib/fpg_base.pas b/src/corelib/fpg_base.pas
index c982e019..196b820c 100644
--- a/src/corelib/fpg_base.pas
+++ b/src/corelib/fpg_base.pas
@@ -76,6 +76,9 @@ type
TfpgDropAction = (daIgnore, daCopy, daMove, daLink, daAsk);
TfpgDropActions = set of TfpgDropAction;
+ TfpgEditBorderStyle = (ebsNone, ebsDefault, ebsSingle);
+
+
const
MOUSE_LEFT = 1;
MOUSE_RIGHT = 3;