X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a5f81d8c07022c086723a587488750ef055439e3..b6bc5bf37ca52cb04cebabf1b02739e4a871a29f:/user/wxLayout/wxlparser.h diff --git a/user/wxLayout/wxlparser.h b/user/wxLayout/wxlparser.h index c59b7dc189..338dad1b7b 100644 --- a/user/wxLayout/wxlparser.h +++ b/user/wxLayout/wxlparser.h @@ -20,15 +20,21 @@ enum wxLayoutExportType { WXLO_EXPORT_TEXT, WXLO_EXPORT_HTML, - WXLO_EXPORT_OBJECT + WXLO_EXPORT_OBJECT, + // this can be caused by empty lines: + WXLO_EXPORT_EMPTYLINE }; enum wxLayoutExportMode { - WXLO_EXPORT_AS_TEXT, - WXLO_EXPORT_AS_TEXT_AND_COMMANDS, - WXLO_EXPORT_AS_HTML, - WXLO_EXPORT_AS_OBJECTS + WXLO_EXPORT_AS_TEXT = 0x00, + WXLO_EXPORT_AS_TEXT_AND_COMMANDS = 0x01, + WXLO_EXPORT_AS_HTML = 0x02, + WXLO_EXPORT_AS_OBJECTS = 0x03, + + // non 0: + WXLO_EXPORT_WITH_CRLF = 0x10, + WXLO_EXPORT_WITH_LF_ONLY = 0x20 }; struct wxLayoutExportObject @@ -37,7 +43,7 @@ struct wxLayoutExportObject union { wxString *text; - wxLayoutObjectBase *object; + wxLayoutObject *object; }content; ~wxLayoutExportObject() { @@ -46,12 +52,40 @@ struct wxLayoutExportObject } }; + +extern const wxPoint wxLayoutExportNoPosition; + +struct wxLayoutExportStatus +{ + wxLayoutExportStatus(wxLayoutList *list, + wxPoint fromPos = wxLayoutExportNoPosition, + wxPoint toPos = wxLayoutExportNoPosition); + wxLayoutLine * m_line; + wxLOiterator m_iterator; + wxLayoutStyleInfo m_si; + wxPoint m_fromPos; + wxPoint m_toPos; +}; + +#ifdef OS_WIN /// import text into a wxLayoutList (including linefeeds): -void wxLayoutImportText(wxLayoutList &list, wxString const &str); +void wxLayoutImportText(wxLayoutList *list, wxString const &str, + int withflag = WXLO_EXPORT_WITH_CRLF); +wxLayoutExportObject *wxLayoutExport(wxLayoutExportStatus *status, + int mode = WXLO_EXPORT_AS_TEXT, + int flags = + WXLO_EXPORT_WITH_CRLF); +#else +/// import text into a wxLayoutList (including linefeeds): +void wxLayoutImportText(wxLayoutList *list, wxString const &str, + int withflag = WXLO_EXPORT_WITH_LF_ONLY); -wxLayoutExportObject *wxLayoutExport(wxLayoutList &list, - wxLayoutList::iterator &from, - wxLayoutExportMode WXLO_EXPORT_AS_TEXT); +/// export text in a given format +wxLayoutExportObject *wxLayoutExport(wxLayoutExportStatus *status, + int mode = WXLO_EXPORT_AS_TEXT, + int flags = + WXLO_EXPORT_WITH_LF_ONLY); +#endif #endif //WXLPARSER_H