Mercurial > vba-linux
comparison src/win32/Hyperlink.h @ 1:f9f4f1b99eed
importing src directory
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Sat, 03 Mar 2012 10:31:27 -0600 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
0:8ced16adf2e1 | 1:f9f4f1b99eed |
---|---|
1 #if !defined(AFX_HYPERLINK_H__BECEAB7D_31FB_4727_A42B_8732162EEBCC__INCLUDED_) | |
2 #define AFX_HYPERLINK_H__BECEAB7D_31FB_4727_A42B_8732162EEBCC__INCLUDED_ | |
3 | |
4 #if _MSC_VER > 1000 | |
5 #pragma once | |
6 #endif // _MSC_VER > 1000 | |
7 // Hyperlink.h : header file | |
8 // | |
9 | |
10 ///////////////////////////////////////////////////////////////////////////// | |
11 // Hyperlink window | |
12 | |
13 class Hyperlink : public CStatic | |
14 { | |
15 // Construction | |
16 public: | |
17 Hyperlink(); | |
18 | |
19 // Attributes | |
20 public: | |
21 // Operations | |
22 public: | |
23 // Overrides | |
24 // ClassWizard generated virtual function overrides | |
25 //{{AFX_VIRTUAL(Hyperlink) | |
26 protected: | |
27 virtual void PreSubclassWindow(); | |
28 //}}AFX_VIRTUAL | |
29 | |
30 // Implementation | |
31 public: | |
32 bool m_over; | |
33 HCURSOR m_cursor; | |
34 afx_msg void OnClicked(); | |
35 CFont m_underlineFont; | |
36 virtual ~Hyperlink(); | |
37 | |
38 // Generated message map functions | |
39 protected: | |
40 //{{AFX_MSG(Hyperlink) | |
41 afx_msg HBRUSH CtlColor(CDC*pDC, UINT nCtlColor); | |
42 afx_msg BOOL OnEraseBkgnd(CDC*pDC); | |
43 afx_msg void OnMouseMove(UINT nFlags, CPoint point); | |
44 //}}AFX_MSG | |
45 | |
46 DECLARE_MESSAGE_MAP() | |
47 }; | |
48 | |
49 ///////////////////////////////////////////////////////////////////////////// | |
50 | |
51 //{{AFX_INSERT_LOCATION}} | |
52 // Microsoft Visual C++ will insert additional declarations immediately before the previous line. | |
53 | |
54 #endif // !defined(AFX_HYPERLINK_H__BECEAB7D_31FB_4727_A42B_8732162EEBCC__INCLUDED_) |