mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
- OCAF sample Save Document option: corrected conversion from LPCTSTR to Standard_CString - HLR sample: corrected mouse move event handling for HLR 2D view; Corrected CSelectionDialog view displaying and updating - Geometry sample: CGeometryDoc correction to avoid code duplication - OCC_3dBaseDoc: corrected DragEvent() handler for proper emulation of rectangle selection. - Viewer3d sample: moved resource files (resource.h; resource.hm; AISToolbar.bmp) from /src to /res Code style changes Fixed "About" dialog error in release. Corrected dimension dialogs Workaround for dimensions sample: AIS_LocalContext::SelectedShape() doesn't take into account TopoDS shape local transformation, and operates with selected interactive transformation.
52 lines
1.3 KiB
C++
Executable File
52 lines
1.3 KiB
C++
Executable File
// OCC_3dDoc.h: interface for the OCC_3dDoc class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_OCC_3DDOC_H__1F4065AD_39C4_11D7_8611_0060B0EE281E__INCLUDED_)
|
|
#define AFX_OCC_3DDOC_H__1F4065AD_39C4_11D7_8611_0060B0EE281E__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
#include "OCC_3dBaseDoc.h"
|
|
#include "ResultDialog.h"
|
|
#include <Standard_Macro.hxx>
|
|
|
|
// Event tracker for 3D views with support of advanced message dialog operations
|
|
// and dimensions dialog
|
|
class AFX_EXT_CLASS OCC_3dDoc : public OCC_3dBaseDoc
|
|
{
|
|
public:
|
|
|
|
OCC_3dDoc (bool theIsResultDialog = true);
|
|
virtual ~OCC_3dDoc();
|
|
|
|
public: // Dialog operations
|
|
|
|
void SetDialogTitle(TCollection_AsciiString theTitle);
|
|
CString GetDialogText();
|
|
|
|
void PocessTextInDialog (CString theTitle, CString theMessage);
|
|
void PocessTextInDialog (CString theTitle, const TCollection_AsciiString& theMessage)
|
|
{
|
|
CString aMessage (theMessage.ToCString());
|
|
PocessTextInDialog (theTitle, aMessage);
|
|
}
|
|
|
|
void ClearDialog();
|
|
void AddTextInDialog(TCollection_AsciiString& aMessage);
|
|
|
|
protected:
|
|
|
|
afx_msg void OnObjectAddDimensions();
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
protected:
|
|
|
|
CResultDialog myCResultDialog;
|
|
CDimensionDlg myDimensionDlg;
|
|
};
|
|
|
|
#endif // !defined(AFX_OCC_3DDOC_H__1F4065AD_39C4_11D7_8611_0060B0EE281E__INCLUDED_)
|