/////////////////////////////////////////////////////////////////////////////
-// Name: control.cpp
+// Name: msw/control.cpp
// Purpose: wxControl class
// Author: Julian Smart
// Modified by:
/////////////////////////////////////////////////////////////////////////////
#ifdef __GNUG__
-#pragma implementation "control.h"
+ #pragma implementation "control.h"
#endif
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
-#pragma hdrstop
+ #pragma hdrstop
#endif
+#if wxUSE_CONTROLS
+
#ifndef WX_PRECOMP
-#include "wx/event.h"
-#include "wx/app.h"
-#include "wx/dcclient.h"
-#include "wx/log.h"
+ #include "wx/event.h"
+ #include "wx/app.h"
+ #include "wx/dcclient.h"
+ #include "wx/log.h"
#endif
#include "wx/control.h"
// Item members
wxControl::wxControl()
{
- m_backgroundColour = *wxWHITE;
- m_foregroundColour = *wxBLACK;
-
#if WXWIN_COMPATIBILITY
m_callback = 0;
#endif // WXWIN_COMPATIBILITY
// by default)
style |= WS_CHILD | WS_VISIBLE;
+ int x = pos.x == -1 ? 0 : pos.x,
+ y = pos.y == -1 ? 0 : pos.y,
+ w = size.x == -1 ? 0 : size.x,
+ h = size.y == -1 ? 0 : size.y;
+
m_hWnd = (WXHWND)::CreateWindowEx
(
exstyle, // extended style
classname, // the kind of control to create
label, // the window name
style, // the window style
- pos.x, pos.y, // the window position
- size.x, size.y, // and size
+ x, y, w, h, // the window position and size
GetHwndOf(GetParent()), // parent
(HMENU)GetId(), // child id
wxGetInstance(), // app instance
}
#endif // wxUSE_CTL3D
- // subclass again for purposes of dialog editing mode
+ // install wxWindows window proc for this window
SubclassWin(m_hWnd);
// controls use the same font and colours as their parent dialog by default
InheritAttributes();
+ // set the size now if no initial size specified
+ if ( w == 0 || h == 0 )
+ {
+ SetBestSize(size);
+ }
+
return TRUE;
}
WXLPARAM lParam,
WXLPARAM* result)
{
- wxCommandEvent event(wxEVT_NULL, m_windowId);
wxEventType eventType = wxEVT_NULL;
- NMHDR *hdr1 = (NMHDR*) lParam;
- switch ( hdr1->code )
+
+ NMHDR *hdr = (NMHDR*) lParam;
+ switch ( hdr->code )
{
case NM_CLICK:
eventType = wxEVT_COMMAND_LEFT_CLICK;
return wxWindow::MSWOnNotify(idCtrl, lParam, result);
}
+ wxCommandEvent event(wxEVT_NULL, m_windowId);
event.SetEventType(eventType);
event.SetEventObject(this);
rect->bottom = bottom;
}
+#endif // wxUSE_CONTROLS