home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wxos2240.zip / wxWindows-2.4.0 / src / common / artstd.cpp < prev    next >
C/C++ Source or Header  |  2002-11-04  |  8KB  |  208 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // Name:        artstd.cpp
  3. // Purpose:     stock wxArtProvider instance with default wxWin art
  4. // Author:      Vaclav Slavik
  5. // Modified by:
  6. // Created:     18/03/2002
  7. // RCS-ID:      $Id: artstd.cpp,v 1.8.2.1 2002/11/03 17:19:10 VS Exp $
  8. // Copyright:   (c) Vaclav Slavik
  9. // Licence:     wxWindows licence
  10. /////////////////////////////////////////////////////////////////////////////
  11.  
  12. // ---------------------------------------------------------------------------
  13. // headers
  14. // ---------------------------------------------------------------------------
  15.  
  16. // For compilers that support precompilation, includes "wx.h".
  17. #include "wx/wxprec.h"
  18.  
  19. #if defined(__BORLANDC__)
  20.     #pragma hdrstop
  21. #endif
  22.  
  23. #ifndef WX_PRECOMP
  24.     #if WXWIN_COMPATIBILITY_2_2
  25.         #include "wx/app.h"
  26.     #endif
  27. #endif
  28.  
  29. #include "wx/artprov.h"
  30.  
  31. // For the purposes of forcing this module to link
  32. char g_ArtProviderModule = 0;
  33.  
  34. // ----------------------------------------------------------------------------
  35. // wxDefaultArtProvider
  36. // ----------------------------------------------------------------------------
  37.  
  38. class wxDefaultArtProvider : public wxArtProvider
  39. {
  40. protected:
  41.     virtual wxBitmap CreateBitmap(const wxArtID& id, const wxArtClient& client,
  42.                                   const wxSize& size);
  43. };
  44.  
  45. // ----------------------------------------------------------------------------
  46. // helper macros
  47. // ----------------------------------------------------------------------------
  48.  
  49. // Standard macro for getting a resource from XPM file:
  50. #define ART(artId, xpmRc) \
  51.     if ( id == artId ) return wxBitmap(xpmRc##_xpm);
  52.  
  53. // Compatibility hack to use wxApp::GetStdIcon of overriden by the user
  54. #if WXWIN_COMPATIBILITY_2_2
  55.     #define GET_STD_ICON_FROM_APP(iconId) \
  56.         if ( client == wxART_MESSAGE_BOX ) \
  57.         { \
  58.             wxIcon icon = wxTheApp->GetStdIcon(iconId); \
  59.             if ( icon.Ok() ) \
  60.             { \
  61.                 wxBitmap bmp; \
  62.                 bmp.CopyFromIcon(icon); \
  63.                 return bmp; \
  64.             } \
  65.         }
  66. #else
  67.     #define GET_STD_ICON_FROM_APP(iconId)
  68. #endif
  69.  
  70. // There are two ways of getting the standard icon: either via XPMs or via
  71. // wxIcon ctor. This depends on the platform:
  72. #if defined(__WXUNIVERSAL__)
  73.     #define CREATE_STD_ICON(iconId, xpmRc) return wxNullBitmap;
  74. #elif defined(__WXGTK__) || defined(__WXMOTIF__)
  75.     #define CREATE_STD_ICON(iconId, xpmRc) return wxBitmap(xpmRc##_xpm);
  76. #else
  77.     #define CREATE_STD_ICON(iconId, xpmRc) \
  78.         { \
  79.             wxIcon icon(_T(iconId)); \
  80.             wxBitmap bmp; \
  81.             bmp.CopyFromIcon(icon); \
  82.             return bmp; \
  83.         }
  84. #endif
  85.  
  86. // Macro used in CreateBitmap to get wxICON_FOO icons:
  87. #define ART_MSGBOX(artId, iconId, xpmRc) \
  88.     if ( id == artId ) \
  89.     { \
  90.         GET_STD_ICON_FROM_APP(iconId) \
  91.         CREATE_STD_ICON(#iconId, xpmRc) \
  92.     }
  93.  
  94. // ----------------------------------------------------------------------------
  95. // wxArtProvider::InitStdProvider
  96. // ----------------------------------------------------------------------------
  97.  
  98. /*static*/ void wxArtProvider::InitStdProvider()
  99. {
  100.     // NB: A few notes about this function:
  101.     //     (1) it is in artstd.cpp and not in artprov.cpp on purpose. I wanted
  102.     //         to avoid declaring wxDefaultArtProvider in any public header as
  103.     //         it is only an implementation detail
  104.     //     (2) other default art providers (e.g. GTK one) should NOT be added
  105.     //         here. Instead, add them in port-specific initialialization code
  106.  
  107.     wxArtProvider::PushProvider(new wxDefaultArtProvider);
  108. }
  109.  
  110.  
  111. // ----------------------------------------------------------------------------
  112. // XPMs with the art
  113. // ----------------------------------------------------------------------------
  114.  
  115. // XPM hack: make the arrays const
  116. #define static static const
  117.  
  118. #if defined(__WXGTK__)
  119.     #include "../../art/gtk/info.xpm"
  120.     #include "../../art/gtk/error.xpm"
  121.     #include "../../art/gtk/warning.xpm"
  122.     #include "../../art/gtk/question.xpm"
  123. #elif defined(__WXMOTIF__)
  124.     #include "../../art/motif/info.xpm"
  125.     #include "../../art/motif/error.xpm"
  126.     #include "../../art/motif/warning.xpm"
  127.     #include "../../art/motif/question.xpm"
  128. #endif
  129.  
  130. #if wxUSE_HTML
  131.     #include "../../art/htmsidep.xpm"
  132.     #include "../../art/htmoptns.xpm"
  133.     #include "../../art/htmbook.xpm"
  134.     #include "../../art/htmfoldr.xpm"
  135.     #include "../../art/htmpage.xpm"
  136. #endif // wxUSE_HTML
  137.  
  138. #include "../../art/addbookm.xpm"
  139. #include "../../art/delbookm.xpm"
  140. #include "../../art/back.xpm"
  141. #include "../../art/forward.xpm"
  142. #include "../../art/up.xpm"
  143. #include "../../art/down.xpm"
  144. #include "../../art/toparent.xpm"
  145. #include "../../art/fileopen.xpm"
  146. #include "../../art/print.xpm"
  147. #include "../../art/helpicon.xpm"
  148. #include "../../art/tipicon.xpm"
  149. #include "../../art/home.xpm"
  150. #include "../../art/repview.xpm"
  151. #include "../../art/listview.xpm"
  152. #include "../../art/new_dir.xpm"
  153. #include "../../art/folder.xpm"
  154. #include "../../art/dir_up.xpm"
  155. #include "../../art/exefile.xpm"
  156. #include "../../art/deffile.xpm"
  157. #include "../../art/tick.xpm"
  158. #include "../../art/cross.xpm"
  159.  
  160. #undef static
  161.  
  162. // ----------------------------------------------------------------------------
  163. // CreateBitmap routine
  164. // ----------------------------------------------------------------------------
  165.  
  166. wxBitmap wxDefaultArtProvider::CreateBitmap(const wxArtID& id,
  167.                                             const wxArtClient& client,
  168.                                             const wxSize& WXUNUSED(size))
  169. {
  170.     // wxMessageBox icons:
  171.     ART_MSGBOX(wxART_ERROR,       wxICON_ERROR,       error)
  172.     ART_MSGBOX(wxART_INFORMATION, wxICON_INFORMATION, info)
  173.     ART_MSGBOX(wxART_WARNING,     wxICON_WARNING,     warning)
  174.     ART_MSGBOX(wxART_QUESTION,    wxICON_QUESTION,    question)
  175.  
  176.     // standard icons:
  177. #if wxUSE_HTML
  178.     ART(wxART_HELP_SIDE_PANEL,                     htmsidep)
  179.     ART(wxART_HELP_SETTINGS,                       htmoptns)
  180.     ART(wxART_HELP_BOOK,                           htmbook)
  181.     ART(wxART_HELP_FOLDER,                         htmfoldr)
  182.     ART(wxART_HELP_PAGE,                           htmpage)
  183. #endif // wxUSE_HTML
  184.     ART(wxART_ADD_BOOKMARK,                        addbookm)
  185.     ART(wxART_DEL_BOOKMARK,                        delbookm)
  186.     ART(wxART_GO_BACK,                             back)
  187.     ART(wxART_GO_FORWARD,                          forward)
  188.     ART(wxART_GO_UP,                               up)
  189.     ART(wxART_GO_DOWN,                             down)
  190.     ART(wxART_GO_TO_PARENT,                        toparent)
  191.     ART(wxART_GO_HOME,                             home)
  192.     ART(wxART_FILE_OPEN,                           fileopen)
  193.     ART(wxART_PRINT,                               print)
  194.     ART(wxART_HELP,                                helpicon)
  195.     ART(wxART_TIP,                                 tipicon)
  196.     ART(wxART_REPORT_VIEW,                         repview)
  197.     ART(wxART_LIST_VIEW,                           listview)
  198.     ART(wxART_NEW_DIR,                             new_dir)
  199.     ART(wxART_FOLDER,                              folder)
  200.     ART(wxART_GO_DIR_UP,                           dir_up)
  201.     ART(wxART_EXECUTABLE_FILE,                     exefile)
  202.     ART(wxART_NORMAL_FILE,                         deffile)
  203.     ART(wxART_TICK_MARK,                           tick)
  204.     ART(wxART_CROSS_MARK,                          cross)
  205.  
  206.     return wxNullBitmap;
  207. }
  208.