1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "button.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
24 #include "wx/button.h"
28 #include "wx/msw/private.h"
30 #if !USE_SHARED_LIBRARY
31 IMPLEMENT_DYNAMIC_CLASS(wxButton
, wxControl
)
34 #define BUTTON_HEIGHT_FROM_CHAR_HEIGHT(cy) (11*EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy)/10)
38 bool wxButton::MSWCommand(WXUINT param
, WXWORD id
)
40 if (param
== BN_CLICKED
|| (param
== 1)) // 1 for accelerator
42 wxCommandEvent
event(wxEVT_COMMAND_BUTTON_CLICKED
, id
);
43 event
.SetEventObject(this);
44 ProcessCommand(event
);
50 bool wxButton::Create(wxWindow
*parent
, wxWindowID id
, const wxString
& label
,
52 const wxSize
& size
, long style
,
53 const wxValidator
& validator
,
57 SetValidator(validator
);
59 parent
->AddChild((wxButton
*)this);
60 m_backgroundColour
= parent
->GetBackgroundColour() ;
61 m_foregroundColour
= parent
->GetForegroundColour() ;
63 m_windowStyle
= (long&)style
;
71 m_windowId
= NewControlId();
75 DWORD exStyle
= MakeExtendedStyle(m_windowStyle
);
77 CreateWindowEx(exStyle
, "BUTTON", label
, BS_PUSHBUTTON
| WS_TABSTOP
| WS_CHILD
,
78 0, 0, 0, 0, (HWND
) parent
->GetHWND(), (HMENU
)m_windowId
,
79 wxGetInstance(), NULL
);
82 // if (!(GetParent()->GetWindowStyleFlag() & wxUSER_COLOURS))
83 // Ctl3dSubclassCtl(wx_button);
86 m_hWnd
= (WXHWND
)wx_button
;
88 // Subclass again for purposes of dialog editing mode
89 SubclassWin((WXHWND
)wx_button
);
91 SetFont(parent
->GetFont());
93 SetSize(x
, y
, width
, height
);
94 ShowWindow(wx_button
, SW_SHOW
);
99 void wxButton::SetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
101 int currentX
, currentY
;
102 GetPosition(¤tX
, ¤tY
);
105 if (x
== -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
107 if (y
== -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
110 AdjustForParentClientOrigin(x1
, y1
, sizeFlags
);
112 int actualWidth
= width
;
113 int actualHeight
= height
;
120 GetWindowText((HWND
) GetHWND(), buf
, 300);
121 GetTextExtent(buf
, ¤t_width
, &cyf
,NULL
,NULL
,& GetFont());
123 // If we're prepared to use the existing width, then...
124 if (width
== -1 && ((sizeFlags
& wxSIZE_AUTO_WIDTH
) != wxSIZE_AUTO_WIDTH
))
126 else if (width
== -1)
130 wxGetCharSize(GetHWND(), &cx
, &cy
,& GetFont());
131 actualWidth
= (int)(current_width
+ 3*cx
) ;
134 // If we're prepared to use the existing height, then...
135 if (height
== -1 && ((sizeFlags
& wxSIZE_AUTO_HEIGHT
) != wxSIZE_AUTO_HEIGHT
))
137 else if (height
== -1)
139 actualHeight
= BUTTON_HEIGHT_FROM_CHAR_HEIGHT(cyf
);
142 MoveWindow((HWND
) GetHWND(), x1
, y1
, actualWidth
, actualHeight
, TRUE
);
145 void wxButton::SetDefault(void)
147 wxWindow
*parent
= (wxWindow
*)GetParent();
149 parent
->SetDefaultItem(this);
153 SendMessage((HWND
)parent
->GetHWND(), DM_SETDEFID
, m_windowId
, 0L);
156 SendMessage((HWND
)GetHWND(), BM_SETSTYLE
, BS_DEFPUSHBUTTON
, 1L);
159 wxString
wxButton::GetLabel(void) const
161 GetWindowText((HWND
) GetHWND(), wxBuffer
, 300);
162 return wxString(wxBuffer
);
165 void wxButton::SetLabel(const wxString
& label
)
167 SetWindowText((HWND
) GetHWND(), (const char *) label
);
170 WXHBRUSH
wxButton::OnCtlColor(WXHDC pDC
, WXHWND pWnd
, WXUINT nCtlColor
,
171 WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
174 WXHBRUSH hBrush = (WXHBRUSH) MSWDefWindowProc(message, wParam, lParam);
175 // ::SetTextColor((HDC) pDC, GetSysColor(COLOR_BTNTEXT));
176 ::SetTextColor((HDC) pDC, RGB(GetForegroundColour().Red(), GetForegroundColour().Green(),
177 GetForegroundColour().Blue()));
181 // This doesn't in fact seem to make any difference at all - buttons are always
183 ::SetBkColor((HDC
) pDC
, RGB(GetBackgroundColour().Red(), GetBackgroundColour().Green(), GetBackgroundColour().Blue()));
184 ::SetTextColor((HDC
) pDC
, RGB(GetForegroundColour().Red(), GetForegroundColour().Green(), GetForegroundColour().Blue()));
186 wxBrush
*backgroundBrush
= wxTheBrushList
->FindOrCreateBrush(GetBackgroundColour(), wxSOLID
);
188 // Note that this will be cleaned up in wxApp::OnIdle, if backgroundBrush
189 // has a zero usage count.
191 // backgroundBrush->RealizeResource();
192 return (WXHBRUSH
) backgroundBrush
->GetResourceHandle();
195 void wxButton::Command (wxCommandEvent
& event
)
197 ProcessCommand (event
);