| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- #include "afxwin.h"
- #if !defined(AFX_COPYPROPERTIES_H__129FE1CD_D305_487A_B88C_BB01CD9C1BB7__INCLUDED_)
- #define AFX_COPYPROPERTIES_H__129FE1CD_D305_487A_B88C_BB01CD9C1BB7__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // CopyProperties.h : header file
- //
- #include "GroupCombo.h"
- #include "RichEditCtrlEx.h"
- #include "DialogResizer.h"
- /////////////////////////////////////////////////////////////////////////////
- // CCopyProperties dialog
- class CCopyProperties : public CDialog
- {
- // Construction
- public:
- CCopyProperties(long lCopyID, CWnd* pParent = NULL); // standard constructor
- // Dialog Data
- //{{AFX_DATA(CCopyProperties)
- enum { IDD = IDD_COPY_PROPERTIES };
- CRichEditCtrlEx m_RichEdit;
- CGroupCombo m_GroupCombo;
- CHotKeyCtrl m_HotKey;
- CListBox m_lCopyData;
- CString m_eDate;
- BOOL m_bNeverAutoDelete;
- //}}AFX_DATA
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CCopyProperties)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- public:
- bool m_bChangedText;
- long m_lGroupChangedTo;
- void SetHideOnKillFocus(bool bVal) { m_bHideOnKillFocus = bVal; }
- // Implementation
- protected:
- long m_lCopyID;
- CDataTable m_DataTable;
- CMainTable m_MainTable;
- ARRAY m_DeletedData;
- bool m_bDeletedData;
- BOOL m_bNeverDelete;
- bool m_bHideOnKillFocus;
- CDialogResizer m_Resize;
- bool m_bHandleKillFocus;
- // Generated message map functions
- //{{AFX_MSG(CCopyProperties)
- virtual BOOL OnInitDialog();
- virtual void OnOK();
- afx_msg void OnDeleteCopyData();
- virtual void OnCancel();
- afx_msg void OnActivate(UINT nState, CWnd* pWndOther, BOOL bMinimized);
- afx_msg void OnSize(UINT nType, int cx, int cy);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- public:
- CEdit m_ParseEdit;
- CButton m_ParseButton;
- afx_msg void OnBnClickedParseButton();
- CEdit m_DisplayTextEdit;
- };
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_COPYPROPERTIES_H__129FE1CD_D305_487A_B88C_BB01CD9C1BB7__INCLUDED_)
|