diff options
Diffstat (limited to 'src/corelib/gfxbase.pas')
-rw-r--r-- | src/corelib/gfxbase.pas | 16 |
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); |