forked from paulhoad/gp2trackeditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommandStats.h
More file actions
executable file
·68 lines (57 loc) · 1.66 KB
/
CommandStats.h
File metadata and controls
executable file
·68 lines (57 loc) · 1.66 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// CommandStats.h : header file
//
#ifndef _INCLUDED_COMMAND_STATS_H_
#define _INCLUDED_COMMAND_STATS_H_
#include "MyTableView.h"
/////////////////////////////////////////////////////////////////////////////
// CCommandStats view
class CCommandStats : public CMyTableView
{
protected:
CCommandStats();// protected constructor used by dynamic creation
DECLARE_DYNCREATE(CCommandStats)
// Attributes
public:
void UpdateInfo(BOOL);
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CCommandStats)
public:
virtual BOOL
OnScroll(UINT nScrollCode, UINT nPos, BOOL bDoScroll = TRUE);
virtual BOOL
Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CCreateContext* pContext = NULL);
protected:
virtual void
OnDraw(CDC* pDC);// overridden to draw this view
virtual void
OnInitialUpdate();// first time after construct
//}}AFX_VIRTUAL
// Implementation
protected:
virtual ~CCommandStats();
#ifdef _DEBUG
virtual void
AssertValid() const;
virtual void
Dump(CDumpContext& dc) const;
#endif
// Generated message map functions
//{{AFX_MSG(CCommandStats)
afx_msg void
OnLButtonDown(UINT nFlags, CPoint point);
afx_msg void
OnLButtonUp(UINT nFlags, CPoint point);
afx_msg void
OnMouseMove(UINT nFlags, CPoint point);
afx_msg void
OnExportTable();
afx_msg int
OnCreate(LPCREATESTRUCT lpCreateStruct);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
#endif