X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/43ef6d9ec748053bd32d5e7c01084de3b09ea8af..b388e8cdec4f45124f31525e651a5e335965e4be:/contrib/utils/wxrcedit/preview.h diff --git a/contrib/utils/wxrcedit/preview.h b/contrib/utils/wxrcedit/preview.h index 538ea3e157..014e91ba24 100644 --- a/contrib/utils/wxrcedit/preview.h +++ b/contrib/utils/wxrcedit/preview.h @@ -7,7 +7,7 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(__APPLE__) #pragma interface "preview.h" #endif @@ -30,33 +30,36 @@ class PreviewFrame : public wxFrame public: PreviewFrame(); ~PreviewFrame(); - - void Preview(wxXmlNode *node,const wxString &version); + + void Preview(wxXmlNode *node,wxXmlDocument *doc); void MakeDirty(); // current node updated, needs preview refresh // (will be done once mouse enters preview win) - + static PreviewFrame *Get(); void ResetResource(); - + private: void PreviewMenu(); void PreviewToolbar(); void PreviewPanel(); - + void PreviewWXFrame(); + private: static PreviewFrame *ms_Instance; wxXmlNode *m_Node; - wxString m_Version; + wxXmlDocument *m_Doc; wxScrolledWindow *m_ScrollWin; +#if wxUSE_LOG wxTextCtrl *m_LogCtrl; +#endif // wxUSE_LOG wxSplitterWindow *m_Splitter; - + wxXmlResource *m_RC; wxString m_TmpFile; - + bool m_Dirty; - + DECLARE_EVENT_TABLE() void OnMouseEnter(wxMouseEvent& event); };