view 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
line wrap: on
line source
1 #if !defined(AFX_IOVIEWER_H__9C266B78_FC02_4572_9062_0241802B0E76__INCLUDED_)
2 #define AFX_IOVIEWER_H__9C266B78_FC02_4572_9062_0241802B0E76__INCLUDED_
4 #if _MSC_VER > 1000
5 #pragma once
6 #endif // _MSC_VER > 1000
7 // -*- C++ -*-
8 // IOViewer.h : header file
9 //
11 #include "ResizeDlg.h"
12 #include "IUpdate.h"
14 /////////////////////////////////////////////////////////////////////////////
15 // IOViewer dialog
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
26 // Dialog Data
27 //{{AFX_DATA(IOViewer)
28 enum { IDD = IDD_IO_VIEWER };
29 CStatic m_value;
30 CComboBox m_address;
31 //}}AFX_DATA
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
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 };
55 //{{AFX_INSERT_LOCATION}}
56 // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
58 #endif // !defined(AFX_IOVIEWER_H__9C266B78_FC02_4572_9062_0241802B0E76__INCLUDED_)