|
@@ -451,6 +451,7 @@ private:
|
|
|
bool FShowLoginWhenNoSession;
|
|
|
bool FKeepOpenWhenNoSession;
|
|
|
bool FLocalIconsByExt;
|
|
|
+ bool FFlashTaskbar;
|
|
|
int FMaxSessions;
|
|
|
TLocaleFlagOverride FBidiModeOverride;
|
|
|
TLocaleFlagOverride FFlipChildrenOverride;
|
|
@@ -556,6 +557,7 @@ private:
|
|
|
void __fastcall SetShowLoginWhenNoSession(bool value);
|
|
|
void __fastcall SetKeepOpenWhenNoSession(bool value);
|
|
|
void __fastcall SetLocalIconsByExt(bool value);
|
|
|
+ void __fastcall SetFlashTaskbar(bool value);
|
|
|
void __fastcall SetBidiModeOverride(TLocaleFlagOverride value);
|
|
|
void __fastcall SetFlipChildrenOverride(TLocaleFlagOverride value);
|
|
|
void __fastcall SetShowTips(bool value);
|
|
@@ -753,6 +755,7 @@ public:
|
|
|
__property bool ShowLoginWhenNoSession = { read = FShowLoginWhenNoSession, write = SetShowLoginWhenNoSession };
|
|
|
__property bool KeepOpenWhenNoSession = { read = FKeepOpenWhenNoSession, write = SetKeepOpenWhenNoSession };
|
|
|
__property bool LocalIconsByExt = { read = FLocalIconsByExt, write = SetLocalIconsByExt };
|
|
|
+ __property bool FlashTaskbar = { read = FFlashTaskbar, write = SetFlashTaskbar };
|
|
|
__property int MaxSessions = { read = FMaxSessions, write = FMaxSessions };
|
|
|
__property TLocaleFlagOverride BidiModeOverride = { read = FBidiModeOverride, write = SetBidiModeOverride };
|
|
|
__property TLocaleFlagOverride FlipChildrenOverride = { read = FFlipChildrenOverride, write = SetFlipChildrenOverride };
|