Files
lazarus-ccr/components/rx/trunk/dcl_rxtools/rxtextholder_editor.pas
alexs75 22d20ee401 RxFPC:fix year in files header
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8043 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2021-05-20 06:28:45 +00:00

351 lines
9.5 KiB
ObjectPascal

{ RxTextHolder_Editor
Copyright (C) 2005-2021 Lagunov Aleksey alexs75@yandex.ru and Lazarus team
original conception from rx library for Delphi (c)
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at your
option) any later version with the following modification:
As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent modules,and
to copy and distribute the resulting executable under terms of your choice,
provided that you also meet, for each linked independent module, the terms
and conditions of the license of that module. An independent module is a
module which is not derived from or based on this library. If you modify
this library, you may extend this exception to your version of the library,
but you are not obligated to do so. If you do not wish to do so, delete this
exception statement from your version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License
for more details.
You should have received a copy of the GNU Library General Public License
along with this library; if not, write to the Free Software Foundation,
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
}
unit RxTextHolder_Editor;
{$I rx.inc}
interface
uses
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, ButtonPanel, ExtCtrls,
StdCtrls, Menus, Buttons, ActnList, SynEdit, RxTextHolder, SynEditHighlighter;
type
{ TRxTextHolder_EditorForm }
TRxTextHolder_EditorForm = class(TForm)
itemUp: TAction;
itemDown: TAction;
BitBtn3: TBitBtn;
BitBtn4: TBitBtn;
ComboBox1: TComboBox;
Edit1: TEdit;
itemRemove: TAction;
itemAdd: TAction;
ActionList1: TActionList;
BitBtn1: TBitBtn;
BitBtn2: TBitBtn;
ButtonPanel1: TButtonPanel;
Label1: TLabel;
Label2: TLabel;
ListBox1: TListBox;
MenuItem3: TMenuItem;
MenuItem4: TMenuItem;
MenuItem5: TMenuItem;
Panel4: TPanel;
SynEdit1: TSynEdit;
MenuItem1: TMenuItem;
MenuItem2: TMenuItem;
Panel1: TPanel;
Panel2: TPanel;
Panel3: TPanel;
PopupMenu1: TPopupMenu;
Splitter1: TSplitter;
procedure ComboBox1Change(Sender: TObject);
procedure Edit1Exit(Sender: TObject);
procedure FormCloseQuery(Sender: TObject; var CanClose: boolean);
procedure FormCreate(Sender: TObject);
procedure itemAddExecute(Sender: TObject);
procedure itemDownExecute(Sender: TObject);
procedure itemRemoveExecute(Sender: TObject);
procedure itemUpExecute(Sender: TObject);
procedure ListBox1Click(Sender: TObject);
procedure ListBox1SelectionChange(Sender: TObject; User: boolean);
procedure SynEdit1Exit(Sender: TObject);
private
FTextHolder:TRxTextHolder;
FCurrentItem: TRxTextHolderItem;
FHighlighter: TSynCustomHighlighter;
procedure UpdateTextNames;
procedure UpdateHighlighter;
procedure Localize;
procedure UpdateCtrlState;
function MakeItemName(ABaseName:string):string;
public
end;
function ShowRxTextHolderEditorForm(ATextHolder:TRxTextHolder):boolean;
implementation
uses
rxconst, SynHighlighterSQL, SynHighlighterHTML, SynHighlighterXML;
function ShowRxTextHolderEditorForm(ATextHolder:TRxTextHolder):boolean;
var
RxTextHolder_EditorForm: TRxTextHolder_EditorForm;
begin
RxTextHolder_EditorForm:=TRxTextHolder_EditorForm.Create(Application);
RxTextHolder_EditorForm.FTextHolder.Assign(ATextHolder);
RxTextHolder_EditorForm.UpdateTextNames;
RxTextHolder_EditorForm.UpdateHighlighter;
Result:=RxTextHolder_EditorForm.ShowModal = mrOk;
if Result then
begin
ATextHolder.Assign(RxTextHolder_EditorForm.FTextHolder);
end;
RxTextHolder_EditorForm.Free;
end;
{$R *.lfm}
{ TRxTextHolder_EditorForm }
procedure TRxTextHolder_EditorForm.FormCreate(Sender: TObject);
begin
FTextHolder:=TRxTextHolder.Create(Self);
FHighlighter:=nil;
Localize;
end;
procedure TRxTextHolder_EditorForm.itemAddExecute(Sender: TObject);
var
S: String;
begin
if Assigned(FCurrentItem) then
S:=FCurrentItem.Caption
else
S:='';
FCurrentItem:=FTextHolder.Items.Add(MakeItemName(S));
ListBox1.Items.Add(FCurrentItem.Caption);
ListBox1.ItemIndex:=ListBox1.Items.Count-1;
ListBox1Click(nil);
if SynEdit1.Enabled then
SynEdit1.SetFocus;
end;
procedure TRxTextHolder_EditorForm.itemUpExecute(Sender: TObject);
var
I: Integer;
begin
if Assigned(FCurrentItem) then
begin
I:=ListBox1.ItemIndex;
if (I>0) then
begin
FTextHolder.Items.Exchange(I, I-1);
ListBox1.Items.Exchange(I, I-1);
ListBox1.ItemIndex := I-1;
UpdateCtrlState;
end;
end;
end;
procedure TRxTextHolder_EditorForm.itemDownExecute(Sender: TObject);
var
I: Integer;
begin
if Assigned(FCurrentItem) then
begin
I:=ListBox1.ItemIndex;
if (I>=0) And (I<ListBox1.Items.Count-1) then
begin
FTextHolder.Items.Exchange(I, I+1);
ListBox1.Items.Exchange(I, I+1);
ListBox1.ItemIndex := I+1;
UpdateCtrlState;
end;
end;
end;
procedure TRxTextHolder_EditorForm.itemRemoveExecute(Sender: TObject);
var
I: Integer;
begin
if Assigned(FCurrentItem) then
begin
I:=ListBox1.ItemIndex;
ListBox1.Items.Delete(I);
FTextHolder.Items.Delete(I);
if ListBox1.Items.Count > 0 then
ListBox1.ItemIndex:=0;
ListBox1Click(nil);
end;
UpdateCtrlState;
end;
procedure TRxTextHolder_EditorForm.Edit1Exit(Sender: TObject);
begin
if Assigned(FCurrentItem) then
begin
FCurrentItem.Caption:=Edit1.Text;
ListBox1.Items[ListBox1.ItemIndex]:=Edit1.Text;
end;
end;
procedure TRxTextHolder_EditorForm.ComboBox1Change(Sender: TObject);
begin
if ComboBox1.ItemIndex<>Ord(FTextHolder.Highlighter) Then
begin
FTextHolder.Highlighter:=TRxTextHolderHighlighter(ComboBox1.ItemIndex);
UpdateHighlighter;
end;
end;
procedure TRxTextHolder_EditorForm.FormCloseQuery(Sender: TObject;
var CanClose: boolean);
begin
if ModalResult = mrOk then
begin
Edit1Exit(nil);
SynEdit1Exit(nil);
end;
end;
procedure TRxTextHolder_EditorForm.ListBox1Click(Sender: TObject);
begin
if (ListBox1.ItemIndex>=0) and (ListBox1.ItemIndex<ListBox1.Items.Count) then
begin
FCurrentItem:=FTextHolder.Items[ListBox1.ItemIndex];
Edit1.Text:=FCurrentItem.Caption;
SynEdit1.Text:=FCurrentItem.Lines.Text;
if Visible then
SynEdit1.Enabled:=true;
end
else
begin
FCurrentItem:=Nil;
SynEdit1.Lines.Clear;
end;
UpdateCtrlState;
end;
procedure TRxTextHolder_EditorForm.ListBox1SelectionChange(Sender: TObject;
User: boolean);
begin
//
end;
procedure TRxTextHolder_EditorForm.SynEdit1Exit(Sender: TObject);
begin
if Assigned(FCurrentItem) then
FCurrentItem.Lines.Assign(SynEdit1.Lines);
end;
procedure TRxTextHolder_EditorForm.UpdateTextNames;
var
i: Integer;
begin
ListBox1.Items.BeginUpdate;
ListBox1.Items.Clear;
for i:=0 to FTextHolder.Items.Count-1 do
ListBox1.Items.Add(FTextHolder.Items[i].Caption);
ListBox1.Items.EndUpdate;
if ListBox1.Items.Count > 0 then
ListBox1.ItemIndex:=0;
ListBox1Click(nil);
end;
procedure TRxTextHolder_EditorForm.UpdateHighlighter;
begin
if assigned(FHighlighter) then
begin
SynEdit1.Highlighter:=nil;
FreeAndNil(FHighlighter);
end;
case FTextHolder.Highlighter of
rxSynXML: FHighlighter := TSynXMLSyn.Create(Self);
rxSynHTML: FHighlighter := TSynHTMLSyn.Create(Self);
rxSynSQL: FHighlighter := TSynSQLSyn.Create(Self);
end;
if Assigned(FHighlighter) then
SynEdit1.Highlighter := FHighlighter;
if ComboBox1.ItemIndex<>Ord(FTextHolder.Highlighter) Then
ComboBox1.ItemIndex := Ord(FTextHolder.Highlighter);
end;
procedure TRxTextHolder_EditorForm.Localize;
begin
Caption:=sRxTextHolderEditor;
Label1.Caption:=sRxTextHolderTextCaption;
Label2.Caption:=sRxTextFolderSynHighlighter;
itemAdd.Caption:=sRxTextHolderAdd;
itemRemove.Caption:=sRxTextHolderRemove;
itemUp.Caption:=sRxTextHolderMoveUp;
itemDown.Caption:=sRxTextHolderMoveDown;
// contents must be added in order of declaration in TRxTextHolderHighlighter
ComboBox1.Items.Clear;
ComboBox1.Items.Add(sRxTextFolderSynNone);
ComboBox1.Items.Add(sRxTextFolderSynXML);
ComboBox1.Items.Add(sRxTextFolderSynHTML);
ComboBox1.Items.Add(sRxTextFolderSynSQL);
end;
procedure TRxTextHolder_EditorForm.UpdateCtrlState;
begin
itemRemove.Enabled:=(FTextHolder.Items.Count>0) and Assigned(FCurrentItem);
itemUp.Enabled:=itemRemove.Enabled and (ListBox1.ItemIndex>0);
itemDown.Enabled:=itemRemove.Enabled and (ListBox1.ItemIndex<ListBox1.Items.Count-1);
Edit1.Enabled:=Assigned(FCurrentItem);
SynEdit1.Enabled:=Assigned(FCurrentItem);
ComboBox1.Enabled:=Assigned(FCurrentItem);
end;
function TRxTextHolder_EditorForm.MakeItemName(ABaseName: string): string;
var
i: Integer;
FBaseName, S: String;
begin
FBaseName:=sRxTextFolderItem;
i:=0;
if ABaseName <> '' then
begin
S:='';
for i:=Length(ABaseName) downto 1 do
if ABaseName[i] in ['0'..'9'] then
S:=ABaseName[i] + S
else
Break;
if S<>'' then
begin
i:=StrToIntDef(S, 0);
FBaseName:=Copy(ABaseName, 1, Length(ABaseName) - Length(S));
end;
end;
repeat
Inc(i);
Result:=FBaseName+IntToStr(i);
until (FTextHolder.IndexByName(Result) = -1);
end;
end.