| 123456789101112131415161718 |
- //---------------------------------------------------------------------------
- #ifndef VCLCommonH
- #define VCLCommonH
- //---------------------------------------------------------------------------
- #include <ComCtrls.hpp>
- //---------------------------------------------------------------------------
- void __fastcall AdjustListColumnsWidth(TListView* ListView);
- void __fastcall EnableControl(TControl* Control, bool Enable);
- void __fastcall UseSystemSettings(TCustomForm * Control, void ** Settings = NULL);
- void __fastcall RevokeSystemSettings(TCustomForm * Control, void * Settings);
- void __fastcall LinkLabel(TLabel * Label);
- void __fastcall ShowAsModal(TForm * Form, void *& Storage);
- void __fastcall HideAsModal(TForm * Form, void *& Storage);
- void __fastcall ReleaseAsModal(TForm * Form, void *& Storage);
- bool __fastcall SelectDirectory(AnsiString & Path, const AnsiString Prompt,
- bool PreserveFileName);
- //---------------------------------------------------------------------------
- #endif // VCLCommonH
|