Mercurial > vba-linux
comparison src/win32/Disassemble.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_DISASSEMBLE_H__CA10E857_7D76_4B19_A62B_D0677040FD0F__INCLUDED_) | |
2 #define AFX_DISASSEMBLE_H__CA10E857_7D76_4B19_A62B_D0677040FD0F__INCLUDED_ | |
3 | |
4 #if _MSC_VER > 1000 | |
5 #pragma once | |
6 #endif // _MSC_VER > 1000 | |
7 // Disassemble.h : header file | |
8 // | |
9 | |
10 #include "IUpdate.h" | |
11 #include "ResizeDlg.h" | |
12 | |
13 ///////////////////////////////////////////////////////////////////////////// | |
14 // Disassemble dialog | |
15 | |
16 class Disassemble : public ResizeDlg, IUpdateListener | |
17 { | |
18 // Construction | |
19 public: | |
20 virtual void update(); | |
21 void refresh(); | |
22 Disassemble(CWnd*pParent = NULL); // standard constructor | |
23 | |
24 // Dialog Data | |
25 //{{AFX_DATA(Disassemble) | |
26 enum { IDD = IDD_DISASSEMBLE }; | |
27 CEdit m_address; | |
28 CListBox m_list; | |
29 BOOL m_c; | |
30 BOOL m_f; | |
31 BOOL m_i; | |
32 BOOL m_n; | |
33 BOOL m_t; | |
34 BOOL m_v; | |
35 BOOL m_z; | |
36 //}}AFX_DATA | |
37 bool autoUpdate; | |
38 int count; | |
39 u32 address; | |
40 int mode; | |
41 | |
42 // Overrides | |
43 // ClassWizard generated virtual function overrides | |
44 //{{AFX_VIRTUAL(Disassemble) | |
45 protected: | |
46 virtual void DoDataExchange(CDataExchange*pDX); // DDX/DDV support | |
47 virtual void PostNcDestroy(); | |
48 //}}AFX_VIRTUAL | |
49 | |
50 // Implementation | |
51 protected: | |
52 // Generated message map functions | |
53 //{{AFX_MSG(Disassemble) | |
54 afx_msg void OnAutoUpdate(); | |
55 afx_msg void OnAutomatic(); | |
56 afx_msg void OnArm(); | |
57 afx_msg void OnClose(); | |
58 afx_msg void OnGo(); | |
59 afx_msg void OnGopc(); | |
60 afx_msg void OnNext(); | |
61 afx_msg void OnRefresh(); | |
62 afx_msg void OnThumb(); | |
63 virtual BOOL OnInitDialog(); | |
64 afx_msg void OnVScroll(UINT nSBCode, UINT nPos, CScrollBar*pScrollBar); | |
65 //}}AFX_MSG | |
66 DECLARE_MESSAGE_MAP() | |
67 }; | |
68 | |
69 //{{AFX_INSERT_LOCATION}} | |
70 // Microsoft Visual C++ will insert additional declarations immediately before the previous line. | |
71 | |
72 #endif // !defined(AFX_DISASSEMBLE_H__CA10E857_7D76_4B19_A62B_D0677040FD0F__INCLUDED_) |