Use a panel inside the CallTip window so it will be painted right on Mac.

Rip out the antialias font option, it hasn't been needed for a long time.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_9_0_BRANCH@60102 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2009-04-12 03:01:49 +00:00
parent 940bae519a
commit 7152e1e985
7 changed files with 64 additions and 85 deletions

View File

@@ -3592,13 +3592,8 @@ public:
bool DoDropText(long x, long y, const wxString& data);
#endif
// Specify whether anti-aliased fonts should be used. Will have no effect
// on some platforms, but on some (wxMac for example) can greatly improve
// performance.
void SetUseAntiAliasing(bool useAA);
// Returns the current UseAntiAliasing setting.
bool GetUseAntiAliasing();
void SetUseAntiAliasing(bool WXUNUSED(useAA)) { }
bool GetUseAntiAliasing() { return true; }