projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
A bit of cleanup
[wxWidgets.git]
/
src
/
unix
/
taskbarx11.cpp
diff --git
a/src/unix/taskbarx11.cpp
b/src/unix/taskbarx11.cpp
index 5b4704bc537a1d8b3cbdcd11d1aa62597a2223d2..10373179fb176216fabacdfe1eb36e73ff1706a9 100644
(file)
--- a/
src/unix/taskbarx11.cpp
+++ b/
src/unix/taskbarx11.cpp
@@
-1,5
+1,5
@@
/////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////
-// File:
taskbar
.cpp
+// File:
src/unix/taskbarx11
.cpp
// Purpose: wxTaskBarIcon class for common Unix desktops
// Author: Vaclav Slavik
// Modified by:
// Purpose: wxTaskBarIcon class for common Unix desktops
// Author: Vaclav Slavik
// Modified by:
@@
-9,10
+9,6
@@
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma implementation "taskbarx11.h"
-#endif
-
// NB: This implementation does *not* work with every X11 window manager.
// Currently only GNOME 1.2 and KDE 1,2,3 methods are implemented here.
// Freedesktop.org's System Tray specification is implemented in
// NB: This implementation does *not* work with every X11 window manager.
// Currently only GNOME 1.2 and KDE 1,2,3 methods are implemented here.
// Freedesktop.org's System Tray specification is implemented in
@@
-32,6
+28,7
@@
#include "wx/sizer.h"
#include "wx/dcclient.h"
#include "wx/log.h"
#include "wx/sizer.h"
#include "wx/dcclient.h"
#include "wx/log.h"
+#include "wx/image.h"
#ifdef __VMS
#pragma message disable nosimpint
#ifdef __VMS
#pragma message disable nosimpint
@@
-47,8
+44,14
@@
// ----------------------------------------------------------------------------
#ifdef __WXGTK20__
// ----------------------------------------------------------------------------
#ifdef __WXGTK20__
- #include "wx/gtk/taskbarpriv.h"
-#else
+ #include <gtk/gtk.h>
+ #if GTK_CHECK_VERSION(2,1,0)
+ #include "wx/gtk/taskbarpriv.h"
+ #define TASKBAR_ICON_AREA_BASE_INCLUDED
+ #endif
+#endif
+
+#ifndef TASKBAR_ICON_AREA_BASE_INCLUDED
class WXDLLIMPEXP_ADV wxTaskBarIconAreaBase : public wxFrame
{
public:
class WXDLLIMPEXP_ADV wxTaskBarIconAreaBase : public wxFrame
{
public:
@@
-81,7
+84,7
@@
#error "You must define X11 accessors for this port!"
#endif
#error "You must define X11 accessors for this port!"
#endif
-
+
// ----------------------------------------------------------------------------
// wxTaskBarIconArea is the real window that shows the icon:
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// wxTaskBarIconArea is the real window that shows the icon:
// ----------------------------------------------------------------------------
@@
-92,10
+95,10
@@
public:
wxTaskBarIconArea(wxTaskBarIcon *icon, const wxBitmap &bmp);
void SetTrayIcon(const wxBitmap& bmp);
bool IsOk() { return true; }
wxTaskBarIconArea(wxTaskBarIcon *icon, const wxBitmap &bmp);
void SetTrayIcon(const wxBitmap& bmp);
bool IsOk() { return true; }
-
+
protected:
void SetLegacyWMProperties();
protected:
void SetLegacyWMProperties();
-
+
void OnSizeChange(wxSizeEvent& event);
void OnPaint(wxPaintEvent& evt);
void OnMouseEvent(wxMouseEvent& event);
void OnSizeChange(wxSizeEvent& event);
void OnPaint(wxPaintEvent& evt);
void OnMouseEvent(wxMouseEvent& event);
@@
-104,7
+107,7
@@
protected:
wxTaskBarIcon *m_icon;
wxPoint m_pos;
wxBitmap m_bmp;
wxTaskBarIcon *m_icon;
wxPoint m_pos;
wxBitmap m_bmp;
-
+
DECLARE_EVENT_TABLE()
};
DECLARE_EVENT_TABLE()
};
@@
-114,7
+117,7
@@
BEGIN_EVENT_TABLE(wxTaskBarIconArea, wxTaskBarIconAreaBase)
EVT_MENU(-1, wxTaskBarIconArea::OnMenuEvent)
EVT_PAINT(wxTaskBarIconArea::OnPaint)
END_EVENT_TABLE()
EVT_MENU(-1, wxTaskBarIconArea::OnMenuEvent)
EVT_PAINT(wxTaskBarIconArea::OnPaint)
END_EVENT_TABLE()
-
+
wxTaskBarIconArea::wxTaskBarIconArea(wxTaskBarIcon *icon, const wxBitmap &bmp)
: wxTaskBarIconAreaBase(), m_icon(icon), m_pos(0,0)
{
wxTaskBarIconArea::wxTaskBarIconArea(wxTaskBarIcon *icon, const wxBitmap &bmp)
: wxTaskBarIconAreaBase(), m_icon(icon), m_pos(0,0)
{
@@
-124,18
+127,22
@@
wxTaskBarIconArea::wxTaskBarIconArea(wxTaskBarIcon *icon, const wxBitmap &bmp)
_T("using legacy KDE1,2 and GNOME 1.2 methods"));
SetLegacyWMProperties();
}
_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()));
// Set initial size to bitmap size (tray manager may and often will
// change it):
SetSize(wxSize(bmp.GetWidth(), bmp.GetHeight()));
-
+
SetTrayIcon(bmp);
}
void wxTaskBarIconArea::SetTrayIcon(const wxBitmap& bmp)
{
m_bmp = bmp;
SetTrayIcon(bmp);
}
void wxTaskBarIconArea::SetTrayIcon(const wxBitmap& bmp)
{
m_bmp = bmp;
-
+
// determine suitable bitmap size:
wxSize winsize(GetSize());
wxSize bmpsize(m_bmp.GetWidth(), m_bmp.GetHeight());
// determine suitable bitmap size:
wxSize winsize(GetSize());
wxSize bmpsize(m_bmp.GetWidth(), m_bmp.GetHeight());
@@
-149,7
+156,8
@@
void wxTaskBarIconArea::SetTrayIcon(const wxBitmap& bmp)
m_bmp = wxBitmap(img);
}
m_bmp = wxBitmap(img);
}
- wxRegion region(m_bmp);
+ wxRegion region;
+ region.Union(m_bmp);
// if the bitmap is smaller than the window, offset it:
if (winsize != iconsize)
// if the bitmap is smaller than the window, offset it:
if (winsize != iconsize)
@@
-165,13
+173,13
@@
void wxTaskBarIconArea::SetTrayIcon(const wxBitmap& bmp)
}
void wxTaskBarIconArea::SetLegacyWMProperties()
}
void wxTaskBarIconArea::SetLegacyWMProperties()
-{
+{
#ifdef __WXGTK__
gtk_widget_realize(m_widget);
#endif
#ifdef __WXGTK__
gtk_widget_realize(m_widget);
#endif
-
+
long data[1];
long data[1];
-
+
// KDE 2 & KDE 3:
Atom _KDE_NET_WM_SYSTEM_TRAY_WINDOW_FOR =
XInternAtom(GetDisplay(), "_KDE_NET_WM_SYSTEM_TRAY_WINDOW_FOR", False);
// KDE 2 & KDE 3:
Atom _KDE_NET_WM_SYSTEM_TRAY_WINDOW_FOR =
XInternAtom(GetDisplay(), "_KDE_NET_WM_SYSTEM_TRAY_WINDOW_FOR", False);
@@
-190,8
+198,8
@@
void wxTaskBarIconArea::SetLegacyWMProperties()
KWM_DOCKWINDOW, 32,
PropModeReplace, (unsigned char*)data, 1);
}
KWM_DOCKWINDOW, 32,
PropModeReplace, (unsigned char*)data, 1);
}
-
-void wxTaskBarIconArea::OnSizeChange(wxSizeEvent&
event
)
+
+void wxTaskBarIconArea::OnSizeChange(wxSizeEvent&
WXUNUSED(event)
)
{
wxLogTrace(_T("systray"), _T("icon size changed to %i x %i"),
GetSize().x, GetSize().y);
{
wxLogTrace(_T("systray"), _T("icon size changed to %i x %i"),
GetSize().x, GetSize().y);
@@
-205,7
+213,7
@@
void wxTaskBarIconArea::OnPaint(wxPaintEvent& WXUNUSED(event))
wxPaintDC dc(this);
dc.DrawBitmap(m_bmp, m_pos.x, m_pos.y, true);
}
wxPaintDC dc(this);
dc.DrawBitmap(m_bmp, m_pos.x, m_pos.y, true);
}
-
+
void wxTaskBarIconArea::OnMouseEvent(wxMouseEvent& event)
{
wxEventType type = 0;
void wxTaskBarIconArea::OnMouseEvent(wxMouseEvent& event)
{
wxEventType type = 0;
@@
-233,7
+241,7
@@
void wxTaskBarIconArea::OnMouseEvent(wxMouseEvent& event)
}
void wxTaskBarIconArea::OnMenuEvent(wxCommandEvent& event)
}
void wxTaskBarIconArea::OnMenuEvent(wxCommandEvent& event)
-{
+{
m_icon->ProcessEvent(event);
}
m_icon->ProcessEvent(event);
}
@@
-285,13
+293,15
@@
bool wxTaskBarIcon::SetIcon(const wxIcon& icon, const wxString& tooltip)
else
{
m_iconWnd->SetTrayIcon(bmp);
else
{
m_iconWnd->SetTrayIcon(bmp);
- }
-
+ }
+
#if wxUSE_TOOLTIPS
if (!tooltip.empty())
m_iconWnd->SetToolTip(tooltip);
else
m_iconWnd->SetToolTip(NULL);
#if wxUSE_TOOLTIPS
if (!tooltip.empty())
m_iconWnd->SetToolTip(tooltip);
else
m_iconWnd->SetToolTip(NULL);
+#else
+ wxUnusedVar(tooltip);
#endif
return true;
}
#endif
return true;
}
@@
-309,7
+319,6
@@
bool wxTaskBarIcon::PopupMenu(wxMenu *menu)
{
if (!m_iconWnd)
return false;
{
if (!m_iconWnd)
return false;
- wxSize size(m_iconWnd->GetClientSize());
- m_iconWnd->PopupMenu(menu, size.x/2, size.y/2);
+ m_iconWnd->PopupMenu(menu);
return true;
}
return true;
}