author | Michael Krelin <hacker@klever.net> | 2004-07-05 01:53:09 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2004-07-05 01:53:09 (UTC) |
commit | 955d4e00adc9f39ab93bf21f07506eb75b013c70 (patch) (side-by-side diff) | |
tree | 92493a2c9ac206b822e24a9e5a6f6b1589be6afb /SecretaryPage.h | |
download | T42-955d4e00adc9f39ab93bf21f07506eb75b013c70.zip T42-955d4e00adc9f39ab93bf21f07506eb75b013c70.tar.gz T42-955d4e00adc9f39ab93bf21f07506eb75b013c70.tar.bz2 |
initial commit into svn repository
git-svn-id: http://svn.klever.net/kin/T42/trunk@1 fe716a7a-6dde-0310-88d9-d003556173a8
-rw-r--r-- | SecretaryPage.h | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/SecretaryPage.h b/SecretaryPage.h new file mode 100644 index 0000000..108d933 --- a/dev/null +++ b/SecretaryPage.h @@ -0,0 +1,59 @@ +// SecretaryPage.h : header file
+//
+
+/////////////////////////////////////////////////////////////////////////////
+// CSecretaryPage dialog
+
+class CSecretaryPage : public CPropertyPage
+{
+ DECLARE_DYNCREATE(CSecretaryPage)
+
+// Construction
+public:
+ void SetWinLimit();
+ void SetBytesLimit();
+ void SetTimeLimit();
+ CSecretaryPage();
+ ~CSecretaryPage();
+
+// Dialog Data
+ //{{AFX_DATA(CSecretaryPage)
+ enum { IDD = IDD_OPTIONS_SECRETARY };
+ CButton m_bLimitWinCtl;
+ CSpinButtonCtrl m_WinSpinCtl;
+ CSpinButtonCtrl m_TimeSpinCtl;
+ CEdit m_limitWinCtl;
+ CSpinButtonCtrl m_CharSpinCtl;
+ CEdit m_limitTimeCtl;
+ CButton m_bLimitTimeCtl;
+ CButton m_bLimitBytesCtl;
+ CEdit m_limitBytesCtl;
+ UINT m_limitBytes;
+ BOOL m_bLimitBytes;
+ BOOL m_bLimitTime;
+ CString m_Greeting;
+ UINT m_limitTime;
+ BOOL m_bLimitWin;
+ UINT m_limitWin;
+ //}}AFX_DATA
+
+
+// Overrides
+ // ClassWizard generate virtual function overrides
+ //{{AFX_VIRTUAL(CSecretaryPage)
+ protected:
+ virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
+ //}}AFX_VIRTUAL
+
+// Implementation
+protected:
+ // Generated message map functions
+ //{{AFX_MSG(CSecretaryPage)
+ virtual BOOL OnInitDialog();
+ afx_msg void OnDobytelimit();
+ afx_msg void OnDotimelimit();
+ afx_msg void OnDowinlimit();
+ //}}AFX_MSG
+ DECLARE_MESSAGE_MAP()
+
+};
|