X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9c110148e8517b4b5fa4dfa59b23236ad694f014..61d457caae3e33efe8e0953f79c4a94e366b22d7:/include/wx/paper.h diff --git a/include/wx/paper.h b/include/wx/paper.h index 6be58b4ce4..d6703eb299 100644 --- a/include/wx/paper.h +++ b/include/wx/paper.h @@ -69,10 +69,14 @@ private: DECLARE_DYNAMIC_CLASS(wxPrintPaperType) }; -class WXDLLEXPORT wxPrintPaperDatabase: public wxList +class WXDLLEXPORT wxStringToPrintPaperTypeHashMap; +class WXDLLEXPORT wxPrintPaperTypeList; + +class WXDLLEXPORT wxPrintPaperDatabase { public: wxPrintPaperDatabase(); + ~wxPrintPaperDatabase(); void CreateDatabase(); void ClearDatabase(); @@ -104,8 +108,13 @@ public: // Get the paper size wxPaperSize GetSize(const wxSize& size); + // + wxPrintPaperType* Item(size_t index) const; + size_t GetCount() const; private: - DECLARE_DYNAMIC_CLASS(wxPrintPaperDatabase) + wxStringToPrintPaperTypeHashMap* m_map; + wxPrintPaperTypeList* m_list; + // DECLARE_DYNAMIC_CLASS(wxPrintPaperDatabase) }; WXDLLEXPORT_DATA(extern wxPrintPaperDatabase*) wxThePrintPaperDatabase;