X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0d0837053cd77708760d0c48a91e24ed9d6e3557..d9f9aa2d8fcb956444588b2c19ffe8d4a3f5d2bb:/src/motif/font.cpp diff --git a/src/motif/font.cpp b/src/motif/font.cpp index 048592aeb0..c5d72cd94d 100644 --- a/src/motif/font.cpp +++ b/src/motif/font.cpp @@ -21,18 +21,23 @@ #pragma implementation "font.h" #endif +#ifdef __VMS +#pragma message disable nosimpint +#include "wx/vms_x_fix.h" +#endif #include +#ifdef __VMS +#pragma message enable nosimpint +#endif #include "wx/defs.h" #include "wx/string.h" #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 @@ -181,6 +186,14 @@ wxFontRefData::~wxFontRefData() // wxFont // ---------------------------------------------------------------------------- +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 )