root/trunk/LogDlg.h

Revision 5, 1.5 kB (checked in by qbert, 6 years ago)

Initial ( and last :( ) commit

Line 
1 #if !defined(AFX_LOGDLG_H__1FAB05DB_4856_46F3_AAFB_82DFE309E8C2__INCLUDED_)
2 #define AFX_LOGDLG_H__1FAB05DB_4856_46F3_AAFB_82DFE309E8C2__INCLUDED_
3
4 #if _MSC_VER > 1000
5 #pragma once
6 #endif // _MSC_VER > 1000
7 // LogDlg.h : header file
8 //
9
10 /////////////////////////////////////////////////////////////////////////////
11 // CLogDlg dialog
12
13 class CLogDlg : public CDialog
14 {
15 // Construction
16 public:
17     CLogDlg(CWnd* pParent = NULL);   // standard constructor
18
19 // Dialog Data
20     //{{AFX_DATA(CLogDlg)
21     enum { IDD = IDD_LOG_DLG };
22     CListCtrl   m_log;
23     //}}AFX_DATA
24
25
26 // Overrides
27     // ClassWizard generated virtual function overrides
28     //{{AFX_VIRTUAL(CLogDlg)
29     public:
30     virtual BOOL PreTranslateMessage(MSG* pMsg);
31     protected:
32     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
33     //}}AFX_VIRTUAL
34
35 // Implementation
36 protected:
37
38     // Generated message map functions
39     //{{AFX_MSG(CLogDlg)
40     virtual BOOL OnInitDialog();
41     afx_msg void OnSize(UINT nType, int cx, int cy);   
42     afx_msg void OnRButtonUp(UINT nFlags, CPoint point);
43     afx_msg void OnRclickList1(NMHDR* pNMHDR, LRESULT* pResult);
44     afx_msg void OnKeyUp(UINT nChar, UINT nRepCnt, UINT nFlags);
45     afx_msg void OnKeydownList1(NMHDR* pNMHDR, LRESULT* pResult);
46     //}}AFX_MSG
47     DECLARE_MESSAGE_MAP()
48 };
49
50 //{{AFX_INSERT_LOCATION}}
51 // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
52
53 #endif // !defined(AFX_LOGDLG_H__1FAB05DB_4856_46F3_AAFB_82DFE309E8C2__INCLUDED_)
Note: See TracBrowser for help on using the browser.