summaryrefslogtreecommitdiffabout
path: root/LogPatternUnix.h
Unidiff
Diffstat (limited to 'LogPatternUnix.h') (more/less context) (ignore whitespace changes)
-rw-r--r--LogPatternUnix.h80
1 files changed, 80 insertions, 0 deletions
diff --git a/LogPatternUnix.h b/LogPatternUnix.h
new file mode 100644
index 0000000..0cc9355
--- a/dev/null
+++ b/LogPatternUnix.h
@@ -0,0 +1,80 @@
1// LogPatternUnix.h : header file
2//
3
4/////////////////////////////////////////////////////////////////////////////
5// CLogPatternUnix dialog
6
7class CLogPattern;
8class CLogPatternUnix : public CPropertyPage
9{
10 DECLARE_DYNCREATE(CLogPatternUnix)
11
12// Construction
13public:
14 CToolTipCtrl m_tooltip;
15 CLogPattern* m_Daddy;
16 CLogPatternUnix(CLogPattern *daddy=NULL);
17 ~CLogPatternUnix();
18
19// Dialog Data
20 //{{AFX_DATA(CLogPatternUnix)
21 enum { IDD = IDD_LOG_UNIX };
22 //}}AFX_DATA
23
24
25// Overrides
26 // ClassWizard generate virtual function overrides
27 //{{AFX_VIRTUAL(CLogPatternUnix)
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(CLogPatternUnix)
38 afx_msg void OnAlertOn();
39 afx_msg void OnAuthOn();
40 afx_msg void OnAlertXor();
41 afx_msg void OnAuthXor();
42 afx_msg void OnCritOn();
43 afx_msg void OnCritXor();
44 afx_msg void OnCronOn();
45 afx_msg void OnCronXor();
46 afx_msg void OnDaemonOn();
47 afx_msg void OnDaemonXor();
48 afx_msg void OnDebugOn();
49 afx_msg void OnDebugXor();
50 afx_msg void OnEmergOn();
51 afx_msg void OnEmergXor();
52 afx_msg void OnErrOn();
53 afx_msg void OnErrXor();
54 afx_msg void OnInfoOn();
55 afx_msg void OnInfoXor();
56 afx_msg void OnKernelOn();
57 afx_msg void OnKernelXor();
58 afx_msg void OnLprOn();
59 afx_msg void OnLprXor();
60 afx_msg void OnMailOn();
61 afx_msg void OnMailXor();
62 afx_msg void OnNewsOn();
63 afx_msg void OnNewsXor();
64 afx_msg void OnNoticeOn();
65 afx_msg void OnNoticeXor();
66 afx_msg void OnSyslogOn();
67 afx_msg void OnSyslogXor();
68 afx_msg void OnUserOn();
69 afx_msg void OnUserXor();
70 afx_msg void OnUucpOn();
71 afx_msg void OnUucpXor();
72 afx_msg void OnWarnOn();
73 afx_msg void OnWarnXor();
74 afx_msg void OnAuthprivOn();
75 afx_msg void OnAuthprivXor();
76 virtual BOOL OnInitDialog();
77 //}}AFX_MSG
78 DECLARE_MESSAGE_MAP()
79
80};