66 lines
1.6 KiB
C++
66 lines
1.6 KiB
C++
#if !defined(AFX_USERPREFSDLG_H__F606DE61_5F98_11D4_964F_00C0F02C4B69__INCLUDED_)
|
|
#define AFX_USERPREFSDLG_H__F606DE61_5F98_11D4_964F_00C0F02C4B69__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
// UserPrefsDlg.h : header file
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CUserPrefsDlg dialog
|
|
#include "gzcombo.h"
|
|
#include "gzrset.h"
|
|
#include "afxwin.h"
|
|
class CUserPrefsDlg : public CDialog
|
|
{
|
|
// Construction
|
|
public:
|
|
void FillFields();
|
|
~CUserPrefsDlg();
|
|
void FillLists();
|
|
CUserPrefsDlg(CWnd* pParent = NULL); // standard constructor
|
|
GZRset* rs;
|
|
CSpApp* m_pApp;
|
|
// Dialog Data
|
|
//{{AFX_DATA(CUserPrefsDlg)
|
|
enum { IDD = IDD_USERPREFS };
|
|
CButton m_ckOneDay;
|
|
CButton m_ckSchedRnd;
|
|
CDateTimeCtrl m_dtStop;
|
|
CDateTimeCtrl m_dtStart;
|
|
CButton m_ckOnsite;
|
|
CgzCombo m_cbDefTravelRate;
|
|
CgzCombo m_cbRate;
|
|
//}}AFX_DATA
|
|
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CUserPrefsDlg)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CUserPrefsDlg)
|
|
afx_msg void OnBtndone();
|
|
virtual BOOL OnInitDialog();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
private:
|
|
bool m_bReadOnly;
|
|
void Security();
|
|
public:
|
|
afx_msg void OnBnClickedCkhgrid();
|
|
CButton m_ckHGrid;
|
|
};
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_USERPREFSDLG_H__F606DE61_5F98_11D4_964F_00C0F02C4B69__INCLUDED_)
|