mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-18 12:55:47 -04:00
Initial community commit
This commit is contained in:
23
Src/Wasabi/api/util/systray.h
Normal file
23
Src/Wasabi/api/util/systray.h
Normal file
@ -0,0 +1,23 @@
|
||||
#ifndef __SYSTRAY_H
|
||||
#define __SYSTRAY_H
|
||||
|
||||
#include <bfc/string/StringW.h>
|
||||
|
||||
class Systray
|
||||
{
|
||||
public:
|
||||
Systray(HWND wnd, int uid, int msg, HICON smallicon);
|
||||
~Systray();
|
||||
void setTip(const wchar_t *tip);
|
||||
private:
|
||||
bool addIcon();
|
||||
bool deleteIcon();
|
||||
bool setTip();
|
||||
int id, message;
|
||||
HWND hwnd;
|
||||
HICON icon;
|
||||
StringW tip;
|
||||
};
|
||||
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user