2007-07-26 09:54:14 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Program: wxWidgets Widgets Sample
|
|
|
|
// Name: itemcontainer.h
|
|
|
|
// Purpose: Part of the widgets sample showing wxComboBox
|
|
|
|
// Created: 20.07.07
|
|
|
|
// Id: $Id$
|
2010-07-13 09:29:13 -04:00
|
|
|
// License: wxWindows licence
|
2007-07-26 09:54:14 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_SAMPLE_WIDGETS_ITEMCONTAINER_H_
|
|
|
|
#define _WX_SAMPLE_WIDGETS_ITEMCONTAINER_H_
|
|
|
|
|
|
|
|
#include "widgets.h"
|
|
|
|
|
|
|
|
class ItemContainerWidgetsPage : public WidgetsPage
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ItemContainerWidgetsPage(WidgetsBookCtrl *book,
|
|
|
|
wxImageList *image_list,
|
2008-01-15 20:39:44 -05:00
|
|
|
const char *const icon[]);
|
2007-07-26 09:54:14 -04:00
|
|
|
virtual ~ItemContainerWidgetsPage();
|
|
|
|
|
|
|
|
void OnButtonTestItemContainer(wxCommandEvent& event);
|
|
|
|
|
|
|
|
virtual wxItemContainer* GetContainer() const = 0;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void StartTest(const wxString& label);
|
2008-08-31 11:05:02 -04:00
|
|
|
void EndTest(const wxArrayString& result);
|
2007-07-26 09:54:14 -04:00
|
|
|
|
|
|
|
// Track client data in wxItemContainer instances
|
|
|
|
wxClientData* CreateClientData(int value);
|
|
|
|
void StartTrackingData();
|
|
|
|
void StopTrackingData();
|
|
|
|
friend class TrackedClientData;
|
|
|
|
|
|
|
|
bool VerifyAllClientDataDestroyed();
|
|
|
|
bool VerifyClientData(wxUIntPtr i, const wxString& str);
|
|
|
|
|
2008-08-31 11:05:02 -04:00
|
|
|
wxString DumpContainerData(const wxArrayString& expected) const;
|
|
|
|
|
|
|
|
static wxArrayString MakeArray(const wxSortedArrayString& sorted);
|
2007-07-26 09:54:14 -04:00
|
|
|
|
|
|
|
wxArrayString m_items;
|
|
|
|
wxSortedArrayString m_itemsSorted;
|
|
|
|
int m_trackedDataObjects;
|
|
|
|
|
|
|
|
// holds pointer to the widget being tested
|
|
|
|
wxItemContainer *m_container;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _WX_SAMPLE_WIDGETS_ITEMCONTAINER_H_
|