#ifdef __VMS
#pragma message disable nosimpint
+#include "wx/vms_x_fix.h"
#endif
#include <Xm/Xm.h>
#ifdef __VMS
#include "wx/font.h"
#include "wx/gdicmn.h"
#include "wx/utils.h" // for wxGetDisplay()
-#include "wx/fontutil.h"
+#include "wx/fontutil.h" // for wxNativeFontInfo
-#if !USE_SHARED_LIBRARIES
- IMPLEMENT_DYNAMIC_CLASS(wxFont, wxGDIObject)
-#endif
+IMPLEMENT_DYNAMIC_CLASS(wxFont, wxGDIObject)
// ----------------------------------------------------------------------------
// private classes
// wxFont
// ----------------------------------------------------------------------------
+wxFont(const wxNativeFontInfo& info)
+{
+ Init();
+
+ (void)Create(info.pointSize, info.family, info.style, info.weight,
+ info.underlined, info.faceName, info.encoding);
+}
+
void wxFont::Init()
{
if ( wxTheFontList )