VCLCommon.h 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. //---------------------------------------------------------------------------
  2. #ifndef VCLCommonH
  3. #define VCLCommonH
  4. //---------------------------------------------------------------------------
  5. #include "Common.h"
  6. #include "Configuration.h"
  7. #include "Exceptions.h"
  8. #include <ComCtrls.hpp>
  9. #include <HistoryComboBox.hpp>
  10. //---------------------------------------------------------------------------
  11. const TColor LinkColor = clBlue;
  12. //---------------------------------------------------------------------------
  13. void __fastcall FixListColumnWidth(TListView * TListView, int Index);
  14. void __fastcall AutoSizeListColumnsWidth(TListView * ListView, int ColumnToShrinkIndex = -1);
  15. void __fastcall EnableControl(TControl* Control, bool Enable);
  16. void __fastcall ReadOnlyControl(TControl * Control, bool ReadOnly = true);
  17. void __fastcall ReadOnlyAndEnabledControl(TControl * Control, bool ReadOnly, bool Enabled);
  18. int CalculateCheckBoxWidth(TControl * Control, const UnicodeString & Caption);
  19. void AutoSizeCheckBox(TCheckBox * CheckBox);
  20. void __fastcall InitializeSystemSettings();
  21. void __fastcall FinalizeSystemSettings();
  22. void __fastcall LocalSystemSettings(TCustomForm * Control);
  23. void __fastcall UseSystemSettingsPre(TCustomForm * Control);
  24. void __fastcall UseSystemSettingsPost(TCustomForm * Control);
  25. void __fastcall UseSystemSettings(TCustomForm * Control);
  26. void __fastcall ResetSystemSettings(TCustomForm * Control);
  27. void __fastcall LinkLabel(TStaticText * StaticText, UnicodeString Url = L"",
  28. TNotifyEvent OnEnter = NULL);
  29. void __fastcall LinkActionLabel(TStaticText * StaticText);
  30. void __fastcall LinkAppLabel(TStaticText * StaticText);
  31. void __fastcall HintLabel(TStaticText * StaticText, UnicodeString Hint = L"");
  32. void __fastcall HotTrackLabel(TLabel * Label);
  33. void __fastcall SetLabelHintPopup(TLabel * Label, const UnicodeString & Hint);
  34. bool __fastcall HasLabelHintPopup(TControl * Control, const UnicodeString & HintStr);
  35. void __fastcall FixComboBoxResizeBug(TCustomComboBox * ComboBox);
  36. void __fastcall ShowAsModal(TForm * Form, void *& Storage, bool BringToFront = true, bool TriggerModalStarted = false);
  37. void __fastcall HideAsModal(TForm * Form, void *& Storage);
  38. bool __fastcall ReleaseAsModal(TForm * Form, void *& Storage);
  39. bool __fastcall IsMainFormLike(TCustomForm * Form);
  40. bool __fastcall SelectDirectory(UnicodeString & Path, const UnicodeString Prompt,
  41. bool PreserveFileName);
  42. void SelectDirectoryForEdit(THistoryComboBox * Edit);
  43. enum TListViewCheckAll { caCheck, caUncheck, caToggle };
  44. bool __fastcall ListViewAnyChecked(TListView * ListView, bool Checked = true);
  45. void __fastcall ListViewCheckAll(TListView * ListView,
  46. TListViewCheckAll CheckAll);
  47. void __fastcall ComboAutoSwitchInitialize(TComboBox * ComboBox);
  48. void __fastcall ComboAutoSwitchLoad(TComboBox * ComboBox, TAutoSwitch Value);
  49. TAutoSwitch __fastcall ComboAutoSwitchSave(TComboBox * ComboBox);
  50. void __fastcall CheckBoxAutoSwitchLoad(TCheckBox * CheckBox, TAutoSwitch Value);
  51. TAutoSwitch __fastcall CheckBoxAutoSwitchSave(TCheckBox * CheckBox);
  52. void __fastcall InstallPathWordBreakProc(TWinControl * Control);
  53. void __fastcall SetVerticalControlsOrder(TControl ** ControlsOrder, int Count);
  54. void __fastcall SetHorizontalControlsOrder(TControl ** ControlsOrder, int Count);
  55. void __fastcall MakeNextInTabOrder(TWinControl * Control, TWinControl * After);
  56. void __fastcall CutFormToDesktop(TForm * Form);
  57. void __fastcall UpdateFormPosition(TCustomForm * Form, TPosition Position);
  58. void __fastcall ResizeForm(TCustomForm * Form, int Width, int Height);
  59. TComponent * __fastcall GetFormOwner();
  60. TForm * __fastcall GetMainForm();
  61. void __fastcall SetCorrectFormParent(TForm * Form);
  62. void __fastcall InvokeHelp(TWinControl * Control);
  63. void __fastcall FixFormIcons(TForm * Form);
  64. Forms::TMonitor * __fastcall FormMonitor(TCustomForm * Form);
  65. int __fastcall GetLastMonitor();
  66. void __fastcall SetLastMonitor(int MonitorNum);
  67. TForm * __fastcall _SafeFormCreate(TMetaClass * FormClass, TComponent * Owner);
  68. template<class FormType>
  69. FormType * __fastcall SafeFormCreate(TComponent * Owner = NULL)
  70. {
  71. return dynamic_cast<FormType *>(_SafeFormCreate(__classid(FormType), Owner));
  72. }
  73. bool __fastcall SupportsSplitButton();
  74. TModalResult __fastcall DefaultResult(TCustomForm * Form, TButton * DefaultButton = NULL);
  75. void __fastcall DefaultButton(TButton * Button, bool Default);
  76. void __fastcall MemoKeyDown(TObject * Sender, WORD & Key, TShiftState Shift);
  77. void __fastcall UseDesktopFont(TControl * Control);
  78. void __fastcall UpdateDesktopFont();
  79. UnicodeString __fastcall FormatFormCaption(
  80. TCustomForm * Form, const UnicodeString & Caption, const UnicodeString & SessionName = UnicodeString());
  81. UnicodeString __fastcall FormatMainFormCaption(
  82. const UnicodeString & Caption, const UnicodeString & SessionName = UnicodeString());
  83. TShiftState __fastcall AllKeyShiftStates();
  84. void __fastcall RealignControl(TControl * Control);
  85. void __fastcall HookFormActivation(TCustomForm * Form);
  86. void __fastcall UnhookFormActivation(TCustomForm * Form);
  87. void __fastcall ShowFormNoActivate(TForm * Form);
  88. TPanel * __fastcall CreateBlankPanel(TComponent * Owner);
  89. typedef void __fastcall (*TRescaleEvent)(TComponent * Sender, TObject * Token);
  90. void __fastcall SetRescaleFunction(
  91. TComponent * Component, TRescaleEvent OnRescale, TObject * Token = NULL, bool OwnsToken = false);
  92. void __fastcall RecordFormImplicitRescale(TForm * Form);
  93. TWindowState GetWindowStateBeforeMimimize(TForm * Form);
  94. void __fastcall CountClicksForWindowPrint(TForm * Form);
  95. bool IsButtonBeingClicked(TButtonControl * Button);
  96. bool IsCancelButtonBeingClicked(TControl * Control);
  97. TCanvas * CreateControlCanvas(TControl * Control);
  98. void AutoSizeButton(TButton * Button);
  99. namespace Tb2item { class TTBCustomItem; }
  100. void GiveTBItemPriority(Tb2item::TTBCustomItem * Item);
  101. //---------------------------------------------------------------------------
  102. #endif // VCLCommonH