VCLCommon.h 1.0 KB

123456789101112131415161718
  1. //---------------------------------------------------------------------------
  2. #ifndef VCLCommonH
  3. #define VCLCommonH
  4. //---------------------------------------------------------------------------
  5. #include <ComCtrls.hpp>
  6. //---------------------------------------------------------------------------
  7. void __fastcall AdjustListColumnsWidth(TListView* ListView);
  8. void __fastcall EnableControl(TControl* Control, bool Enable);
  9. void __fastcall UseSystemSettings(TCustomForm * Control, void ** Settings = NULL);
  10. void __fastcall RevokeSystemSettings(TCustomForm * Control, void * Settings);
  11. void __fastcall LinkLabel(TLabel * Label);
  12. void __fastcall ShowAsModal(TForm * Form, void *& Storage);
  13. void __fastcall HideAsModal(TForm * Form, void *& Storage);
  14. void __fastcall ReleaseAsModal(TForm * Form, void *& Storage);
  15. bool __fastcall SelectDirectory(AnsiString & Path, const AnsiString Prompt,
  16. bool PreserveFileName);
  17. //---------------------------------------------------------------------------
  18. #endif // VCLCommonH