source: win32/TrayNot.h @ d1d6776

Last change on this file since d1d6776 was d1d6776, checked in by Jelmer Vernooij <jelmer@…>, at 2005-11-07T16:20:37Z

Import win32 branch

  • Property mode set to 100644
File size: 1.3 KB
Line 
1#if !defined(AFX_TRAYNOT_H__C8B7E607_671B_4C97_8251_AF5AA83DF401__INCLUDED_)
2#define AFX_TRAYNOT_H__C8B7E607_671B_4C97_8251_AF5AA83DF401__INCLUDED_
3
4#if _MSC_VER >= 1000
5#pragma once
6#endif // _MSC_VER >= 1000
7// TrayNot.h : header file
8//
9
10#include <afxwin.h>
11
12#define BITLBEE_TRAY_ICON WM_USER+1
13
14/////////////////////////////////////////////////////////////////////////////
15// CTrayNot dialog
16
17class CTrayNot : public CDialog
18{
19// Construction
20public:
21        virtual  ~CTrayNot();
22        CTrayNot(CPropertySheet *);   // standard constructor
23
24// Dialog Data
25        //{{AFX_DATA(CTrayNot)
26        enum { IDD = IDD_PHONY };
27                // NOTE: the ClassWizard will add data members here
28        //}}AFX_DATA
29
30
31// Overrides
32        // ClassWizard generated virtual function overrides
33        //{{AFX_VIRTUAL(CTrayNot)
34        protected:
35        virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
36        //}}AFX_VIRTUAL
37
38// Implementation
39protected:
40
41        // Generated message map functions
42        //{{AFX_MSG(CTrayNot)
43                // NOTE: the ClassWizard will add member functions here
44        afx_msg LONG OnSysTrayIconClick (WPARAM wParam, LPARAM lParam);
45        //}}AFX_MSG
46        DECLARE_MESSAGE_MAP()
47        CPropertySheet *dlg;
48        void ShowQuickMenu();
49};
50
51//{{AFX_INSERT_LOCATION}}
52// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
53
54#endif // !defined(AFX_TRAYNOT_H__C8B7E607_671B_4C97_8251_AF5AA83DF401__INCLUDED_)
Note: See TracBrowser for help on using the repository browser.