git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22159
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
#endif
#include "wx/dialog.h"
#endif
#include "wx/dialog.h"
//----------------------------------------------------------------------------
// wxFileDialog data
//----------------------------------------------------------------------------
// wxFileDialog data
#include "wx/colour.h"
#include "wx/font.h"
#include "wx/colour.h"
#include "wx/font.h"
class WXDLLEXPORT wxTreeItemId
{
class WXDLLEXPORT wxTreeItemId
{
+ friend bool operator==(const wxTreeItemId&, const wxTreeItemId&);
public:
// ctors
// 0 is invalid value for HTREEITEM
public:
// ctors
// 0 is invalid value for HTREEITEM
#endif // WXWIN_COMPATIBILITY_2_4
wxTreeItemIdValue m_pItem;
#endif // WXWIN_COMPATIBILITY_2_4
wxTreeItemIdValue m_pItem;
+ bool operator!() const { return !IsOk(); }
+ operator bool() const { return IsOk(); }
+
+inline bool operator==(const wxTreeItemId& i1, const wxTreeItemId& i2)
+{
+ return i1.m_pItem == i2.m_pItem;
+}
+
// ----------------------------------------------------------------------------
// wxTreeItemData is some (arbitrary) user class associated with some item. The
// main advantage of having this class (compared to old untyped interface) is
// ----------------------------------------------------------------------------
// wxTreeItemData is some (arbitrary) user class associated with some item. The
// main advantage of having this class (compared to old untyped interface) is
#ifndef WX_PRECOMP
#include "wx/ctrlsub.h"
#ifndef WX_PRECOMP
#include "wx/ctrlsub.h"
#endif
// ============================================================================
#endif
// ============================================================================
#ifndef WX_PRECOMP
#include "wx/listbox.h"
#include "wx/dynarray.h"
#ifndef WX_PRECOMP
#include "wx/listbox.h"
#include "wx/dynarray.h"
#endif
// ============================================================================
#endif
// ============================================================================
#include "wx/defs.h"
#include "wx/checklst.h"
#include "wx/defs.h"
#include "wx/checklst.h"
// ============================================================================
// implementation
// ============================================================================
// implementation