-
Notifications
You must be signed in to change notification settings - Fork 7
/
StaticFilespec.h
67 lines (53 loc) · 3.1 KB
/
StaticFilespec.h
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
* StaticFilespec.h
*
*功能:静态标签扩展类,用来显示长路径名
* 修改人:徐景周
*日期:2001年7月18日
*
*/
#ifndef _StaticFilespec_h
#define _StaticFilespec_h
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
/////////////////////////////////////////////////////////////////////////////
// CStaticFilespec window
class CStaticFilespec : public CWnd
{
// Construction
public:
CStaticFilespec
(DWORD dwFormat = DT_LEFT | DT_NOPREFIX | DT_VCENTER,
BOOL bPathEllipsis = FALSE);
// Attributes
public:
// Operations
public:
BOOL IsPath() { return m_bPathEllipsis; }
void SetPath (BOOL bPathEllipsis) { m_bPathEllipsis = bPathEllipsis; }
DWORD GetFormat() { return m_dwFormat; }
void SetFormat (DWORD dwFormat) { m_dwFormat = dwFormat; }
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CStaticFilespec)
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CStaticFilespec();
// Generated message map functions
protected:
//{{AFX_MSG(CStaticFilespec)
afx_msg void OnPaint();
afx_msg BOOL OnEraseBkgnd(CDC* pDC);
afx_msg LRESULT OnSetText (WPARAM wParam, LPARAM lParam);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
BOOL m_bPathEllipsis; // flag: draw text as path
DWORD m_dwFormat; // text format
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
#endif
// End StaticFilespec.h