]> git.saurik.com Git - wxWidgets.git/blobdiff - src/qt/checkbox.cpp
Minor corrections to new theme code.
[wxWidgets.git] / src / qt / checkbox.cpp
index 351a5338e3d83c4fa6cbe7bf26a31a2667bff6d8..f7b1c6ad100b35904e15bd985a17f802b9b7cdd7 100644 (file)
 /////////////////////////////////////////////////////////////////////////////
 // Name:        checkbox.cpp
-// Purpose:
-// Author:      Robert Roebling
-// Created:     01/02/97
-// Id:
-// Copyright:   (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
+// Purpose:     wxCheckBox
+// Author:      AUTHOR
+// Modified by:
+// Created:     04/01/98
+// RCS-ID:      $Id$
+// Copyright:   (c) AUTHOR
 // Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-
 #ifdef __GNUG__
 #pragma implementation "checkbox.h"
 #endif
 
 #include "wx/checkbox.h"
 
-//-----------------------------------------------------------------------------
-// wxCheckBox
-//-----------------------------------------------------------------------------
+IMPLEMENT_DYNAMIC_CLASS(wxCheckBox, wxControl)
+IMPLEMENT_DYNAMIC_CLASS(wxBitmapCheckBox, wxCheckBox)
+
+// Single check box item
+bool wxCheckBox::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;
+
+    if (parent) parent->AddChild(this);
+
+    if ( id == -1 )
+        m_windowId = NewControlId();
+    else
+        m_windowId = id;
+
+    // TODO: create checkbox
 
-IMPLEMENT_DYNAMIC_CLASS(wxCheckBox,wxControl)
+    return FALSE;
+}
 
-wxCheckBox::wxCheckBox(void)
+void wxCheckBox::SetLabel(const wxString& label)
 {
-};
+    // TODO
+}
 
-wxCheckBox::wxCheckBox( wxWindow *parent, wxWindowID id, const wxString &label,
-      const wxPoint &pos, const wxSize &size, 
-      long style, const wxString &name )
+void wxCheckBox::SetSize(int x, int y, int width, int height, int sizeFlags)
 {
-  Create( parent, id, label, pos, size, style, name );
-};
+    // TODO
+}
 
-bool wxCheckBox::Create(  wxWindow *parent, wxWindowID id, const wxString &label,
-      const wxPoint &pos, const wxSize &size, 
-      long style, const wxString &name )
+void wxCheckBox::SetValue(bool val)
 {
-  return TRUE;
-};
+    // TODO
+}
 
-void wxCheckBox::SetValue( bool WXUNUSED(state) )
+bool wxCheckBox::GetValue() const
 {
-};
+    // TODO
+    return FALSE;
+}
 
-bool wxCheckBox::GetValue(void) const
+void wxCheckBox::Command (wxCommandEvent & event)
 {
-  return FALSE;
-};
+    SetValue ((event.GetInt() != 0));
+    ProcessCommand (event);
+}
+
+// Bitmap checkbox
+bool wxBitmapCheckBox::Create(wxWindow *parent, wxWindowID id, const wxBitmap *label,
+           const wxPoint& pos,
+           const wxSize& size, long style,
+           const wxValidator& validator,
+           const wxString& name)
+{
+    SetName(name);
+    SetValidator(validator);
+    m_windowStyle = style;
+
+    if (parent) parent->AddChild(this);
+
+    if ( id == -1 )
+        m_windowId = NewControlId();
+    else
+        m_windowId = id;
+
+    // TODO: Create the bitmap checkbox
+
+    return FALSE;
+}
+
+void wxBitmapCheckBox::SetLabel(const wxBitmap *bitmap)
+{
+    // TODO
+}
+
+void wxBitmapCheckBox::SetSize(int x, int y, int width, int height, int sizeFlags)
+{
+    // TODO
+}
+
+void wxBitmapCheckBox::SetValue(bool val)
+{
+    // TODO
+}
+
+bool wxBitmapCheckBox::GetValue() const
+{
+    // TODOD
+    return FALSE;
+}
+