summaryrefslogtreecommitdiff
path: root/src/corelib
diff options
context:
space:
mode:
authorgraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2008-03-28 10:01:40 +0000
committergraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2008-03-28 10:01:40 +0000
commite2457b21a32c02b26504132b14922b60f26aeb48 (patch)
tree510d1d518b008f927577d74d204a8225b085b002 /src/corelib
parent5eac41ed60c882f3ae2eeb2a98eb33cdb421e8db (diff)
downloadfpGUI-e2457b21a32c02b26504132b14922b60f26aeb48.tar.xz
* Reverted the Memo changes from revision 679 to get the UI Designer working again. Andrew can apply his Memo changes once everything is working on his side.
Diffstat (limited to 'src/corelib')
-rw-r--r--src/corelib/gfxbase.pas16
1 files changed, 1 insertions, 15 deletions
diff --git a/src/corelib/gfxbase.pas b/src/corelib/gfxbase.pas
index 4faad9ea..bc602db0 100644
--- a/src/corelib/gfxbase.pas
+++ b/src/corelib/gfxbase.pas
@@ -76,11 +76,6 @@ const
FPGM_RESIZE = 15;
FPGM_MOVE = 16;
FPGM_POPUPCLOSE = 17;
- // Text Messages
- FPGM_TEXT_CHANGE = 18;
- FPGM_TEXT_INSERT = 19;
- FPGM_TEXT_DELETE = 20;
-
FPGM_KILLME = 9999;
// The special keys, based on the well-known keyboard scan codes
@@ -123,22 +118,12 @@ type
shiftstate: TShiftState;
end;
-
- TfpgMsgParmText = record
- Text: PChar;
- Length: Integer;
- StartLine,
- EndLine: Integer;
- Before: Boolean;
- end;
-
TfpgMessageParams = record
case integer of
0: (mouse: TfpgMsgParmMouse);
1: (keyboard: TfpgMsgParmKeyboard);
2: (rect: TfpgRect);
- 3: (text: TfpgMsgParmText);
end;
@@ -151,6 +136,7 @@ type
end;
PfpgMessageRec = ^TfpgMessageRec;
+
TfpgLineStyle = (lsSolid, lsDash, lsDot, lsDashDot, lsDashDotDot);