summaryrefslogtreecommitdiffabout
path: root/LogPattern.h
blob: 2f2ffd39e8ee8a92b9ce76cf09ebcf9cea208b66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// LogPattern.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CLogPattern

class	CLogPatternUnix;
class	CLogPatternReserved;
class	CLogPatternLocal;
class CLogPattern : public CPropertySheet
{
	DECLARE_DYNAMIC(CLogPattern)

// Construction
public:
	void AddTips(CToolTipCtrl& tt,CWnd *pWnd,UINT from,UINT to);
	void FacilityXor(CWnd *pWnd,UINT fac);
	void FacilityOn(CWnd *pWnd,UINT fac);
	void PriorityXor(CWnd *pWnd,UINT pri,UINT from,UINT to);
	void PriorityOn(CWnd *pWnd,UINT pri,UINT from,UINT to);
	void ExchangeData(CDataExchange *pDX,UINT from,UINT to);
	static UINT m_ID[CSyslogSocket::totalFacilities][CSyslogSocket::totalPriorities];
	CLogPatternLocal *m_Local;
	CLogPatternReserved *m_Reserved;
	CLogPatternUnix *m_Unix;
	void AddPages();
	BOOL m_Pattern[CSyslogSocket::totalFacilities][CSyslogSocket::totalPriorities];
	CLogPattern(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
	CLogPattern(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);

// Attributes
public:

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CLogPattern)
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CLogPattern();

	// Generated message map functions
protected:
	//{{AFX_MSG(CLogPattern)
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////