mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-03 01:38:17 +02:00
167 lines
4.9 KiB
PHP
167 lines
4.9 KiB
PHP
// included by stdctrls.pp
|
|
|
|
{******************************************************************************
|
|
TMemoStrings
|
|
******************************************************************************
|
|
|
|
*****************************************************************************
|
|
* *
|
|
* This file is part of the Lazarus Component Library (LCL) *
|
|
* *
|
|
* See the file COPYING.LCL, included in this distribution, *
|
|
* for details about the copyright. *
|
|
* *
|
|
* 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. *
|
|
* *
|
|
*****************************************************************************
|
|
}
|
|
|
|
{------------------------------------------------------------------------------
|
|
Method: TMemoStrings.Get
|
|
Params:
|
|
Returns:
|
|
|
|
------------------------------------------------------------------------------}
|
|
function TMemoStrings.Get(Index : Integer): String;
|
|
var
|
|
TempStrings: TStringList;
|
|
begin
|
|
If Assigned(FMemo) and (Index >= 0)
|
|
then begin
|
|
TempStrings := TStringList.Create;
|
|
TempStrings.Text := FMemo.Text;
|
|
if Index < TempStrings.Count
|
|
then Result := TempStrings[Index]
|
|
else Result := '';
|
|
TempStrings.Free;
|
|
end else Result := '';
|
|
end;
|
|
|
|
{------------------------------------------------------------------------------
|
|
Method: TMemoStrings.GetCount
|
|
Params:
|
|
Returns:
|
|
|
|
------------------------------------------------------------------------------}
|
|
function TMemoStrings.GetCount: Integer;
|
|
var
|
|
TempStrings: TStringList;
|
|
begin
|
|
If Assigned(FMemo)
|
|
then begin
|
|
TempStrings := TStringList.Create;
|
|
TempStrings.Text := FMemo.Text;
|
|
Result := TempStrings.Count;
|
|
TempStrings.Free;
|
|
end else Result := 0;
|
|
end;
|
|
|
|
{------------------------------------------------------------------------------
|
|
Method: TMemoStrings.Create
|
|
Params:
|
|
Returns:
|
|
|
|
------------------------------------------------------------------------------}
|
|
constructor TMemoStrings.Create(AMemo: TCustomMemo);
|
|
begin
|
|
inherited Create;
|
|
FMemo := AMemo;
|
|
end;
|
|
|
|
{------------------------------------------------------------------------------
|
|
Method: TMemoStrings.Clear
|
|
Params:
|
|
Returns:
|
|
|
|
------------------------------------------------------------------------------}
|
|
procedure TMemoStrings.Clear;
|
|
begin
|
|
FMemo.Text := '';
|
|
end;
|
|
|
|
{------------------------------------------------------------------------------
|
|
Method: TMemoStrings.Delete
|
|
Params:
|
|
Returns:
|
|
|
|
------------------------------------------------------------------------------}
|
|
procedure TMemoStrings.Delete(index : Integer);
|
|
var
|
|
TempStrings: TStringList;
|
|
begin
|
|
If Assigned(FMemo) and (Index >= 0)
|
|
then begin
|
|
TempStrings := TStringList.Create;
|
|
TempStrings.Text := FMemo.Text;
|
|
if Index < TempStrings.Count
|
|
then begin
|
|
TempStrings.Delete(Index);
|
|
FMemo.Text := TempStrings.Text;
|
|
end;
|
|
TempStrings.Free;
|
|
end;
|
|
end;
|
|
|
|
{------------------------------------------------------------------------------
|
|
Method: TMemoStrings.Insert
|
|
Params:
|
|
Returns:
|
|
|
|
------------------------------------------------------------------------------}
|
|
procedure TMemoStrings.Insert(index : Integer; const S: String);
|
|
var
|
|
TempStrings: TStringList;
|
|
Cnt: Integer;
|
|
begin
|
|
If Assigned(FMemo) and (Index >= 0)
|
|
then begin
|
|
TempStrings := TStringList.Create;
|
|
TempStrings.Text := FMemo.Text;
|
|
Cnt:=TempStrings.Count;
|
|
if Index=Cnt then
|
|
CNSendMessage(LM_APPENDTEXT, FMemo, PChar(S))
|
|
else
|
|
if Index < Cnt
|
|
then begin
|
|
TempStrings.Insert(Index, S);
|
|
FMemo.Text := TempStrings.Text;
|
|
end;
|
|
TempStrings.Free;
|
|
end;
|
|
end;
|
|
|
|
// included by stdctrls.pp
|
|
|
|
{ =============================================================================
|
|
|
|
$Log$
|
|
Revision 1.5 2003/04/08 00:09:03 mattias
|
|
added LM_APPENDTEXT from hernan
|
|
|
|
Revision 1.4 2002/05/10 06:05:53 lazarus
|
|
MG: changed license to LGPL
|
|
|
|
Revision 1.3 2002/04/18 08:09:03 lazarus
|
|
MG: added include comments
|
|
|
|
Revision 1.2 2001/06/14 14:57:58 lazarus
|
|
MG: small bugfixes and less notes
|
|
|
|
Revision 1.1 2000/07/13 10:28:26 michael
|
|
+ Initial import
|
|
|
|
Revision 1.2 2000/04/13 21:25:16 lazarus
|
|
MWE:
|
|
~ Added some docu and did some cleanup.
|
|
Hans-Joachim Ott <hjott@compuserve.com>:
|
|
* TMemo.Lines works now.
|
|
+ TMemo has now a property Scrollbar.
|
|
= TControl.GetTextBuf revised :-)
|
|
+ Implementation for CListBox columns added
|
|
* Bug in TGtkCListStringList.Assign corrected.
|
|
|
|
|
|
}
|