]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/private/button.h
97b6de86c0e3ed345cc6e685d62e742de407f38d
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: msw/private/button.h
3 // Purpose: helper functions used with native BUTTON control
4 // Author: Vadim Zeitlin
7 // Copyright: (c) 2008 Vadim Zeitlin <vadim@wxwidgets.org>
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_MSW_PRIVATE_BUTTON_H_
12 #define _WX_MSW_PRIVATE_BUTTON_H_
14 // define some standard button constants which may be missing in the headers
16 #define BS_PUSHLIKE 0x00001000L
20 #define BST_UNCHECKED 0x0000
24 #define BST_CHECKED 0x0001
27 #ifndef BST_INDETERMINATE
28 #define BST_INDETERMINATE 0x0002
32 #define DT_HIDEPREFIX 0x00100000
38 // returns BS_MULTILINE if the label contains new lines or 0 otherwise
39 inline int GetMultilineStyle(const wxString
& label
)
41 return label
.find(_T('\n')) == wxString::npos
? 0 : BS_MULTILINE
;
44 // update the style of the specified HWND to include or exclude BS_MULTILINE
45 // depending on whether the label contains the new lines
46 inline void UpdateMultilineStyle(HWND hwnd
, const wxString
& label
)
48 // update BS_MULTILINE style depending on the new label (resetting it
49 // doesn't seem to do anything very useful but it shouldn't hurt and we do
50 // have to set it whenever the label becomes multi line as otherwise it
51 // wouldn't be shown correctly as we don't use BS_MULTILINE when creating
52 // the control unless it already has new lines in its label)
53 long styleOld
= ::GetWindowLong(hwnd
, GWL_STYLE
),
55 if ( label
.find(_T('\n')) != wxString::npos
)
56 styleNew
= styleOld
| BS_MULTILINE
;
58 styleNew
= styleOld
& ~BS_MULTILINE
;
60 if ( styleNew
!= styleOld
)
61 ::SetWindowLong(hwnd
, GWL_STYLE
, styleNew
);
64 // common implementation of wxButton and wxToggleButton::DoGetBestSize()
65 inline wxSize
ComputeBestSize(wxControl
*btn
)
71 dc
.GetMultiLineTextExtent(btn
->GetLabelText(), &wBtn
, &hBtn
);
73 // FIXME: this is pure guesswork, need to retrieve the real button margins
74 wBtn
+= 3*btn
->GetCharWidth();
75 hBtn
= 11*EDIT_HEIGHT_FROM_CHAR_HEIGHT(hBtn
)/10;
77 // all buttons have at least the standard size unless the user explicitly
78 // wants them to be of smaller size and used wxBU_EXACTFIT style when
79 // creating the button
80 if ( !btn
->HasFlag(wxBU_EXACTFIT
) )
82 wxSize sz
= wxButton::GetDefaultSize();
89 wxSize
best(wBtn
, hBtn
);
90 btn
->CacheBestSize(best
);
94 } // namespace wxMSWButton
96 #endif // _WX_MSW_PRIVATE_BUTTON_H_