1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxArtProvider demo - art browser dialog
4 // Author: Vaclav Slavik
8 // Copyright: (c) Vaclav Slavik
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef __ARTBROWS_H__
13 #define __ARTBROWS_H__
15 #if defined(__GNUG__) && !defined(__APPLE__)
16 #pragma interface "artbrows.h"
19 #include "wx/dialog.h"
20 #include "wx/artprov.h"
22 class WXDLLEXPORT wxListCtrl
;
23 class WXDLLEXPORT wxListEvent
;
24 class WXDLLEXPORT wxStaticBitmap
;
26 class wxArtBrowserDialog
: public wxDialog
29 wxArtBrowserDialog(wxWindow
*parent
);
31 void SetArtClient(const wxArtClient
& client
);
34 void OnSelectItem(wxListEvent
&event
);
35 void OnChooseClient(wxCommandEvent
&event
);
38 wxStaticBitmap
*m_canvas
;
44 #endif // __ARTBROWS_H__