projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
we don't need to use select() in DoWait() if we're receiving notifications about...
[wxWidgets.git]
/
src
/
palmos
/
checklst.cpp
diff --git
a/src/palmos/checklst.cpp
b/src/palmos/checklst.cpp
index 08efd5f0ef02181be36a65dac463e41019181d38..358a423dc641fe32401797607e97b6eeae9f5d31 100644
(file)
--- a/
src/palmos/checklst.cpp
+++ b/
src/palmos/checklst.cpp
@@
-1,10
+1,10
@@
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
-// Name: palmos/checklst.cpp
+// Name:
src/
palmos/checklst.cpp
// Purpose: implementation of wxCheckListBox class
// Purpose: implementation of wxCheckListBox class
-// Author: William Osborne
+// Author: William Osborne
- minimal working wxPalmOS port
// Modified by:
// Created: 10.13.04
// Modified by:
// Created: 10.13.04
-// RCS-ID: $Id
:
+// RCS-ID: $Id
$
// Copyright: (c) William Osborne
// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
// Copyright: (c) William Osborne
// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
@@
-17,18
+17,16
@@
// headers
// ----------------------------------------------------------------------------
// headers
// ----------------------------------------------------------------------------
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma implementation "checklst.h"
-#endif
-
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
-#pragma hdrstop
+
#pragma hdrstop
#endif
#endif
-#if wxUSE_OWNER_DRAWN
+#if wxUSE_CHECKLISTBOX && wxUSE_OWNER_DRAWN
+
+#include "wx/checklst.h"
#ifndef WX_PRECOMP
#include "wx/object.h"
#ifndef WX_PRECOMP
#include "wx/object.h"
@@
-45,7
+43,6
@@
#endif
#include "wx/ownerdrw.h"
#endif
#include "wx/ownerdrw.h"
-#include "wx/checklst.h"
#include "wx/palmos/wrapwin.h"
#include "wx/palmos/wrapwin.h"
@@
-75,7
+72,7
@@
wxBEGIN_FLAGS( wxCheckListBoxStyle )
wxFLAGS_MEMBER(wxBORDER_RAISED)
wxFLAGS_MEMBER(wxBORDER_STATIC)
wxFLAGS_MEMBER(wxBORDER_NONE)
wxFLAGS_MEMBER(wxBORDER_RAISED)
wxFLAGS_MEMBER(wxBORDER_STATIC)
wxFLAGS_MEMBER(wxBORDER_NONE)
-
+
// old style border flags
wxFLAGS_MEMBER(wxSIMPLE_BORDER)
wxFLAGS_MEMBER(wxSUNKEN_BORDER)
// old style border flags
wxFLAGS_MEMBER(wxSIMPLE_BORDER)
wxFLAGS_MEMBER(wxSUNKEN_BORDER)
@@
-115,7
+112,7
@@
wxEND_PROPERTIES_TABLE()
wxBEGIN_HANDLERS_TABLE(wxCheckListBox)
wxEND_HANDLERS_TABLE()
wxBEGIN_HANDLERS_TABLE(wxCheckListBox)
wxEND_HANDLERS_TABLE()
-wxCONSTRUCTOR_4( wxCheckListBox , wxWindow* , Parent , wxWindowID , Id , wxPoint , Position , wxSize , Size )
+wxCONSTRUCTOR_4( wxCheckListBox , wxWindow* , Parent , wxWindowID , Id , wxPoint , Position , wxSize , Size )
#else
IMPLEMENT_DYNAMIC_CLASS(wxCheckListBox, wxListBox)
#else
IMPLEMENT_DYNAMIC_CLASS(wxCheckListBox, wxListBox)
@@
-152,14
+149,14
@@
private:
};
wxCheckListBoxItem::wxCheckListBoxItem(wxCheckListBox *pParent, size_t nIndex)
};
wxCheckListBoxItem::wxCheckListBoxItem(wxCheckListBox *pParent, size_t nIndex)
- : wxOwnerDrawn(wxEmptyString,
TRUE
) // checkable
+ : wxOwnerDrawn(wxEmptyString,
true
) // checkable
{
}
bool wxCheckListBoxItem::OnDrawItem(wxDC& dc, const wxRect& rc,
wxODAction act, wxODStatus stat)
{
{
}
bool wxCheckListBoxItem::OnDrawItem(wxDC& dc, const wxRect& rc,
wxODAction act, wxODStatus stat)
{
- return
FALSE
;
+ return
false
;
}
// change the state of the item and redraw it
}
// change the state of the item and redraw it
@@
-233,7
+230,7
@@
bool wxCheckListBox::Create(wxWindow *parent, wxWindowID id,
// misc overloaded methods
// -----------------------
// misc overloaded methods
// -----------------------
-void wxCheckListBox::Delete(
int N
)
+void wxCheckListBox::Delete(
unsigned int n
)
{
}
{
}
@@
-262,12
+259,12
@@
bool wxCheckListBox::MSWOnMeasure(WXMEASUREITEMSTRUCT *item)
// check items
// -----------
// check items
// -----------
-bool wxCheckListBox::IsChecked(
size_
t uiIndex) const
+bool wxCheckListBox::IsChecked(
unsigned in
t uiIndex) const
{
return false;
}
{
return false;
}
-void wxCheckListBox::Check(
size_
t uiIndex, bool bCheck)
+void wxCheckListBox::Check(
unsigned in
t uiIndex, bool bCheck)
{
}
{
}
@@
-287,5
+284,4
@@
int wxCheckListBox::DoHitTestItem(wxCoord x, wxCoord y) const
return wxNOT_FOUND;
}
return wxNOT_FOUND;
}
-#endif
-
+#endif // wxUSE_CHECKLISTBOX && wxUSE_OWNER_DRAWN