You've already forked lazarus-ccr
tvplanit/Drag&Drop: Introduce DragMarkerColor.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8915 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -181,6 +181,8 @@ type
|
||||
TVpMouseOverItemEvent = procedure(Sender: TObject; Item: TVpNavBtnItem) of object;
|
||||
|
||||
TVpCustomNavBar = class(TVpCustomControl)
|
||||
private
|
||||
FDragMarkerColor: TColor;
|
||||
protected {private}
|
||||
{property variables}
|
||||
FActiveFolder: Integer;
|
||||
@ -409,6 +411,7 @@ type
|
||||
|
||||
property ActiveItem: Integer read FActiveItem;
|
||||
property Containers[Index: Integer]: TVpFolderContainer read GetContainer;
|
||||
property DragMarkerColor: TColor read FDragMarkerColor write FDragMarkerColor default clBlack;
|
||||
property Folders[Index: Integer]: TVpNavFolder read GetFolder;
|
||||
property FolderCount: Integer read GetFolderCount;
|
||||
property PreviousFolder : Integer read FPreviousFolder;
|
||||
@ -428,6 +431,7 @@ type
|
||||
property BackgroundMethod;
|
||||
property BorderStyle default bsNone;
|
||||
property ButtonHeight;
|
||||
property DragMarkerColor;
|
||||
property DrawingStyle;
|
||||
property FolderCollection;
|
||||
property Images;
|
||||
@ -1103,6 +1107,7 @@ begin
|
||||
FBackgroundColor := clWindow;
|
||||
FBackgroundImage := TBitmap.Create;
|
||||
FBackgroundMethod := bmNormal;
|
||||
FDragMarkerColor := clBlack;
|
||||
// FBorderStyle := bsSingle;
|
||||
FButtonHeight := 0;
|
||||
FActiveFolder := -1;
|
||||
|
Reference in New Issue
Block a user