You've already forked lazarus-ccr
145 lines
3.8 KiB
ObjectPascal
145 lines
3.8 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/MPL-1.1.html
|
||
|
|
||
|
Software distributed under the License is distributed on an "AS IS" basis,
|
||
|
WITHOUT WARRANTY OF ANY KIND, either expressed or implied. See the License for
|
||
|
the specific language governing rights and limitations under the License.
|
||
|
|
||
|
The Original Code is: JvStrLEdit.PAS, released on 2002-05-26.
|
||
|
|
||
|
The Initial Developer of the Original Code is Peter Th�rnqvist [peter3 att users dott sourceforge dott net]
|
||
|
Portions created by Peter Th�rnqvist are Copyright (C) 2002 Peter Th�rnqvist.
|
||
|
All Rights Reserved.
|
||
|
|
||
|
Contributor(s):
|
||
|
|
||
|
You may retrieve the latest version of this file at the Project JEDI's JVCL home page,
|
||
|
located at http://jvcl.delphi-jedi.org
|
||
|
|
||
|
Description:
|
||
|
TStrings property editor originally from the Rx library (duplicated for internal use)
|
||
|
|
||
|
Known Issues:
|
||
|
-----------------------------------------------------------------------------}
|
||
|
// $Id$
|
||
|
|
||
|
unit JvStringsForm;
|
||
|
|
||
|
{$mode objfpc}{$H+}
|
||
|
|
||
|
interface
|
||
|
|
||
|
uses
|
||
|
LCLType,
|
||
|
Classes,
|
||
|
//Windows,
|
||
|
Forms, Controls, Dialogs, StdCtrls, ExtCtrls,
|
||
|
//DesignIntf, DesignEditors,
|
||
|
JvComponent;
|
||
|
|
||
|
type
|
||
|
TJvStrEditDlg = class(TForm) //TJvForm)
|
||
|
Memo: TMemo;
|
||
|
LineCount: TLabel;
|
||
|
OpenDialog: TOpenDialog;
|
||
|
SaveDialog: TSaveDialog;
|
||
|
OKBtn: TButton;
|
||
|
CancelBtn: TButton;
|
||
|
HelpBtn: TButton;
|
||
|
LoadBtn: TButton;
|
||
|
SaveBtn: TButton;
|
||
|
BevelBorder: TBevel;
|
||
|
procedure FileOpen(Sender: TObject);
|
||
|
procedure FileSave(Sender: TObject);
|
||
|
procedure UpdateStatus(Sender: TObject);
|
||
|
procedure FormCreate(Sender: TObject);
|
||
|
procedure MemoKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState);
|
||
|
procedure HelpBtnClick(Sender: TObject);
|
||
|
private
|
||
|
// (rom) removed string[15] to increase flexibility
|
||
|
SingleLine: string;
|
||
|
MultipleLines: string;
|
||
|
FFileName: string;
|
||
|
end;
|
||
|
|
||
|
implementation
|
||
|
|
||
|
uses
|
||
|
SysUtils, //LibHelp,
|
||
|
JvDsgnConsts;
|
||
|
|
||
|
{$R *.lfm}
|
||
|
|
||
|
procedure TJvStrEditDlg.FileOpen(Sender: TObject);
|
||
|
begin
|
||
|
with OpenDialog do
|
||
|
begin
|
||
|
Filter := RsTextFilter;
|
||
|
FileName := FFileName;
|
||
|
if Execute then
|
||
|
begin
|
||
|
FFileName := FileName;
|
||
|
Memo.Lines.LoadFromFile(FileName);
|
||
|
end;
|
||
|
end;
|
||
|
end;
|
||
|
|
||
|
procedure TJvStrEditDlg.FileSave(Sender: TObject);
|
||
|
begin
|
||
|
if SaveDialog.FileName = '' then
|
||
|
SaveDialog.FileName := FFileName;
|
||
|
with SaveDialog do
|
||
|
begin
|
||
|
Filter := RsTextFilter;
|
||
|
if Execute then
|
||
|
Memo.Lines.SaveToFile(FileName);
|
||
|
end;
|
||
|
end;
|
||
|
|
||
|
procedure TJvStrEditDlg.UpdateStatus(Sender: TObject);
|
||
|
var
|
||
|
Count: Integer;
|
||
|
begin
|
||
|
Count := Memo.Lines.Count;
|
||
|
if Count = 1 then
|
||
|
LineCount.Caption := Format('%d %s', [Count, SingleLine])
|
||
|
else
|
||
|
LineCount.Caption := Format('%d %s', [Count, MultipleLines]);
|
||
|
end;
|
||
|
|
||
|
procedure TJvStrEditDlg.FormCreate(Sender: TObject);
|
||
|
begin
|
||
|
(*** NOT CONVERTED ***
|
||
|
HelpContext := hcDStringListEditor;
|
||
|
OpenDialog.HelpContext := hcDStringListLoad;
|
||
|
SaveDialog.HelpContext := hcDStringListSave;
|
||
|
***)
|
||
|
SingleLine := RsSingleLine;
|
||
|
MultipleLines := RsMultipleLines;
|
||
|
// set anchors
|
||
|
BevelBorder.Anchors := [akLeft, akTop, akRight, akBottom];
|
||
|
Memo.Anchors := [akLeft, akTop, akRight, akBottom];
|
||
|
OKBtn.Anchors := [akRight, akBottom];
|
||
|
CancelBtn.Anchors := [akRight, akBottom];
|
||
|
HelpBtn.Anchors := [akRight, akBottom];
|
||
|
LoadBtn.Anchors := [akLeft, akBottom];
|
||
|
SaveBtn.Anchors := [akLeft, akBottom];
|
||
|
end;
|
||
|
|
||
|
procedure TJvStrEditDlg.MemoKeyDown(Sender: TObject; var Key: Word;
|
||
|
Shift: TShiftState);
|
||
|
begin
|
||
|
if Key = VK_ESCAPE then
|
||
|
CancelBtn.Click;
|
||
|
end;
|
||
|
|
||
|
procedure TJvStrEditDlg.HelpBtnClick(Sender: TObject);
|
||
|
begin
|
||
|
Application.HelpContext(HelpContext);
|
||
|
end;
|
||
|
|
||
|
end.
|