2025-11-27 16:46:48 +09:00

49 lines
1.0 KiB
C++

// HexView.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CHexView view
class CHexView : public CEditView
{
protected:
CHexView(); // protected constructor used by dynamic creation
DECLARE_DYNCREATE(CHexView)
// Attributes
public:
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CHexView)
public:
virtual void OnInitialUpdate();
protected:
virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
//}}AFX_VIRTUAL
// Implementation
protected:
CFont m_font;
void AddText(LPCTSTR pszText);
virtual ~CHexView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
// Generated message map functions
protected:
//{{AFX_MSG(CHexView)
// NOTE - the ClassWizard will add and remove member functions here.
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////