mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: not commited uColumns.pas
This commit is contained in:
parent
35af2e31cf
commit
35986fef4e
1 changed files with 11 additions and 0 deletions
|
|
@ -85,6 +85,7 @@ type
|
|||
CursorText,
|
||||
InactiveCursorColor,
|
||||
InactiveMarkColor: TColor;
|
||||
BorderFrameWidth :integer;
|
||||
UseInvertedSelection: Boolean;
|
||||
UseInactiveSelColor: Boolean;
|
||||
Overcolor: Boolean;
|
||||
|
|
@ -145,6 +146,8 @@ type
|
|||
function GetColumnUseInvertedSelection(const Index: Integer): Boolean;
|
||||
function GetColumnUseInactiveSelColor(const Index: Integer): Boolean;
|
||||
function GetColumnOvercolor(const Index: Integer): Boolean;
|
||||
function GetColumnBorderFrameWidth(const Index: Integer):integer;
|
||||
|
||||
//---------------------
|
||||
function GetColumnPrm(const Index: Integer): TColPrm;
|
||||
//---------------------
|
||||
|
|
@ -417,6 +420,14 @@ begin
|
|||
Result := gAllowOverColor;
|
||||
end;
|
||||
|
||||
function TPanelColumnsClass.GetColumnBorderFrameWidth(const Index: Integer): integer;
|
||||
begin
|
||||
if FCustomView and (Index < Flist.Count) then
|
||||
Result := TPanelColumn(Flist[Index]).BorderFrameWidth
|
||||
else
|
||||
Result := gBorderFrameWidth;
|
||||
end;
|
||||
|
||||
function TPanelColumnsClass.GetColumnPrm(const Index: Integer): TColPrm;
|
||||
begin
|
||||
if Index >= Flist.Count then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue