/////////////////////////////////////////////////////////////////////////////
-// Name: hyperlink.cpp
+// Name: src/xrc/xh_hyperlink.cpp
// Purpose: Hyperlink control
// Author: David Norris <danorris@gmail.com>
// Modified by: Ryan Norton, Francesco Montorsi
// Pre-compiled header stuff
//---------------------------------------------------------------------------
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma implementation "hyperlink.h"
-#endif
-
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#pragma hdrstop
#endif
+#if wxUSE_XRC && wxUSE_HYPERLINKCTRL
+
//---------------------------------------------------------------------------
// Includes
//---------------------------------------------------------------------------
-#include "wx/hyperlink.h"
-#include "wx/utils.h" // wxLaunchDefaultBrowser
-#include "wx/xrc/xmlres.h"
#include "wx/xrc/xh_hyperlink.h"
-#if wxUSE_HYPERLINKCTRL
+#ifndef WX_PRECOMP
+#endif
+
+#include "wx/hyperlink.h"
+#include "wx/xrc/xmlres.h"
//===========================================================================
// Implementation
wxHyperlinkCtrlXmlHandler::wxHyperlinkCtrlXmlHandler()
{
+ XRC_ADD_STYLE(wxHL_CONTEXTMENU);
+ XRC_ADD_STYLE(wxHL_ALIGN_LEFT);
+ XRC_ADD_STYLE(wxHL_ALIGN_RIGHT);
+ XRC_ADD_STYLE(wxHL_ALIGN_CENTRE);
+ XRC_ADD_STYLE(wxHL_DEFAULT_STYLE);
+
AddWindowStyles();
}
SetupWindow(control);
control->Create(m_parentAsWindow, GetID(),
GetParamValue(wxT("label")), GetParamValue(wxT("url")),
- GetPosition(), GetSize(), GetStyle());
+ GetPosition(), GetSize(),
+ GetStyle(wxT("style"), wxHL_DEFAULT_STYLE));
return control;
}
return IsOfClass(node, wxT("wxHyperlinkCtrl"));
}
-#endif // wxUSE_HYPERLINKCTRL
+#endif // wxUSE_XRC && wxUSE_HYPERLINKCTRL