You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MCKfakeClasses.inc 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. KOL MCK (C) 2000 by Vladimir Kladov
  3. MCKfakeClasses.inc
  4. This file redefines mirror class types to PControl / PObj
  5. to use it by Delphi compiler - while compiling mirror KOL
  6. project. At design time these definitions are not visible
  7. for Delphi IDE because of conditional compiling directives.
  8. }
  9. {$I KOLDEF.INC}
  10. {$IFNDEF FPC}
  11. {$IFDEF _D7orHigher}
  12. {$WARN UNSAFE_TYPE OFF} // Too many such warnings in Delphi7
  13. {$WARN UNSAFE_CODE OFF}
  14. {$WARN UNSAFE_CAST OFF}
  15. {$ENDIF}
  16. {$ENDIF}
  17. TKOLProject = Pointer;
  18. TKOLApplet = Pointer;
  19. TKOLForm = Pointer;
  20. TKOLDataModule = Pointer;
  21. TKOLFrame = Pointer;
  22. TKOLMDIClient = PControl;
  23. TKOLMDIChild = Pointer;
  24. TKOLService = Pointer;
  25. TKOLButton = PControl;
  26. TKOLLabel = PControl;
  27. TKOLLabelEffect = PControl;
  28. TKOLPanel = PControl;
  29. TKOLSplitter = PControl;
  30. TKOLGradientPanel = PControl;
  31. TKOLBitBtn = PControl;
  32. TKOLGroupBox = PControl;
  33. TKOLCheckBox = PControl;
  34. TKOLRadioBox = PControl;
  35. TKOLEditBox = PControl;
  36. TKOLMemo = PControl;
  37. TKOLListBox = PControl;
  38. TKOLComboBox = PControl;
  39. TKOLPaintBox = PControl;
  40. TKOLImageShow = PControl;
  41. TKOLRichEdit = PControl;
  42. TKOLProgressBar = PControl;
  43. TKOLListView = PControl;
  44. TKOLTreeView = PControl;
  45. TKOLToolbar = PControl;
  46. TKOLTabControl = PControl;
  47. TTabPage = PControl;
  48. TKOLScrollBox = PControl;
  49. TKOLDateTimePicker = PControl;
  50. TKOLTimer = PTimer;
  51. TKOLThread = PThread;
  52. TKOLImageList = PImageList;
  53. TKOLMainMenu = PMenu;
  54. TKOLPopupMenu = PMenu;
  55. TKOLOpenSaveDialog = POpenSaveDialog;
  56. //TKOLOpenDirDialog = POpenDirDialog;
  57. TKOLTrayIcon = PTrayIcon;
  58. TKOLColorDialog = PColorDialog;
  59. //TKOLActionList = PActionList;
  60. //TKOLAction = PAction;
  61. TKOLScrollBar = PControl;
  62. {$IFNDEF FPC}
  63. {$IFDEF _D7orHigher}
  64. //{$WARN UNSAFE_TYPE ON} // Too many such warnings in Delphi7
  65. //{$WARN UNSAFE_CODE ON}
  66. //{$WARN UNSAFE_CAST ON}
  67. {$ENDIF}
  68. {$ENDIF}