fixed wxArtProvider::GetSizeHint() to return 16x16 for wxART_FRAME_ICON in non-wxGTK ports
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@56371 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -98,7 +98,8 @@ All:
|
|||||||
All (GUI):
|
All (GUI):
|
||||||
|
|
||||||
- Fixed wxHTML's pagebreaks computation in tables (D.J.Stauffer).
|
- Fixed wxHTML's pagebreaks computation in tables (D.J.Stauffer).
|
||||||
- Fixed wxRichTextCtrl input that uses Alt on Mac OS X, for example Polish Pro input.
|
- Fixed wxRichTextCtrl input that uses Alt on Mac OS X, for example
|
||||||
|
Polish Pro input.
|
||||||
- Fixed wxHtmlWindow::SelectionToText() to correctly insert newlines after
|
- Fixed wxHtmlWindow::SelectionToText() to correctly insert newlines after
|
||||||
single-cell paragraphs.
|
single-cell paragraphs.
|
||||||
|
|
||||||
@@ -110,6 +111,7 @@ All (Unix):
|
|||||||
wxMSW:
|
wxMSW:
|
||||||
|
|
||||||
- Restored generation of events for accelerators when there is no menu bar.
|
- Restored generation of events for accelerators when there is no menu bar.
|
||||||
|
- Fixed wxArtProvider::GetSizeHint() to return 16x16 for wxART_FRAME_ICON.
|
||||||
|
|
||||||
wxGTK:
|
wxGTK:
|
||||||
|
|
||||||
|
@@ -30,6 +30,10 @@
|
|||||||
#include "wx/module.h"
|
#include "wx/module.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __WXMSW__
|
||||||
|
#include "wx/msw/wrapwin.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
// ===========================================================================
|
// ===========================================================================
|
||||||
// implementation
|
// implementation
|
||||||
// ===========================================================================
|
// ===========================================================================
|
||||||
@@ -272,7 +276,14 @@ wxArtProvider::~wxArtProvider()
|
|||||||
else if (client == wxART_MENU)
|
else if (client == wxART_MENU)
|
||||||
return wxSize(16, 15);
|
return wxSize(16, 15);
|
||||||
else if (client == wxART_FRAME_ICON)
|
else if (client == wxART_FRAME_ICON)
|
||||||
return wxSize(16, 15);
|
{
|
||||||
|
#ifdef __WXMSW__
|
||||||
|
return wxSize(::GetSystemMetrics(SM_CXSMICON),
|
||||||
|
::GetSystemMetrics(SM_CYSMICON));
|
||||||
|
#else
|
||||||
|
return wxSize(16, 16);
|
||||||
|
#endif // __WXMSW__/!__WXMSW__
|
||||||
|
}
|
||||||
else if (client == wxART_CMN_DIALOG || client == wxART_MESSAGE_BOX)
|
else if (client == wxART_CMN_DIALOG || client == wxART_MESSAGE_BOX)
|
||||||
return wxSize(32, 32);
|
return wxSize(32, 32);
|
||||||
else if (client == wxART_HELP_BROWSER)
|
else if (client == wxART_HELP_BROWSER)
|
||||||
|
Reference in New Issue
Block a user