1998-05-20 14:25:30 +00:00
|
|
|
\section{\class{wxTaskBarIcon}}\label{wxtaskbaricon}
|
|
|
|
|
2003-10-12 13:24:35 +00:00
|
|
|
This class represents a taskbar icon, appearing in the `system tray' and responding to
|
|
|
|
mouse clicks. An icon has an optional tooltip. This class is only supported for Windows 95/NT and for
|
|
|
|
X Window System ports (wxGTK, wxMotif, wxX11), assuming the window manager supports KDE and GNOME 1.2
|
|
|
|
systray methods.
|
1998-05-20 14:25:30 +00:00
|
|
|
|
|
|
|
\wxheading{Derived from}
|
|
|
|
|
2001-12-04 19:41:53 +00:00
|
|
|
\helpref{wxEvtHandler}{wxevthandler}\\
|
1998-05-20 14:25:30 +00:00
|
|
|
\helpref{wxObject}{wxobject}
|
|
|
|
|
1999-02-15 20:41:29 +00:00
|
|
|
\wxheading{Include files}
|
|
|
|
|
|
|
|
<wx/taskbar.h>
|
|
|
|
|
2001-12-04 19:41:53 +00:00
|
|
|
\wxheading{Event handling}
|
|
|
|
|
|
|
|
To process input from a taskbar icon, use the following event handler macros to direct input to member
|
|
|
|
functions that take a wxTaskBarIconEvent argument.
|
|
|
|
|
|
|
|
\twocolwidtha{7cm}
|
|
|
|
\begin{twocollist}\itemsep=0pt
|
|
|
|
\twocolitem{{\bf EVT\_TASKBAR\_MOVE(func)}}{Process a
|
|
|
|
wxEVT\_TASKBAR\_MOVE event.}
|
|
|
|
\twocolitem{{\bf EVT\_TASKBAR\_LEFT\_DOWN(func)}}{Process a
|
|
|
|
wxEVT\_TASKBAR\_LEFT\_DOWN event.}
|
|
|
|
\twocolitem{{\bf EVT\_TASKBAR\_LEFT\_UP(func)}}{Process a
|
|
|
|
wxEVT\_TASKBAR\_LEFT\_UP event.}
|
|
|
|
\twocolitem{{\bf EVT\_TASKBAR\_RIGHT\_DOWN(func)}}{Process a
|
|
|
|
wxEVT\_TASKBAR\_RIGHT\_DOWN event.}
|
|
|
|
\twocolitem{{\bf EVT\_TASKBAR\_RIGHT\_UP(func)}}{Process a
|
|
|
|
wxEVT\_TASKBAR\_RIGHT\_UP event.}
|
|
|
|
\twocolitem{{\bf EVT\_TASKBAR\_LEFT\_DCLICK(func)}}{Process a
|
|
|
|
wxEVT\_TASKBAR\_LEFT\_DCLICK event.}
|
|
|
|
\twocolitem{{\bf EVT\_TASKBAR\_RIGHT\_DCLICK(func)}}{Process a
|
|
|
|
wxEVT\_TASKBAR\_RIGHT\_DCLICK event.}
|
|
|
|
\end{twocollist}%
|
|
|
|
|
1998-05-20 14:25:30 +00:00
|
|
|
\latexignore{\rtfignore{\wxheading{Members}}}
|
|
|
|
|
|
|
|
\membersection{wxTaskBarIcon::wxTaskBarIcon}\label{wxtaskbariconconstr}
|
|
|
|
|
|
|
|
\func{}{wxTaskBarIcon}{\void}
|
|
|
|
|
|
|
|
Default constructor.
|
|
|
|
|
|
|
|
\membersection{wxTaskBarIcon::\destruct{wxTaskBarIcon}}
|
|
|
|
|
|
|
|
\func{}{\destruct{wxTaskBarIcon}}{\void}
|
|
|
|
|
|
|
|
Destroys the wxTaskBarIcon object, removing the icon if not already removed.
|
|
|
|
|
|
|
|
\membersection{wxTaskBarIcon::IsIconInstalled}\label{wxtaskbariconisiconinstalled}
|
|
|
|
|
|
|
|
\func{bool}{IsIconInstalled}{\void}
|
|
|
|
|
2003-01-18 00:16:34 +00:00
|
|
|
Returns true if \helpref{SetIcon}{wxtaskbariconseticon} was called with no subsequent \helpref{RemoveIcon}{wxtaskbariconremoveicon}.
|
1998-05-20 14:25:30 +00:00
|
|
|
|
2003-04-04 22:33:47 +00:00
|
|
|
\membersection{wxTaskBarIcon::IsOk}\label{wxtaskbariconisok}
|
1998-05-20 14:25:30 +00:00
|
|
|
|
2003-04-04 22:33:47 +00:00
|
|
|
\func{bool}{IsOk}{\void}
|
1998-05-20 14:25:30 +00:00
|
|
|
|
2003-01-18 00:16:34 +00:00
|
|
|
Returns true if the object initialized successfully.
|
1998-05-20 14:25:30 +00:00
|
|
|
|
2003-06-01 21:11:16 +00:00
|
|
|
\membersection{wxTaskBarIcon::PopupMenu}\label{wxtaskbariconpopupmenu}
|
|
|
|
|
|
|
|
\func{bool}{PopupMenu}{\param{wxMenu*}{ menu}}
|
|
|
|
|
|
|
|
Pops up a menu at the current mouse position. The events can be handled by
|
|
|
|
a class derived from wxTaskBarIcon.
|
|
|
|
|
1998-05-20 14:25:30 +00:00
|
|
|
\membersection{wxTaskBarIcon::RemoveIcon}\label{wxtaskbariconremoveicon}
|
|
|
|
|
|
|
|
\func{bool}{RemoveIcon}{\void}
|
|
|
|
|
|
|
|
Removes the icon previously set with \helpref{SetIcon}{wxtaskbariconseticon}.
|
|
|
|
|
|
|
|
\membersection{wxTaskBarIcon::SetIcon}\label{wxtaskbariconseticon}
|
|
|
|
|
|
|
|
\func{bool}{SetIcon}{\param{const wxIcon\&}{ icon}, \param{const wxString\& }{tooltip}}
|
|
|
|
|
|
|
|
Sets the icon, and optional tooltip text.
|
|
|
|
|
|
|
|
|