Mercurial > vba-linux
comparison src/win32/IOViewer.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_IOVIEWER_H__9C266B78_FC02_4572_9062_0241802B0E76__INCLUDED_) | |
2 #define AFX_IOVIEWER_H__9C266B78_FC02_4572_9062_0241802B0E76__INCLUDED_ | |
3 | |
4 #if _MSC_VER > 1000 | |
5 #pragma once | |
6 #endif // _MSC_VER > 1000 | |
7 // -*- C++ -*- | |
8 // IOViewer.h : header file | |
9 // | |
10 | |
11 #include "ResizeDlg.h" | |
12 #include "IUpdate.h" | |
13 | |
14 ///////////////////////////////////////////////////////////////////////////// | |
15 // IOViewer dialog | |
16 | |
17 class IOViewer : public ResizeDlg, IUpdateListener | |
18 { | |
19 // Construction | |
20 public: | |
21 void update(); | |
22 bool autoUpdate; | |
23 int selected; | |
24 IOViewer(CWnd*pParent = NULL); // standard constructor | |
25 | |
26 // Dialog Data | |
27 //{{AFX_DATA(IOViewer) | |
28 enum { IDD = IDD_IO_VIEWER }; | |
29 CStatic m_value; | |
30 CComboBox m_address; | |
31 //}}AFX_DATA | |
32 | |
33 // Overrides | |
34 // ClassWizard generated virtual function overrides | |
35 //{{AFX_VIRTUAL(IOViewer) | |
36 protected: | |
37 virtual void DoDataExchange(CDataExchange*pDX); // DDX/DDV support | |
38 virtual void PostNcDestroy(); | |
39 //}}AFX_VIRTUAL | |
40 | |
41 // Implementation | |
42 protected: | |
43 // Generated message map functions | |
44 //{{AFX_MSG(IOViewer) | |
45 afx_msg void OnClose(); | |
46 afx_msg void OnRefresh(); | |
47 afx_msg void OnAutoUpdate(); | |
48 afx_msg void OnSelchangeAddresses(); | |
49 virtual BOOL OnInitDialog(); | |
50 afx_msg void OnApply(); | |
51 //}}AFX_MSG | |
52 DECLARE_MESSAGE_MAP() | |
53 }; | |
54 | |
55 //{{AFX_INSERT_LOCATION}} | |
56 // Microsoft Visual C++ will insert additional declarations immediately before the previous line. | |
57 | |
58 #endif // !defined(AFX_IOVIEWER_H__9C266B78_FC02_4572_9062_0241802B0E76__INCLUDED_) |