00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00023 #pragma once
00024 #include "afxwin.h"
00025
00026
00030 class CNotesSettings : public CDialog
00031 {
00032 DECLARE_DYNCREATE(CNotesSettings)
00033
00034 public:
00035 CNotesSettings();
00036 virtual ~CNotesSettings();
00037
00038 enum { IDD = IDD_NOTES };
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
00052 CComboBox lstSyncType;
00053 CEdit editFolder;
00054 CButton checkInclude;
00055 CButton butSelectFolder;
00056 CEdit editRemote;
00057 CStatic groupDirection;
00058 CStatic groupFolder;
00059 CStatic groupAdvanced;
00060
00061 public:
00062 bool saveSettings(bool);
00063 afx_msg void OnBnClickedNotesOk();
00064 afx_msg void OnBnClickedNotesCancel();
00065 afx_msg void OnBnClickedNotesButSelect();
00066 };
00067