DefinedClassesInputMethodKit.pas 680 B

12345678910111213141516171819202122232425
  1. {$mode delphi}
  2. {$modeswitch objectivec1}
  3. {$modeswitch cvar}
  4. {$packrecords c}
  5. {$IFNDEF FPC_DOTTEDUNITS}
  6. unit DefinedClassesInputMethodKit;
  7. {$ENDIF FPC_DOTTEDUNITS}
  8. interface
  9. type
  10. IMKCandidates = objcclass external;
  11. IMKInputController = objcclass external;
  12. IMKServer = objcclass external;
  13. IMKMouseHandlingProtocol = objcprotocol external name 'IMKMouseHandling';
  14. IMKStateSettingProtocol = objcprotocol external name 'IMKStateSetting';
  15. type
  16. IMKCandidatesPrivate = objcclass external;
  17. IMKInputControllerPrivate = objcclass external;
  18. IMKServerPrivate = objcclass external;
  19. IMKServerProxyProtocol = objcprotocol external name 'IMKServerProxy';
  20. implementation
  21. end.