summaryrefslogtreecommitdiff
path: root/src/T2PoolView.h
diff options
context:
space:
mode:
authorAsh Wolf <ninji@wuffs.org>2023-07-09 20:59:16 +0100
committerAsh Wolf <ninji@wuffs.org>2023-07-09 20:59:16 +0100
commitc920fe38a19013b99f3f74e48da9724fb053c212 (patch)
tree6bb036fd3f61b85daceb26f74378eadcdd977db1 /src/T2PoolView.h
parent96a63139221587c6be9659c1e07eacd3a8e7f048 (diff)
downloadt2win-c920fe38a19013b99f3f74e48da9724fb053c212.tar.gz
t2win-c920fe38a19013b99f3f74e48da9724fb053c212.zip
support building from VC++ IDE, add resources
Diffstat (limited to '')
-rw-r--r--src/T2PoolView.h15
1 files changed, 11 insertions, 4 deletions
diff --git a/src/T2PoolView.h b/src/T2PoolView.h
index 7b24545..9f341bc 100644
--- a/src/T2PoolView.h
+++ b/src/T2PoolView.h
@@ -1,20 +1,27 @@
#pragma once
#include "common.h"
+#include "resource.h"
class T2PoolView : public CFrameWnd {
DECLARE_DYNCREATE(T2PoolView)
- DECLARE_MESSAGE_MAP()
public:
T2PoolView();
virtual ~T2PoolView();
void SetPool(T2Pool *inPool);
+ T2Pool *mPool;
+
+ //{{AFX_VIRTUAL(T2PoolView)
+ //}}AFX_VIRTUAL
+
protected:
+ void Draw(CDC *pDC, CPoint *inPt, T2PeopleTimeZoneList **outTimeZoneList, T2PeopleTypeArray **outPeopleTypeArray, int *outUnknown);
+
+ //{{AFX_MSG(T2PoolView)
afx_msg BOOL OnEraseBkgnd(CDC *pDC);
afx_msg void OnVScroll(UINT nSBCode, UINT nPos, CScrollBar *pScrollBar);
afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
- void Draw(CDC *pDC, CPoint *inPt, T2PeopleTimeZoneList **outTimeZoneList, T2PeopleTypeArray **outPeopleTypeArray, int *outUnknown);
-
- T2Pool *mPool;
+ //}}AFX_MSG
+ DECLARE_MESSAGE_MAP()
};