]> git.saurik.com Git - wxWidgets.git/blobdiff - src/qt/button.cpp
Additional makefiles; changes for compilation with BC++ and GnuWin32
[wxWidgets.git] / src / qt / button.cpp
index 438a4cfea19531b45b7096dd7f6fa59d3036ed23..befd0d71564ad3486bddfb4281f03acd6fd16e9d 100644 (file)
@@ -1,10 +1,11 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        button.cpp
-// Purpose:
-// Author:      Robert Roebling
-// Created:     01/02/97
-// Id:
-// Copyright:   (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
+// Purpose:     wxButton
+// Author:      AUTHOR
+// Modified by:
+// Created:     ??/??/98
+// RCS-ID:      $Id$
+// Copyright:   (c) AUTHOR
 // Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 
 #include "wx/button.h"
 
-//-----------------------------------------------------------------------------
-// classes
-//-----------------------------------------------------------------------------
+#if !USE_SHARED_LIBRARY
+IMPLEMENT_DYNAMIC_CLASS(wxButton, wxControl)
+#endif
 
-class wxButton;
+// Button
 
-//-----------------------------------------------------------------------------
-// wxButton
-//-----------------------------------------------------------------------------
+bool wxButton::Create(wxWindow *parent, wxWindowID id, const wxString& label,
+           const wxPoint& pos,
+           const wxSize& size, long style,
+           const wxValidator& validator,
+           const wxString& name)
+{
+    SetName(name);
+    SetValidator(validator);
+    m_windowStyle = style;
 
-IMPLEMENT_DYNAMIC_CLASS(wxButton,wxControl)
+    parent->AddChild((wxButton *)this);
 
-//-----------------------------------------------------------------------------
+    if (id == -1)
+        m_windowId = NewControlId();
+    else
+        m_windowId = id;
 
-wxButton::wxButton(void)
-{
-};
+    // TODO: create button
 
-wxButton::wxButton( wxWindow *parent, wxWindowID id, const wxString &label,
-      const wxPoint &pos, const wxSize &size,
-      long style, const wxString &name )
+    return FALSE;
+}
+
+void wxButton::SetSize(int x, int y, int width, int height, int sizeFlags)
 {
-  Create( parent, id, label, pos, size, style, name );
-};
+    // TODO
+}
 
-bool wxButton::Create(  wxWindow *parent, wxWindowID id, const wxString &label,
-      const wxPoint &pos, const wxSize &size,
-      long style, const wxString &name )
+void wxButton::SetDefault()
 {
-  return TRUE;
-};
+    wxWindow *parent = (wxWindow *)GetParent();
+    if (parent)
+        parent->SetDefaultItem(this);
+
+    // TODO: make button the default
+}
 
-void wxButton::SetDefault(void)
+wxString wxButton::GetLabel() const
 {
-};
+    // TODO
+    return wxString("");
+}
 
-void wxButton::SetLabel( const wxString &label )
+void wxButton::SetLabel(const wxString& label)
 {
-  wxControl::SetLabel( label );
-};
+    // TODO
+}
 
-wxString wxButton::GetLabel(void) const
+void wxButton::Command (wxCommandEvent & event)
 {
-  return wxControl::GetLabel();
-};
+    ProcessCommand (event);
+}
+