]> git.saurik.com Git - wxWidgets.git/blame - src/osx/artmac.cpp
Use best controller size in wxBookCtrl best size calculation.
[wxWidgets.git] / src / osx / artmac.cpp
CommitLineData
489468fe 1/////////////////////////////////////////////////////////////////////////////
96dabe43 2// Name: src/osx/artmac.cpp
489468fe
SC
3// Purpose: wxArtProvider instance with native Mac stock icons
4// Author: Alan Shouls
5// Created: 2006-10-30
6// RCS-ID: $Id$
7// Copyright: (c) wxWindows team
8// Licence: wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
10
11// ---------------------------------------------------------------------------
12// headers
13// ---------------------------------------------------------------------------
14
15// For compilers that support precompilation, includes "wx.h".
16#include "wx/wxprec.h"
17
18#if defined(__BORLANDC__)
19 #pragma hdrstop
20#endif
21
a158acac
VS
22#include "wx/artprov.h"
23
489468fe
SC
24#ifndef WX_PRECOMP
25 #include "wx/image.h"
26#endif
27
ca9eebc3 28#include "wx/osx/private.h"
489468fe
SC
29
30// ----------------------------------------------------------------------------
31// wxMacArtProvider
32// ----------------------------------------------------------------------------
33
34class wxMacArtProvider : public wxArtProvider
35{
36protected:
ca9eebc3 37#if wxOSX_USE_COCOA_OR_CARBON
489468fe
SC
38 virtual wxIconBundle CreateIconBundle(const wxArtID& id,
39 const wxArtClient& client);
ca9eebc3
SC
40#endif
41#if wxOSX_USE_COCOA_OR_IPHONE
42 virtual wxBitmap CreateBitmap(const wxArtID& id,
43 const wxArtClient& client,
44 const wxSize& size)
45 {
46 return wxOSXCreateSystemBitmap(id, client, size);
47 }
48#endif
489468fe
SC
49};
50
51/* static */ void wxArtProvider::InitNativeProvider()
52{
53 wxArtProvider::Push(new wxMacArtProvider);
54}
55
ca9eebc3
SC
56#if wxOSX_USE_COCOA_OR_CARBON
57
489468fe
SC
58// ----------------------------------------------------------------------------
59// helper macros
60// ----------------------------------------------------------------------------
61
62#define CREATE_STD_ICON(iconId, xpmRc) \
63 { \
9a83f860 64 wxIconBundle icon(wxT(iconId), wxBITMAP_TYPE_ICON_RESOURCE); \
489468fe
SC
65 return icon; \
66 }
67
68// Macro used in CreateBitmap to get wxICON_FOO icons:
69#define ART_MSGBOX(artId, iconId, xpmRc) \
70 if ( id == artId ) \
71 { \
72 CREATE_STD_ICON(#iconId, xpmRc) \
73 }
74
75static wxIconBundle wxMacArtProvider_CreateIconBundle(const wxArtID& id)
76{
77 ART_MSGBOX(wxART_ERROR, wxICON_ERROR, error)
78 ART_MSGBOX(wxART_INFORMATION, wxICON_INFORMATION, info)
79 ART_MSGBOX(wxART_WARNING, wxICON_WARNING, warning)
80 ART_MSGBOX(wxART_QUESTION, wxICON_QUESTION, question)
81
82 ART_MSGBOX(wxART_FOLDER, wxICON_FOLDER, folder)
83 ART_MSGBOX(wxART_FOLDER_OPEN, wxICON_FOLDER_OPEN, folder_open)
84 ART_MSGBOX(wxART_NORMAL_FILE, wxICON_NORMAL_FILE, deffile)
9c4ae528 85 ART_MSGBOX(wxART_EXECUTABLE_FILE, wxICON_EXECUTABLE_FILE, exefile)
489468fe 86
03647350
VZ
87 ART_MSGBOX(wxART_CDROM, wxICON_CDROM, cdrom)
88 ART_MSGBOX(wxART_FLOPPY, wxICON_FLOPPY, floppy)
89 ART_MSGBOX(wxART_HARDDISK, wxICON_HARDDISK, harddisk)
90 ART_MSGBOX(wxART_REMOVABLE, wxICON_REMOVABLE, removable)
91
92 ART_MSGBOX(wxART_DELETE, wxICON_DELETE, delete)
93
94 ART_MSGBOX(wxART_GO_BACK, wxICON_GO_BACK, back)
95 ART_MSGBOX(wxART_GO_FORWARD, wxICON_GO_FORWARD, forward)
96 ART_MSGBOX(wxART_GO_HOME, wxICON_GO_HOME, home)
97
98 ART_MSGBOX(wxART_HELP_SETTINGS, wxICON_HELP_SETTINGS, htmoptns)
99 ART_MSGBOX(wxART_HELP_PAGE, wxICON_HELP_PAGE, htmpage)
100
489468fe
SC
101 return wxNullIconBundle;
102}
103
104// ----------------------------------------------------------------------------
105// CreateIconBundle
106// ----------------------------------------------------------------------------
107
108wxIconBundle wxMacArtProvider::CreateIconBundle(const wxArtID& id, const wxArtClient& client)
109{
110 // On the Mac folders in lists are always drawn closed, so if an open
111 // folder icon is asked for we will ask for a closed one in its place
112 if ( client == wxART_LIST && id == wxART_FOLDER_OPEN )
113 return wxMacArtProvider_CreateIconBundle(wxART_FOLDER);
114
115 return wxMacArtProvider_CreateIconBundle(id);
116}
117
ca9eebc3 118#endif
b2680ced 119
a158acac
VS
120// ----------------------------------------------------------------------------
121// wxArtProvider::GetNativeSizeHint()
122// ----------------------------------------------------------------------------
123
124/*static*/
125wxSize wxArtProvider::GetNativeSizeHint(const wxArtClient& client)
126{
127 if ( client == wxART_TOOLBAR )
128 {
129 // See http://developer.apple.com/documentation/UserExperience/Conceptual/AppleHIGuidelines/XHIGIcons/chapter_15_section_9.html:
130 // "32 x 32 pixels is the recommended size"
131 return wxSize(32, 32);
132 }
1d3dfc57
VZ
133 else if ( client == wxART_BUTTON || client == wxART_MENU )
134 {
135 // Mac UI doesn't use any images in neither buttons nor menus in
136 // general but the code using wxArtProvider can use wxART_BUTTON to
137 // find the icons of a roughly appropriate size for the buttons and
138 // 16x16 seems to be the best choice for this kind of use
139 return wxSize(16, 16);
140 }
a158acac
VS
141
142 return wxDefaultSize;
143}
b2680ced 144