source: win32/PropUsers.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.4 KB
Line 
1#if !defined(AFX_PROPUSERS_H__BA8F6624_F693_403B_B3A8_B140955A894B__INCLUDED_)
2#define AFX_PROPUSERS_H__BA8F6624_F693_403B_B3A8_B140955A894B__INCLUDED_
3
4#if _MSC_VER >= 1000
5#pragma once
6#endif // _MSC_VER >= 1000
7// PropUsers.h : header file
8//
9
10/////////////////////////////////////////////////////////////////////////////
11// CPropUsers dialog
12
13class CPropUsers : public CPropertyPage
14{
15// Construction
16public:
17        CPropUsers();   // standard constructor
18
19// Dialog Data
20        //{{AFX_DATA(CPropUsers)
21        enum { IDD = IDD_PROPPAGE_USERS };
22        CListBox        m_known_users;
23        CButton m_kick;
24        CButton m_del_known_users;
25        CListBox        m_current_users;
26        //}}AFX_DATA
27
28
29// Overrides
30        // ClassWizard generated virtual function overrides
31        //{{AFX_VIRTUAL(CPropUsers)
32        protected:
33        virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
34        //}}AFX_VIRTUAL
35
36// Implementation
37protected:
38
39        // Generated message map functions
40        //{{AFX_MSG(CPropUsers)
41        afx_msg void OnKick();
42        afx_msg void OnDelKnownUser();
43        afx_msg void OnSelchangeCurrentUsers();
44        afx_msg void OnSelchangeKnownUsers();
45        afx_msg void OnRefreshKnownUsers();
46        afx_msg void OnRefreshCurrentUsers();
47        //}}AFX_MSG
48        DECLARE_MESSAGE_MAP()
49};
50
51//{{AFX_INSERT_LOCATION}}
52// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
53
54#endif // !defined(AFX_PROPUSERS_H__BA8F6624_F693_403B_B3A8_B140955A894B__INCLUDED_)
Note: See TracBrowser for help on using the repository browser.