log.h 772 B

123456789101112131415161718192021
  1. ///////////////////////////////////////////////////////////////////////////////
  2. // Name: wx/cocoa/log.h
  3. // Purpose: Declare wxCocoa-specific trace masks
  4. // Author: David Elliott
  5. // Modified by:
  6. // Created: 2004/02/07
  7. // Copyright: (c) 2004 David Elliott
  8. // Licence: wxWindows licence
  9. ///////////////////////////////////////////////////////////////////////////////
  10. #ifndef _WX_COCOA_LOG_H__
  11. #define _WX_COCOA_LOG_H__
  12. // General tracing (in lieu of wxLogDebug)
  13. #define wxTRACE_COCOA wxT("COCOA")
  14. // Specific tracing
  15. #define wxTRACE_COCOA_RetainRelease wxT("COCOA_RetainRelease")
  16. #define wxTRACE_COCOA_TopLevelWindow_Size wxT("COCOA_TopLevelWindow_Size")
  17. #define wxTRACE_COCOA_Window_Size wxT("COCOA_Window_Size")
  18. #endif //ndef _WX_COCOA_LOG_H__