]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stubs/checklst.cpp
removed stubs and qt 'ports'
[wxWidgets.git] / src / stubs / checklst.cpp
diff --git a/src/stubs/checklst.cpp b/src/stubs/checklst.cpp
deleted file mode 100644 (file)
index 18433b9..0000000
+++ /dev/null
@@ -1,72 +0,0 @@
-///////////////////////////////////////////////////////////////////////////////
-// Name:        checklst.cpp
-// Purpose:     implementation of wxCheckListBox class
-// Author:      AUTHOR
-// Modified by: 
-// Created:     ??/??/98
-// RCS-ID:      $Id$
-// Copyright:   (c) AUTHOR
-// Licence:     wxWindows licence
-///////////////////////////////////////////////////////////////////////////////
-
-// ============================================================================
-// headers & declarations
-// ============================================================================
-
-#ifdef __GNUG__
-#pragma implementation "checklst.h"
-#endif
-
-#include "wx/checklst.h"
-
-// ============================================================================
-// implementation
-// ============================================================================
-
-  IMPLEMENT_DYNAMIC_CLASS(wxCheckListBox, wxListBox)
-
-// ----------------------------------------------------------------------------
-// implementation of wxCheckListBox class
-// ----------------------------------------------------------------------------
-
-// define event table
-// ------------------
-BEGIN_EVENT_TABLE(wxCheckListBox, wxListBox)
-END_EVENT_TABLE()
-
-// control creation
-// ----------------
-
-// def ctor: use Create() to really create the control
-wxCheckListBox::wxCheckListBox() : wxListBox()
-{
-}
-
-// ctor which creates the associated control
-wxCheckListBox::wxCheckListBox(wxWindow *parent, wxWindowID id,
-                               const wxPoint& pos, const wxSize& size,
-                               int nStrings, const wxString choices[],
-                               long style, const wxValidator& val,
-                               const wxString& name)
-              : wxListBox()
-{
-    // TODO: you'll probably need a separate Create instead of using
-    // the wxListBox one as here.
-    Create(parent, id, pos, size, nStrings, choices, style|wxLB_OWNERDRAW, val, name);
-}
-
-// check items
-// -----------
-
-bool wxCheckListBox::IsChecked(uint uiIndex) const
-{
-    // TODO
-    return FALSE;
-}
-
-void wxCheckListBox::Check(uint uiIndex, bool bCheck)
-{
-    // TODO
-}
-
-