1999-01-01 16:05:26 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
// File: taskbar.h
|
|
|
|
// Purpose: Defines wxTaskBarIcon class for manipulating icons on the
|
|
|
|
// task bar. Optional.
|
|
|
|
// Author: AUTHOR
|
|
|
|
// Modified by:
|
|
|
|
// Created: ??/??/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c)
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_TASKBAR_H_
|
|
|
|
#define _WX_TASKBAR_H_
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface "taskbar.h"
|
|
|
|
#endif
|
|
|
|
|
2001-10-02 15:56:03 +00:00
|
|
|
#include "wx/list.h"
|
|
|
|
#include "wx/icon.h"
|
1999-01-01 16:05:26 +00:00
|
|
|
|
|
|
|
class wxTaskBarIcon: public wxObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxTaskBarIcon();
|
|
|
|
virtual ~wxTaskBarIcon();
|
|
|
|
|
|
|
|
// Accessors
|
|
|
|
|
|
|
|
// Operations
|
|
|
|
bool SetIcon(const wxIcon& icon, const wxString& tooltip = "");
|
|
|
|
bool RemoveIcon();
|
|
|
|
|
|
|
|
// Overridables
|
|
|
|
virtual void OnMouseMove();
|
|
|
|
virtual void OnLButtonDown();
|
|
|
|
virtual void OnLButtonUp();
|
|
|
|
virtual void OnRButtonDown();
|
|
|
|
virtual void OnRButtonUp();
|
|
|
|
virtual void OnLButtonDClick();
|
|
|
|
virtual void OnRButtonDClick();
|
|
|
|
|
|
|
|
// Data members
|
|
|
|
protected:
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_TASKBAR_H_
|