summaryrefslogtreecommitdiffabout
path: root/LogPatternLocal.h
Unidiff
Diffstat (limited to 'LogPatternLocal.h') (more/less context) (ignore whitespace changes)
-rw-r--r--LogPatternLocal.h74
1 files changed, 74 insertions, 0 deletions
diff --git a/LogPatternLocal.h b/LogPatternLocal.h
new file mode 100644
index 0000000..8a09bba
--- a/dev/null
+++ b/LogPatternLocal.h
@@ -0,0 +1,74 @@
1// LogPatternLocal.h : header file
2//
3
4/////////////////////////////////////////////////////////////////////////////
5// CLogPatternLocal dialog
6
7class CLogPattern;
8class CLogPatternLocal : public CPropertyPage
9{
10 DECLARE_DYNCREATE(CLogPatternLocal)
11
12// Construction
13public:
14 CToolTipCtrl m_tooltip;
15 CLogPattern* m_Daddy;
16 CLogPatternLocal(CLogPattern *daddy=NULL);
17 ~CLogPatternLocal();
18
19// Dialog Data
20 //{{AFX_DATA(CLogPatternLocal)
21 enum { IDD = IDD_LOG_LOCAL };
22 //}}AFX_DATA
23
24
25// Overrides
26 // ClassWizard generate virtual function overrides
27 //{{AFX_VIRTUAL(CLogPatternLocal)
28 public:
29 virtual BOOL PreTranslateMessage(MSG* pMsg);
30 protected:
31 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
32 //}}AFX_VIRTUAL
33
34// Implementation
35protected:
36 // Generated message map functions
37 //{{AFX_MSG(CLogPatternLocal)
38 afx_msg void OnAlertOn();
39 afx_msg void OnAlertXor();
40 afx_msg void OnCritOn();
41 afx_msg void OnCritXor();
42 afx_msg void OnDebugOn();
43 afx_msg void OnDebugXor();
44 afx_msg void OnEmergOn();
45 afx_msg void OnEmergXor();
46 afx_msg void OnErrOn();
47 afx_msg void OnErrXor();
48 afx_msg void OnInfoOn();
49 afx_msg void OnInfoXor();
50 afx_msg void OnL0On();
51 afx_msg void OnL0Xor();
52 afx_msg void OnL1On();
53 afx_msg void OnL1Xor();
54 afx_msg void OnL2On();
55 afx_msg void OnL2Xor();
56 afx_msg void OnL3On();
57 afx_msg void OnL3Xor();
58 afx_msg void OnL4On();
59 afx_msg void OnL4Xor();
60 afx_msg void OnL5On();
61 afx_msg void OnL5Xor();
62 afx_msg void OnL6On();
63 afx_msg void OnL6Xor();
64 afx_msg void OnL7On();
65 afx_msg void OnL7Xor();
66 afx_msg void OnNoticeOn();
67 afx_msg void OnNoticeXor();
68 afx_msg void OnWarnOn();
69 afx_msg void OnWarnXor();
70 virtual BOOL OnInitDialog();
71 //}}AFX_MSG
72 DECLARE_MESSAGE_MAP()
73
74};