diff --git a/samples/qt/AndroidQt/src/AndroidQt.cxx b/samples/qt/AndroidQt/src/AndroidQt.cxx index 54a339c37b..c73d00a5ef 100644 --- a/samples/qt/AndroidQt/src/AndroidQt.cxx +++ b/samples/qt/AndroidQt/src/AndroidQt.cxx @@ -34,7 +34,10 @@ #include #include + +#include #include +#include // ======================================================================= // function : AndroidQt @@ -218,8 +221,8 @@ void AndroidQt::paint() if (Abs (myTouchPoint.DevX()) + Abs (myTouchPoint.DevY()) > 1) { - myView->StartRotation (myTouchPoint.X().first, myTouchPoint.Y().first); - myView->Rotation (myTouchPoint.X().second, myTouchPoint.Y().second); + myView->StartRotation ((Standard_Integer)myTouchPoint.X().first, (Standard_Integer)myTouchPoint.Y().first); + myView->Rotation ((Standard_Integer)myTouchPoint.X().second, (Standard_Integer)myTouchPoint.Y().second); myTouchPoint.ClearDev(); } diff --git a/samples/qt/AndroidQt/src/AndroidQt.h b/samples/qt/AndroidQt/src/AndroidQt.h index 0e5462e0c8..4b6059fc24 100644 --- a/samples/qt/AndroidQt/src/AndroidQt.h +++ b/samples/qt/AndroidQt/src/AndroidQt.h @@ -16,19 +16,20 @@ #include +#include // workaround broken definitions in Qt #define GLdouble GLdouble +#include #include #include #undef GLdouble +#include #include #include -#include - #include "AndroidQt_TouchParameters.h" //! QML item with embedded OCCT viewer. diff --git a/samples/qt/AndroidQt/src/AndroidQt_TouchParameters.h b/samples/qt/AndroidQt/src/AndroidQt_TouchParameters.h index 1debd06167..bd62f63646 100644 --- a/samples/qt/AndroidQt/src/AndroidQt_TouchParameters.h +++ b/samples/qt/AndroidQt/src/AndroidQt_TouchParameters.h @@ -14,7 +14,9 @@ #ifndef ANDROIDQT_TOUCHPARAMETERS_H #define ANDROIDQT_TOUCHPARAMETERS_H +#include #include +#include //! Class holding touch event state. class AndroidQt_TouchParameters diff --git a/samples/qt/AndroidQt/src/Main.cxx b/samples/qt/AndroidQt/src/Main.cxx index 51ae7c1a06..89160d1e7c 100644 --- a/samples/qt/AndroidQt/src/Main.cxx +++ b/samples/qt/AndroidQt/src/Main.cxx @@ -11,8 +11,10 @@ // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. +#include #include #include +#include #include "AndroidQt.h" diff --git a/samples/qt/Common/src/ApplicationCommon.cxx b/samples/qt/Common/src/ApplicationCommon.cxx index a3e94903ab..2dfc5ed3e1 100755 --- a/samples/qt/Common/src/ApplicationCommon.cxx +++ b/samples/qt/Common/src/ApplicationCommon.cxx @@ -3,6 +3,7 @@ #include "DocumentCommon.h" #include "View.h" +#include #include #include #include @@ -12,6 +13,7 @@ #include #include #include +#include #include #include diff --git a/samples/qt/Common/src/ApplicationCommon.h b/samples/qt/Common/src/ApplicationCommon.h index cdc8802c2c..a0d7e4ea31 100755 --- a/samples/qt/Common/src/ApplicationCommon.h +++ b/samples/qt/Common/src/ApplicationCommon.h @@ -3,12 +3,14 @@ #include "DocumentCommon.h" +#include #include #include #include #include #include #include +#include class COMMONSAMPLE_EXPORT ApplicationCommonWindow: public QMainWindow diff --git a/samples/qt/Common/src/Common-icon.ts b/samples/qt/Common/src/Common-icon.ts index 23469bcef5..972e6d450d 100755 --- a/samples/qt/Common/src/Common-icon.ts +++ b/samples/qt/Common/src/Common-icon.ts @@ -134,10 +134,6 @@ ICON_TOOL_SHADOWS shadows.png - - ICON_TOOL_RAYTRACING - shadows.png - ICON_TOOL_REFLECTIONS reflections.png diff --git a/samples/qt/Common/src/DocumentCommon.cxx b/samples/qt/Common/src/DocumentCommon.cxx index f19194ec2d..e4903bb69c 100755 --- a/samples/qt/Common/src/DocumentCommon.cxx +++ b/samples/qt/Common/src/DocumentCommon.cxx @@ -4,10 +4,12 @@ #include "Transparency.h" #include "Material.h" +#include #include #include #include #include +#include #include #include @@ -188,7 +190,8 @@ void DocumentCommon::onColor() { Quantity_Color 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 aColor.setRgb( 255, 255, 255 ); diff --git a/samples/qt/Common/src/DocumentCommon.h b/samples/qt/Common/src/DocumentCommon.h index 150de48f9f..120cb2f9d5 100755 --- a/samples/qt/Common/src/DocumentCommon.h +++ b/samples/qt/Common/src/DocumentCommon.h @@ -4,8 +4,10 @@ #include "MDIWindow.h" //#include "IESample.h" +#include #include #include +#include #include #include diff --git a/samples/qt/Common/src/MDIWindow.cxx b/samples/qt/Common/src/MDIWindow.cxx index f09bce4064..87498eab00 100755 --- a/samples/qt/Common/src/MDIWindow.cxx +++ b/samples/qt/Common/src/MDIWindow.cxx @@ -4,6 +4,7 @@ #include "DocumentCommon.h" #include "ApplicationCommon.h" +#include #include #include #include @@ -14,6 +15,7 @@ #include #include #include +#include MDIWindow::MDIWindow(View* aView, DocumentCommon* aDocument, diff --git a/samples/qt/Common/src/MDIWindow.h b/samples/qt/Common/src/MDIWindow.h index bf8902690c..06f75501bb 100755 --- a/samples/qt/Common/src/MDIWindow.h +++ b/samples/qt/Common/src/MDIWindow.h @@ -1,7 +1,10 @@ #ifndef MDIWINDOW_H #define MDIWINDOW_H +#include #include +#include + #include "CommonSample.h" class DocumentCommon; diff --git a/samples/qt/Common/src/Material.cxx b/samples/qt/Common/src/Material.cxx index 748d93f76e..650174d457 100755 --- a/samples/qt/Common/src/Material.cxx +++ b/samples/qt/Common/src/Material.cxx @@ -1,8 +1,10 @@ #include "Material.h" +#include #include #include #include +#include #include diff --git a/samples/qt/Common/src/Material.h b/samples/qt/Common/src/Material.h index a773a7beb2..ab8fcf68e7 100755 --- a/samples/qt/Common/src/Material.h +++ b/samples/qt/Common/src/Material.h @@ -1,9 +1,11 @@ #ifndef MATERIAL_H #define MATERIAL_H +#include #include #include #include +#include #include diff --git a/samples/qt/Common/src/OcctWindow.h b/samples/qt/Common/src/OcctWindow.h index b111656032..34ad07774e 100644 --- a/samples/qt/Common/src/OcctWindow.h +++ b/samples/qt/Common/src/OcctWindow.h @@ -3,7 +3,10 @@ #include +#include #include +#include + class OcctWindow; /* diff --git a/samples/qt/Common/src/Transparency.cxx b/samples/qt/Common/src/Transparency.cxx index a34fbf8a3f..192198bcfe 100755 --- a/samples/qt/Common/src/Transparency.cxx +++ b/samples/qt/Common/src/Transparency.cxx @@ -1,7 +1,9 @@ #include "Transparency.h" +#include #include #include +#include DialogTransparency::DialogTransparency( QWidget* parent, Qt::WindowFlags f, bool modal ) : QDialog( parent, f ) diff --git a/samples/qt/Common/src/Transparency.h b/samples/qt/Common/src/Transparency.h index b37dd8918d..a8948c4340 100755 --- a/samples/qt/Common/src/Transparency.h +++ b/samples/qt/Common/src/Transparency.h @@ -1,5 +1,8 @@ +#include #include #include +#include + #include class DialogTransparency : public QDialog diff --git a/samples/qt/Common/src/View.cxx b/samples/qt/Common/src/View.cxx index 5a3550c898..718bc44864 100755 --- a/samples/qt/Common/src/View.cxx +++ b/samples/qt/Common/src/View.cxx @@ -5,6 +5,7 @@ #include "View.h" #include "ApplicationCommon.h" +#include #include #include #include @@ -19,6 +20,7 @@ #if !defined(_WIN32) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX)) && QT_VERSION < 0x050000 #include #endif +#include #include @@ -997,7 +999,7 @@ void View::onBackground() Standard_Real G1; Standard_Real 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); diff --git a/samples/qt/Common/src/View.h b/samples/qt/Common/src/View.h index 6bd672057f..82744543d8 100755 --- a/samples/qt/Common/src/View.h +++ b/samples/qt/Common/src/View.h @@ -1,9 +1,11 @@ #ifndef VIEW_H #define VIEW_H +#include #include #include #include +#include #include #include diff --git a/samples/qt/FuncDemo/src/FThread.cpp b/samples/qt/FuncDemo/src/FThread.cpp index 48221dce62..3a639432db 100644 --- a/samples/qt/FuncDemo/src/FThread.cpp +++ b/samples/qt/FuncDemo/src/FThread.cpp @@ -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 diff --git a/samples/qt/FuncDemo/src/FThread.h b/samples/qt/FuncDemo/src/FThread.h index 30bd2702fa..e7ab7ac076 100644 --- a/samples/qt/FuncDemo/src/FThread.h +++ b/samples/qt/FuncDemo/src/FThread.h @@ -1,7 +1,9 @@ #ifndef _FTHREAD_H_ #define _FTHREAD_H_ +#include #include +#include #include #include diff --git a/samples/qt/FuncDemo/src/edge.cpp b/samples/qt/FuncDemo/src/edge.cpp index e5ad124082..983b64a21b 100644 --- a/samples/qt/FuncDemo/src/edge.cpp +++ b/samples/qt/FuncDemo/src/edge.cpp @@ -38,7 +38,9 @@ ** ****************************************************************************/ +#include #include +#include #include "edge.h" #include "node.h" diff --git a/samples/qt/FuncDemo/src/edge.h b/samples/qt/FuncDemo/src/edge.h index acfe2f1484..5662ef00ab 100644 --- a/samples/qt/FuncDemo/src/edge.h +++ b/samples/qt/FuncDemo/src/edge.h @@ -41,7 +41,9 @@ #ifndef EDGE_H #define EDGE_H +#include #include +#include class Node; diff --git a/samples/qt/FuncDemo/src/graphwidget.cpp b/samples/qt/FuncDemo/src/graphwidget.cpp index 7555a2b202..1ee3a6609e 100644 --- a/samples/qt/FuncDemo/src/graphwidget.cpp +++ b/samples/qt/FuncDemo/src/graphwidget.cpp @@ -42,10 +42,12 @@ #include "edge.h" #include "node.h" +#include #include #include #include #include +#include #include diff --git a/samples/qt/FuncDemo/src/graphwidget.h b/samples/qt/FuncDemo/src/graphwidget.h index c1b21d5968..d4205e6bc2 100644 --- a/samples/qt/FuncDemo/src/graphwidget.h +++ b/samples/qt/FuncDemo/src/graphwidget.h @@ -41,7 +41,9 @@ #ifndef GRAPHWIDGET_H #define GRAPHWIDGET_H +#include #include +#include #include "FThread.h" diff --git a/samples/qt/FuncDemo/src/main.cpp b/samples/qt/FuncDemo/src/main.cpp index 4f35cca9ea..4fad9cf43f 100644 --- a/samples/qt/FuncDemo/src/main.cpp +++ b/samples/qt/FuncDemo/src/main.cpp @@ -38,7 +38,9 @@ ** ****************************************************************************/ +#include #include +#include #include "mainwindow.h" #include diff --git a/samples/qt/FuncDemo/src/mainwindow.cpp b/samples/qt/FuncDemo/src/mainwindow.cpp index 40c9152d6b..0668b35384 100644 --- a/samples/qt/FuncDemo/src/mainwindow.cpp +++ b/samples/qt/FuncDemo/src/mainwindow.cpp @@ -38,12 +38,6 @@ ** ****************************************************************************/ -#include -#include -#if QT_VERSION > QT_VERSION_CHECK(5, 0, 0) -#include -#endif - #include "mainwindow.h" #include "graphwidget.h" #include "node.h" @@ -77,6 +71,15 @@ #include #include #include + +#include +#include +#include +#if QT_VERSION > QT_VERSION_CHECK(5, 0, 0) +#include +#endif +#include + #ifdef __GNUC__ #include #endif diff --git a/samples/qt/FuncDemo/src/mainwindow.h b/samples/qt/FuncDemo/src/mainwindow.h index 5455bb9f66..ca2b7a83d9 100644 --- a/samples/qt/FuncDemo/src/mainwindow.h +++ b/samples/qt/FuncDemo/src/mainwindow.h @@ -41,7 +41,10 @@ #ifndef MAINWINDOW_H #define MAINWINDOW_H +#include #include +#include + #include class QAction; diff --git a/samples/qt/FuncDemo/src/node.cpp b/samples/qt/FuncDemo/src/node.cpp index f72680a9a7..9271222fbc 100644 --- a/samples/qt/FuncDemo/src/node.cpp +++ b/samples/qt/FuncDemo/src/node.cpp @@ -38,10 +38,12 @@ ** ****************************************************************************/ +#include #include #include #include #include +#include #include "edge.h" #include "node.h" diff --git a/samples/qt/FuncDemo/src/node.h b/samples/qt/FuncDemo/src/node.h index 1319e26aa8..393cc1f09b 100644 --- a/samples/qt/FuncDemo/src/node.h +++ b/samples/qt/FuncDemo/src/node.h @@ -41,8 +41,10 @@ #ifndef NODE_H #define NODE_H +#include #include #include +#include #include diff --git a/samples/qt/IESample/src/Main.cxx b/samples/qt/IESample/src/Main.cxx index 87b7924d97..45561b5502 100755 --- a/samples/qt/IESample/src/Main.cxx +++ b/samples/qt/IESample/src/Main.cxx @@ -2,10 +2,12 @@ #include +#include #include #include #include #include +#include int main ( int argc, char* argv[] ) diff --git a/samples/qt/Interface/src/Application.cxx b/samples/qt/Interface/src/Application.cxx index ec3cdca222..c99739cebd 100755 --- a/samples/qt/Interface/src/Application.cxx +++ b/samples/qt/Interface/src/Application.cxx @@ -2,12 +2,15 @@ #include "Translate.h" +#include #include -#include #include +#include #include +#include + ApplicationWindow::ApplicationWindow() : ApplicationCommonWindow( ), myImportPopup( 0 ), @@ -200,13 +203,13 @@ void ApplicationWindow::onSelectionChanged() QMdiArea* ws = getWorkspace(); DocumentCommon* doc = qobject_cast( ws->activeSubWindow()->widget() )->getDocument(); Handle(AIS_InteractiveContext) context = doc->getContext(); - int numSel = context->NbSelected(); + bool anEnabled = (context->NbSelected() > 0); - myCasCadeTranslateActions.at( FileExportBREPId )->setEnabled( numSel ); - myCasCadeTranslateActions.at( FileExportIGESId )->setEnabled( numSel ); - myCasCadeTranslateActions.at( FileExportSTEPId )->setEnabled( numSel ); - myCasCadeTranslateActions.at( FileExportSTLId )->setEnabled( numSel ); - myCasCadeTranslateActions.at( FileExportVRMLId )->setEnabled( numSel ); + myCasCadeTranslateActions.at( FileExportBREPId )->setEnabled( anEnabled ); + myCasCadeTranslateActions.at( FileExportIGESId )->setEnabled( anEnabled ); + myCasCadeTranslateActions.at( FileExportSTEPId )->setEnabled( anEnabled ); + myCasCadeTranslateActions.at( FileExportSTLId )->setEnabled( anEnabled ); + myCasCadeTranslateActions.at( FileExportVRMLId )->setEnabled( anEnabled ); } QString ApplicationWindow::getIEResourceDir() diff --git a/samples/qt/Interface/src/Translate.cxx b/samples/qt/Interface/src/Translate.cxx index 1b2bdb440b..13eec9b815 100755 --- a/samples/qt/Interface/src/Translate.cxx +++ b/samples/qt/Interface/src/Translate.cxx @@ -2,6 +2,7 @@ #include "Application.h" +#include #include #include #include @@ -12,6 +13,7 @@ #include #include #include +#include #include #include @@ -305,7 +307,7 @@ QString Translate::selectFileName( const int format, const bool import ) if ( idx != -1 ) { QString tail = selFilter.mid( idx + 3 ); - int idx = tail.indexOf( " " ); + idx = tail.indexOf( " " ); if ( idx == -1 ) idx = tail.indexOf( ")" ); QString ext = tail.left( idx ); diff --git a/samples/qt/Interface/src/Translate.h b/samples/qt/Interface/src/Translate.h index f7a9e19ea0..a19d5f9bf2 100755 --- a/samples/qt/Interface/src/Translate.h +++ b/samples/qt/Interface/src/Translate.h @@ -2,7 +2,9 @@ #define TRANSLATE_H #include "IESample.h" +#include #include +#include #include #include diff --git a/samples/qt/Tutorial/src/ApplicationTut.cxx b/samples/qt/Tutorial/src/ApplicationTut.cxx index 5be0008f5c..e2ea797705 100755 --- a/samples/qt/Tutorial/src/ApplicationTut.cxx +++ b/samples/qt/Tutorial/src/ApplicationTut.cxx @@ -3,9 +3,11 @@ #include +#include #include #include #include +#include ApplicationTut::ApplicationTut() : ApplicationCommonWindow( ) diff --git a/samples/qt/Tutorial/src/DocumentTut.cxx b/samples/qt/Tutorial/src/DocumentTut.cxx index df00e6222b..8a579a85b0 100755 --- a/samples/qt/Tutorial/src/DocumentTut.cxx +++ b/samples/qt/Tutorial/src/DocumentTut.cxx @@ -1,8 +1,10 @@ #include "DocumentTut.h" +#include #include #include #include +#include #include #include diff --git a/samples/qt/Tutorial/src/Main.cxx b/samples/qt/Tutorial/src/Main.cxx index 1603de271d..c9a08d8823 100755 --- a/samples/qt/Tutorial/src/Main.cxx +++ b/samples/qt/Tutorial/src/Main.cxx @@ -2,8 +2,10 @@ #include +#include #include #include +#include int main ( int argc, char* argv[] ) {