X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/17e914373a348a6c1f432d06ecab0bced95773ac..fc9361e3ec5b81a7e8c32d93a03aea0b2cd3e045:/include/wx/xrc/xh_hyperlink.h?ds=sidebyside diff --git a/include/wx/xrc/xh_hyperlink.h b/include/wx/xrc/xh_hyperlink.h index 6a31109fcb..d4e6a49957 100644 --- a/include/wx/xrc/xh_hyperlink.h +++ b/include/wx/xrc/xh_hyperlink.h @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: xh_hyperlink.h +// Name: wx/xrc/xh_hyperlink.h // Purpose: Hyperlink control (wxAdv) // Author: David Norris // Modified by: Ryan Norton, Francesco Montorsi @@ -12,19 +12,15 @@ #ifndef _WX_XH_HYPERLINKH__ #define _WX_XH_HYPERLINKH__ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma interface "hyperlink.h" -#endif - -#include "wx/defs.h" - -#if wxUSE_HYPERLINKCTRL - -#include "wx/hyperlink.h" #include "wx/xrc/xmlres.h" +#if wxUSE_XRC && wxUSE_HYPERLINKCTRL + class WXDLLIMPEXP_XRC wxHyperlinkCtrlXmlHandler : public wxXmlResourceHandler { + // Register with wxWindows' dynamic class subsystem. + DECLARE_DYNAMIC_CLASS(wxHyperlinkCtrlXmlHandler) + public: // Constructor. wxHyperlinkCtrlXmlHandler(); @@ -34,11 +30,8 @@ public: // Returns true if we know how to create a control for the given node. virtual bool CanHandle(wxXmlNode *node); - - // Register with wxWindows' dynamic class subsystem. - DECLARE_DYNAMIC_CLASS(wxHyperlinkCtrlXmlHandler) }; -#endif // wxUSE_HYPERLINKCTRL -#endif // _WX_XH_HYPERLINKH__ +#endif // wxUSE_XRC && wxUSE_HYPERLINKCTRL +#endif // _WX_XH_HYPERLINKH__