-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTimeSheetDlg.h
34 lines (25 loc) · 936 Bytes
/
TimeSheetDlg.h
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
#if !defined(AFX_TIMESHEETDLG_H__C1FC14AF_ACDB_471B_B1FC_B8CAAECF4140__INCLUDED_)
#define AFX_TIMESHEETDLG_H__C1FC14AF_ACDB_471B_B1FC_B8CAAECF4140__INCLUDED_
#include "resource.h"
// #include "TaskShiftDefs.h"
#include "TaskShiftScheduleWnd.h"
class CTimeSheetDlg : public CDialog
{
public:
CTimeSheetDlg(TimeBlockVector &avecTimeBlocks, TaskVector &avecTasks, CWnd* pParent = NULL);
enum { IDD = IDD_TIME_SHEET_DLG };
protected:
CTaskShiftScheduleWnd m_ctrlTimeSchedule;
TimeBlockVector &m_vecTimeBlocks;
TaskVector &m_vecTasks;
protected:
virtual void DoDataExchange(CDataExchange* pDX);
bool ResizeWnd();
afx_msg BOOL OnInitDialog();
afx_msg void OnOK();
afx_msg void OnCancel();
afx_msg void OnSize(UINT nType, int cx, int cy);
afx_msg void OnListEndEdit(NMHDR *pNMHDR, LRESULT *pResult);
DECLARE_MESSAGE_MAP()
};
#endif // !defined(AFX_TIMESHEETDLG_H__C1FC14AF_ACDB_471B_B1FC_B8CAAECF4140__INCLUDED_)