]>
Commit | Line | Data |
---|---|---|
2aca4a98 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: artprov.h | |
3 | // Purpose: wxArtProvider class | |
4 | // Author: Vaclav Slavik | |
5 | // Modified by: | |
6 | // Created: 18/03/2002 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Vaclav Slavik | |
65571936 | 9 | // Licence: wxWindows licence |
2aca4a98 VS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_ARTPROV_H_ | |
13 | #define _WX_ARTPROV_H_ | |
14 | ||
2aca4a98 VS |
15 | #include "wx/string.h" |
16 | #include "wx/bitmap.h" | |
17 | #include "wx/icon.h" | |
18 | ||
19 | class WXDLLEXPORT wxArtProvidersList; | |
20 | class WXDLLEXPORT wxArtProviderCache; | |
2b5f62a0 | 21 | class wxArtProviderModule; |
2aca4a98 VS |
22 | |
23 | // ---------------------------------------------------------------------------- | |
24 | // Types | |
25 | // ---------------------------------------------------------------------------- | |
26 | ||
57b0987b | 27 | typedef wxString wxArtClient; |
2aca4a98 VS |
28 | typedef wxString wxArtID; |
29 | ||
409ded0f | 30 | #define wxART_MAKE_CLIENT_ID_FROM_STR(id) (id + _T("_C")) |
6ada5c33 VS |
31 | #define wxART_MAKE_CLIENT_ID(id) _T(#id) _T("_C") |
32 | #define wxART_MAKE_ART_ID_FROM_STR(id) (id) | |
33 | #define wxART_MAKE_ART_ID(id) _T(#id) | |
db70a2f2 | 34 | |
57b0987b VS |
35 | // ---------------------------------------------------------------------------- |
36 | // Art clients | |
37 | // ---------------------------------------------------------------------------- | |
38 | ||
4629016d WS |
39 | #define wxART_TOOLBAR wxART_MAKE_CLIENT_ID(wxART_TOOLBAR) |
40 | #define wxART_MENU wxART_MAKE_CLIENT_ID(wxART_MENU) | |
41 | #define wxART_FRAME_ICON wxART_MAKE_CLIENT_ID(wxART_FRAME_ICON) | |
57b0987b | 42 | |
4629016d WS |
43 | #define wxART_CMN_DIALOG wxART_MAKE_CLIENT_ID(wxART_CMN_DIALOG) |
44 | #define wxART_HELP_BROWSER wxART_MAKE_CLIENT_ID(wxART_HELP_BROWSER) | |
45 | #define wxART_MESSAGE_BOX wxART_MAKE_CLIENT_ID(wxART_MESSAGE_BOX) | |
b5cf8234 | 46 | #define wxART_BUTTON wxART_MAKE_CLIENT_ID(wxART_BUTTON) |
57b0987b | 47 | |
4629016d | 48 | #define wxART_OTHER wxART_MAKE_CLIENT_ID(wxART_OTHER) |
57b0987b VS |
49 | |
50 | // ---------------------------------------------------------------------------- | |
51 | // Art IDs | |
52 | // ---------------------------------------------------------------------------- | |
53 | ||
4629016d WS |
54 | #define wxART_ADD_BOOKMARK wxART_MAKE_ART_ID(wxART_ADD_BOOKMARK) |
55 | #define wxART_DEL_BOOKMARK wxART_MAKE_ART_ID(wxART_DEL_BOOKMARK) | |
56 | #define wxART_HELP_SIDE_PANEL wxART_MAKE_ART_ID(wxART_HELP_SIDE_PANEL) | |
57 | #define wxART_HELP_SETTINGS wxART_MAKE_ART_ID(wxART_HELP_SETTINGS) | |
58 | #define wxART_HELP_BOOK wxART_MAKE_ART_ID(wxART_HELP_BOOK) | |
59 | #define wxART_HELP_FOLDER wxART_MAKE_ART_ID(wxART_HELP_FOLDER) | |
60 | #define wxART_HELP_PAGE wxART_MAKE_ART_ID(wxART_HELP_PAGE) | |
61 | #define wxART_GO_BACK wxART_MAKE_ART_ID(wxART_GO_BACK) | |
62 | #define wxART_GO_FORWARD wxART_MAKE_ART_ID(wxART_GO_FORWARD) | |
63 | #define wxART_GO_UP wxART_MAKE_ART_ID(wxART_GO_UP) | |
64 | #define wxART_GO_DOWN wxART_MAKE_ART_ID(wxART_GO_DOWN) | |
65 | #define wxART_GO_TO_PARENT wxART_MAKE_ART_ID(wxART_GO_TO_PARENT) | |
66 | #define wxART_GO_HOME wxART_MAKE_ART_ID(wxART_GO_HOME) | |
67 | #define wxART_FILE_OPEN wxART_MAKE_ART_ID(wxART_FILE_OPEN) | |
50f65637 VZ |
68 | #define wxART_FILE_SAVE wxART_MAKE_ART_ID(wxART_FILE_SAVE) |
69 | #define wxART_FILE_SAVE_AS wxART_MAKE_ART_ID(wxART_FILE_SAVE_AS) | |
4629016d WS |
70 | #define wxART_PRINT wxART_MAKE_ART_ID(wxART_PRINT) |
71 | #define wxART_HELP wxART_MAKE_ART_ID(wxART_HELP) | |
72 | #define wxART_TIP wxART_MAKE_ART_ID(wxART_TIP) | |
73 | #define wxART_REPORT_VIEW wxART_MAKE_ART_ID(wxART_REPORT_VIEW) | |
74 | #define wxART_LIST_VIEW wxART_MAKE_ART_ID(wxART_LIST_VIEW) | |
75 | #define wxART_NEW_DIR wxART_MAKE_ART_ID(wxART_NEW_DIR) | |
ddf6088b RR |
76 | #define wxART_HARDDISK wxART_MAKE_ART_ID(wxART_HARDDISK) |
77 | #define wxART_FLOPPY wxART_MAKE_ART_ID(wxART_FLOPPY) | |
78 | #define wxART_CDROM wxART_MAKE_ART_ID(wxART_CDROM) | |
79 | #define wxART_REMOVABLE wxART_MAKE_ART_ID(wxART_REMOVABLE) | |
4629016d | 80 | #define wxART_FOLDER wxART_MAKE_ART_ID(wxART_FOLDER) |
ddf6088b | 81 | #define wxART_FOLDER_OPEN wxART_MAKE_ART_ID(wxART_FOLDER_OPEN) |
4629016d WS |
82 | #define wxART_GO_DIR_UP wxART_MAKE_ART_ID(wxART_GO_DIR_UP) |
83 | #define wxART_EXECUTABLE_FILE wxART_MAKE_ART_ID(wxART_EXECUTABLE_FILE) | |
84 | #define wxART_NORMAL_FILE wxART_MAKE_ART_ID(wxART_NORMAL_FILE) | |
85 | #define wxART_TICK_MARK wxART_MAKE_ART_ID(wxART_TICK_MARK) | |
86 | #define wxART_CROSS_MARK wxART_MAKE_ART_ID(wxART_CROSS_MARK) | |
87 | #define wxART_ERROR wxART_MAKE_ART_ID(wxART_ERROR) | |
88 | #define wxART_QUESTION wxART_MAKE_ART_ID(wxART_QUESTION) | |
89 | #define wxART_WARNING wxART_MAKE_ART_ID(wxART_WARNING) | |
90 | #define wxART_INFORMATION wxART_MAKE_ART_ID(wxART_INFORMATION) | |
cba5a276 | 91 | #define wxART_MISSING_IMAGE wxART_MAKE_ART_ID(wxART_MISSING_IMAGE) |
57b0987b | 92 | |
50f65637 VZ |
93 | #define wxART_COPY wxART_MAKE_ART_ID(wxART_COPY) |
94 | #define wxART_CUT wxART_MAKE_ART_ID(wxART_CUT) | |
95 | #define wxART_PASTE wxART_MAKE_ART_ID(wxART_PASTE) | |
96 | #define wxART_DELETE wxART_MAKE_ART_ID(wxART_DELETE) | |
406011a8 | 97 | #define wxART_NEW wxART_MAKE_ART_ID(wxART_NEW) |
50f65637 VZ |
98 | |
99 | #define wxART_UNDO wxART_MAKE_ART_ID(wxART_UNDO) | |
100 | #define wxART_REDO wxART_MAKE_ART_ID(wxART_REDO) | |
101 | ||
102 | #define wxART_QUIT wxART_MAKE_ART_ID(wxART_QUIT) | |
103 | ||
104 | #define wxART_FIND wxART_MAKE_ART_ID(wxART_FIND) | |
105 | #define wxART_FIND_AND_REPLACE wxART_MAKE_ART_ID(wxART_FIND_AND_REPLACE) | |
106 | ||
107 | ||
2aca4a98 VS |
108 | // ---------------------------------------------------------------------------- |
109 | // wxArtProvider class | |
110 | // ---------------------------------------------------------------------------- | |
111 | ||
112 | class WXDLLEXPORT wxArtProvider : public wxObject | |
113 | { | |
114 | public: | |
571d2e0f VZ |
115 | // Dtor removes the provider from providers stack if it's still on it |
116 | virtual ~wxArtProvider(); | |
117 | ||
118 | ||
dd7d379e | 119 | // Add new provider to the top of providers stack (i.e. the provider will |
571d2e0f VZ |
120 | // be queried first of all). |
121 | static void Push(wxArtProvider *provider); | |
2aca4a98 | 122 | |
dd7d379e VS |
123 | // Add new provider to the bottom of providers stack (i.e. the provider |
124 | // will be queried as the last one). | |
571d2e0f | 125 | static void Insert(wxArtProvider *provider); |
dd7d379e | 126 | |
2aca4a98 | 127 | // Remove latest added provider and delete it. |
571d2e0f VZ |
128 | static bool Pop(); |
129 | ||
130 | // Remove provider from providers stack but don't delete it. | |
131 | static bool Remove(wxArtProvider *provider); | |
132 | ||
133 | // Delete the given provider and remove it from the providers stack. | |
134 | static bool Delete(wxArtProvider *provider); | |
2aca4a98 | 135 | |
4629016d | 136 | |
2aca4a98 VS |
137 | // Query the providers for bitmap with given ID and return it. Return |
138 | // wxNullBitmap if no provider provides it. | |
4629016d | 139 | static wxBitmap GetBitmap(const wxArtID& id, |
57b0987b | 140 | const wxArtClient& client = wxART_OTHER, |
2aca4a98 VS |
141 | const wxSize& size = wxDefaultSize); |
142 | ||
143 | // Query the providers for icon with given ID and return it. Return | |
144 | // wxNullIcon if no provider provides it. | |
57b0987b VS |
145 | static wxIcon GetIcon(const wxArtID& id, |
146 | const wxArtClient& client = wxART_OTHER, | |
2aca4a98 VS |
147 | const wxSize& size = wxDefaultSize); |
148 | ||
e53a95bc | 149 | // Get the size hint of an icon from a specific wxArtClient, queries |
b737ad10 | 150 | // the topmost provider if platform_dependent = false |
e53a95bc | 151 | static wxSize GetSizeHint(const wxArtClient& client, bool platform_dependent = false); |
b737ad10 | 152 | |
571d2e0f VZ |
153 | #if WXWIN_COMPATIBILITY_2_6 |
154 | // use the corresponding methods without redundant "Provider" suffix | |
155 | wxDEPRECATED( static void PushProvider(wxArtProvider *provider) ); | |
156 | wxDEPRECATED( static void InsertProvider(wxArtProvider *provider) ); | |
157 | wxDEPRECATED( static bool PopProvider() ); | |
158 | ||
159 | // use Delete() if this is what you really need, or just delete the | |
160 | // provider pointer, do not use Remove() as it does not delete the pointer | |
161 | // unlike RemoveProvider() which does | |
162 | wxDEPRECATED( static bool RemoveProvider(wxArtProvider *provider) ); | |
163 | #endif // WXWIN_COMPATIBILITY_2_6 | |
164 | ||
2b5f62a0 VZ |
165 | protected: |
166 | friend class wxArtProviderModule; | |
167 | // Initializes default provider | |
168 | static void InitStdProvider(); | |
b5cf8234 VS |
169 | // Initializes platform's native provider, if available (e.g. GTK2) |
170 | static void InitNativeProvider(); | |
2aca4a98 VS |
171 | // Destroy caches & all providers |
172 | static void CleanUpProviders(); | |
173 | ||
b737ad10 | 174 | // Get the default size of an icon for a specific client |
e53a95bc | 175 | virtual wxSize DoGetSizeHint(const wxArtClient& client) |
b737ad10 | 176 | { |
e53a95bc | 177 | return GetSizeHint(client, true); |
b737ad10 | 178 | } |
dd7d379e | 179 | |
4629016d | 180 | // Derived classes must override this method to create requested |
2aca4a98 VS |
181 | // art resource. This method is called only once per instance's |
182 | // lifetime for each requested wxArtID. | |
57b0987b VS |
183 | virtual wxBitmap CreateBitmap(const wxArtID& WXUNUSED(id), |
184 | const wxArtClient& WXUNUSED(client), | |
a81c3c23 | 185 | const wxSize& WXUNUSED(size)) = 0; |
2aca4a98 | 186 | |
dd7d379e | 187 | private: |
1486fb5f | 188 | static void CommonAddingProvider(); |
dd7d379e | 189 | |
2aca4a98 VS |
190 | private: |
191 | // list of providers: | |
192 | static wxArtProvidersList *sm_providers; | |
193 | // art resources cache (so that CreateXXX is not called that often): | |
194 | static wxArtProviderCache *sm_cache; | |
195 | ||
196 | DECLARE_ABSTRACT_CLASS(wxArtProvider) | |
197 | }; | |
198 | ||
199 | ||
2aca4a98 | 200 | #endif // _WX_ARTPROV_H_ |