00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #pragma once
00020 #include "afxwin.h"
00021
00030 class CTaskSettings : public CDialog
00031 {
00032 DECLARE_DYNCREATE(CTaskSettings)
00033
00034 public:
00035 CTaskSettings();
00036 virtual ~CTaskSettings();
00037
00038 enum { IDD = IDD_TASKS };
00039 #ifdef _DEBUG
00040 virtual void AssertValid() const;
00041 #ifndef _WIN32_WCE
00042 virtual void Dump(CDumpContext& dc) const;
00043 #endif
00044 #endif
00045
00046 protected:
00047 virtual void DoDataExchange(CDataExchange* pDX);
00048 virtual BOOL OnInitDialog();
00049
00050 DECLARE_MESSAGE_MAP()
00051 public:
00052 bool saveSettings(bool);
00053
00054 CComboBox lstSyncType;
00055 CEdit editFolder;
00056 CButton checkInclude;
00057 CButton butSelectFolder;
00058 CEdit editRemote;
00059 CStatic groupDirection;
00060 CStatic groupFolder;
00061 CStatic groupAdvanced;
00062
00063 afx_msg void OnBnClickedTasksOk();
00064 afx_msg void OnBnClickedTasksCancel();
00065 afx_msg void OnBnClickedTasksButSelect();
00066
00067 };
00068