Files
HeidiSQL/components/synedit/Source/SynEditPropertyReg.pas

405 lines
11 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: SynEditPropertyReg.pas, released 2000-04-07.
The Original Code is based on mwEditPropertyReg.pas, part of the
mwEdit component suite.
Unicode translation by Maël Hörz.
All Rights Reserved.
Contributors to the SynEdit and mwEdit projects 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: SynEditPropertyReg.pas,v 1.17.2.6 2008/09/14 16:24:59 maelh Exp $
You may retrieve the latest version of this file at the SynEdit home page,
located at http://SynEdit.SourceForge.net
Known Issues:
-------------------------------------------------------------------------------}
{$IFNDEF QSYNEDITPROPERTYREG}
unit SynEditPropertyReg;
{$ENDIF}
{$I SynEdit.inc}
interface
uses
{$IFDEF SYN_COMPILER_6_UP}
DesignIntf,
DesignEditors,
VCLEditors,
StrEdit,
{$ELSE}
DsgnIntf,
StrEdit,
{$ENDIF}
SynUnicode,
{$IFDEF USE_TNT_DESIGNTIME_SUPPORT}
TntClasses,
TntStrEdit_Design,
{$ENDIF}
Classes;
type
{$IFDEF USE_TNT_DESIGNTIME_SUPPORT}
// Wrapper around TUnicodeStringListProperty to enable the TNT property editor to
// handle TUnicodeStrings
TSynUnicodeStringListProperty = class(TWideStringListProperty)
private
FUnicodeStrings: TUnicodeStrings;
FTntStrings: TTntStrings;
protected
function GetStrings: TTntStrings; override;
procedure SetStrings(const Value: TTntStrings); override;
public
{$IFDEF SYN_COMPILER_6_UP}
constructor Create(const ADesigner: IDesigner; APropCount: Integer); override;
{$ELSE}
constructor Create(const ADesigner: IFormDesigner; APropCount: Integer); override;
{$ENDIF}
destructor Destroy; override;
end;
{$ENDIF}
TSynEditFontProperty = class(TFontProperty)
public
procedure Edit; override;
end;
TSynEditCommandProperty = class(TIntegerProperty)
public
procedure Edit; override;
function GetAttributes: TPropertyAttributes; override;
function GetValue: string; override;
procedure GetValues(Proc: TGetStrProc); override;
procedure SetValue(const Value: string); override;
end;
TSynEditKeystrokesProperty = class(TClassProperty)
public
procedure Edit; override;
function GetAttributes: TPropertyAttributes; override;
end;
TSynEditPrintMarginsProperty = class(TClassProperty)
public
procedure Edit; override;
function GetAttributes: TPropertyAttributes; override;
end;
TAutoCorrectionProperty = class(TPropertyEditor)
public
procedure Edit; override;
function GetAttributes: TPropertyAttributes; override;
function GetValue: string; override;
end;
TSynAutoCorrectComponentEditor = class(TDefaultEditor)
procedure Edit; override;
procedure ExecuteVerb(Index: Integer); override;
function GetVerb(Index: Integer): string; override;
function GetVerbCount: Integer; override;
end;
procedure Register;
implementation
uses
Dialogs,
Forms,
Graphics,
Controls,
SynEditKeyCmds,
SynEditKeyCmdsEditor,
SynEdit,
SynEditPrint,
SynEditPrintMargins,
SynEditPrintMarginsDialog,
SynCompletionProposal,
SynMacroRecorder,
SynAutoCorrect,
SynAutoCorrectEditor,
SysUtils;
{$IFDEF USE_TNT_DESIGNTIME_SUPPORT}
{ TSynUnicodeStringListProperty }
{$IFDEF SYN_COMPILER_6_UP}
constructor TSynUnicodeStringListProperty.Create(const ADesigner: IDesigner; APropCount: Integer);
{$ELSE}
constructor TSynUnicodeStringListProperty.Create(const ADesigner: IFormDesigner; APropCount: Integer);
{$ENDIF}
begin
inherited;
FUnicodeStrings := TUnicodeStringList.Create;
FTntStrings := TTntStringList.Create;
end;
destructor TSynUnicodeStringListProperty.Destroy;
begin
FTntStrings.Free;
FUnicodeStrings.Free;
inherited;
end;
function TSynUnicodeStringListProperty.GetStrings: TTntStrings;
var
UnicodeStrings: TUnicodeStrings;
i: Integer;
begin
UnicodeStrings := TUnicodeStrings(GetOrdValue);
FTntStrings.Clear;
FTntStrings.BeginUpdate;
try
for i := 0 to UnicodeStrings.Count - 1 do
FTntStrings.AddObject(UnicodeStrings[i], UnicodeStrings.Objects[i]);
finally
FTntStrings.EndUpdate;
end;
Result := FTntStrings;
end;
procedure TSynUnicodeStringListProperty.SetStrings(const Value: TTntStrings);
var
i: Integer;
begin
FUnicodeStrings.Clear;
FUnicodeStrings.BeginUpdate;
try
for i := 0 to Value.Count - 1 do
FUnicodeStrings.AddObject(Value[I], Value.Objects[I]);
finally
FUnicodeStrings.EndUpdate;
end;
SetOrdValue(Longint(FUnicodeStrings));
end;
{$ENDIF}
{ TSynEditFontProperty }
procedure TSynEditFontProperty.Edit;
const
{ context ids for the Font editor }
hcDFontEditor = 25000;
var
FontDialog: TFontDialog;
begin
FontDialog := TFontDialog.Create(Application);
try
FontDialog.Font := TFont(GetOrdValue);
FontDialog.HelpContext := hcDFontEditor;
FontDialog.Options := FontDialog.Options + [fdShowHelp, fdForceFontExist,
fdFixedPitchOnly];
if FontDialog.Execute then
SetOrdValue(Longint(FontDialog.Font));
finally
FontDialog.Free;
end;
end;
{ TSynEditCommandProperty }
procedure TSynEditCommandProperty.Edit;
begin
ShowMessage('I''m thinking that this will show a dialog that has a list'#13#10+
'of all editor commands and a description of them to choose from.');
end;
function TSynEditCommandProperty.GetAttributes: TPropertyAttributes;
begin
Result := [paMultiSelect, paDialog, paValueList, paRevertable];
end;
function TSynEditCommandProperty.GetValue: string;
begin
Result := EditorCommandToCodeString(TSynEditorCommand(GetOrdValue));
end;
procedure TSynEditCommandProperty.GetValues(Proc: TGetStrProc);
begin
GetEditorCommandValues(Proc);
end;
procedure TSynEditCommandProperty.SetValue(const Value: string);
var
NewValue: longint;
begin
if IdentToEditorCommand(Value, NewValue) then
SetOrdValue(NewValue)
else
inherited SetValue(Value);
end;
{ TSynEditKeystrokesProperty }
procedure TSynEditKeystrokesProperty.Edit;
var
Dlg: TSynEditKeystrokesEditorForm;
begin
Application.CreateForm(TSynEditKeystrokesEditorForm, Dlg);
try
Dlg.Caption := Self.GetName;
Dlg.Keystrokes := TSynEditKeystrokes(GetOrdValue);
if Dlg.ShowModal = mrOk then
begin
{ SetOrdValue will operate on all selected propertiy values }
SetOrdValue(Longint(Dlg.Keystrokes));
Modified;
end;
finally
Dlg.Free;
end;
end;
function TSynEditKeystrokesProperty.GetAttributes: TPropertyAttributes;
begin
Result := [paDialog, paReadOnly];
end;
{ TSynEditPrintMarginsProperty }
procedure TSynEditPrintMarginsProperty.Edit;
var
SynEditPrintMarginsDlg: TSynEditPrintMarginsDlg;
begin
SynEditPrintMarginsDlg := TSynEditPrintMarginsDlg.Create(nil);
try
SynEditPrintMarginsDlg.SetMargins(TSynEditPrintMargins(GetOrdValue));
if SynEditPrintMarginsDlg.ShowModal = mrOk then
SynEditPrintMarginsDlg.GetMargins(TSynEditPrintMargins(GetOrdValue));
finally
SynEditPrintMarginsDlg.Free;
end;
end;
function TSynEditPrintMarginsProperty.GetAttributes: TPropertyAttributes;
begin
Result := [paDialog, paSubProperties, paReadOnly, paSortList];
end;
procedure TSynAutoCorrectComponentEditor.Edit;
var
frmAutoCorrectEditor: TfrmAutoCorrectEditor;
begin
frmAutoCorrectEditor := TfrmAutoCorrectEditor.Create(Application);
try
frmAutoCorrectEditor.SynAutoCorrect := TSynAutoCorrect(Component);
frmAutoCorrectEditor.ShowModal;
finally
frmAutoCorrectEditor.Free;
end;
Designer.Modified;
end;
procedure TSynAutoCorrectComponentEditor.ExecuteVerb(Index: Integer);
begin
case Index of
0: Edit;
end;
end;
function TSynAutoCorrectComponentEditor.GetVerb(Index: Integer): string;
begin
case Index of
0: Result := '&Edit...';
end;
end;
function TSynAutoCorrectComponentEditor.GetVerbCount: Integer;
begin
Result := 1;
end;
procedure TAutoCorrectionProperty.Edit;
var
frmAutoCorrectEditor: TfrmAutoCorrectEditor;
begin
frmAutoCorrectEditor := TfrmAutoCorrectEditor.Create(Application);
try
frmAutoCorrectEditor.SynAutoCorrect := TSynAutoCorrect(GetComponent(0));
frmAutoCorrectEditor.ShowModal;
finally
frmAutoCorrectEditor.Free;
end;
Designer.Modified;
end;
function TAutoCorrectionProperty.GetAttributes: TPropertyAttributes;
begin
GetAttributes := [paDialog, paReadOnly];
end;
function TAutoCorrectionProperty.GetValue: string;
begin
GetValue := '(AutoCorrections)';
end;
{ Register }
procedure Register;
begin
// TODO: Delphi 2005 has native Unicode property editors, we should use them (but I don't have D2005 to test)
{$IFDEF USE_TNT_DESIGNTIME_SUPPORT}
// Troy Wolbrink added my (Maël Hörz) WideChar property editor to
// TntUnicodeStringProperty_Design.pas.
// As it is registered there, no need to do it a second time here.
// However as he uses TTntStrings and we use TUnicodeStrings, we need
// a wrapper to do the "translation".
RegisterPropertyEditor(TypeInfo(TUnicodeStrings), nil,
'', TSynUnicodeStringListProperty);
{$ELSE}
RegisterPropertyEditor(TypeInfo(WideChar), nil,
'', TCharProperty);
RegisterPropertyEditor(TypeInfo(TUnicodeStrings), nil,
'', TStringListProperty);
{$ENDIF}
RegisterPropertyEditor(TypeInfo(TFont), TCustomSynEdit,
'Font', TSynEditFontProperty);
RegisterPropertyEditor(TypeInfo(TSynEditorCommand), nil,
'', TSynEditCommandProperty);
RegisterPropertyEditor(TypeInfo(TSynEditKeystrokes), nil,
'', TSynEditKeystrokesProperty);
RegisterPropertyEditor(TypeInfo(TSynEditPrintMargins), TPersistent,
'', TSynEditPrintMarginsProperty);
RegisterPropertyEditor(TypeInfo(TStrings), TSynAutoCorrect,
'Items', TAutoCorrectionProperty);
RegisterComponentEditor(TSynAutoCorrect, TSynAutoCorrectComponentEditor);
{$IFDEF SYN_DELPHI_6_UP} // TODO: shouldn't that be COMPILER_6_UP instead?
RegisterPropertyEditor(TypeInfo(TShortCut), TSynCompletionProposal, '',
TShortCutProperty);
RegisterPropertyEditor(TypeInfo(TShortCut), TSynAutoComplete, '',
TShortCutProperty);
RegisterPropertyEditor(TypeInfo(TShortCut), TSynMacroRecorder, '',
TShortCutProperty);
{$ENDIF}
end;
end.