]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/gtk1/dataobj.h
Fix wxPropertyGrid::GetPropertyRect when the last item is collapsed.
[wxWidgets.git] / include / wx / gtk1 / dataobj.h
... / ...
CommitLineData
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/gtk1/dataobj.h
3// Purpose: declaration of the wxDataObject
4// Author: Robert Roebling
5// Copyright: (c) 1998, 1999 Vadim Zeitlin, Robert Roebling
6// Licence: wxWindows licence
7///////////////////////////////////////////////////////////////////////////////
8
9#ifndef _WX_GTK_DATAOBJ_H_
10#define _WX_GTK_DATAOBJ_H_
11
12// ----------------------------------------------------------------------------
13// wxDataObject is the same as wxDataObjectBase under wxGTK
14// ----------------------------------------------------------------------------
15
16class WXDLLIMPEXP_CORE wxDataObject : public wxDataObjectBase
17{
18public:
19 wxDataObject();
20 virtual ~wxDataObject();
21
22 virtual bool IsSupportedFormat( const wxDataFormat& format, Direction dir = Get ) const;
23};
24
25#endif // _WX_GTK_DATAOBJ_H_
26