atk.inc 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. { Pointers to basic pascal types, inserted by h2pas conversion program.}
  2. Type
  3. PLongint = ^Longint;
  4. PSmallInt = ^SmallInt;
  5. PByte = ^Byte;
  6. PWord = ^Word;
  7. PDWord = ^DWord;
  8. PDouble = ^Double;
  9. {$PACKRECORDS C}
  10. { ATK - Accessibility Toolkit
  11. Copyright 2001 Sun Microsystems Inc.
  12. This library is free software; you can redistribute it and/or
  13. modify it under the terms of the GNU Library General Public
  14. License as published by the Free Software Foundation; either
  15. version 2 of the License, or (at your option) any later version.
  16. This library is distributed in the hope that it will be useful,
  17. but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  19. Library General Public License for more details.
  20. You should have received a copy of the GNU Library General Public
  21. License along with this library; if not, write to the
  22. Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  23. Boston, MA 02111-1307, USA.
  24. }
  25. {$ifndef __ATK_H__}
  26. {$define __ATK_H__}
  27. {$include <atk/atkobject.inc}
  28. {$include <atk/atkaction.inc}
  29. {$include <atk/atkcomponent.inc}
  30. {$include <atk/atkdocument.inc}
  31. {$include <atk/atkeditabletext.inc}
  32. {$include <atk/atkgobjectaccessible.inc}
  33. {$include <atk/atkhyperlink.inc}
  34. {$include <atk/atkhypertext.inc}
  35. {$include <atk/atkimage.inc}
  36. {$include <atk/atkobjectfactory.inc}
  37. {$include <atk/atkregistry.inc}
  38. {$include <atk/atkrelation.inc}
  39. {$include <atk/atkrelationset.inc}
  40. {$include <atk/atkselection.inc}
  41. {$include <atk/atkstate.inc}
  42. {$include <atk/atkstateset.inc}
  43. {$include <atk/atkstreamablecontent.inc}
  44. {$include <atk/atktable.inc}
  45. {$include <atk/atktext.inc}
  46. {$include <atk/atkutil.inc}
  47. {$include <atk/atkvalue.inc}
  48. {$endif}
  49. { __ATK_H__ }