1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/samples/mfc/standard/Common/OCC_3dDoc.cpp
ibs 5c573e69d3 0024355: Compiler Warning level 4 for MFC samples
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
2013-11-21 13:45:42 +04:00

75 lines
1.6 KiB
C++
Executable File

// OCC_3dDoc.cpp: implementation of the OCC_3dDoc class.
//
//////////////////////////////////////////////////////////////////////
#include <stdafx.h>
#include "OCC_3dDoc.h"
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
OCC_3dDoc::OCC_3dDoc()
{
myCResultDialog.Create(CResultDialog::IDD,NULL);
RECT dlgrect;
myCResultDialog.GetWindowRect(&dlgrect);
LONG width = dlgrect.right-dlgrect.left;
LONG height = dlgrect.bottom-dlgrect.top;
RECT MainWndRect;
AfxGetApp()->m_pMainWnd->GetWindowRect(&MainWndRect);
LONG left = MainWndRect.left+3;
LONG top = MainWndRect.top + 112;
myCResultDialog.MoveWindow(left,top,width,height);
}
OCC_3dDoc::~OCC_3dDoc()
{
}
void OCC_3dDoc::PocessTextInDialog(char* aTitle, TCollection_AsciiString& aMessage)
{
// aMessage+= "-------------------------------- END ----------------------------------------\n";
myCResultDialog.SetTitle(aTitle);
myCResultDialog.SetText(aMessage.ToCString());
SetTitle(aTitle);
}
void OCC_3dDoc::ClearDialog()
{
myCResultDialog.Empty();
}
void OCC_3dDoc::AddTextInDialog(TCollection_AsciiString& aMessage)
{
CString TextToAdd(aMessage.ToCString());
CString CurrentText;
myCResultDialog.GetText(CurrentText);
CString Text;
Text = TextToAdd + CurrentText;
myCResultDialog.SetText(Text);
}
CString OCC_3dDoc::GetDialogText()
{
CString CurrentText;
myCResultDialog.GetText(CurrentText);
return CurrentText;
}
void OCC_3dDoc::SetDialogTitle(TCollection_AsciiString theTitle)
{
myCResultDialog.SetTitle(theTitle.ToCString());
}