]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/msw/bmpbuttn.cpp
Add support for large stdio files for VC 8+. What versions of the other Windows
[wxWidgets.git] / src / msw / bmpbuttn.cpp
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: src/msw/bmpbuttn.cpp
3// Purpose: wxBitmapButton
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12// For compilers that support precompilation, includes "wx.h".
13#include "wx/wxprec.h"
14
15#ifdef __BORLANDC__
16 #pragma hdrstop
17#endif
18
19#if wxUSE_BMPBUTTON
20
21#include "wx/bmpbuttn.h"
22
23#ifndef WX_PRECOMP
24 #include "wx/log.h"
25 #include "wx/dcmemory.h"
26 #include "wx/image.h"
27#endif
28
29#include "wx/msw/private.h"
30#include "wx/msw/dc.h" // for wxDCTemp
31
32#include "wx/msw/uxtheme.h"
33
34#if wxUSE_UXTHEME
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
52
53// ----------------------------------------------------------------------------
54// macros
55// ----------------------------------------------------------------------------
56
57#if wxUSE_EXTENDED_RTTI
58
59WX_DEFINE_FLAGS( wxBitmapButtonStyle )
60
61wxBEGIN_FLAGS( wxBitmapButtonStyle )
62 // new style border flags, we put them first to
63 // use them for streaming out
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)
70
71 // old style border flags
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)
77 wxFLAGS_MEMBER(wxBORDER)
78
79 // standard window styles
80 wxFLAGS_MEMBER(wxTAB_TRAVERSAL)
81 wxFLAGS_MEMBER(wxCLIP_CHILDREN)
82 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW)
83 wxFLAGS_MEMBER(wxWANTS_CHARS)
84 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE)
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 )
95
96IMPLEMENT_DYNAMIC_CLASS_XTI(wxBitmapButton, wxButton,"wx/bmpbuttn.h")
97
98wxBEGIN_PROPERTIES_TABLE(wxBitmapButton)
99 wxPROPERTY_FLAGS( WindowStyle , wxBitmapButtonStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
100wxEND_PROPERTIES_TABLE()
101
102wxBEGIN_HANDLERS_TABLE(wxBitmapButton)
103wxEND_HANDLERS_TABLE()
104
105wxCONSTRUCTOR_5( wxBitmapButton , wxWindow* , Parent , wxWindowID , Id , wxBitmap , Bitmap , wxPoint , Position , wxSize , Size )
106
107#else
108IMPLEMENT_DYNAMIC_CLASS(wxBitmapButton, wxButton)
109#endif
110
111BEGIN_EVENT_TABLE(wxBitmapButton, wxBitmapButtonBase)
112 EVT_SYS_COLOUR_CHANGED(wxBitmapButton::OnSysColourChanged)
113END_EVENT_TABLE()
114
115/*
116TODO PROPERTIES :
117
118long "style" , wxBU_AUTODRAW
119bool "default" , 0
120bitmap "selected" ,
121bitmap "focus" ,
122bitmap "disabled" ,
123*/
124
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& validator,
131 const wxString& name)
132{
133 if ( !wxBitmapButtonBase::Create(parent, id, pos, size, style,
134 validator, name) )
135 return false;
136
137 SetBitmapLabel(bitmap);
138
139 return true;
140}
141
142void wxBitmapButton::DoSetBitmap(const wxBitmap& bitmap, State which)
143{
144 if ( bitmap.IsOk() )
145 {
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());
153 wxBitmapButtonBase::DoSetBitmap(img, State_Disabled);
154 }
155 break;
156#endif // wxUSE_IMAGE
157
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 )
168 wxBitmapButtonBase::DoSetBitmap(bitmap, State_Current);
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;
181
182 default:
183 // nothing special to do but include the default clause to
184 // suppress gcc warnings
185 ;
186 }
187 }
188
189 wxBitmapButtonBase::DoSetBitmap(bitmap, which);
190}
191
192#endif // wxUSE_BMPBUTTON