Stub header changes.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@488 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1998-08-09 16:31:10 +00:00
parent 93cf77c076
commit 5e25ba908f
29 changed files with 481 additions and 392 deletions

View File

@@ -27,11 +27,6 @@ public:
virtual ~wxTaskBarIcon();
// Accessors
/* TODO: implementation
inline WXHWND GetHWND() const { return m_hWnd; }
inline bool IsOK() const { return (m_hWnd != 0) ; }
inline bool IsIconInstalled() const { return m_iconAdded; }
*/
// Operations
bool SetIcon(const wxIcon& icon, const wxString& tooltip = "");
@@ -46,26 +41,8 @@ public:
virtual void OnLButtonDClick();
virtual void OnRButtonDClick();
/* TODO
// Implementation
static wxTaskBarIcon* FindObjectForHWND(WXHWND hWnd);
static void AddObject(wxTaskBarIcon* obj);
static void RemoveObject(wxTaskBarIcon* obj);
static bool RegisterWindowClass();
static WXHWND CreateTaskBarWindow();
long WindowProc( WXHWND hWnd, unsigned int msg, unsigned int wParam, long lParam );
*/
// Data members
protected:
/* TODO: implementation
WXHWND m_hWnd;
static bool sm_registeredClass;
static unsigned int sm_taskbarMsg;
static wxList sm_taskBarIcons;
*/
bool m_iconAdded;
};
#endif