1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-06 18:26:22 +03:00
occt/samples/qt/Interface/src/Translate.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

60 lines
2.2 KiB
C++
Executable File

#ifndef TRANSLATE_H
#define TRANSLATE_H
#include "IESample.h"
#include <Standard_WarningsDisable.hxx>
#include <QObject>
#include <Standard_WarningsRestore.hxx>
#include <AIS_InteractiveContext.hxx>
#include <TopTools_HSequenceOfShape.hxx>
class TranslateDlg;
class IESAMPLE_EXPORT Translate: public QObject
{
Q_OBJECT
public:
enum { FormatBREP, FormatIGES, FormatSTEP, FormatVRML, FormatSTL };
Translate( QObject* );
~Translate();
bool importModel( const int, const Handle(AIS_InteractiveContext)& );
bool exportModel( const int, const Handle(AIS_InteractiveContext)& );
QString info() const;
protected:
virtual Handle(TopTools_HSequenceOfShape) importModel( const int, const QString& );
virtual bool exportModel( const int, const QString&,
const Handle(TopTools_HSequenceOfShape)& );
virtual bool displayShSequence(const Handle(AIS_InteractiveContext)&,
const Handle(TopTools_HSequenceOfShape)& );
QString selectFileName( const int, const bool );
private:
TranslateDlg* getDialog( const int, const bool );
Handle(TopTools_HSequenceOfShape) getShapes( const Handle(AIS_InteractiveContext)& );
Handle(TopTools_HSequenceOfShape) importBREP( const QString& );
Handle(TopTools_HSequenceOfShape) importIGES( const QString& );
Handle(TopTools_HSequenceOfShape) importSTEP( const QString& );
bool exportBREP( const QString&, const Handle(TopTools_HSequenceOfShape)& );
bool exportIGES( const QString&, const Handle(TopTools_HSequenceOfShape)& );
bool exportSTEP( const QString&, const Handle(TopTools_HSequenceOfShape)& );
bool exportSTL( const QString&, const Handle(TopTools_HSequenceOfShape)& );
bool exportVRML( const QString&, const Handle(TopTools_HSequenceOfShape)& );
bool checkFacetedBrep( const Handle(TopTools_HSequenceOfShape)& );
protected:
TranslateDlg* myDlg;
QString myInfo;
};
#endif