1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-16 10:08:36 +03:00
occt/samples/qt/Common/src/DocumentCommon.h
nds 55a40de890 0028934: Coding - Eliminate compiler warnings in OCCT samples
- covering Qt warnings for compilation under MSVC 2013 and greater
- avoid warning about 'M_PI'(and others) redefinition warning of math.h: includes of QtWidgets should follow after other includes.
2018-04-09 10:18:38 +03:00

72 lines
2.2 KiB
C++
Executable File

#ifndef DOCUMENTCOMMON_H
#define DOCUMENTCOMMON_H
#include "MDIWindow.h"
//#include "IESample.h"
#include <Standard_WarningsDisable.hxx>
#include <QObject>
#include <QList>
#include <Standard_WarningsRestore.hxx>
#include <AIS_InteractiveContext.hxx>
#include <V3d_Viewer.hxx>
class ApplicationCommonWindow;
class COMMONSAMPLE_EXPORT DocumentCommon : public QObject
{
Q_OBJECT
public:
DocumentCommon( const int, ApplicationCommonWindow* );
~DocumentCommon();
ApplicationCommonWindow* getApplication();
Handle(AIS_InteractiveContext) getContext();
void removeView( MDIWindow* );
void removeViews();
int countOfWindow();
void fitAll();
protected:
virtual MDIWindow* createNewMDIWindow();
signals:
void selectionChanged();
void sendCloseDocument( DocumentCommon* );
public slots:
virtual void onCloseView( MDIWindow* );
virtual void onCreateNewView();
virtual void onMaterial();
virtual void onMaterial( int );
virtual void onDelete();
void onWireframe();
void onShading();
void onColor();
void onTransparency();
void onTransparency( int );
private:
Handle(V3d_Viewer) Viewer (const Standard_ExtString theName,
const Standard_CString theDomain,
const Standard_Real theViewSize,
const V3d_TypeOfOrientation theViewProj,
const Standard_Boolean theComputedMode,
const Standard_Boolean theDefaultComputedMode );
protected:
ApplicationCommonWindow* myApp;
QList<MDIWindow*> myViews;
Handle(V3d_Viewer) myViewer;
Handle(AIS_InteractiveContext) myContext;
int myIndex;
int myNbViews;
};
#endif