mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
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.
This commit is contained in:
parent
41bf7e0b3c
commit
55a40de890
@ -34,7 +34,10 @@
|
|||||||
#include <WNT_Window.hxx>
|
#include <WNT_Window.hxx>
|
||||||
|
|
||||||
#include <EGL/egl.h>
|
#include <EGL/egl.h>
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QFileInfo>
|
#include <QFileInfo>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : AndroidQt
|
// function : AndroidQt
|
||||||
@ -218,8 +221,8 @@ void AndroidQt::paint()
|
|||||||
|
|
||||||
if (Abs (myTouchPoint.DevX()) + Abs (myTouchPoint.DevY()) > 1)
|
if (Abs (myTouchPoint.DevX()) + Abs (myTouchPoint.DevY()) > 1)
|
||||||
{
|
{
|
||||||
myView->StartRotation (myTouchPoint.X().first, myTouchPoint.Y().first);
|
myView->StartRotation ((Standard_Integer)myTouchPoint.X().first, (Standard_Integer)myTouchPoint.Y().first);
|
||||||
myView->Rotation (myTouchPoint.X().second, myTouchPoint.Y().second);
|
myView->Rotation ((Standard_Integer)myTouchPoint.X().second, (Standard_Integer)myTouchPoint.Y().second);
|
||||||
|
|
||||||
myTouchPoint.ClearDev();
|
myTouchPoint.ClearDev();
|
||||||
}
|
}
|
||||||
|
@ -16,19 +16,20 @@
|
|||||||
|
|
||||||
#include <OpenGl_Context.hxx>
|
#include <OpenGl_Context.hxx>
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
// workaround broken definitions in Qt
|
// workaround broken definitions in Qt
|
||||||
#define GLdouble GLdouble
|
#define GLdouble GLdouble
|
||||||
|
|
||||||
|
#include <QMutex>
|
||||||
#include <QtQuick/qquickwindow.h>
|
#include <QtQuick/qquickwindow.h>
|
||||||
#include <QtQuick/QQuickItem>
|
#include <QtQuick/QQuickItem>
|
||||||
|
|
||||||
#undef GLdouble
|
#undef GLdouble
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
#include <AIS_InteractiveContext.hxx>
|
#include <AIS_InteractiveContext.hxx>
|
||||||
#include <V3d_View.hxx>
|
#include <V3d_View.hxx>
|
||||||
|
|
||||||
#include <QMutex>
|
|
||||||
|
|
||||||
#include "AndroidQt_TouchParameters.h"
|
#include "AndroidQt_TouchParameters.h"
|
||||||
|
|
||||||
//! QML item with embedded OCCT viewer.
|
//! QML item with embedded OCCT viewer.
|
||||||
|
@ -14,7 +14,9 @@
|
|||||||
#ifndef ANDROIDQT_TOUCHPARAMETERS_H
|
#ifndef ANDROIDQT_TOUCHPARAMETERS_H
|
||||||
#define ANDROIDQT_TOUCHPARAMETERS_H
|
#define ANDROIDQT_TOUCHPARAMETERS_H
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QPair>
|
#include <QPair>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
//! Class holding touch event state.
|
//! Class holding touch event state.
|
||||||
class AndroidQt_TouchParameters
|
class AndroidQt_TouchParameters
|
||||||
|
@ -11,8 +11,10 @@
|
|||||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||||
// commercial license or contractual agreement.
|
// commercial license or contractual agreement.
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
#include <QQmlApplicationEngine>
|
#include <QQmlApplicationEngine>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
#include "AndroidQt.h"
|
#include "AndroidQt.h"
|
||||||
|
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
#include "DocumentCommon.h"
|
#include "DocumentCommon.h"
|
||||||
#include "View.h"
|
#include "View.h"
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QFrame>
|
#include <QFrame>
|
||||||
#include <QVBoxLayout>
|
#include <QVBoxLayout>
|
||||||
#include <QMenuBar>
|
#include <QMenuBar>
|
||||||
@ -12,6 +13,7 @@
|
|||||||
#include <QMessageBox>
|
#include <QMessageBox>
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
#include <QSignalMapper>
|
#include <QSignalMapper>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
#include <Graphic3d_GraphicDriver.hxx>
|
#include <Graphic3d_GraphicDriver.hxx>
|
||||||
#include <OpenGl_GraphicDriver.hxx>
|
#include <OpenGl_GraphicDriver.hxx>
|
||||||
|
@ -3,12 +3,14 @@
|
|||||||
|
|
||||||
#include "DocumentCommon.h"
|
#include "DocumentCommon.h"
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QMainWindow>
|
#include <QMainWindow>
|
||||||
#include <QAction>
|
#include <QAction>
|
||||||
#include <QToolBar>
|
#include <QToolBar>
|
||||||
#include <QMenu>
|
#include <QMenu>
|
||||||
#include <QMdiArea>
|
#include <QMdiArea>
|
||||||
#include <QList>
|
#include <QList>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
|
|
||||||
class COMMONSAMPLE_EXPORT ApplicationCommonWindow: public QMainWindow
|
class COMMONSAMPLE_EXPORT ApplicationCommonWindow: public QMainWindow
|
||||||
|
@ -134,10 +134,6 @@
|
|||||||
<source>ICON_TOOL_SHADOWS</source>
|
<source>ICON_TOOL_SHADOWS</source>
|
||||||
<translation>shadows.png</translation>
|
<translation>shadows.png</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
|
||||||
<source>ICON_TOOL_RAYTRACING</source>
|
|
||||||
<translation>shadows.png</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
<message>
|
||||||
<source>ICON_TOOL_REFLECTIONS</source>
|
<source>ICON_TOOL_REFLECTIONS</source>
|
||||||
<translation>reflections.png</translation>
|
<translation>reflections.png</translation>
|
||||||
|
@ -4,10 +4,12 @@
|
|||||||
#include "Transparency.h"
|
#include "Transparency.h"
|
||||||
#include "Material.h"
|
#include "Material.h"
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QStatusBar>
|
#include <QStatusBar>
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
#include <QColor>
|
#include <QColor>
|
||||||
#include <QColorDialog>
|
#include <QColorDialog>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
#include <Aspect_DisplayConnection.hxx>
|
#include <Aspect_DisplayConnection.hxx>
|
||||||
#include <AIS_InteractiveObject.hxx>
|
#include <AIS_InteractiveObject.hxx>
|
||||||
@ -188,7 +190,8 @@ void DocumentCommon::onColor()
|
|||||||
{
|
{
|
||||||
Quantity_Color aShapeColor;
|
Quantity_Color aShapeColor;
|
||||||
myContext->Color( Current, aShapeColor );
|
myContext->Color( Current, aShapeColor );
|
||||||
aColor.setRgb( aShapeColor.Red() * 255, aShapeColor.Green() * 255, aShapeColor.Blue() * 255 );
|
aColor.setRgb( (Standard_Integer)(aShapeColor.Red() * 255), (Standard_Integer)(aShapeColor.Green() * 255),
|
||||||
|
(Standard_Integer)(aShapeColor.Blue() * 255));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
aColor.setRgb( 255, 255, 255 );
|
aColor.setRgb( 255, 255, 255 );
|
||||||
|
@ -4,8 +4,10 @@
|
|||||||
#include "MDIWindow.h"
|
#include "MDIWindow.h"
|
||||||
//#include "IESample.h"
|
//#include "IESample.h"
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
#include <QList>
|
#include <QList>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
#include <AIS_InteractiveContext.hxx>
|
#include <AIS_InteractiveContext.hxx>
|
||||||
#include <V3d_Viewer.hxx>
|
#include <V3d_Viewer.hxx>
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
#include "DocumentCommon.h"
|
#include "DocumentCommon.h"
|
||||||
#include "ApplicationCommon.h"
|
#include "ApplicationCommon.h"
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QFrame>
|
#include <QFrame>
|
||||||
#include <QToolBar>
|
#include <QToolBar>
|
||||||
#include <QFileDialog>
|
#include <QFileDialog>
|
||||||
@ -14,6 +15,7 @@
|
|||||||
#include <QFileInfo>
|
#include <QFileInfo>
|
||||||
#include <QMainWindow>
|
#include <QMainWindow>
|
||||||
#include <QVBoxLayout>
|
#include <QVBoxLayout>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
MDIWindow::MDIWindow(View* aView,
|
MDIWindow::MDIWindow(View* aView,
|
||||||
DocumentCommon* aDocument,
|
DocumentCommon* aDocument,
|
||||||
|
@ -1,7 +1,10 @@
|
|||||||
#ifndef MDIWINDOW_H
|
#ifndef MDIWINDOW_H
|
||||||
#define MDIWINDOW_H
|
#define MDIWINDOW_H
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QMainWindow>
|
#include <QMainWindow>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
#include "CommonSample.h"
|
#include "CommonSample.h"
|
||||||
|
|
||||||
class DocumentCommon;
|
class DocumentCommon;
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
#include "Material.h"
|
#include "Material.h"
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QPushButton>
|
#include <QPushButton>
|
||||||
#include <QLayout>
|
#include <QLayout>
|
||||||
#include <QSignalMapper>
|
#include <QSignalMapper>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
#include <Graphic3d_NameOfMaterial.hxx>
|
#include <Graphic3d_NameOfMaterial.hxx>
|
||||||
|
|
||||||
|
@ -1,9 +1,11 @@
|
|||||||
#ifndef MATERIAL_H
|
#ifndef MATERIAL_H
|
||||||
#define MATERIAL_H
|
#define MATERIAL_H
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
#include <QList>
|
#include <QList>
|
||||||
#include <QPushButton>
|
#include <QPushButton>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
#include <AIS_InteractiveContext.hxx>
|
#include <AIS_InteractiveContext.hxx>
|
||||||
|
|
||||||
|
@ -3,7 +3,10 @@
|
|||||||
|
|
||||||
#include <Aspect_Window.hxx>
|
#include <Aspect_Window.hxx>
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QWidget>
|
#include <QWidget>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
class OcctWindow;
|
class OcctWindow;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
#include "Transparency.h"
|
#include "Transparency.h"
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QHBoxLayout>
|
#include <QHBoxLayout>
|
||||||
#include <QSpinBox>
|
#include <QSpinBox>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
DialogTransparency::DialogTransparency( QWidget* parent, Qt::WindowFlags f, bool modal )
|
DialogTransparency::DialogTransparency( QWidget* parent, Qt::WindowFlags f, bool modal )
|
||||||
: QDialog( parent, f )
|
: QDialog( parent, f )
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
#include <QWidget>
|
#include <QWidget>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
#include <AIS_InteractiveContext.hxx>
|
#include <AIS_InteractiveContext.hxx>
|
||||||
|
|
||||||
class DialogTransparency : public QDialog
|
class DialogTransparency : public QDialog
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
#include "View.h"
|
#include "View.h"
|
||||||
#include "ApplicationCommon.h"
|
#include "ApplicationCommon.h"
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
#include <QPainter>
|
#include <QPainter>
|
||||||
#include <QMenu>
|
#include <QMenu>
|
||||||
@ -19,6 +20,7 @@
|
|||||||
#if !defined(_WIN32) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX)) && QT_VERSION < 0x050000
|
#if !defined(_WIN32) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX)) && QT_VERSION < 0x050000
|
||||||
#include <QX11Info>
|
#include <QX11Info>
|
||||||
#endif
|
#endif
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
|
|
||||||
#include <Graphic3d_ExportFormat.hxx>
|
#include <Graphic3d_ExportFormat.hxx>
|
||||||
@ -997,7 +999,7 @@ void View::onBackground()
|
|||||||
Standard_Real G1;
|
Standard_Real G1;
|
||||||
Standard_Real B1;
|
Standard_Real B1;
|
||||||
myView->BackgroundColor(Quantity_TOC_RGB,R1,G1,B1);
|
myView->BackgroundColor(Quantity_TOC_RGB,R1,G1,B1);
|
||||||
aColor.setRgb(R1*255,G1*255,B1*255);
|
aColor.setRgb((Standard_Integer)(R1 * 255), (Standard_Integer)(G1 * 255), (Standard_Integer)(B1 * 255));
|
||||||
|
|
||||||
QColor aRetColor = QColorDialog::getColor(aColor);
|
QColor aRetColor = QColorDialog::getColor(aColor);
|
||||||
|
|
||||||
|
@ -1,9 +1,11 @@
|
|||||||
#ifndef VIEW_H
|
#ifndef VIEW_H
|
||||||
#define VIEW_H
|
#define VIEW_H
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QWidget>
|
#include <QWidget>
|
||||||
#include <QAction>
|
#include <QAction>
|
||||||
#include <QList>
|
#include <QList>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
#include <AIS_InteractiveContext.hxx>
|
#include <AIS_InteractiveContext.hxx>
|
||||||
#include <V3d_View.hxx>
|
#include <V3d_View.hxx>
|
||||||
|
@ -19,24 +19,24 @@ FThread::~FThread()
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void FThread::setIterator(const TFunction_Iterator& itr)
|
void FThread::setIterator(const TFunction_Iterator& theItr)
|
||||||
{
|
{
|
||||||
this->itr = itr;
|
this->itr = theItr;
|
||||||
}
|
}
|
||||||
|
|
||||||
void FThread::setLogbook(const Handle(TFunction_Logbook)& log)
|
void FThread::setLogbook(const Handle(TFunction_Logbook)& theLog)
|
||||||
{
|
{
|
||||||
this->log = log;
|
this->log = theLog;
|
||||||
}
|
}
|
||||||
|
|
||||||
void FThread::setGraph(GraphWidget* graph)
|
void FThread::setGraph(GraphWidget* theGraph)
|
||||||
{
|
{
|
||||||
this->graph = graph;
|
this->graph = theGraph;
|
||||||
}
|
}
|
||||||
|
|
||||||
void FThread::setThreadIndex(const int thread_index)
|
void FThread::setThreadIndex(const int theIndex)
|
||||||
{
|
{
|
||||||
this->thread_index = thread_index;
|
this->thread_index = theIndex;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Returns any free (not executed yet) function
|
// Returns any free (not executed yet) function
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
#ifndef _FTHREAD_H_
|
#ifndef _FTHREAD_H_
|
||||||
#define _FTHREAD_H_
|
#define _FTHREAD_H_
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QThread>
|
#include <QThread>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
#include <TFunction_Logbook.hxx>
|
#include <TFunction_Logbook.hxx>
|
||||||
#include <TFunction_Iterator.hxx>
|
#include <TFunction_Iterator.hxx>
|
||||||
|
@ -38,7 +38,9 @@
|
|||||||
**
|
**
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QPainter>
|
#include <QPainter>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
#include "edge.h"
|
#include "edge.h"
|
||||||
#include "node.h"
|
#include "node.h"
|
||||||
|
@ -41,7 +41,9 @@
|
|||||||
#ifndef EDGE_H
|
#ifndef EDGE_H
|
||||||
#define EDGE_H
|
#define EDGE_H
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QGraphicsItem>
|
#include <QGraphicsItem>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
class Node;
|
class Node;
|
||||||
|
|
||||||
|
@ -42,10 +42,12 @@
|
|||||||
#include "edge.h"
|
#include "edge.h"
|
||||||
#include "node.h"
|
#include "node.h"
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
#include <QGraphicsScene>
|
#include <QGraphicsScene>
|
||||||
#include <QWheelEvent>
|
#include <QWheelEvent>
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
|
@ -41,7 +41,9 @@
|
|||||||
#ifndef GRAPHWIDGET_H
|
#ifndef GRAPHWIDGET_H
|
||||||
#define GRAPHWIDGET_H
|
#define GRAPHWIDGET_H
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QGraphicsView>
|
#include <QGraphicsView>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
#include "FThread.h"
|
#include "FThread.h"
|
||||||
|
|
||||||
|
@ -38,7 +38,9 @@
|
|||||||
**
|
**
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
#include "mainwindow.h"
|
#include "mainwindow.h"
|
||||||
|
|
||||||
#include <OSD_Environment.hxx>
|
#include <OSD_Environment.hxx>
|
||||||
|
@ -38,12 +38,6 @@
|
|||||||
**
|
**
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
#include <QtGui>
|
|
||||||
#include <QtGlobal>
|
|
||||||
#if QT_VERSION > QT_VERSION_CHECK(5, 0, 0)
|
|
||||||
#include <QtWidgets>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "mainwindow.h"
|
#include "mainwindow.h"
|
||||||
#include "graphwidget.h"
|
#include "graphwidget.h"
|
||||||
#include "node.h"
|
#include "node.h"
|
||||||
@ -77,6 +71,15 @@
|
|||||||
#include <TDataStd_Name.hxx>
|
#include <TDataStd_Name.hxx>
|
||||||
#include <TDataStd_Real.hxx>
|
#include <TDataStd_Real.hxx>
|
||||||
#include <TDataStd_RealArray.hxx>
|
#include <TDataStd_RealArray.hxx>
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
|
#include <QtGui>
|
||||||
|
#include <QtGlobal>
|
||||||
|
#if QT_VERSION > QT_VERSION_CHECK(5, 0, 0)
|
||||||
|
#include <QtWidgets>
|
||||||
|
#endif
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#endif
|
#endif
|
||||||
|
@ -41,7 +41,10 @@
|
|||||||
#ifndef MAINWINDOW_H
|
#ifndef MAINWINDOW_H
|
||||||
#define MAINWINDOW_H
|
#define MAINWINDOW_H
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QMainWindow>
|
#include <QMainWindow>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
#include <AppStd_Application.hxx>
|
#include <AppStd_Application.hxx>
|
||||||
|
|
||||||
class QAction;
|
class QAction;
|
||||||
|
@ -38,10 +38,12 @@
|
|||||||
**
|
**
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QGraphicsScene>
|
#include <QGraphicsScene>
|
||||||
#include <QGraphicsSceneMouseEvent>
|
#include <QGraphicsSceneMouseEvent>
|
||||||
#include <QPainter>
|
#include <QPainter>
|
||||||
#include <QStyleOption>
|
#include <QStyleOption>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
#include "edge.h"
|
#include "edge.h"
|
||||||
#include "node.h"
|
#include "node.h"
|
||||||
|
@ -41,8 +41,10 @@
|
|||||||
#ifndef NODE_H
|
#ifndef NODE_H
|
||||||
#define NODE_H
|
#define NODE_H
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QGraphicsItem>
|
#include <QGraphicsItem>
|
||||||
#include <QList>
|
#include <QList>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
#include <TDF_Label.hxx>
|
#include <TDF_Label.hxx>
|
||||||
|
|
||||||
|
@ -2,10 +2,12 @@
|
|||||||
|
|
||||||
#include <OSD_Environment.hxx>
|
#include <OSD_Environment.hxx>
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
#include <QTranslator>
|
#include <QTranslator>
|
||||||
#include <QPixmap>
|
#include <QPixmap>
|
||||||
#include <QLocale>
|
#include <QLocale>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
|
|
||||||
int main ( int argc, char* argv[] )
|
int main ( int argc, char* argv[] )
|
||||||
|
@ -2,12 +2,15 @@
|
|||||||
|
|
||||||
#include "Translate.h"
|
#include "Translate.h"
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QMessageBox>
|
#include <QMessageBox>
|
||||||
#include <stdlib.h>
|
|
||||||
#include <QMdiSubWindow>
|
#include <QMdiSubWindow>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
#include <OSD_Environment.hxx>
|
#include <OSD_Environment.hxx>
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
ApplicationWindow::ApplicationWindow()
|
ApplicationWindow::ApplicationWindow()
|
||||||
: ApplicationCommonWindow( ),
|
: ApplicationCommonWindow( ),
|
||||||
myImportPopup( 0 ),
|
myImportPopup( 0 ),
|
||||||
@ -200,13 +203,13 @@ void ApplicationWindow::onSelectionChanged()
|
|||||||
QMdiArea* ws = getWorkspace();
|
QMdiArea* ws = getWorkspace();
|
||||||
DocumentCommon* doc = qobject_cast<MDIWindow*>( ws->activeSubWindow()->widget() )->getDocument();
|
DocumentCommon* doc = qobject_cast<MDIWindow*>( ws->activeSubWindow()->widget() )->getDocument();
|
||||||
Handle(AIS_InteractiveContext) context = doc->getContext();
|
Handle(AIS_InteractiveContext) context = doc->getContext();
|
||||||
int numSel = context->NbSelected();
|
bool anEnabled = (context->NbSelected() > 0);
|
||||||
|
|
||||||
myCasCadeTranslateActions.at( FileExportBREPId )->setEnabled( numSel );
|
myCasCadeTranslateActions.at( FileExportBREPId )->setEnabled( anEnabled );
|
||||||
myCasCadeTranslateActions.at( FileExportIGESId )->setEnabled( numSel );
|
myCasCadeTranslateActions.at( FileExportIGESId )->setEnabled( anEnabled );
|
||||||
myCasCadeTranslateActions.at( FileExportSTEPId )->setEnabled( numSel );
|
myCasCadeTranslateActions.at( FileExportSTEPId )->setEnabled( anEnabled );
|
||||||
myCasCadeTranslateActions.at( FileExportSTLId )->setEnabled( numSel );
|
myCasCadeTranslateActions.at( FileExportSTLId )->setEnabled( anEnabled );
|
||||||
myCasCadeTranslateActions.at( FileExportVRMLId )->setEnabled( numSel );
|
myCasCadeTranslateActions.at( FileExportVRMLId )->setEnabled( anEnabled );
|
||||||
}
|
}
|
||||||
|
|
||||||
QString ApplicationWindow::getIEResourceDir()
|
QString ApplicationWindow::getIEResourceDir()
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
#include "Application.h"
|
#include "Application.h"
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QDir>
|
#include <QDir>
|
||||||
#include <QLayout>
|
#include <QLayout>
|
||||||
#include <QComboBox>
|
#include <QComboBox>
|
||||||
@ -12,6 +13,7 @@
|
|||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
#include <QWidget>
|
#include <QWidget>
|
||||||
#include <QStyleFactory>
|
#include <QStyleFactory>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
#include <AIS_Shape.hxx>
|
#include <AIS_Shape.hxx>
|
||||||
#include <AIS_InteractiveObject.hxx>
|
#include <AIS_InteractiveObject.hxx>
|
||||||
@ -305,7 +307,7 @@ QString Translate::selectFileName( const int format, const bool import )
|
|||||||
if ( idx != -1 )
|
if ( idx != -1 )
|
||||||
{
|
{
|
||||||
QString tail = selFilter.mid( idx + 3 );
|
QString tail = selFilter.mid( idx + 3 );
|
||||||
int idx = tail.indexOf( " " );
|
idx = tail.indexOf( " " );
|
||||||
if ( idx == -1 )
|
if ( idx == -1 )
|
||||||
idx = tail.indexOf( ")" );
|
idx = tail.indexOf( ")" );
|
||||||
QString ext = tail.left( idx );
|
QString ext = tail.left( idx );
|
||||||
|
@ -2,7 +2,9 @@
|
|||||||
#define TRANSLATE_H
|
#define TRANSLATE_H
|
||||||
#include "IESample.h"
|
#include "IESample.h"
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
#include <AIS_InteractiveContext.hxx>
|
#include <AIS_InteractiveContext.hxx>
|
||||||
#include <TopTools_HSequenceOfShape.hxx>
|
#include <TopTools_HSequenceOfShape.hxx>
|
||||||
|
@ -3,9 +3,11 @@
|
|||||||
|
|
||||||
#include <OSD_Environment.hxx>
|
#include <OSD_Environment.hxx>
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QFileDialog>
|
#include <QFileDialog>
|
||||||
#include <QStatusBar>
|
#include <QStatusBar>
|
||||||
#include <QMdiSubWindow>
|
#include <QMdiSubWindow>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
ApplicationTut::ApplicationTut()
|
ApplicationTut::ApplicationTut()
|
||||||
: ApplicationCommonWindow( )
|
: ApplicationCommonWindow( )
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
#include "DocumentTut.h"
|
#include "DocumentTut.h"
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QFileDialog>
|
#include <QFileDialog>
|
||||||
#include <QMessageBox>
|
#include <QMessageBox>
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
#include <TopoDS_Shape.hxx>
|
#include <TopoDS_Shape.hxx>
|
||||||
#include <AIS_Shape.hxx>
|
#include <AIS_Shape.hxx>
|
||||||
|
@ -2,8 +2,10 @@
|
|||||||
|
|
||||||
#include <OSD_Environment.hxx>
|
#include <OSD_Environment.hxx>
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
#include <QTranslator>
|
#include <QTranslator>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
int main ( int argc, char* argv[] )
|
int main ( int argc, char* argv[] )
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user