// EditDlg.h : header file // ///////////////////////////////////////////////////////////////////////////// // CEditValDlg dialog class CEditValDlg : public CDialog { // Construction public: CEditValDlg(CWnd* pParent = NULL); // standard constructor void Init(void); void SetLEADDicom(ILEADDicomDS *pLEADDicomDS){m_pLEADDicomDS = pLEADDicomDS;}; ILEADDicomDS *m_pLEADDicomDS; long m_lCount; CStringArray m_csItems; // Dialog Data //{{AFX_DATA(CEditValDlg) enum { IDD = IDD_EDITVALUE }; CListBox m_List1; CEdit m_Text1; //}}AFX_DATA // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CEditValDlg) protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support //}}AFX_VIRTUAL // Implementation protected: // Generated message map functions //{{AFX_MSG(CEditValDlg) afx_msg void OnButton2(); afx_msg void OnButton1(); virtual BOOL OnInitDialog(); virtual void OnOK(); afx_msg void OnButton3(); afx_msg void OnButton4(); afx_msg void OnChangeEdit1(); afx_msg void OnSelchangeList1(); //}}AFX_MSG DECLARE_MESSAGE_MAP() };