mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Some warnings were removed from MFC samples All warnings of sample projects with warning level 4 were fixed on VC9 Warnings level increased to -W4 in projects of MFC samples; sample ReadMe files added to documentation Changes in Viewer2dDoc.cpp and OcafDoc.cpp were restored. Minor corrections in documentation
62 lines
1.5 KiB
C++
Executable File
62 lines
1.5 KiB
C++
Executable File
// ResultDialog.h : header file
|
|
//
|
|
|
|
#if !defined(AFX_RESULTDIALOG_H__0307BDF3_AF53_11D1_8DAE_0800369C8A03__INCLUDED_)
|
|
#define AFX_RESULTDIALOG_H__0307BDF3_AF53_11D1_8DAE_0800369C8A03__INCLUDED_
|
|
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif // _MSC_VER >= 1000
|
|
|
|
#include <stdafx.h>
|
|
|
|
#include "res\OCC_Resource.h"
|
|
#include <Standard_Macro.hxx>
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CResultDialog dialog
|
|
|
|
class Standard_EXPORT CResultDialog : public CDialog
|
|
{
|
|
|
|
public:
|
|
CResultDialog(CWnd* pParent = NULL);
|
|
void SetTitle(const CString& aTitle);
|
|
void SetText(const CString& aText);
|
|
void GetText(CString& aText);
|
|
void Empty();
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(CResultDialog)
|
|
enum { IDD = IDD_ResultDialog };
|
|
// NOTE: the ClassWizard will add data members here
|
|
//}}AFX_DATA
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CResultDialog)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CResultDialog)
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnCopySelectionToClipboard();
|
|
afx_msg void OnCopyAllToClipboard();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
//Attributes
|
|
private:
|
|
CRichEditCtrl * pEd;
|
|
};
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_RESULTDIALOG_H__0307BDF3_AF53_11D1_8DAE_0800369C8A03__INCLUDED_)
|