Some secondary grid classes now derive from wxClientDataContainer.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15193 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -31,6 +31,7 @@
|
|||||||
#include "wx/combobox.h"
|
#include "wx/combobox.h"
|
||||||
#include "wx/dynarray.h"
|
#include "wx/dynarray.h"
|
||||||
#include "wx/timer.h"
|
#include "wx/timer.h"
|
||||||
|
#include "wx/clntdata.h"
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
// constants
|
// constants
|
||||||
@@ -98,7 +99,7 @@ class WXDLLEXPORT wxSpinCtrl;
|
|||||||
// class is not documented and is not public at all
|
// class is not documented and is not public at all
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
class WXDLLEXPORT wxGridCellWorker
|
class WXDLLEXPORT wxGridCellWorker : public wxClientDataContainer
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
wxGridCellWorker() { m_nRef = 1; }
|
wxGridCellWorker() { m_nRef = 1; }
|
||||||
@@ -569,7 +570,7 @@ private:
|
|||||||
// class may be returned by wxGridTable::GetAttr().
|
// class may be returned by wxGridTable::GetAttr().
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
class WXDLLEXPORT wxGridCellAttr
|
class WXDLLEXPORT wxGridCellAttr : public wxClientDataContainer
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
enum wxAttrKind
|
enum wxAttrKind
|
||||||
@@ -711,7 +712,7 @@ private:
|
|||||||
// the default implementation is reasonably efficient for the generic case,
|
// the default implementation is reasonably efficient for the generic case,
|
||||||
// but you might still wish to implement your own for some specific situations
|
// but you might still wish to implement your own for some specific situations
|
||||||
// if you have performance problems with the stock one
|
// if you have performance problems with the stock one
|
||||||
class WXDLLEXPORT wxGridCellAttrProvider
|
class WXDLLEXPORT wxGridCellAttrProvider : public wxClientDataContainer
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
wxGridCellAttrProvider();
|
wxGridCellAttrProvider();
|
||||||
@@ -745,7 +746,7 @@ private:
|
|||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
class WXDLLEXPORT wxGridTableBase : public wxObject
|
class WXDLLEXPORT wxGridTableBase : public wxObject, public wxClientDataContainer
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
wxGridTableBase();
|
wxGridTableBase();
|
||||||
|
Reference in New Issue
Block a user