1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxControl class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "control.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
26 #include "wx/dcclient.h"
29 #include "wx/control.h"
31 #include "wx/msw/private.h"
33 #if (defined(__WIN95__) && !defined(__GNUWIN32__)) || defined(__TWIN32__)
42 #if !USE_SHARED_LIBRARY
43 IMPLEMENT_ABSTRACT_CLASS(wxControl
, wxWindow
)
45 BEGIN_EVENT_TABLE(wxControl
, wxWindow
)
46 EVT_ERASE_BACKGROUND(wxControl::OnEraseBackground
)
51 wxControl::wxControl(void)
53 m_backgroundColour
= *wxWHITE
;
54 m_foregroundColour
= *wxBLACK
;
56 // m_windowCursor = wxNullCursor; // To avoid the standard cursor being used
59 wxControl::~wxControl(void)
61 m_isBeingDeleted
= TRUE
;
63 // If we delete an item, we should initialize the parent panel,
64 // because it could now be invalid.
65 wxWindow
*parent
= (wxWindow
*)GetParent();
68 if (parent
->GetDefaultItem() == (wxButton
*) this)
69 parent
->SetDefaultItem(NULL
);
73 void wxControl::SetLabel(const wxString
& label
)
76 SetWindowText((HWND
) GetHWND(), (const char *)label
);
79 wxString
wxControl::GetLabel(void) const
84 int len
= GetWindowText((HWND
)GetHWND(), wxBuffer
, 256);
88 return wxString(wxBuffer
);
91 // Call this repeatedly for several wnds to find the overall size
93 // Call it initially with -1 for all values in rect.
94 // Keep calling for other widgets, and rect will be modified
95 // to calculate largest bounding rectangle.
96 void wxFindMaxSize(WXHWND wnd
, RECT
*rect
)
98 int left
= rect
->left
;
99 int right
= rect
->right
;
101 int bottom
= rect
->bottom
;
103 GetWindowRect((HWND
) wnd
, rect
);
108 if (left
< rect
->left
)
111 if (right
> rect
->right
)
117 if (bottom
> rect
->bottom
)
118 rect
->bottom
= bottom
;
123 bool wxControl::MSWOnNotify(int idCtrl
,
127 wxCommandEvent
event(wxEVT_NULL
, m_windowId
);
128 wxEventType eventType
= wxEVT_NULL
;
129 NMHDR
*hdr1
= (NMHDR
*) lParam
;
130 switch ( hdr1
->code
)
133 eventType
= wxEVT_COMMAND_LEFT_CLICK
;
137 eventType
= wxEVT_COMMAND_LEFT_DCLICK
;
141 eventType
= wxEVT_COMMAND_RIGHT_CLICK
;
145 eventType
= wxEVT_COMMAND_RIGHT_DCLICK
;
149 eventType
= wxEVT_COMMAND_SET_FOCUS
;
153 eventType
= wxEVT_COMMAND_KILL_FOCUS
;
157 eventType
= wxEVT_COMMAND_ENTER
;
161 return wxWindow::MSWOnNotify(idCtrl
, lParam
, result
);
164 event
.SetEventType(eventType
);
165 event
.SetEventObject(this);
167 return GetEventHandler()->ProcessEvent(event
);
171 void wxControl::ProcessCommand (wxCommandEvent
& event
)
174 // 1) A callback function (to become obsolete)
175 // 2) OnCommand, starting at this window and working up parent hierarchy
176 // 3) OnCommand then calls ProcessEvent to search the event tables.
179 (void) (*(m_callback
)) (*this, event
);
183 GetEventHandler()->OnCommand(*this, event
);
187 void wxControl::OnEraseBackground(wxEraseEvent
& event
)
189 // In general, you don't want to erase the background of a control,
190 // or you'll get a flicker.
191 // TODO: move this 'null' function into each control that
195 ::GetClientRect((HWND
) GetHWND(), &rect
);
197 HBRUSH hBrush
= ::CreateSolidBrush(PALETTERGB(GetBackgroundColour().Red(), GetBackgroundColour().Green(), GetBackgroundColour().Blue()));
198 int mode
= ::SetMapMode((HDC
) event
.GetDC()->GetHDC(), MM_TEXT
);
200 ::FillRect ((HDC
) event
.GetDC()->GetHDC(), &rect
, hBrush
);
201 ::DeleteObject(hBrush
);
202 ::SetMapMode((HDC
) event
.GetDC()->GetHDC(), mode
);
205 void wxControl::SetClientSize (int width
, int height
)
207 SetSize (-1, -1, width
, height
);
210 void wxControl::Centre (int direction
)
212 int x
, y
, width
, height
, panel_width
, panel_height
, new_x
, new_y
;
214 wxWindow
*parent
= (wxWindow
*) GetParent ();
218 parent
->GetClientSize (&panel_width
, &panel_height
);
219 GetSize (&width
, &height
);
220 GetPosition (&x
, &y
);
225 if (direction
& wxHORIZONTAL
)
226 new_x
= (int) ((panel_width
- width
) / 2);
228 if (direction
& wxVERTICAL
)
229 new_y
= (int) ((panel_height
- height
) / 2);
231 SetSize (new_x
, new_y
, width
, height
);
233 GetPosition (&temp_x
, &temp_y
);
234 GetPosition (&temp_x
, &temp_y
);