1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
occt/samples/mfc/standard/Common/OCC_3dDoc.cpp
kgv 576f8b111b 0024943: Port MFC samples to UNICODE for compatibility with VS2013
Add vc12 project files for MFC samples.

CMake - add Unicode option for MFC samples

CMake - do not set MFC option globally

Update description of Cmake building procedure for MFC sample

Correction of cmake.md and automake.md

0024943: Port MFC sample to UNICODE for compatibility with VS2013
The formatting of developer guides about OCCT building with various build systems has been improved.

automake article clean up
2014-07-31 14:44:38 +04:00

76 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 (CString theTitle,
CString theMessage)
{
// aMessage+= "-------------------------------- END ----------------------------------------\n";
myCResultDialog.SetTitle (theTitle);
myCResultDialog.SetText (theMessage);
SetTitle (theTitle);
}
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());
}