mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-11-03 04:17:17 -05:00
36 lines
645 B
C
36 lines
645 B
C
|
// CTrayNot window
|
||
|
#ifndef _CTRAYNOT
|
||
|
#define _CTRAYNOT
|
||
|
|
||
|
class CTrayNot : public CObject
|
||
|
{
|
||
|
// Construction
|
||
|
public:
|
||
|
CTrayNot ( CWnd* pWnd, UINT uCallbackMessage,
|
||
|
LPCTSTR szTip, HICON* pList ) ;
|
||
|
|
||
|
// Attributes
|
||
|
public:
|
||
|
BOOL m_bEnabled ;
|
||
|
NOTIFYICONDATA m_tnd ;
|
||
|
HICON* m_pIconList ;
|
||
|
|
||
|
|
||
|
public:
|
||
|
void SetState ( int id = 0 ) ;
|
||
|
|
||
|
// Overrides
|
||
|
// ClassWizard generated virtual function overrides
|
||
|
//{{AFX_VIRTUAL(CTrayNot)
|
||
|
//}}AFX_VIRTUAL
|
||
|
|
||
|
// Implementation
|
||
|
public:
|
||
|
virtual ~CTrayNot();
|
||
|
void SetTIP(char *pTip);
|
||
|
|
||
|
};
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
#endif
|