summaryrefslogtreecommitdiff
path: root/src/T2GraphWindow.h
blob: a3051dd436b6a7698171d4d2d2f8f87e00c24a60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#pragma once
#include "common.h"

class T2GraphWindow : public CFrameWnd {
protected:
    T2GraphWindow();
    DECLARE_DYNCREATE(T2GraphWindow)

public:
    virtual ~T2GraphWindow();
    void SetDocument(T2TowerDoc *inDoc);

    T2TowerDoc *mDocument;

    //{{AFX_VIRTUAL(T2GraphWindow)
    //}}AFX_VIRTUAL

protected:
    //{{AFX_MSG(T2GraphWindow)
    afx_msg BOOL OnEraseBkgnd(CDC *pDC);
    afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar *pScrollBar);
    afx_msg void OnSize(UINT nType, int cx, int cy);
    afx_msg BOOL OnQueryNewPalette();
    //}}AFX_MSG
    DECLARE_MESSAGE_MAP()
};