#if !defined(AFX_PROPERTYSHEETDLG_H__8D9D7CBF_E5AB_4881_BB88_DF75C4F5DE51__INCLUDED_) #define AFX_PROPERTYSHEETDLG_H__8D9D7CBF_E5AB_4881_BB88_DF75C4F5DE51__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 // PropertySheetDlg.h : header file #include "stdafx.h" #include "CLDMWLSCP.h" // Propery Pages #include "SCPProperties.h" #include "MWLPage.h" #include "LogPage.h" // MWL Class #include "WListSCP.h" class CPropertySheetDlg; ///////////////////////////////////////////////////////////// // Derived class from WlistSCP.cpp class CMWListSCP : public CWorklistSCP { public: CPropertySheetDlg* m_pPropertySheet; CMWListSCP () : m_pPropertySheet(NULL) { } L_VOID OnStatus(const CString& sClientName, const CString& sStatus, L_INT nErrorCode = DICOM_SUCCESS); L_VOID OnClientsStatus(const CString& sNewClient); private: CString GetStatusText(L_UINT uStatusConst); }; ///////////////////////////////////////////////////////////////////////////// // CPropertySheetDlg class CPropertySheetDlg : public CPropertySheet { DECLARE_DYNAMIC(CPropertySheetDlg) // Construction public: CPropertySheetDlg(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0); // Attributes public: CSCPProperties m_Page1; // SCP Properties Page CMWLPage m_Page2; // MWL Page CLogPage m_Page3; // Log Page CMWListSCP m_MWListSCP; CString m_sDBFileName; CString m_sStatus; // Operations public: // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CPropertySheetDlg) public: virtual BOOL OnInitDialog(); protected: virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam); //}}AFX_VIRTUAL // Implementation public: virtual ~CPropertySheetDlg(); // Generated message map functions protected: //{{AFX_MSG(CPropertySheetDlg) afx_msg void OnDestroy(); //}}AFX_MSG DECLARE_MESSAGE_MAP() }; ///////////////////////////////////////////////////////////////////////////// //{{AFX_INSERT_LOCATION}} // Microsoft Visual C++ will insert additional declarations immediately before the previous line. #endif // !defined(AFX_PROPERTYSHEETDLG_H__8D9D7CBF_E5AB_4881_BB88_DF75C4F5DE51__INCLUDED_)