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_StereoConfigDlg.h
abv 0553a8ea99 0029589: Configuration - allow MFC samples to be built when OCCT is linked statically
CMake scripts are corrected to do perform search of libs and dlls of third-party libraries even for static builds of OCCT.
Treatment of errors in this case is relaxed: not found DLLs are reported as warnings, and not found libs as warning for static build, and continuable error for shared build.

Code of samples is corrected to allow building with OCCT linked statically.
Implementation of main application class is corrected to ensure that initialization is done after all global objects are created.
Note however that samples still fails to start for unclear reason (creation of MFC frame window fails).
2018-03-22 19:51:20 +03:00

56 lines
1.3 KiB
C++

///////////////////////////////////////////////////////////////////////////////
// OCC_StereoConfigDlg.h : header file
///////////////////////////////////////////////////////////////////////////////
#ifndef OCC_StereoConfigDlg_Header
#define OCC_StereoConfigDlg_Header
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
#include "res\OCC_Resource.h"
#include <V3d_View.hxx>
// Dialog to dynamically configure 3D Viewer stereo
// projection properties.
class Standard_EXPORT OCC_StereoConfigDlg : public CDialog
{
public:
OCC_StereoConfigDlg (CWnd* theParent = NULL)
: CDialog (IDD_DIALOG_STEREO, theParent) {}
void SetView (const Handle(V3d_View)& theView);
protected:
virtual void DoDataExchange (CDataExchange* theDX);
void UpdateCamera();
// Implementation
protected:
afx_msg void OnCheckFocus();
afx_msg void OnCheckIOD();
afx_msg void OnChangeFocus();
afx_msg void OnChangeIOD();
afx_msg void OnSpinFocus (NMHDR* theNMHDR, LRESULT* theResult);
afx_msg void OnSpinIOD (NMHDR* theNMHDR, LRESULT* theResult);
afx_msg void OnHScroll(UINT theSBCode, UINT thePos, CScrollBar* theScrollBar);
DECLARE_MESSAGE_MAP()
private:
Standard_Real myIOD;
Standard_Real myFocus;
Standard_Integer mySliderFocus;
Standard_Boolean myIsRelativeIOD;
Standard_Boolean myIsRelativeFocus;
Handle(V3d_View) myView;
};
#endif