Update of /cvsroot/wxdevcenter/wxDevCenter/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv831/src
Modified Files:
AboutBox.cpp
Log Message:
Fix About-box icons pbs.
Index: AboutBox.cpp
===================================================================
RCS file: /cvsroot/wxdevcenter/wxDevCenter/src/AboutBox.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** AboutBox.cpp 14 May 2005 12:15:56 -0000 1.3
--- AboutBox.cpp 24 Aug 2005 15:57:00 -0000 1.4
***************
*** 3,7 ****
* @author Cursor
*
! * @brief Implémentation des classes de la boite de dialogue "A propos".
*/
//
--- 3,7 ----
* @author Cursor
*
! * @brief Impl�mentation des classes de la boite de dialogue "A propos".
*/
//
***************
*** 29,32 ****
--- 29,33 ----
#include <wx/stattext.h>
#include <wx/notebook.h>
+ #include <wx/artprov.h>
***************
*** 77,81 ****
//////////////////////////////////////////////////////////////////////
! // Implémentation des fonctions de la classe d' about
BEGIN_EVENT_TABLE(wxDevCenter::AboutBoxAboutPage, wxWindow)
--- 78,82 ----
//////////////////////////////////////////////////////////////////////
! // Impl�mentation des fonctions de la classe d' about
BEGIN_EVENT_TABLE(wxDevCenter::AboutBoxAboutPage, wxWindow)
***************
*** 87,92 ****
{
SetBackgroundColour(*wxWHITE);
! m_WXDCLogo = Application::GetApp().LoadAppBitmap("wxDevCenter.png", wxBITMAP_TYPE_PNG);
! m_WXLogo = Application::GetApp().LoadAppBitmap("wx.png", wxBITMAP_TYPE_PNG);
}
--- 88,93 ----
{
SetBackgroundColour(*wxWHITE);
! m_WXDCLogo = wxArtProvider::GetBitmap(wxT("wxDevCenter"), wxART_OTHER, wxSize(64, 64));
! m_WXLogo = wxArtProvider::GetBitmap(wxT("wxWidgets"), wxART_OTHER, wxSize(116, 49));
}
***************
*** 110,114 ****
//////////////////////////////////////////////////////////////////////
! // Implémentation des fonctions de la classe des plugins
AboutBoxPluginPage::AboutBoxPluginPage(wxWindow* parent, wxWindowID id):
wxListbook(parent, id)
--- 111,115 ----
//////////////////////////////////////////////////////////////////////
! // Impl�mentation des fonctions de la classe des plugins
AboutBoxPluginPage::AboutBoxPluginPage(wxWindow* parent, wxWindowID id):
wxListbook(parent, id)
***************
*** 128,132 ****
//////////////////////////////////////////////////////////////////////
! // Implémentation des fonctions de la classe de la licence
AboutBoxLicencePage::AboutBoxLicencePage(wxWindow* parent, wxWindowID id):
--- 129,133 ----
//////////////////////////////////////////////////////////////////////
! // Impl�mentation des fonctions de la classe de la licence
AboutBoxLicencePage::AboutBoxLicencePage(wxWindow* parent, wxWindowID id):
|