mirror of https://gitlab.com/basile.b/dexed.git
TListViewCopyMenu support for custom items
This commit is contained in:
parent
9e806584b3
commit
0fd5ca5461
|
@ -148,7 +148,9 @@ type
|
||||||
procedure copyAllAsList(sender: TObject);
|
procedure copyAllAsList(sender: TObject);
|
||||||
procedure copyAllAsMarkdown(sender: TObject);
|
procedure copyAllAsMarkdown(sender: TObject);
|
||||||
public
|
public
|
||||||
|
class function fixedItemCount(): integer; static;
|
||||||
constructor create(aOwner: TComponent); override;
|
constructor create(aOwner: TComponent); override;
|
||||||
|
procedure addAdditionalItem(item: TMenuItem);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
@ -851,5 +853,17 @@ begin
|
||||||
clipboard.AsText := s;
|
clipboard.AsText := s;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
class function TListViewCopyMenu.fixedItemCount(): integer;
|
||||||
|
begin
|
||||||
|
result := 7;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TListViewCopyMenu.addAdditionalItem(item: TMenuItem);
|
||||||
|
begin
|
||||||
|
if Items.Count = fixedItemCount then
|
||||||
|
Items.AddSeparator;
|
||||||
|
items.Add(item);
|
||||||
|
end;
|
||||||
|
|
||||||
end.
|
end.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue