// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
+#if wxUSE_TASKBARICON
+
#include "wx/taskbar.h"
#ifndef WX_PRECOMP
#include "wx/statbmp.h"
#include "wx/sizer.h"
#include "wx/bitmap.h"
+ #include "wx/image.h"
#endif
-#include "wx/image.h"
-
#ifdef __VMS
#pragma message disable nosimpint
#endif
END_EVENT_TABLE()
wxTaskBarIconArea::wxTaskBarIconArea(wxTaskBarIcon *icon, const wxBitmap &bmp)
- : wxTaskBarIconAreaBase(), m_icon(icon), m_pos(0,0)
+ : wxTaskBarIconAreaBase(), m_icon(icon), m_bmp(bmp)
{
- if (!IsProtocolSupported())
- {
- wxLogTrace(_T("systray"),
- _T("using legacy KDE1,2 and GNOME 1.2 methods"));
- SetLegacyWMProperties();
- }
-
#if defined(__WXGTK20__) && defined(TASKBAR_ICON_AREA_BASE_INCLUDED)
m_invokingWindow = icon;
#endif
// Set initial size to bitmap size (tray manager may and often will
// change it):
- SetSize(wxSize(bmp.GetWidth(), bmp.GetHeight()));
+ SetClientSize(wxSize(bmp.GetWidth(), bmp.GetHeight()));
SetTrayIcon(bmp);
+
+ if (!IsProtocolSupported())
+ {
+ wxLogTrace(_T("systray"),
+ _T("using legacy KDE1,2 and GNOME 1.2 methods"));
+ SetLegacyWMProperties();
+ }
}
void wxTaskBarIconArea::SetTrayIcon(const wxBitmap& bmp)
m_bmp = bmp;
// determine suitable bitmap size:
- wxSize winsize(GetSize());
+ wxSize winsize(GetClientSize());
wxSize bmpsize(m_bmp.GetWidth(), m_bmp.GetHeight());
wxSize iconsize(wxMin(winsize.x, bmpsize.x), wxMin(winsize.y, bmpsize.y));
m_iconWnd->PopupMenu(menu);
return true;
}
+
+#endif // wxUSE_TASKBARICON