QuickDrawCompatibility.h 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /*
  2. * Copyright (C) 2010 Apple Inc. All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions
  6. * are met:
  7. * 1. Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * 2. Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. *
  13. * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
  14. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  15. * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  16. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
  17. * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  18. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  19. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  20. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  21. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  22. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  23. * THE POSSIBILITY OF SUCH DAMAGE.
  24. */
  25. #ifndef QuickDrawCompatibility_h
  26. #define QuickDrawCompatibility_h
  27. #ifndef __LP64__
  28. #import <Carbon/Carbon.h>
  29. #if defined(QD_HEADERS_ARE_PRIVATE) && QD_HEADERS_ARE_PRIVATE
  30. #ifdef __cplusplus
  31. extern "C" {
  32. #endif
  33. #define MacSetRect SetRect
  34. #define MacSetRectRgn SetRectRgn
  35. #define MacUnionRgn UnionRgn
  36. extern Boolean EmptyRgn(RgnHandle);
  37. extern OSStatus CreateCGContextForPort(CGrafPtr, CGContextRef*);
  38. extern OSStatus SyncCGContextOriginWithPort(CGContextRef, CGrafPtr);
  39. extern PixMapHandle GetPortPixMap(CGrafPtr);
  40. extern QDErr NewGWorldFromPtr(GWorldPtr*, UInt32, const Rect*, CTabHandle, GDHandle, GWorldFlags, Ptr, SInt32);
  41. extern Rect* GetPortBounds(CGrafPtr, Rect*);
  42. extern Rect* GetRegionBounds(RgnHandle, Rect*);
  43. extern RgnHandle GetPortClipRegion(CGrafPtr, RgnHandle);
  44. extern RgnHandle GetPortVisibleRegion(CGrafPtr, RgnHandle);
  45. extern RgnHandle NewRgn();
  46. extern void BackColor(long);
  47. extern void DisposeGWorld(GWorldPtr);
  48. extern void DisposeRgn(RgnHandle);
  49. extern void ForeColor(long);
  50. extern void GetGWorld(CGrafPtr*, GDHandle*);
  51. extern void GetPort(GrafPtr*);
  52. extern void GlobalToLocal(Point*);
  53. extern void MacSetRect(Rect*, short, short, short, short);
  54. extern void MacSetRectRgn(RgnHandle, short, short, short, short);
  55. extern void MacUnionRgn(RgnHandle, RgnHandle, RgnHandle);
  56. extern void MovePortTo(short, short);
  57. extern void OffsetRect(Rect*, short, short);
  58. extern void OffsetRgn(RgnHandle, short, short);
  59. extern void PaintRect(const Rect*);
  60. extern void PenNormal();
  61. extern void PortSize(short, short);
  62. extern void RectRgn(RgnHandle, const Rect*);
  63. extern void SectRgn(RgnHandle, RgnHandle, RgnHandle);
  64. extern void SetGWorld(CGrafPtr, GDHandle);
  65. extern void SetOrigin(short, short);
  66. extern void SetPort(GrafPtr);
  67. extern void SetPortClipRegion(CGrafPtr, RgnHandle);
  68. extern void SetPortVisibleRegion(CGrafPtr, RgnHandle);
  69. enum {
  70. blackColor = 33,
  71. whiteColor = 30,
  72. greenColor = 341,
  73. };
  74. #ifdef __cplusplus
  75. }
  76. #endif
  77. #endif // defined(QD_HEADERS_ARE_PRIVATE) && QD_HEADERS_ARE_PRIVATE
  78. #endif // __LP64__
  79. #endif // QuickDrawCompatibility_h