Searched refs:wxArtProvider (Results 1 - 25 of 35) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dartprov.cpp3 // Purpose: wxArtProvider class
42 WX_DECLARE_LIST(wxArtProvider, wxArtProvidersList);
98 // wxArtProvider class
101 IMPLEMENT_ABSTRACT_CLASS(wxArtProvider, wxObject)
103 wxArtProvidersList *wxArtProvider::sm_providers = NULL;
104 wxArtProviderCache *wxArtProvider::sm_cache = NULL;
107 // wxArtProvider ctors/dtor
110 wxArtProvider::~wxArtProvider()
116 // wxArtProvider operation
[all...]
H A Dartstd.cpp3 // Purpose: stock wxArtProvider instance with default wxWin art
33 class wxDefaultArtProvider : public wxArtProvider
72 // wxArtProvider::InitStdProvider
75 /*static*/ void wxArtProvider::InitStdProvider()
77 wxArtProvider::Push(new wxDefaultArtProvider);
81 /*static*/ void wxArtProvider::InitNativeProvider()
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dartprov.h3 // Purpose: wxArtProvider class
109 // wxArtProvider class
112 class WXDLLEXPORT wxArtProvider : public wxObject class in inherits:wxObject
116 virtual ~wxArtProvider();
121 static void Push(wxArtProvider *provider);
126 static void PushBack(wxArtProvider *provider);
129 static void Insert(wxArtProvider *provider);
135 static bool Remove(wxArtProvider *provider);
138 static bool Delete(wxArtProvider *provider);
159 wxDEPRECATED( static void PushProvider(wxArtProvider *provide
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dartprov.tex6 \section{\class{wxArtProvider}}\label{wxartprovider}
8 wxArtProvider class is used to customize the look of wxWidgets application.
10 dialog), it does not use a hard-coded resource but asks wxArtProvider for it
11 instead. This way users can plug in their own wxArtProvider class and easily
13 that is needed is to derive a class from wxArtProvider, override its
16 \helpref{wxArtProvider::Push}{wxartproviderpush}:
19 class MyProvider : public wxArtProvider
28 wxArtProvider::Push(new MyProvider);
32 platform native icons as provided by \helpref{wxArtProvider::GetBitmap}{wxartprovidergetbitmap} or
33 \helpref{wxArtProvider
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/univ/
H A Dtheme.cpp134 wxArtProvider *art = ms_theme->GetArtProvider();
136 wxArtProvider::Push(art);
181 wxArtProvider *wxDelegateTheme::GetArtProvider()
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/generic/
H A Dmsgdlgg.cpp85 bitmap = wxArtProvider::GetIcon(wxART_ERROR, wxART_MESSAGE_BOX);
89 bitmap = wxArtProvider::GetIcon(wxART_INFORMATION, wxART_MESSAGE_BOX);
93 bitmap = wxArtProvider::GetIcon(wxART_WARNING, wxART_MESSAGE_BOX);
97 bitmap = wxArtProvider::GetIcon(wxART_QUESTION, wxART_MESSAGE_BOX);
H A Ddirctrlg.cpp1455 m_smallImageList->Add(wxArtProvider::GetBitmap(wxART_FOLDER,
1459 m_smallImageList->Add(wxArtProvider::GetBitmap(wxART_FOLDER_OPEN,
1465 m_smallImageList->Add(wxArtProvider::GetBitmap(wxART_HARDDISK,
1472 m_smallImageList->Add(wxArtProvider::GetBitmap(wxART_HARDDISK,
1476 m_smallImageList->Add(wxArtProvider::GetBitmap(wxART_CDROM,
1480 m_smallImageList->Add(wxArtProvider::GetBitmap(wxART_FLOPPY,
1484 m_smallImageList->Add(wxArtProvider::GetBitmap(wxART_REMOVABLE,
1488 m_smallImageList->Add(wxArtProvider::GetBitmap(wxART_NORMAL_FILE,
1494 m_smallImageList->Add(wxArtProvider::GetBitmap(wxART_EXECUTABLE_FILE,
H A Ddirdlgg.cpp116 wxArtProvider::GetBitmap(wxART_GO_HOME, wxART_BUTTON));
126 wxArtProvider::GetBitmap(wxART_NEW_DIR, wxART_BUTTON));
H A Dlogg.cpp784 bitmap = wxArtProvider::GetBitmap(wxART_ERROR, wxART_MESSAGE_BOX);
791 bitmap = wxArtProvider::GetBitmap(wxART_INFORMATION, wxART_MESSAGE_BOX);
798 bitmap = wxArtProvider::GetBitmap(wxART_WARNING, wxART_MESSAGE_BOX);
899 wxBitmap bmp = wxArtProvider::GetBitmap(icons[icon], wxART_MESSAGE_BOX,
H A Dtipdlg.cpp263 wxIcon icon = wxArtProvider::GetIcon(wxART_TIP, wxART_CMN_DIALOG);
H A Dfiledlgg.cpp1054 wxArtProvider::GetBitmap(wxART_LIST_VIEW, wxART_BUTTON));
1061 wxArtProvider::GetBitmap(wxART_REPORT_VIEW, wxART_BUTTON));
1070 wxArtProvider::GetBitmap(wxART_GO_DIR_UP, wxART_BUTTON));
1078 wxArtProvider::GetBitmap(wxART_GO_HOME, wxART_BUTTON));
1088 wxArtProvider::GetBitmap(wxART_NEW_DIR, wxART_BUTTON));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/univ/
H A Dtheme.h23 class WXDLLEXPORT wxArtProvider; variable in typeref:class:WXDLLEXPORT
56 virtual wxArtProvider *GetArtProvider() = 0;
93 virtual wxArtProvider *GetArtProvider();
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/artprov/
H A Darttest.cpp3 // Purpose: wxArtProvider sample
100 MyFrame *frame = new MyFrame(_T("wxArtProvider sample"),
110 class MyArtProvider : public wxArtProvider
203 msg.Printf( _T("This is the about dialog of wxArtProvider sample.\n")
206 wxMessageBox(msg, _T("About wxArtProvider sample"),
219 wxArtProvider::Push(new MyArtProvider);
221 wxArtProvider::Pop();
H A Dartbrows.cpp3 // Purpose: wxArtProvider demo - art browser dialog
36 wxIcon icon = wxArtProvider::GetIcon(id, client, size); \
203 wxBitmap bmp = wxArtProvider::GetBitmap(id, client, size);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/widgets/
H A Dnotebook.cpp327 m_imageList->Add(wxArtProvider::GetIcon(wxART_INFORMATION, wxART_OTHER, size));
328 m_imageList->Add(wxArtProvider::GetIcon(wxART_QUESTION, wxART_OTHER, size));
329 m_imageList->Add(wxArtProvider::GetIcon(wxART_WARNING, wxART_OTHER, size));
330 m_imageList->Add(wxArtProvider::GetIcon(wxART_ERROR, wxART_OTHER, size));
H A Dbutton.cpp391 m_button->SetImageLabel(wxArtProvider::GetIcon(wxART_INFORMATION));
459 wxArtProvider::GetBitmap(wxART_INFORMATION),
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/html/
H A Dhelpdlg.cpp76 SetIcon(wxArtProvider::GetIcon(wxART_HELP, wxART_HELP_BROWSER));
H A Dhelpwnd.cpp424 wxArtProvider::GetBitmap(wxART_ADD_BOOKMARK,
427 wxArtProvider::GetBitmap(wxART_DEL_BOOKMARK,
457 ContentsImageList->Add(wxArtProvider::GetIcon(wxART_HELP_BOOK,
460 ContentsImageList->Add(wxArtProvider::GetIcon(wxART_HELP_FOLDER,
463 ContentsImageList->Add(wxArtProvider::GetIcon(wxART_HELP_PAGE,
636 wxArtProvider::GetBitmap(wxART_HELP_SIDE_PANEL, wxART_TOOLBAR);
638 wxArtProvider::GetBitmap(wxART_GO_BACK, wxART_TOOLBAR);
640 wxArtProvider::GetBitmap(wxART_GO_FORWARD, wxART_TOOLBAR);
642 wxArtProvider::GetBitmap(wxART_GO_TO_PARENT, wxART_TOOLBAR);
644 wxArtProvider
[all...]
H A Dhelpfrm.cpp109 SetIcon(wxArtProvider::GetIcon(wxART_HELP, wxART_FRAME_ICON));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/gtk/
H A Dartgtk.cpp3 // Purpose: stock wxArtProvider instance with native GTK+ stock icons
51 class wxGTK2ArtProvider : public wxArtProvider
58 /*static*/ void wxArtProvider::InitNativeProvider()
261 // allow passing GTK+ stock IDs to wxArtProvider:
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/aui/
H A Dauidemo.cpp776 tb1->AddTool(ID_SampleItem+1, wxT("Test"), wxArtProvider::GetBitmap(wxART_ERROR));
778 tb1->AddTool(ID_SampleItem+2, wxT("Test"), wxArtProvider::GetBitmap(wxART_QUESTION));
779 tb1->AddTool(ID_SampleItem+3, wxT("Test"), wxArtProvider::GetBitmap(wxART_INFORMATION));
780 tb1->AddTool(ID_SampleItem+4, wxT("Test"), wxArtProvider::GetBitmap(wxART_WARNING));
781 tb1->AddTool(ID_SampleItem+5, wxT("Test"), wxArtProvider::GetBitmap(wxART_MISSING_IMAGE));
790 wxBitmap tb2_bmp1 = wxArtProvider::GetBitmap(wxART_QUESTION, wxART_OTHER, wxSize(16,16));
810 wxBitmap tb3_bmp1 = wxArtProvider::GetBitmap(wxART_FOLDER, wxART_OTHER, wxSize(16,16));
833 wxBitmap tb4_bmp1 = wxArtProvider::GetBitmap(wxART_NORMAL_FILE, wxART_OTHER, wxSize(16,16));
851 tb5->AddTool(ID_SampleItem+30, wxT("Test"), wxArtProvider::GetBitmap(wxART_ERROR));
853 tb5->AddTool(ID_SampleItem+31, wxT("Test"), wxArtProvider
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/utils/helpview/src/
H A Dhelpview.cpp36 class AlternateArtProvider : public wxArtProvider
68 wxArtProvider::Push(new AlternateArtProvider);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/univ/themes/
H A Dmono.cpp474 class wxMonoArtProvider : public wxArtProvider
493 virtual wxArtProvider *GetArtProvider();
540 wxArtProvider *wxMonoTheme::GetArtProvider()
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/animate/
H A Danitest.cpp202 wxBitmap bmp = wxArtProvider::GetBitmap(wxART_MISSING_IMAGE);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/notebook/
H A Dnotebook.cpp303 Add(wxArtProvider::GetIcon(wxART_INFORMATION, wxART_OTHER, imageSize));
305 Add(wxArtProvider::GetIcon(wxART_QUESTION, wxART_OTHER, imageSize));
307 Add(wxArtProvider::GetIcon(wxART_WARNING, wxART_OTHER, imageSize));
309 Add(wxArtProvider::GetIcon(wxART_ERROR, wxART_OTHER, imageSize));

Completed in 164 milliseconds

12