X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/af49c4b8a2d3553e733e71c7dd3911881f4c1a2a..6a6aa79855fd5be3197626ac80af0361fe3e2aac:/include/wx/dbgrid.h?ds=sidebyside diff --git a/include/wx/dbgrid.h b/include/wx/dbgrid.h index af4145e7b5..d389049fef 100644 --- a/include/wx/dbgrid.h +++ b/include/wx/dbgrid.h @@ -14,12 +14,12 @@ #ifndef _WX_GENERIC_DBGRID_H_ #define _WX_GENERIC_DBGRID_H_ -#if defined(__GNUG__) && !defined(__APPLE__) +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma interface "dbgrid.h" #endif #if wxUSE_ODBC -#if wxUSE_NEW_GRID +#if wxUSE_GRID #include "wx/log.h" #include "wx/dbtable.h" @@ -33,7 +33,7 @@ WX_DECLARE_EXPORTED_OBJARRAY(GenericKey,keyarray); static const int wxUSE_QUERY = -1; -class WXDLLEXPORT wxDbGridColInfoBase +class WXDLLIMPEXP_DBGRID wxDbGridColInfoBase { public: //Default ctor @@ -60,7 +60,7 @@ public: }; -class WXDLLEXPORT wxDbGridColInfo +class WXDLLIMPEXP_DBGRID wxDbGridColInfo { public: wxDbGridColInfo(int colNo, @@ -78,6 +78,18 @@ public: //Recurse to find length. int Length() { return (m_next ? m_next->Length() +1 : 1); } + // Adds a new column info (2 step creation) + void AddColInfo (int colNo, + wxString type, + wxString title) + { + GetLast()->m_next = new wxDbGridColInfo (colNo, type, title, NULL); + } + + // Searches last + wxDbGridColInfo *GetLast() { return (m_next ? m_next->GetLast() : this); } + + protected: wxDbGridColInfoBase m_data; wxDbGridColInfo *m_next; @@ -86,7 +98,7 @@ public: }; -class WXDLLEXPORT wxDbGridCellAttrProvider : public wxGridCellAttrProvider +class WXDLLIMPEXP_DBGRID wxDbGridCellAttrProvider : public wxGridCellAttrProvider { public: wxDbGridCellAttrProvider(); @@ -102,7 +114,7 @@ private: }; -class WXDLLEXPORT wxDbGridTableBase : public wxGridTableBase +class WXDLLIMPEXP_DBGRID wxDbGridTableBase : public wxGridTableBase { public: wxDbGridTableBase(wxDbTable *tab, wxDbGridColInfo *ColInfo, @@ -163,7 +175,7 @@ private: bool m_rowmodified; }; -#endif // #if wxUSE_NEW_GRID +#endif // #if wxUSE_GRID #endif // #if wxUSE_ODBC #endif // _WX_GENERIC_DBGRID_H_