mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-17 17:39:20 +02:00
implemented installing components in component palette
git-svn-id: trunk@3198 -
This commit is contained in:
parent
b26adcd479
commit
f4c461d73a
@ -140,12 +140,14 @@ type
|
|||||||
procedure DoSendShowTabs;
|
procedure DoSendShowTabs;
|
||||||
procedure DoSendTabPosition;
|
procedure DoSendTabPosition;
|
||||||
function GetActivePage: String;
|
function GetActivePage: String;
|
||||||
|
function GetActivePageComponent: TPage;
|
||||||
function GetPage(aIndex: Integer): TPage;
|
function GetPage(aIndex: Integer): TPage;
|
||||||
function GetPageCount : integer;
|
function GetPageCount : integer;
|
||||||
function GetPageIndex: Integer;
|
function GetPageIndex: Integer;
|
||||||
function IsStoredActivePage: boolean;
|
function IsStoredActivePage: boolean;
|
||||||
//function InternalSetMultiLine(Value: boolean): boolean;
|
//function InternalSetMultiLine(Value: boolean): boolean;
|
||||||
procedure SetActivePage(const Value: String);
|
procedure SetActivePage(const Value: String);
|
||||||
|
procedure SetActivePageComponent(const AValue: TPage);
|
||||||
procedure SetImages(const AValue: TImageList);
|
procedure SetImages(const AValue: TImageList);
|
||||||
procedure SetOptions(const AValue: TNoteBookOptions);
|
procedure SetOptions(const AValue: TNoteBookOptions);
|
||||||
//procedure SetMultiLine(Value: boolean);
|
//procedure SetMultiLine(Value: boolean);
|
||||||
@ -169,7 +171,10 @@ type
|
|||||||
destructor Destroy; override;
|
destructor Destroy; override;
|
||||||
function TabIndexAtClientPos(ClientPos: TPoint): integer;
|
function TabIndexAtClientPos(ClientPos: TPoint): integer;
|
||||||
public
|
public
|
||||||
property ActivePage: String read GetActivePage write SetActivePage stored IsStoredActivePage;
|
property ActivePage: String read GetActivePage write SetActivePage
|
||||||
|
stored IsStoredActivePage;
|
||||||
|
property ActivePageComponent: TPage read GetActivePageComponent
|
||||||
|
write SetActivePageComponent;
|
||||||
//property MultiLine: boolean read fMultiLine write SetMultiLine default false;
|
//property MultiLine: boolean read fMultiLine write SetMultiLine default false;
|
||||||
property Page[Index: Integer]: TPage read GetPage;
|
property Page[Index: Integer]: TPage read GetPage;
|
||||||
property PageCount : integer read GetPageCount;
|
property PageCount : integer read GetPageCount;
|
||||||
@ -634,6 +639,9 @@ end.
|
|||||||
|
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.57 2003/04/22 13:27:10 mattias
|
||||||
|
implemented installing components in component palette
|
||||||
|
|
||||||
Revision 1.56 2003/04/04 16:35:24 mattias
|
Revision 1.56 2003/04/04 16:35:24 mattias
|
||||||
started package registration
|
started package registration
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user