]> git.saurik.com Git - wxWidgets.git/blame - src/msw/bmpbuttn.cpp
Use stock id instead of duplicating its string label in CheckFit().
[wxWidgets.git] / src / msw / bmpbuttn.cpp
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
1e6feb95 2// Name: src/msw/bmpbuttn.cpp
2bda0e17
KB
3// Purpose: wxBitmapButton
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
6c9a19aa 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
2bda0e17
KB
12// For compilers that support precompilation, includes "wx.h".
13#include "wx/wxprec.h"
14
15#ifdef __BORLANDC__
1e6feb95 16 #pragma hdrstop
2bda0e17
KB
17#endif
18
1e6feb95
VZ
19#if wxUSE_BMPBUTTON
20
910b0053
WS
21#include "wx/bmpbuttn.h"
22
2bda0e17 23#ifndef WX_PRECOMP
84f19880 24 #include "wx/log.h"
47e92c41 25 #include "wx/dcmemory.h"
155ecd4c 26 #include "wx/image.h"
2bda0e17
KB
27#endif
28
29#include "wx/msw/private.h"
025f7d77 30#include "wx/msw/dc.h" // for wxDCTemp
4e9da8b7 31
37005692 32#include "wx/msw/uxtheme.h"
4e9da8b7 33
37005692 34#if wxUSE_UXTHEME
4e9da8b7
RD
35 // no need to include tmschema.h
36 #ifndef BP_PUSHBUTTON
37 #define BP_PUSHBUTTON 1
38
39 #define PBS_NORMAL 1
40 #define PBS_HOT 2
41 #define PBS_PRESSED 3
42 #define PBS_DISABLED 4
43 #define PBS_DEFAULTED 5
44
45 #define TMT_CONTENTMARGINS 3602
46 #endif
47#endif // wxUSE_UXTHEME
48
49#ifndef ODS_NOFOCUSRECT
50 #define ODS_NOFOCUSRECT 0x0200
51#endif
2bda0e17 52
bc9fb572
JS
53// ----------------------------------------------------------------------------
54// macros
55// ----------------------------------------------------------------------------
56
57#if wxUSE_EXTENDED_RTTI
58
59WX_DEFINE_FLAGS( wxBitmapButtonStyle )
60
3ff066a4 61wxBEGIN_FLAGS( wxBitmapButtonStyle )
bc9fb572
JS
62 // new style border flags, we put them first to
63 // use them for streaming out
3ff066a4
SC
64 wxFLAGS_MEMBER(wxBORDER_SIMPLE)
65 wxFLAGS_MEMBER(wxBORDER_SUNKEN)
66 wxFLAGS_MEMBER(wxBORDER_DOUBLE)
67 wxFLAGS_MEMBER(wxBORDER_RAISED)
68 wxFLAGS_MEMBER(wxBORDER_STATIC)
69 wxFLAGS_MEMBER(wxBORDER_NONE)
fcf90ee1 70
bc9fb572 71 // old style border flags
3ff066a4
SC
72 wxFLAGS_MEMBER(wxSIMPLE_BORDER)
73 wxFLAGS_MEMBER(wxSUNKEN_BORDER)
74 wxFLAGS_MEMBER(wxDOUBLE_BORDER)
75 wxFLAGS_MEMBER(wxRAISED_BORDER)
76 wxFLAGS_MEMBER(wxSTATIC_BORDER)
cb0afb26 77 wxFLAGS_MEMBER(wxBORDER)
bc9fb572
JS
78
79 // standard window styles
3ff066a4
SC
80 wxFLAGS_MEMBER(wxTAB_TRAVERSAL)
81 wxFLAGS_MEMBER(wxCLIP_CHILDREN)
82 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW)
83 wxFLAGS_MEMBER(wxWANTS_CHARS)
cb0afb26 84 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE)
3ff066a4
SC
85 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB )
86 wxFLAGS_MEMBER(wxVSCROLL)
87 wxFLAGS_MEMBER(wxHSCROLL)
88
89 wxFLAGS_MEMBER(wxBU_AUTODRAW)
90 wxFLAGS_MEMBER(wxBU_LEFT)
91 wxFLAGS_MEMBER(wxBU_RIGHT)
92 wxFLAGS_MEMBER(wxBU_TOP)
93 wxFLAGS_MEMBER(wxBU_BOTTOM)
94wxEND_FLAGS( wxBitmapButtonStyle )
bc9fb572
JS
95
96IMPLEMENT_DYNAMIC_CLASS_XTI(wxBitmapButton, wxButton,"wx/bmpbuttn.h")
97
3ff066a4 98wxBEGIN_PROPERTIES_TABLE(wxBitmapButton)
af498247 99 wxPROPERTY_FLAGS( WindowStyle , wxBitmapButtonStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
3ff066a4 100wxEND_PROPERTIES_TABLE()
bc9fb572 101
3ff066a4
SC
102wxBEGIN_HANDLERS_TABLE(wxBitmapButton)
103wxEND_HANDLERS_TABLE()
bc9fb572 104
3ff066a4 105wxCONSTRUCTOR_5( wxBitmapButton , wxWindow* , Parent , wxWindowID , Id , wxBitmap , Bitmap , wxPoint , Position , wxSize , Size )
bc9fb572
JS
106
107#else
2bda0e17 108IMPLEMENT_DYNAMIC_CLASS(wxBitmapButton, wxButton)
bc9fb572 109#endif
2bda0e17 110
a6fd0fde
VZ
111BEGIN_EVENT_TABLE(wxBitmapButton, wxBitmapButtonBase)
112 EVT_SYS_COLOUR_CHANGED(wxBitmapButton::OnSysColourChanged)
113END_EVENT_TABLE()
114
066f1b7a
SC
115/*
116TODO PROPERTIES :
117
118long "style" , wxBU_AUTODRAW
119bool "default" , 0
120bitmap "selected" ,
121bitmap "focus" ,
122bitmap "disabled" ,
123*/
124
56c74796
VZ
125bool wxBitmapButton::Create(wxWindow *parent,
126 wxWindowID id,
127 const wxBitmap& bitmap,
128 const wxPoint& pos,
129 const wxSize& size, long style,
130 const wxValidator& wxVALIDATOR_PARAM(validator),
131 const wxString& name)
2bda0e17 132{
8e4c2912 133 if ( !wxBitmapButtonBase::Create(parent, id, pos, size, style,
a2117591 134 validator, name) )
56c74796 135 return false;
2bda0e17 136
56c74796 137 SetBitmapLabel(bitmap);
2bda0e17 138
d50dbf7c
VZ
139 return true;
140}
141
2352862a 142void wxBitmapButton::DoSetBitmap(const wxBitmap& bitmap, State which)
5f1f21d2 143{
2352862a 144 if ( bitmap.IsOk() )
5f1f21d2 145 {
2352862a
VZ
146 switch ( which )
147 {
148#if wxUSE_IMAGE
149 case State_Normal:
150 if ( !HasFlag(wxBU_AUTODRAW) && !m_disabledSetByUser )
151 {
152 wxImage img(bitmap.ConvertToImage().ConvertToGreyscale());
a6fd73d3 153 wxBitmapButtonBase::DoSetBitmap(img, State_Disabled);
2352862a
VZ
154 }
155 break;
5f1f21d2
VZ
156#endif // wxUSE_IMAGE
157
2352862a
VZ
158 case State_Focused:
159 // if the focus bitmap is specified but current one isn't, use
160 // the focus bitmap for hovering as well if this is consistent
161 // with the current Windows version look and feel
162 //
163 // rationale: this is compatible with the old wxGTK behaviour
164 // and also makes it much easier to do "the right thing" for
165 // all platforms (some of them, such as Windows XP, have "hot"
166 // buttons while others don't)
167 if ( !m_hoverSetByUser )
a6fd73d3 168 wxBitmapButtonBase::DoSetBitmap(bitmap, State_Current);
2352862a
VZ
169 break;
170
171 case State_Current:
172 // don't overwrite it with the focused bitmap
173 m_hoverSetByUser = true;
174 break;
175
176 case State_Disabled:
177 // don't overwrite it with the version automatically created
178 // from the normal one
179 m_disabledSetByUser = true;
180 break;
4d51143c
VZ
181
182 default:
183 // nothing special to do but include the default clause to
184 // suppress gcc warnings
185 ;
2352862a
VZ
186 }
187 }
5f1f21d2 188
2352862a 189 wxBitmapButtonBase::DoSetBitmap(bitmap, which);
7996ff80
VZ
190}
191
1e6feb95 192#endif // wxUSE_BMPBUTTON