]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | ///////////////////////////////////////////////////////////////////////////// |
3f2711d5 | 2 | // Name: msw/statbox.cpp |
2bda0e17 KB |
3 | // Purpose: wxStaticBox |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
c49245f8 | 9 | // Licence: wxWindows license |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
3f2711d5 VZ |
12 | // ============================================================================ |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
2bda0e17 | 20 | #ifdef __GNUG__ |
3f2711d5 | 21 | #pragma implementation "statbox.h" |
2bda0e17 KB |
22 | #endif |
23 | ||
24 | // For compilers that support precompilation, includes "wx.h". | |
25 | #include "wx/wxprec.h" | |
26 | ||
27 | #ifdef __BORLANDC__ | |
3f2711d5 | 28 | #pragma hdrstop |
2bda0e17 KB |
29 | #endif |
30 | ||
1e6feb95 VZ |
31 | #if wxUSE_STATBOX |
32 | ||
2bda0e17 | 33 | #ifndef WX_PRECOMP |
3f2711d5 VZ |
34 | #include "wx/app.h" |
35 | #include "wx/dcclient.h" | |
2bda0e17 KB |
36 | #endif |
37 | ||
38 | #include "wx/statbox.h" | |
2bda0e17 | 39 | |
3f2711d5 VZ |
40 | #include "wx/msw/private.h" |
41 | ||
42 | // ---------------------------------------------------------------------------- | |
43 | // wxWin macros | |
44 | // ---------------------------------------------------------------------------- | |
45 | ||
5bd3a2da | 46 | IMPLEMENT_DYNAMIC_CLASS(wxStaticBox, wxControl) |
2bda0e17 | 47 | |
3f2711d5 VZ |
48 | // ============================================================================ |
49 | // implementation | |
50 | // ============================================================================ | |
51 | ||
52 | // ---------------------------------------------------------------------------- | |
53 | // wxStaticBox | |
54 | // ---------------------------------------------------------------------------- | |
55 | ||
56 | bool wxStaticBox::Create(wxWindow *parent, | |
57 | wxWindowID id, | |
58 | const wxString& label, | |
59 | const wxPoint& pos, | |
60 | const wxSize& size, | |
61 | long style, | |
62 | const wxString& name) | |
2bda0e17 | 63 | { |
11b6a93b | 64 | if ( !CreateControl(parent, id, pos, size, style, wxDefaultValidator, name) ) |
3f2711d5 | 65 | return FALSE; |
2bda0e17 | 66 | |
222594ea | 67 | if ( !MSWCreateControl(wxT("BUTTON"), BS_GROUPBOX, pos, size, label, 0) ) |
3f2711d5 | 68 | return FALSE; |
2bda0e17 | 69 | |
3f2711d5 | 70 | return TRUE; |
2bda0e17 KB |
71 | } |
72 | ||
f68586e5 | 73 | wxSize wxStaticBox::DoGetBestSize() const |
2bda0e17 | 74 | { |
4438caf4 VZ |
75 | int cx, cy; |
76 | wxGetCharSize(GetHWND(), &cx, &cy, &GetFont()); | |
2bda0e17 | 77 | |
4438caf4 VZ |
78 | int wBox; |
79 | GetTextExtent(wxGetWindowText(m_hWnd), &wBox, &cy); | |
2bda0e17 | 80 | |
4438caf4 VZ |
81 | wBox += 3*cx; |
82 | int hBox = EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy); | |
2bda0e17 | 83 | |
4438caf4 VZ |
84 | return wxSize(wBox, hBox); |
85 | } | |
2bda0e17 | 86 | |
2bda0e17 KB |
87 | long wxStaticBox::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam) |
88 | { | |
222594ea | 89 | switch ( nMsg ) |
1c089c47 | 90 | { |
222594ea VZ |
91 | case WM_NCHITTEST: |
92 | // FIXME: this hack is specific to dialog ed, shouldn't it be | |
93 | // somehow disabled during normal operation? | |
94 | { | |
95 | int xPos = LOWORD(lParam); // horizontal position of cursor | |
96 | int yPos = HIWORD(lParam); // vertical position of cursor | |
97 | ||
98 | ScreenToClient(&xPos, &yPos); | |
99 | ||
100 | // Make sure you can drag by the top of the groupbox, but let | |
101 | // other (enclosed) controls get mouse events also | |
102 | if ( yPos < 10 ) | |
103 | return (long)HTCLIENT; | |
104 | } | |
105 | break; | |
106 | ||
222594ea VZ |
107 | case WM_ERASEBKGND: |
108 | // prevent wxControl from processing this message because it will | |
109 | // erase the background incorrectly and there is no way for us to | |
110 | // override this at wxWin event level (if we do process the event, | |
111 | // we don't know how to do it properly - paint the background | |
112 | // without painting over other controls - and if we don't, | |
113 | // wxControl still gets it) | |
114 | return MSWDefWindowProc(nMsg, wParam, lParam); | |
1c089c47 | 115 | } |
2bda0e17 | 116 | |
42e69d6b | 117 | return wxControl::MSWWindowProc(nMsg, wParam, lParam); |
2bda0e17 KB |
118 | } |
119 | ||
1e6feb95 | 120 | #endif // wxUSE_STATBOX |