1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxArtProvider class
4 // Author: Vaclav Slavik
8 // Copyright: (c) Vaclav Slavik
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_ARTPROV_H_
13 #define _WX_ARTPROV_H_
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "artprov.h"
19 #include "wx/string.h"
20 #include "wx/bitmap.h"
23 class WXDLLEXPORT wxArtProvidersList
;
24 class WXDLLEXPORT wxArtProviderCache
;
25 class wxArtProviderModule
;
27 // ----------------------------------------------------------------------------
29 // ----------------------------------------------------------------------------
31 typedef wxString wxArtClient
;
32 typedef wxString wxArtID
;
34 #define wxART_MAKE_CLIENT_ID_FROM_STR(id) (id + _T("_C"))
35 #define wxART_MAKE_CLIENT_ID(id) _T(#id) _T("_C")
36 #define wxART_MAKE_ART_ID_FROM_STR(id) (id)
37 #define wxART_MAKE_ART_ID(id) _T(#id)
39 // ----------------------------------------------------------------------------
41 // ----------------------------------------------------------------------------
43 #define wxART_TOOLBAR wxART_MAKE_CLIENT_ID(wxART_TOOLBAR)
44 #define wxART_MENU wxART_MAKE_CLIENT_ID(wxART_MENU)
45 #define wxART_FRAME_ICON wxART_MAKE_CLIENT_ID(wxART_FRAME_ICON)
47 #define wxART_CMN_DIALOG wxART_MAKE_CLIENT_ID(wxART_CMN_DIALOG)
48 #define wxART_HELP_BROWSER wxART_MAKE_CLIENT_ID(wxART_HELP_BROWSER)
49 #define wxART_MESSAGE_BOX wxART_MAKE_CLIENT_ID(wxART_MESSAGE_BOX)
50 #define wxART_BUTTON wxART_MAKE_CLIENT_ID(wxART_BUTTON)
52 #define wxART_OTHER wxART_MAKE_CLIENT_ID(wxART_OTHER)
54 // ----------------------------------------------------------------------------
56 // ----------------------------------------------------------------------------
58 #define wxART_ADD_BOOKMARK wxART_MAKE_ART_ID(wxART_ADD_BOOKMARK)
59 #define wxART_DEL_BOOKMARK wxART_MAKE_ART_ID(wxART_DEL_BOOKMARK)
60 #define wxART_HELP_SIDE_PANEL wxART_MAKE_ART_ID(wxART_HELP_SIDE_PANEL)
61 #define wxART_HELP_SETTINGS wxART_MAKE_ART_ID(wxART_HELP_SETTINGS)
62 #define wxART_HELP_BOOK wxART_MAKE_ART_ID(wxART_HELP_BOOK)
63 #define wxART_HELP_FOLDER wxART_MAKE_ART_ID(wxART_HELP_FOLDER)
64 #define wxART_HELP_PAGE wxART_MAKE_ART_ID(wxART_HELP_PAGE)
65 #define wxART_GO_BACK wxART_MAKE_ART_ID(wxART_GO_BACK)
66 #define wxART_GO_FORWARD wxART_MAKE_ART_ID(wxART_GO_FORWARD)
67 #define wxART_GO_UP wxART_MAKE_ART_ID(wxART_GO_UP)
68 #define wxART_GO_DOWN wxART_MAKE_ART_ID(wxART_GO_DOWN)
69 #define wxART_GO_TO_PARENT wxART_MAKE_ART_ID(wxART_GO_TO_PARENT)
70 #define wxART_GO_HOME wxART_MAKE_ART_ID(wxART_GO_HOME)
71 #define wxART_FILE_OPEN wxART_MAKE_ART_ID(wxART_FILE_OPEN)
72 #define wxART_PRINT wxART_MAKE_ART_ID(wxART_PRINT)
73 #define wxART_HELP wxART_MAKE_ART_ID(wxART_HELP)
74 #define wxART_TIP wxART_MAKE_ART_ID(wxART_TIP)
75 #define wxART_REPORT_VIEW wxART_MAKE_ART_ID(wxART_REPORT_VIEW)
76 #define wxART_LIST_VIEW wxART_MAKE_ART_ID(wxART_LIST_VIEW)
77 #define wxART_NEW_DIR wxART_MAKE_ART_ID(wxART_NEW_DIR)
78 #define wxART_FOLDER wxART_MAKE_ART_ID(wxART_FOLDER)
79 #define wxART_GO_DIR_UP wxART_MAKE_ART_ID(wxART_GO_DIR_UP)
80 #define wxART_EXECUTABLE_FILE wxART_MAKE_ART_ID(wxART_EXECUTABLE_FILE)
81 #define wxART_NORMAL_FILE wxART_MAKE_ART_ID(wxART_NORMAL_FILE)
82 #define wxART_TICK_MARK wxART_MAKE_ART_ID(wxART_TICK_MARK)
83 #define wxART_CROSS_MARK wxART_MAKE_ART_ID(wxART_CROSS_MARK)
84 #define wxART_ERROR wxART_MAKE_ART_ID(wxART_ERROR)
85 #define wxART_QUESTION wxART_MAKE_ART_ID(wxART_QUESTION)
86 #define wxART_WARNING wxART_MAKE_ART_ID(wxART_WARNING)
87 #define wxART_INFORMATION wxART_MAKE_ART_ID(wxART_INFORMATION)
88 #define wxART_MISSING_IMAGE wxART_MAKE_ART_ID(wxART_MISSING_IMAGE)
90 // ----------------------------------------------------------------------------
91 // wxArtProvider class
92 // ----------------------------------------------------------------------------
94 class WXDLLEXPORT wxArtProvider
: public wxObject
97 // Add new provider to the top of providers stack.
98 static void PushProvider(wxArtProvider
*provider
);
100 // Remove latest added provider and delete it.
101 static bool PopProvider();
103 // Remove provider. The provider must have been added previously!
104 // The provider is _not_ deleted.
105 static bool RemoveProvider(wxArtProvider
*provider
);
107 // Query the providers for bitmap with given ID and return it. Return
108 // wxNullBitmap if no provider provides it.
109 static wxBitmap
GetBitmap(const wxArtID
& id
,
110 const wxArtClient
& client
= wxART_OTHER
,
111 const wxSize
& size
= wxDefaultSize
);
113 // Query the providers for icon with given ID and return it. Return
114 // wxNullIcon if no provider provides it.
115 static wxIcon
GetIcon(const wxArtID
& id
,
116 const wxArtClient
& client
= wxART_OTHER
,
117 const wxSize
& size
= wxDefaultSize
);
120 friend class wxArtProviderModule
;
121 // Initializes default provider
122 static void InitStdProvider();
123 // Initializes platform's native provider, if available (e.g. GTK2)
124 static void InitNativeProvider();
125 // Destroy caches & all providers
126 static void CleanUpProviders();
128 // Derived classes must override this method to create requested
129 // art resource. This method is called only once per instance's
130 // lifetime for each requested wxArtID.
131 virtual wxBitmap
CreateBitmap(const wxArtID
& WXUNUSED(id
),
132 const wxArtClient
& WXUNUSED(client
),
133 const wxSize
& WXUNUSED(size
)) = 0;
136 // list of providers:
137 static wxArtProvidersList
*sm_providers
;
138 // art resources cache (so that CreateXXX is not called that often):
139 static wxArtProviderCache
*sm_cache
;
141 DECLARE_ABSTRACT_CLASS(wxArtProvider
)
145 #endif // _WX_ARTPROV_H_