lazarus/components/synedit/syneditplugins.pas
mattias 8018937c08 synedit: fixed file encoding
git-svn-id: trunk@21507 -
2009-08-31 22:11:30 +00:00

589 lines
15 KiB
ObjectPascal

{-------------------------------------------------------------------------------
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
the specific language governing rights and limitations under the License.
The Original Code is: SynEditPlugins.pas, released 2001-10-17.
Author of this file is Flávio Etrusco.
Portions created by Flávio Etrusco are Copyright 2001 Flávio Etrusco.
All Rights Reserved.
Contributors to the SynEdit project are listed in the Contributors.txt file.
Alternatively, the contents of this file may be used under the terms of the
GNU General Public License Version 2 or later (the "GPL"), in which case
the provisions of the GPL are applicable instead of those above.
If you wish to allow use of your version of this file only under the terms
of the GPL and not to allow others to use your version of this file
under the MPL, indicate your decision by deleting the provisions above and
replace them with the notice and other provisions required by the GPL.
If you do not delete the provisions above, a recipient may use your version
of this file under either the MPL or the GPL.
$Id$
You may retrieve the latest version of this file at the SynEdit home page,
located at http://SynEdit.SourceForge.net
Known Issues:
-------------------------------------------------------------------------------}
unit SynEditPlugins;
{$I synedit.inc}
interface
uses
Classes,
{$IFDEF SYN_CLX}
Qt,
Types,
QMenus,
{$ELSE}
{$IFDEF SYN_LAZARUS}
{$IFDEF USE_UTF8BIDI_LCL}
utf8bidi,
{$ENDIF}
LCLIntf,
{$ELSE}
Windows,
{$ENDIF}
Menus,
{$ENDIF}
SynEdit,
SynEditKeyCmds,
Controls,
LCLType;
type
TAbstractSynPlugin = class(TComponent)
private
procedure SetEditor(const Value: TCustomSynEdit);
function GetEditors(aIndex: integer): TCustomSynEdit;
function GetEditor: TCustomSynEdit;
function GetEditorCount: integer;
protected
fEditors: TList;
procedure Notification(aComponent: TComponent;
aOperation: TOperation); override;
procedure DoAddEditor(aEditor: TCustomSynEdit); virtual;
procedure DoRemoveEditor(aEditor: TCustomSynEdit); virtual;
function AddEditor(aEditor: TCustomSynEdit): integer;
function RemoveEditor(aEditor: TCustomSynEdit): integer;
public
destructor Destroy; override;
property Editors[aIndex: integer]: TCustomSynEdit read GetEditors;
property EditorCount: integer read GetEditorCount;
published
property Editor: TCustomSynEdit read GetEditor write SetEditor;
end;
TAbstractSynHookerPlugin = class(TAbstractSynPlugin)
protected
procedure HookEditor(aEditor: TCustomSynEdit; aCommandID: TSynEditorCommand;
aOldShortCut, aNewShortCut: TShortCut);
procedure UnHookEditor(aEditor: TCustomSynEdit;
aCommandID: TSynEditorCommand; aShortCut: TShortCut);
procedure OnCommand(Sender: TObject; AfterProcessing: boolean;
var Handled: boolean; var Command: TSynEditorCommand;
var aChar: {$IFDEF SYN_LAZARUS}TUTF8Char{$ELSE}Char{$ENDIF};
Data: pointer; HandlerData: pointer); virtual; abstract;
end;
TPluginState = (psNone, psExecuting, psAccepting, psCancelling);
TAbstractSynSingleHookPlugin = class(TAbstractSynHookerPlugin)
private
fCommandID: TSynEditorCommand;
function IsShortCutStored: Boolean;
procedure SetShortCut(const Value: TShortCut);
protected
fState: TPluginState;
fCurrentEditor: TCustomSynEdit;
fShortCut: TShortCut;
class function DefaultShortCut: TShortCut; virtual;
procedure DoAddEditor(aEditor: TCustomSynEdit); override;
procedure DoRemoveEditor(aEditor: TCustomSynEdit); override;
{}
procedure DoExecute; virtual; abstract;
procedure DoAccept; virtual; abstract;
procedure DoCancel; virtual; abstract;
public
constructor Create(aOwner: TComponent); override;
destructor Destroy; override;
property CommandID: TSynEditorCommand read fCommandID;
{}
property CurrentEditor: TCustomSynEdit read fCurrentEditor;
function Executing: boolean;
procedure Execute(aEditor: TCustomSynEdit);
procedure Accept;
procedure Cancel;
published
property ShortCut: TShortCut read fShortCut write SetShortCut
stored IsShortCutStored;
end;
{ use TAbstractSynCompletion for non-visual completion }
TAbstractSynCompletion = class(TAbstractSynSingleHookPlugin)
protected
fCurrentString: String;
protected
procedure SetCurrentString(const Value: String); virtual;
procedure OnCommand(Sender: TObject; AfterProcessing: boolean;
var Handled: boolean; var Command: TSynEditorCommand;
var aChar: {$IFDEF SYN_LAZARUS}TUTF8Char{$ELSE}Char{$ENDIF};
Data: pointer; HandlerData: pointer); override;
procedure DoExecute; override;
procedure DoAccept; override;
procedure DoCancel; override;
function GetCurrentEditorString: String; virtual;
public
procedure AddEditor(aEditor: TCustomSynEdit);
property CurrentString: String read fCurrentString write SetCurrentString;
end;
function NewPluginCommand: TSynEditorCommand;
procedure ReleasePluginCommand(aCmd: TSynEditorCommand);
implementation
uses
SynEditTypes,
SysUtils,
{$IFDEF SYN_CLX}
QForms,
{$ELSE}
Forms,
{$ENDIF}
{$IFNDEF SYN_LAZARUS}
SynEditMiscProcs,
{$ENDIF}
SynEditStrConst;
const
ecPluginBase = 64000;
var
gCurrentCommand: integer;
function NewPluginCommand: TSynEditorCommand;
begin
Result := TSynEditorCommand(gCurrentCommand);
Inc( gCurrentCommand );
end;
procedure ReleasePluginCommand(aCmd: TSynEditorCommand);
begin
if aCmd = Pred( gCurrentCommand ) then
gCurrentCommand := aCmd;
end;
{ TAbstractSynPlugin }
function TAbstractSynPlugin.AddEditor(aEditor: TCustomSynEdit): integer;
begin
if fEditors = nil then
begin
fEditors := TList.Create;
end
else
if fEditors.IndexOf( aEditor ) >= 0 then
begin
Result := -1;
Exit;
end;
aEditor.FreeNotification( Self );
Result := fEditors.Add( aEditor );
DoAddEditor( aEditor );
end;
destructor TAbstractSynPlugin.Destroy;
begin
{ RemoveEditor will free fEditors when it reaches count = 0}
while Assigned( fEditors ) do
RemoveEditor( Editors[0] );
inherited;
end;
procedure TAbstractSynPlugin.Notification(aComponent: TComponent;
aOperation: TOperation);
begin
inherited;
if aOperation = opRemove then
begin
if (aComponent = Editor) or (aComponent is TCustomSynEdit) then
RemoveEditor( TCustomSynEdit(aComponent) );
end;
end;
procedure TAbstractSynPlugin.DoAddEditor(aEditor: TCustomSynEdit);
begin
end;
procedure TAbstractSynPlugin.DoRemoveEditor(aEditor: TCustomSynEdit);
begin
end;
function TAbstractSynPlugin.RemoveEditor(aEditor: TCustomSynEdit): integer;
begin
if fEditors = nil then
begin
Result := -1;
Exit;
end;
Result := fEditors.Remove( aEditor );
//aEditor.RemoveFreeNotification( Self );
if fEditors.Count = 0 then
begin
fEditors.Free;
fEditors := nil;
end;
if Result >= 0 then
DoRemoveEditor( aEditor );
end;
procedure TAbstractSynPlugin.SetEditor(const Value: TCustomSynEdit);
var
iEditor: TCustomSynEdit;
begin
iEditor := Editor;
if iEditor <> Value then
try
if (iEditor <> nil) and (fEditors.Count = 1) then
RemoveEditor( iEditor );
if Value <> nil then
AddEditor( Value );
except
if [csDesigning] * ComponentState = [csDesigning] then
Application.HandleException(Self)
else
raise;
end;
end;
function TAbstractSynPlugin.GetEditors(aIndex: integer): TCustomSynEdit;
begin
Result := TCustomSynEdit(fEditors[aIndex]);
end;
function TAbstractSynPlugin.GetEditor: TCustomSynEdit;
begin
if fEditors <> nil then
Result := TCustomSynEdit(fEditors[0])
else
Result := nil;
end;
function TAbstractSynPlugin.GetEditorCount: integer;
begin
if fEditors <> nil then
Result := fEditors.Count
else
Result := 0;
end;
{ TAbstractSynHookerPlugin }
procedure TAbstractSynHookerPlugin.HookEditor(aEditor: TCustomSynEdit;
aCommandID: TSynEditorCommand; aOldShortCut, aNewShortCut: TShortCut);
var
iIndex: integer;
iKeystroke: TSynEditKeyStroke;
begin
Assert( aNewShortCut <> 0 );
{ shortcurts aren't created while in design-time }
if [csDesigning] * ComponentState = [csDesigning] then
begin
if TSynEdit(aEditor).Keystrokes.FindShortcut( aNewShortCut ) >= 0 then
raise ESynKeyError.Create(SYNS_EDuplicateShortCut)
else
Exit;
end;
{ tries to update old Keystroke }
if aOldShortCut <> 0 then
begin
iIndex := TSynEdit(aEditor).Keystrokes.FindShortcut( aOldShortCut );
if (iIndex >= 0) then
begin
iKeystroke := TSynEdit(aEditor).Keystrokes[iIndex];
if iKeystroke.Command = aCommandID then
begin
iKeystroke.ShortCut := aNewShortCut;
Exit;
end;
end;
end;
{ new Keystroke }
iKeystroke := TSynEdit(aEditor).Keystrokes.Add;
try
iKeystroke.ShortCut := aNewShortCut;
except
iKeystroke.Free;
raise;
end;
iKeystroke.Command := aCommandID;
aEditor.RegisterCommandHandler( {$IFDEF FPC}@{$ENDIF}OnCommand, Self );
end;
procedure TAbstractSynHookerPlugin.UnHookEditor(aEditor: TCustomSynEdit;
aCommandID: TSynEditorCommand; aShortCut: TShortCut);
var
iIndex: integer;
begin
aEditor.UnregisterCommandHandler( {$IFDEF FPC}@{$ENDIF}OnCommand );
iIndex := TSynEdit(aEditor).Keystrokes.FindShortcut( aShortCut );
if (iIndex >= 0) and
(TSynEdit(aEditor).Keystrokes[iIndex].Command = aCommandID) then
TSynEdit(aEditor).Keystrokes[iIndex].Free;
end;
{ TAbstractSynHookerPlugin }
procedure TAbstractSynSingleHookPlugin.Accept;
begin
fState := psAccepting;
try
DoAccept;
finally
fCurrentEditor := nil;
fState := psNone;
end;
end;
procedure TAbstractSynSingleHookPlugin.Cancel;
begin
fState := psCancelling;
try
DoCancel;
finally
fCurrentEditor := nil;
fState := psNone;
end;
end;
constructor TAbstractSynSingleHookPlugin.Create(aOwner: TComponent);
begin
inherited;
fCommandID := NewPluginCommand;
fShortCut := DefaultShortCut;
end;
class function TAbstractSynSingleHookPlugin.DefaultShortCut: TShortCut;
begin
Result := 0;
end;
destructor TAbstractSynSingleHookPlugin.Destroy;
begin
if Executing then
Cancel;
ReleasePluginCommand( CommandID );
inherited;
end;
procedure TAbstractSynSingleHookPlugin.DoAddEditor(
aEditor: TCustomSynEdit);
begin
if ShortCut <> 0 then
HookEditor( aEditor, CommandID, 0, ShortCut );
end;
procedure TAbstractSynSingleHookPlugin.Execute(aEditor: TCustomSynEdit);
begin
if Executing then
Cancel;
Assert( fCurrentEditor = nil );
fCurrentEditor := aEditor;
Assert( fState = psNone );
fState := psExecuting;
try
DoExecute;
except
Cancel;
raise;
end;
end;
function TAbstractSynSingleHookPlugin.Executing: boolean;
begin
Result := fState = psExecuting;
end;
function TAbstractSynSingleHookPlugin.IsShortCutStored: Boolean;
begin
Result := fShortCut <> DefaultShortCut;
end;
procedure TAbstractSynSingleHookPlugin.DoRemoveEditor(aEditor: TCustomSynEdit);
begin
if ShortCut <> 0 then
UnHookEditor( aEditor, CommandID, ShortCut );
if Executing and (CurrentEditor = aEditor) then
Cancel;
end;
procedure TAbstractSynSingleHookPlugin.SetShortCut(const Value: TShortCut);
var
cEditor: integer;
begin
if fShortCut <> Value then
begin
if Assigned(fEditors) then
if Value <> 0 then
begin
for cEditor := 0 to fEditors.Count -1 do
HookEditor( Editors[cEditor], CommandID, fShortCut, Value );
end
else
begin
for cEditor := 0 to fEditors.Count -1 do
UnHookEditor( Editors[cEditor], CommandID, fShortCut );
end;
fShortCut := Value;
end;
end;
{ TAbstractSynCompletion }
function TAbstractSynCompletion.GetCurrentEditorString: String;
var
iString: String;
cCol: integer;
iIdentChars: TSynIdentChars;
begin
iString := CurrentEditor.LineText;
if (CurrentEditor.CaretX > 1) and
(CurrentEditor.CaretX -1 <= Length(iString)) then
begin
iIdentChars := CurrentEditor.IdentChars;
for cCol := CurrentEditor.CaretX -1 downto 1 do
if not (iString[cCol] in iIdentChars) then
break;
Result := Copy( iString, cCol +1, CurrentEditor.CaretX - cCol -1);
end;
end;
procedure TAbstractSynCompletion.DoAccept;
begin
fCurrentString := '';
end;
procedure TAbstractSynCompletion.DoCancel;
begin
fCurrentString := '';
end;
procedure TAbstractSynCompletion.DoExecute;
begin
CurrentString := GetCurrentEditorString;
end;
procedure TAbstractSynCompletion.OnCommand(Sender: TObject;
AfterProcessing: boolean; var Handled: boolean;
var Command: TSynEditorCommand;
var aChar: {$IFDEF SYN_LAZARUS}TUTF8Char{$ELSE}Char{$ENDIF};
Data, HandlerData: pointer);
var
iString: String;
begin
if not Executing then
begin
if (Command = CommandID) then
begin
Execute( Sender as TCustomSynEdit );
Handled := True;
end;
end
else { Executing }
if Sender = CurrentEditor then
begin
if not AfterProcessing then
begin
case Command of
ecChar:
if aChar = #27 then
begin
Cancel;
Handled := True;
end
else
begin
{$IFDEF SYN_LAZARUS}
if (length(aChar)<>1)
or (not (aChar[1] in CurrentEditor.IdentChars)) then
Accept;
{$ELSE}
if not (aChar in CurrentEditor.IdentChars) then
Accept;
{don't handle the char}
{$ENDIF}
end;
ecLineBreak:
begin
Accept;
Handled := True;
end;
ecLeft, ecSelLeft, ecColSelLeft:
if CurrentString = '' then
Handled := True;
ecDeleteLastChar:
if CurrentString = '' then
Handled := True;
ecTab:
Accept;
ecDeleteChar,
ecRight, ecSelRight, ecColSelRight,
ecLostFocus, ecGotFocus:
; {processed on AfterProcessing}
else
Cancel;
end;
end
else { AfterProcessing }
case Command of
ecLostFocus, ecGotFocus,
ecDeleteChar:
;
ecDeleteLastChar,
ecLeft, ecSelLeft, ecColSelLeft,
ecChar:
CurrentString := GetCurrentEditorString;
ecRight, ecSelRight, ecColSelRight: begin
iString := GetCurrentEditorString;
if iString = '' then
Cancel
else
CurrentString := iString;
end;
else
if CurrentString <> GetCurrentEditorString then
Cancel;
end;
end; {endif Sender = CurrentEditor}
end;
procedure TAbstractSynCompletion.SetCurrentString(const Value: String);
begin
fCurrentString := Value;
end;
procedure TAbstractSynCompletion.AddEditor(aEditor: TCustomSynEdit);
begin
inherited AddEditor(aEditor);
end;
initialization
gCurrentCommand := ecPluginBase;
end.