Ensure that the wxNativeFontInfo internal data is copied when the
wxFontRefData is. This solves a wxGTK2 problem where the PangoFontDescription pointer is copied by the default assignment operator, in a binary compatible way . git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@18561 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -95,7 +95,7 @@ public:
|
|||||||
|
|
||||||
void SetNoAntiAliasing( bool no = TRUE ) { m_noAA = no; }
|
void SetNoAntiAliasing( bool no = TRUE ) { m_noAA = no; }
|
||||||
bool GetNoAntiAliasing() { return m_noAA; }
|
bool GetNoAntiAliasing() { return m_noAA; }
|
||||||
|
|
||||||
// and this one also modifies all the other font data fields
|
// and this one also modifies all the other font data fields
|
||||||
void SetNativeFontInfo(const wxNativeFontInfo& info);
|
void SetNativeFontInfo(const wxNativeFontInfo& info);
|
||||||
|
|
||||||
@@ -158,7 +158,7 @@ private:
|
|||||||
};
|
};
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
// wxFontRefData
|
// wxFontRefData
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
void wxFontRefData::Init(int pointSize,
|
void wxFontRefData::Init(int pointSize,
|
||||||
@@ -185,7 +185,7 @@ void wxFontRefData::Init(int pointSize,
|
|||||||
|
|
||||||
m_underlined = underlined;
|
m_underlined = underlined;
|
||||||
m_encoding = encoding;
|
m_encoding = encoding;
|
||||||
|
|
||||||
m_noAA = FALSE;
|
m_noAA = FALSE;
|
||||||
|
|
||||||
#ifdef __WXGTK20__
|
#ifdef __WXGTK20__
|
||||||
@@ -215,7 +215,7 @@ void wxFontRefData::Init(int pointSize,
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
SetStyle( m_style );
|
SetStyle( m_style );
|
||||||
SetPointSize( m_pointSize );
|
SetPointSize( m_pointSize );
|
||||||
SetWeight( m_weight );
|
SetWeight( m_weight );
|
||||||
@@ -407,8 +407,11 @@ wxFontRefData::wxFontRefData( const wxFontRefData& data )
|
|||||||
m_encoding = data.m_encoding;
|
m_encoding = data.m_encoding;
|
||||||
|
|
||||||
m_noAA = data.m_noAA;
|
m_noAA = data.m_noAA;
|
||||||
|
|
||||||
m_nativeFontInfo = data.m_nativeFontInfo;
|
// Forces a copy of the internal data. wxNativeFontInfo should probably
|
||||||
|
// have a copy ctor and assignment operator to fix this properly but that
|
||||||
|
// would break binary compatibility...
|
||||||
|
m_nativeFontInfo.FromString(data.m_nativeFontInfo.ToString());
|
||||||
}
|
}
|
||||||
|
|
||||||
wxFontRefData::wxFontRefData(int size, int family, int style,
|
wxFontRefData::wxFontRefData(int size, int family, int style,
|
||||||
|
@@ -95,7 +95,7 @@ public:
|
|||||||
|
|
||||||
void SetNoAntiAliasing( bool no = TRUE ) { m_noAA = no; }
|
void SetNoAntiAliasing( bool no = TRUE ) { m_noAA = no; }
|
||||||
bool GetNoAntiAliasing() { return m_noAA; }
|
bool GetNoAntiAliasing() { return m_noAA; }
|
||||||
|
|
||||||
// and this one also modifies all the other font data fields
|
// and this one also modifies all the other font data fields
|
||||||
void SetNativeFontInfo(const wxNativeFontInfo& info);
|
void SetNativeFontInfo(const wxNativeFontInfo& info);
|
||||||
|
|
||||||
@@ -158,7 +158,7 @@ private:
|
|||||||
};
|
};
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
// wxFontRefData
|
// wxFontRefData
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
void wxFontRefData::Init(int pointSize,
|
void wxFontRefData::Init(int pointSize,
|
||||||
@@ -185,7 +185,7 @@ void wxFontRefData::Init(int pointSize,
|
|||||||
|
|
||||||
m_underlined = underlined;
|
m_underlined = underlined;
|
||||||
m_encoding = encoding;
|
m_encoding = encoding;
|
||||||
|
|
||||||
m_noAA = FALSE;
|
m_noAA = FALSE;
|
||||||
|
|
||||||
#ifdef __WXGTK20__
|
#ifdef __WXGTK20__
|
||||||
@@ -215,7 +215,7 @@ void wxFontRefData::Init(int pointSize,
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
SetStyle( m_style );
|
SetStyle( m_style );
|
||||||
SetPointSize( m_pointSize );
|
SetPointSize( m_pointSize );
|
||||||
SetWeight( m_weight );
|
SetWeight( m_weight );
|
||||||
@@ -407,8 +407,11 @@ wxFontRefData::wxFontRefData( const wxFontRefData& data )
|
|||||||
m_encoding = data.m_encoding;
|
m_encoding = data.m_encoding;
|
||||||
|
|
||||||
m_noAA = data.m_noAA;
|
m_noAA = data.m_noAA;
|
||||||
|
|
||||||
m_nativeFontInfo = data.m_nativeFontInfo;
|
// Forces a copy of the internal data. wxNativeFontInfo should probably
|
||||||
|
// have a copy ctor and assignment operator to fix this properly but that
|
||||||
|
// would break binary compatibility...
|
||||||
|
m_nativeFontInfo.FromString(data.m_nativeFontInfo.ToString());
|
||||||
}
|
}
|
||||||
|
|
||||||
wxFontRefData::wxFontRefData(int size, int family, int style,
|
wxFontRefData::wxFontRefData(int size, int family, int style,
|
||||||
|
Reference in New Issue
Block a user