iODBC v2.5
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1446 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -63,22 +63,26 @@ class wxDataFormat : public wxObject
|
||||
|
||||
public:
|
||||
|
||||
wxDataFormat();
|
||||
wxDataFormat( wxDataType type );
|
||||
wxDataFormat( const wxString &id );
|
||||
wxDataFormat( wxDataFormat &format );
|
||||
wxDataFormat( const GdkAtom atom );
|
||||
|
||||
int GetType() const;
|
||||
|
||||
void SetType( wxDataType type );
|
||||
wxDataType GetType() const;
|
||||
|
||||
wxString GetId() const;
|
||||
void SetId( const wxString &id );
|
||||
|
||||
GdkAtom GetAtom();
|
||||
|
||||
private:
|
||||
|
||||
int m_type;
|
||||
wxString m_id;
|
||||
bool m_hasAtom;
|
||||
GdkAtom m_atom;
|
||||
wxDataType m_type;
|
||||
wxString m_id;
|
||||
bool m_hasAtom;
|
||||
GdkAtom m_atom;
|
||||
};
|
||||
|
||||
//-------------------------------------------------------------------------
|
||||
@@ -151,9 +155,13 @@ public:
|
||||
|
||||
/* implementation */
|
||||
|
||||
virtual wxDataFormat &GetFormat() const;
|
||||
wxDataFormat &GetFormat();
|
||||
|
||||
wxDataFormat *m_format;
|
||||
wxDataType GetFormatType() const;
|
||||
wxString GetFormatId() const;
|
||||
GdkAtom GetFormatAtom() const;
|
||||
|
||||
wxDataFormat m_format;
|
||||
};
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
|
Reference in New Issue
Block a user