Difference between revisions of "Talk:RichMemo"

From Lazarus wiki
Jump to navigationJump to search
 
(6 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
 +
Just removed the script to download RichMemo from CCR, no longer useful be RichMemo has made it to Github How good is that ?
 +
--[[User:Dbannon|Dbannon]] ([[User talk:Dbannon|talk]]) 09:46, 21 June 2021 (CEST)
 +
 
==Page Renaming==
 
==Page Renaming==
 
Arent. Recently you moved RichMemo to TRichMemo.
 
Arent. Recently you moved RichMemo to TRichMemo.
Line 8: Line 12:
 
: I moved it back (I guess I overlooked the /ru page). - [[User:Arent|Arent]] ([[User talk:Arent|talk]]) 12:35, 29 July 2016 (CEST)
 
: I moved it back (I guess I overlooked the /ru page). - [[User:Arent|Arent]] ([[User talk:Arent|talk]]) 12:35, 29 July 2016 (CEST)
 
:: Thanks! Why did you rename it in the first place? [[User:Skalogryz|Skalogryz]] ([[User talk:Skalogryz|talk]]) 14:10, 29 July 2016 (CEST)
 
:: Thanks! Why did you rename it in the first place? [[User:Skalogryz|Skalogryz]] ([[User talk:Skalogryz|talk]]) 14:10, 29 July 2016 (CEST)
 +
:::<small>Kinda late reacton, but anyway</small> - Most components have a page conform their component name [[TEdit]], not just Edit, a [[TCustomEdit]] has is source in [[StdCtrls]] (as well as all standard controls) but might have a separate page for user reference. Might as well be a matter of preference, I'd prefer many small pages over single big one. - [[User:Arent|Arent]] ([[User talk:Arent|talk]]) 13:35, 5 October 2020 (CEST)
 +
 
==Todo SetParaTabs==
 
==Todo SetParaTabs==
Add more examples and descriptions about TabStops
+
Add more examples and descriptions about TabStops.
 +
 
 +
The sample below adjusts RichMemo, to have tab stops for 8 characters sharp in Mono-Width text
 
<source lang="delphi">
 
<source lang="delphi">
 
procedure InitTabStopWithWidth(out lst: TTabstopList; width: double);
 
procedure InitTabStopWithWidth(out lst: TTabstopList; width: double);

Latest revision as of 09:46, 21 June 2021

Just removed the script to download RichMemo from CCR, no longer useful be RichMemo has made it to Github How good is that ? --Dbannon (talk) 09:46, 21 June 2021 (CEST)

Page Renaming

Arent. Recently you moved RichMemo to TRichMemo. Not sure why this occurred and what's the reason for it (is there a page that disclose the requirement?), but Russian page was not moved and now it is lost (from user interface!).

Here's a consideration for renaming. While the visual component itself is indeed named TRichMemo, the package is named RichMemo. It includes a little bit more than just TRichMemo component. For example it contains TCustomRichMemo, that is used as a base for a separate package TDBRichMemo!

Thus I'm thinking that the page should named after the package name rather than component name.

I moved it back (I guess I overlooked the /ru page). - Arent (talk) 12:35, 29 July 2016 (CEST)
Thanks! Why did you rename it in the first place? Skalogryz (talk) 14:10, 29 July 2016 (CEST)
Kinda late reacton, but anyway - Most components have a page conform their component name TEdit, not just Edit, a TCustomEdit has is source in StdCtrls (as well as all standard controls) but might have a separate page for user reference. Might as well be a matter of preference, I'd prefer many small pages over single big one. - Arent (talk) 13:35, 5 October 2020 (CEST)

Todo SetParaTabs

Add more examples and descriptions about TabStops.

The sample below adjusts RichMemo, to have tab stops for 8 characters sharp in Mono-Width text

procedure InitTabStopWithWidth(out lst: TTabstopList; width: double);
const
  ReasonableCount = 12;
var
  i : integer;
begin
  lst.Count:=ReasonableCount;
  SetLength(lst.Tabs, ReasonableCount);
  for i:=0 to ReasonableCount-1 do
    lst.Tabs[i].Offset:=width*i;
end;

procedure TForm1.FormShow(Sender: TObject);
var
  w : double;
  lst : TTabStopList;
begin
  Canvas.Font.Name:='Courier New'; // RichMemo1.Font.Name
  Canvas.Font.Size:=10;            // RichMemo1.Font.Size
  w:=Canvas.TextWidth('w')/96*72;  // should be mono-width anyway
  InitTabStopWithWidth(lst, w*8);

  RichMemo1.HandleNeeded;
  RichMemo1.SetParaTabs (0,-1, lst);
end;