mirror of
https://gitlab.com/manzerbredes/ochess.git
synced 2025-04-06 10:06:29 +02:00
Debug wxBitmapBundle
This commit is contained in:
parent
40f0d24790
commit
cffa5f1186
2 changed files with 10 additions and 2 deletions
|
@ -6,7 +6,9 @@
|
||||||
#include <wx/preferences.h>
|
#include <wx/preferences.h>
|
||||||
#include <wx/spinctrl.h>
|
#include <wx/spinctrl.h>
|
||||||
#include <wx/stdpaths.h>
|
#include <wx/stdpaths.h>
|
||||||
|
#ifdef __APPLE__
|
||||||
|
#include <wx/bmpbndl.h>
|
||||||
|
#endif
|
||||||
/**
|
/**
|
||||||
* @brief Configuration page for the BoardCanvas
|
* @brief Configuration page for the BoardCanvas
|
||||||
*
|
*
|
||||||
|
@ -115,9 +117,11 @@ public:
|
||||||
virtual wxBitmap GetLargeIcon() {
|
virtual wxBitmap GetLargeIcon() {
|
||||||
return wxArtProvider::GetBitmap(wxART_HELP, wxART_TOOLBAR);
|
return wxArtProvider::GetBitmap(wxART_HELP, wxART_TOOLBAR);
|
||||||
}
|
}
|
||||||
|
#ifdef __APPLE__
|
||||||
virtual wxBitmapBundle GetIcon() {
|
virtual wxBitmapBundle GetIcon() {
|
||||||
return wxBitmapBundle::FromBitmap(LoadPNG("ui_rook"));
|
return wxBitmapBundle::FromBitmap(LoadPNG("ui_rook"));
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
virtual wxWindow *CreateWindow(wxWindow *parent) {
|
virtual wxWindow *CreateWindow(wxWindow *parent) {
|
||||||
return new BoardPrefsPanel(parent);
|
return new BoardPrefsPanel(parent);
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,9 @@
|
||||||
#include <wx/preferences.h>
|
#include <wx/preferences.h>
|
||||||
#include <wx/spinctrl.h>
|
#include <wx/spinctrl.h>
|
||||||
#include <wx/stdpaths.h>
|
#include <wx/stdpaths.h>
|
||||||
|
#ifdef __APPLE__
|
||||||
|
#include <wx/bmpbndl.h>
|
||||||
|
#endif
|
||||||
/**
|
/**
|
||||||
* @brief Configuration page for the EditorCanvas
|
* @brief Configuration page for the EditorCanvas
|
||||||
*
|
*
|
||||||
|
@ -63,9 +65,11 @@ public:
|
||||||
virtual wxBitmap GetLargeIcon() {
|
virtual wxBitmap GetLargeIcon() {
|
||||||
return wxArtProvider::GetBitmap(wxART_HELP, wxART_TOOLBAR);
|
return wxArtProvider::GetBitmap(wxART_HELP, wxART_TOOLBAR);
|
||||||
}
|
}
|
||||||
|
#ifdef __APPLE__
|
||||||
virtual wxBitmapBundle GetIcon() {
|
virtual wxBitmapBundle GetIcon() {
|
||||||
return wxBitmapBundle::FromBitmap(LoadPNG("ui_text_alt"));
|
return wxBitmapBundle::FromBitmap(LoadPNG("ui_text_alt"));
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
virtual wxWindow *CreateWindow(wxWindow *parent) {
|
virtual wxWindow *CreateWindow(wxWindow *parent) {
|
||||||
return new EditorPrefsPanel(parent);
|
return new EditorPrefsPanel(parent);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue