home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wxos2240.zip / wxWindows-2.4.0 / include / wx / icon.h < prev    next >
C/C++ Source or Header  |  2002-02-05  |  717b  |  30 lines

  1. #ifndef _WX_ICON_H_BASE_
  2. #define _WX_ICON_H_BASE_
  3.  
  4. /* Commenting out since duplicated in gdicmn.h
  5. // this is for Unix (i.e. now for anything other than MSW)
  6. #undef  wxICON
  7. #define wxICON(icon_name)   wxIcon(icon_name##_xpm)
  8. */
  9.  
  10. #if defined(__WXMSW__)
  11.   #include "wx/msw/icon.h"
  12. #elif defined(__WXMOTIF__)
  13.   #include "wx/motif/icon.h"
  14. #elif defined(__WXGTK__)
  15.   #include "wx/gtk/icon.h"
  16. #elif defined(__WXX11__)
  17.   #include "wx/x11/icon.h"
  18. #elif defined(__WXMGL__)
  19.   #include "wx/mgl/icon.h"
  20. #elif defined(__WXMAC__)
  21.   #include "wx/mac/icon.h"
  22. #elif defined(__WXPM__)
  23.   #include "wx/os2/icon.h"
  24. #elif defined(__WXSTUBS__)
  25.   #include "wx/stubs/icon.h"
  26. #endif
  27.  
  28. #endif
  29.     // _WX_ICON_H_BASE_
  30.