1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0029310: Coding - multiple compiler warnings in Inspectors

1. Added specific header files to disable and restore compiler warnings: Standard_WarningsDisable.hxx, Standard_WarningsRestore.hxx.
   (Currently only MSVC compiler is handled.)
2. Inspector: compiler warnings are disabled for all includes of Qt headers.
3. Inspector: minor code correction to avoid warning due to use of floating point values in integer calculations.
This commit is contained in:
nds 2018-03-04 19:10:56 +03:00 committed by bugmaster
parent 50c4757387
commit 130eb11405
159 changed files with 396 additions and 123 deletions

View File

@ -95,3 +95,5 @@ Standard_Underflow.hxx
Standard_UUID.hxx
Standard_values.h
Standard_Version.hxx
Standard_WarningsDisable.hxx
Standard_WarningsRestore.hxx

View File

@ -0,0 +1,30 @@
// Copyright (c) 2018 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
//!@file Supresses compiler warnings.
//!
//! Standard_WarningsDisable.hxx disables all compiler warnings.
//! Standard_WarningsRestore.hxx restore the previous state of warnings.
//!
//! Use these headers to wrap include directive containing external (non-OCCT)
//! header files to avoid compiler warnings to be generated for these files.
//! They should always be used in pair:
//!
//! #include <Standard_WarningsDisable.hxx>
//! #include <dirty_header.h> // some header that can generate warnings
//! #include <Standard_WarningsRestore.hxx>
#ifdef _MSC_VER
#pragma warning(push, 0)
#endif

View File

@ -0,0 +1,30 @@
// Copyright (c) 2018 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
//!@file Restores compiler warnings suppressed by inclusion of Standard_WarningsDisable.hxx.
//!
//! Standard_WarningsDisable.hxx disables all compiler warnings.
//! Standard_WarningsRestore.hxx restore the previous state of warnings.
//!
//! Use these headers to wrap include directive containing external (non-OCCT)
//! header files to avoid compiler warnings to be generated for these files.
//! They should always be used in pair:
//!
//! #include <Standard_WarningsDisable.hxx>
//! #include <dirty_header.h> // some header that can generate warnings
//! #include <Standard_WarningsRestore.hxx>
#ifdef _MSC_VER
#pragma warning(pop)
#endif

View File

@ -27,9 +27,11 @@
#include <TDF_Attribute.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QItemSelectionModel>
#include <QMap>
#include <QStackedWidget>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : Constructor

View File

@ -21,10 +21,12 @@
#include <Standard.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QMap>
#include <QItemSelection>
#include <QStackedWidget>
#include <QWidget>
#include <Standard_WarningsRestore.hxx>
class DFBrowserPane_AttributePaneAPI;
class DFBrowserPane_AttributePaneSelector;

View File

@ -22,7 +22,9 @@
#include <Standard.hxx>
#include <Standard_Macro.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QObject>
#include <Standard_WarningsRestore.hxx>
class DFBrowser_Window;

View File

@ -21,12 +21,14 @@
#include <OSD_OpenFile.hxx>
#include <inspector/TreeModel_ModelBase.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QAbstractItemModel>
#include <QDir>
#include <QFile>
#include <QPlainTextEdit>
#include <QTextStream>
#include <QWidget>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : onSelectionChanged

View File

@ -19,12 +19,11 @@
#include <Standard.hxx>
#include <Standard_Macro.hxx>
#ifdef _MSC_VER
#pragma warning(disable : 4127) // conditional expression is constant
#endif
#include <Standard_WarningsDisable.hxx>
#include <QObject>
#include <QItemSelection>
#include <QPlainTextEdit>
#include <Standard_WarningsRestore.hxx>
class QWidget;

View File

@ -14,9 +14,11 @@
// commercial license or contractual agreement.
#include <inspector/DFBrowser_HighlightDelegate.hxx>
#include <inspector/DFBrowserPane_Tools.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QPainter>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : paint

View File

@ -19,10 +19,9 @@
#include <Standard.hxx>
#include <Standard_Macro.hxx>
#ifdef _MSC_VER
#pragma warning(disable : 4127) // conditional expression is constant
#endif
#include <Standard_WarningsDisable.hxx>
#include <QItemDelegate>
#include <Standard_WarningsRestore.hxx>
//! \class DFBrowser_HighlightDelegate
//! \brief An item delegate to paint in highlight color the cell when the mouse cursor is over it

View File

@ -26,8 +26,10 @@
#include <TDF_AttributeIterator.hxx>
#include <TDF_ChildIterator.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QIcon>
#include <QObject>
#include <Standard_WarningsRestore.hxx>
const int INFO_LENGHT = 60;

View File

@ -22,9 +22,11 @@
#include <Standard.hxx>
#include <Standard_GUID.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QMap>
#include <QList>
#include <QVariant>
#include <Standard_WarningsRestore.hxx>
class DFBrowser_Item;
typedef QExplicitlySharedDataPointer<DFBrowser_Item> DFBrowser_ItemPtr;

View File

@ -23,7 +23,9 @@
#include <inspector/DFBrowserPane_AttributePane.hxx>
#include <inspector/DFBrowserPane_ItemRole.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QObject>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : createChild

View File

@ -26,9 +26,11 @@
#include <TDataStd_Name.hxx>
#include <TDF_ChildIterator.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QColor>
#include <QIcon>
#include <QVariant>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : Constructor

View File

@ -23,9 +23,11 @@
#include <inspector/DFBrowserPane_AttributePane.hxx>
#include <inspector/DFBrowserPane_ItemRole.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QIcon>
#include <QLabel>
#include <QObject>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : GetLabel

View File

@ -18,7 +18,9 @@
#include <inspector/DFBrowserPane_ItemRole.hxx>
#include <Standard_WarningsDisable.hxx>
#include <Qt>
#include <Standard_WarningsRestore.hxx>
//! Additional data item role for DFBrowser tree item
enum DFBrowser_ItemRole

View File

@ -32,8 +32,10 @@
#include <XCAFApp_Application.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QItemSelectionModel>
#include <QMessageBox>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : Constructor

View File

@ -27,7 +27,9 @@
#include <TDocStd_Application.hxx>
#include <TopoDS_Shape.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QObject>
#include <Standard_WarningsRestore.hxx>
class DFBrowserPane_AttributePaneAPI;
class DFBrowserPane_AttributePaneCreatorAPI;

View File

@ -21,10 +21,12 @@
#include <inspector/DFBrowser_Window.hxx>
#include <inspector/DFBrowser_TreeLevelView.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QAbstractItemModel>
#include <QGridLayout>
#include <QItemSelectionModel>
#include <QWidget>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : Constructor

View File

@ -20,8 +20,10 @@
#include <Standard.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QItemSelection>
#include <QObject>
#include <Standard_WarningsRestore.hxx>
class DFBrowser_AttributePaneStack;

View File

@ -16,12 +16,11 @@
#ifndef DFBrowser_SearchItemInfo_H
#define DFBrowser_SearchItemInfo_H
#ifdef _MSC_VER
#pragma warning(disable : 4127) // conditional expression is constant
#endif
#include <Standard_WarningsDisable.hxx>
#include <QVariant>
#include <QStringList>
#include <QString>
#include <Standard_WarningsRestore.hxx>
//! \class DFBrowser_SearchItemInfo
//! Information of item in search model

View File

@ -25,6 +25,7 @@
#include <TDF_AttributeIterator.hxx>
#include <TDF_ChildIterator.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QStringList>
#include <QWidget>
#include <QHBoxLayout>
@ -35,6 +36,7 @@
#include <QPaintEvent>
#include <QPainter>
#include <QStyle>
#include <Standard_WarningsRestore.hxx>
//! class DFBrowser_LineEdit
//! Extension of Qt line edit to visualize help text until the line edit control has not been filled yet

View File

@ -22,9 +22,11 @@
#include <TDocStd_Application.hxx>
#include <TDF_Label.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QCompleter>
#include <QFrame>
#include <QLineEdit>
#include <Standard_WarningsRestore.hxx>
class DFBrowser_Module;
class DFBrowser_SearchLineModel;

View File

@ -22,8 +22,10 @@
#include <inspector/DFBrowserPane_ItemRole.hxx>
#include <inspector/DFBrowserPane_Tools.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QDir>
#include <QIcon>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : Constructor

View File

@ -23,13 +23,12 @@
#include <TDF_Attribute.hxx>
#include <TDF_Label.hxx>
#ifdef _MSC_VER
#pragma warning(disable : 4127) // conditional expression is constant
#endif
#include <Standard_WarningsDisable.hxx>
#include <QAbstractTableModel>
#include <QMap>
#include <QStringList>
#include <QVariant>
#include <Standard_WarningsRestore.hxx>
class QObject;
class DFBrowser_Module;

View File

@ -22,11 +22,13 @@
#include <inspector/DFBrowserPane_Tools.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QAbstractProxyModel>
#include <QGridLayout>
#include <QHeaderView>
#include <QTableView>
#include <QWidget>
#include <Standard_WarningsRestore.hxx>
const int DEFAULT_COLUMN_WIDTH = 500;
const int DEFAULT_ICON_SIZE = 40;

View File

@ -21,8 +21,10 @@
#include <Standard.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QItemSelection>
#include <QObject>
#include <Standard_WarningsRestore.hxx>
class DFBrowser_SearchLine;
class QTableView;

View File

@ -17,8 +17,10 @@
#include <inspector/DFBrowser_Module.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QApplication>
#include <QKeyEvent>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : Constructor

View File

@ -19,10 +19,9 @@
#include <Standard.hxx>
#include <Standard_Macro.hxx>
#ifdef _MSC_VER
#pragma warning(disable : 4127) // conditional expression is constant
#endif
#include <Standard_WarningsDisable.hxx>
#include <QObject>
#include <Standard_WarningsRestore.hxx>
class DFBrowser_Module;
class QEvent;

View File

@ -21,7 +21,9 @@
#include <inspector/DFBrowser_Window.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QThread>
#include <Standard_WarningsRestore.hxx>
//! \class DFBrowser_QThread
//! Internal class to cover QThread in order to process ThreadItem.

View File

@ -18,11 +18,10 @@
#include <Standard.hxx>
#ifdef _MSC_VER
#pragma warning(disable : 4127) // conditional expression is constant
#endif
#include <Standard_WarningsDisable.hxx>
#include <QList>
#include <QObject>
#include <Standard_WarningsRestore.hxx>
class DFBrowser_Module;
class DFBrowser_ThreadItem;

View File

@ -27,7 +27,9 @@
#include <TDF_AttributeIterator.hxx>
#include <TDF_ChildIterator.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QDir>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : Run

View File

@ -22,9 +22,11 @@
#include <Standard.hxx>
#include <TDF_Label.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QAbstractItemModel>
#include <QMap>
#include <QStringList>
#include <Standard_WarningsRestore.hxx>
class DFBrowser_Module;
class DFBrowser_SearchLine;

View File

@ -23,11 +23,10 @@
#include <TCollection_AsciiString.hxx>
#include <TDF_Attribute.hxx>
#ifdef _MSC_VER
#pragma warning(disable : 4127) // conditional expression is constant
#endif
#include <Standard_WarningsDisable.hxx>
#include <QStringList>
#include <QPair>
#include <Standard_WarningsRestore.hxx>
class DFBrowser_Module;

View File

@ -28,10 +28,12 @@
#include <TDataStd_Real.hxx>
#include <TDataStd_Name.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QColor>
#include <QDir>
#include <QPalette>
#include <QWidget>
#include <Standard_WarningsRestore.hxx>
namespace DFBrowser_Tools
{

View File

@ -25,6 +25,7 @@
#include <TDF_Attribute.hxx>
#include <TopoDS_Shape.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QAbstractItemModel>
#include <QColor>
#include <QMap>
@ -32,6 +33,7 @@
#include <QPixmap>
#include <QString>
#include <QIcon>
#include <Standard_WarningsRestore.hxx>
class DFBrowserPane_AttributePaneAPI;

View File

@ -22,6 +22,7 @@
#include <inspector/DFBrowserPane_Tools.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QAbstractItemModel>
#include <QFrame>
#include <QGridLayout>
@ -32,6 +33,7 @@
#include <QTableView>
#include <QToolButton>
#include <QWidget>
#include <Standard_WarningsRestore.hxx>
const int HISTORY_SIZE = 10;
const int MARGIN_SIZE = 2;

View File

@ -20,10 +20,12 @@
#include <Standard.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QItemSelection>
#include <QObject>
#include <QMap>
#include <QModelIndex>
#include <Standard_WarningsRestore.hxx>
class DFBrowser_SearchLine;

View File

@ -16,7 +16,9 @@
#include <inspector/DFBrowser_TreeLevelLineDelegate.hxx>
#include <inspector/DFBrowserPane_Tools.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QPainter>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : Constructor

View File

@ -19,10 +19,9 @@
#include <Standard.hxx>
#include <Standard_Macro.hxx>
#ifdef _MSC_VER
#pragma warning(disable : 4127) // conditional expression is constant
#endif
#include <Standard_WarningsDisable.hxx>
#include <QItemDelegate>
#include <Standard_WarningsRestore.hxx>
//! \class DFBrowser_TreeLevelLineDelegate
//! Extending standard item delegate by:

View File

@ -18,8 +18,10 @@
#include <inspector/DFBrowser_ItemBase.hxx>
#include <inspector/TreeModel_ModelBase.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QIcon>
#include <QWidget>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : Init

View File

@ -20,9 +20,11 @@
#include <Standard.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QAbstractTableModel>
#include <QObject>
#include <QList>
#include <Standard_WarningsRestore.hxx>
//! \class DFBrowser_TreeLevelLineModel
//! Tree Model of tree line items. It is initialized by OCAF tree model index. Each element of the current model

View File

@ -21,12 +21,13 @@
#include <inspector/DFBrowserPane_Tools.hxx>
#include <inspector/TreeModel_ModelBase.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QItemSelectionModel>
#include <QGridLayout>
#include <QHeaderView>
#include <QTableView>
#include <QWidget>
#include <Standard_WarningsRestore.hxx>
const int LABEL_OR_ATTRIBUTECOLUMN_WIDTH = 160;

View File

@ -20,8 +20,10 @@
#include <Standard.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QObject>
#include <QItemSelection>
#include <Standard_WarningsRestore.hxx>
class QWidget;
class QTableView;

View File

@ -26,10 +26,12 @@
#include <TDF_Label.hxx>
#include <inspector/TreeModel_ModelBase.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QApplication>
#include <QColor>
#include <QFont>
#include <QIcon>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : Init

View File

@ -19,11 +19,10 @@
#include <Standard.hxx>
#include <Standard_Macro.hxx>
#ifdef _MSC_VER
#pragma warning(disable : 4127) // conditional expression is constant
#endif
#include <Standard_WarningsDisable.hxx>
#include <QAbstractTableModel>
#include <QVariant>
#include <Standard_WarningsRestore.hxx>
class QObject;

View File

@ -28,7 +28,9 @@
#include <TNaming_Builder.hxx>
#include <TNaming_NamedShape.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QAbstractItemModel>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : Constructor

View File

@ -24,9 +24,11 @@
#include <TDF_Label.hxx>
#include <TDocStd_Application.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QByteArray>
#include <QHash>
#include <QObject>
#include <Standard_WarningsRestore.hxx>
class DFBrowser_Module;
class DFBrowser_TreeModel;

View File

@ -19,10 +19,9 @@
#include <Standard.hxx>
#include <Standard_Macro.hxx>
#ifdef _MSC_VER
#pragma warning(disable : 4127) // conditional expression is constant
#endif
#include <Standard_WarningsDisable.hxx>
#include <QTreeView>
#include <Standard_WarningsRestore.hxx>
//! \class DFBrowser_TreeView
//! Extended tree view control with possibility to set predefined size.

View File

@ -60,6 +60,7 @@
#include <TDF_Tool.hxx>
#include <inspector/TreeModel_MessageDialog.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QAction>
#include <QApplication>
#include <QComboBox>
@ -81,6 +82,7 @@
#else
#include <QStyleFactory>
#endif
#include <Standard_WarningsRestore.hxx>
const int DFBROWSER_DEFAULT_WIDTH = 650;
const int DFBROWSER_DEFAULT_HEIGHT = 350;

View File

@ -25,13 +25,12 @@
#include <TCollection_AsciiString.hxx>
#include <TDF_Label.hxx>
#ifdef _MSC_VER
#pragma warning(disable : 4127) // conditional expression is constant
#endif
#include <Standard_WarningsDisable.hxx>
#include <QObject>
#include <QItemSelection>
#include <QMainWindow>
#include <QModelIndexList>
#include <Standard_WarningsRestore.hxx>
class DFBrowser_DumpView;
class DFBrowser_Module;

View File

@ -21,11 +21,13 @@
#include <AIS_InteractiveObject.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QGridLayout>
#include <QHeaderView>
#include <QItemSelectionModel>
#include <QTableView>
#include <QWidget>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : Constructor

View File

@ -22,11 +22,10 @@
#include <TDF_Label.hxx>
#include <Standard.hxx>
#ifdef _MSC_VER
#pragma warning(disable : 4127) // conditional expression is constant
#endif
#include <Standard_WarningsDisable.hxx>
#include <QList>
#include <QVariant>
#include <Standard_WarningsRestore.hxx>
class DFBrowserPane_AttributePaneModel;
class DFBrowserPane_TableView;

View File

@ -15,9 +15,11 @@
#include <inspector/DFBrowserPane_AttributePaneModel.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QApplication>
#include <QFont>
#include <QColor>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : Constructor

View File

@ -19,12 +19,11 @@
#include <Standard.hxx>
#include <TDocStd_Document.hxx>
#ifdef _MSC_VER
#pragma warning(disable : 4127) // conditional expression is constant
#endif
#include <Standard_WarningsDisable.hxx>
#include <QAbstractTableModel>
#include <QList>
#include <QVariant>
#include <Standard_WarningsRestore.hxx>
//! \class DFBrowserPane_AttributePaneModel
//! \brief This is an extension of table model to visualize a container of values

View File

@ -18,12 +18,11 @@
#include <Standard.hxx>
#ifdef _MSC_VER
#pragma warning(disable : 4127) // conditional expression is constant
#endif
#include <Standard_WarningsDisable.hxx>
#include <QObject>
#include <QItemSelection>
#include <Standard_WarningsRestore.hxx>
#include <list>
class QItemSelectionModel;

View File

@ -18,12 +18,14 @@
#include <inspector/DFBrowserPane_AttributePaneModel.hxx>
#include <qheaderview.h>
#include <Standard_WarningsDisable.hxx>
#include <QHeaderView>
#include <QGridLayout>
#include <QList>
#include <QTableView>
#include <QVariant>
#include <QWidget>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : Constructor

View File

@ -24,11 +24,10 @@ class DFBrowserPane_TableView;
class QWidget;
#ifdef _MSC_VER
#pragma warning(disable : 4127) // conditional expression is constant
#endif
#include <Standard_WarningsDisable.hxx>
#include <QList>
#include <QVariant>
#include <Standard_WarningsRestore.hxx>
//! \class DFBrowserPane_HelperArray
//! \brief Class that is used for list and array attributes. Two tables, the first for bounds, the second for values.

View File

@ -18,8 +18,10 @@
#include <BRepTools.hxx>
#include <TCollection_AsciiString.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QApplication>
#include <QFileDialog>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : AddShape

View File

@ -19,11 +19,10 @@
#include <inspector/DFBrowserPane.hxx>
#include <TopoDS_Shape.hxx>
#ifdef _MSC_VER
#pragma warning(disable : 4127) // conditional expression is constant
#endif
#include <Standard_WarningsDisable.hxx>
#include <QObject>
#include <QModelIndex>
#include <Standard_WarningsRestore.hxx>
//! \class DFBrowserPane_HelperExport
//! \brief It performs export to BREP of a shape by button is pressed
@ -65,7 +64,13 @@ public slots:
void OnButtonPressed (const QModelIndex& theIndex);
private:
#ifdef _MSC_VER
#pragma warning(push, 0) // 4251: class 'QMap<QModelIndex,TopoDS_Shape>' needs to have dll-interface...
#endif
QMap<QModelIndex, TopoDS_Shape> myShapes; //!< a container of shapes
#ifdef _MSC_VER
#pragma warning(pop)
#endif
};
#endif

View File

@ -15,9 +15,11 @@
#include <inspector/DFBrowserPane_ItemDelegateButton.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QAbstractItemModel>
#include <QEvent>
#include <QPainter>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : Constructor

View File

@ -19,14 +19,13 @@
#include <Standard.hxx>
#include <Standard_Macro.hxx>
#ifdef _MSC_VER
#pragma warning(disable : 4127) // conditional expression is constant
#endif
#include <Standard_WarningsDisable.hxx>
#include <QStyledItemDelegate>
#include <QStyleOptionViewItem>
#include <QModelIndex>
#include <QString>
#include <QIcon>
#include <Standard_WarningsRestore.hxx>
class QObject;
class QPainter;

View File

@ -20,8 +20,11 @@
#include <TDF_Reference.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QVariant>
#include <QTableView>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : GetValues
// purpose :

View File

@ -17,8 +17,10 @@
#include <TDF_TagSource.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QVariant>
#include <QWidget>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : GetValues

View File

@ -17,8 +17,10 @@
#include <TDataStd_AsciiString.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QVariant>
#include <QIcon>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : GetValues

View File

@ -20,13 +20,11 @@
#include <TDataStd_BooleanArray.hxx>
#ifdef _MSC_VER
#pragma warning(disable : 4127) // conditional expression is constant
#endif
#include <Standard_WarningsDisable.hxx>
#include <QGridLayout>
#include <QVariant>
#include <QWidget>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : CreateWidget

View File

@ -18,11 +18,10 @@
#include <TDataStd_BooleanList.hxx>
#include <TDataStd_ListIteratorOfListOfByte.hxx>
#ifdef _MSC_VER
#pragma warning(disable : 4127) // conditional expression is constant
#endif
#include <Standard_WarningsDisable.hxx>
#include <QVariant>
#include <QWidget>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : GetValues

View File

@ -20,8 +20,10 @@
#include <TDataStd_ByteArray.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QVariant>
#include <QWidget>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : CreateWidget

View File

@ -18,8 +18,10 @@
#include <TDataStd_Comment.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QVariant>
#include <QWidget>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : GetValues

View File

@ -18,8 +18,10 @@
#include <TDataStd_Current.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QVariant>
#include <QWidget>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : GetValues

View File

@ -17,7 +17,9 @@
#include <TDataStd_Directory.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QVariant>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : GetValues

View File

@ -17,7 +17,10 @@
#include <inspector/DFBrowserPane_Tools.hxx>
#include <TDataStd_Expression.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QVariant>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : GetValues

View File

@ -21,8 +21,10 @@
#include <TDataStd_ExtStringArray.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QVariant>
#include <QWidget>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : CreateWidget

View File

@ -19,8 +19,10 @@
#include <TDataStd_ExtStringList.hxx>
#include <TDataStd_ListIteratorOfListOfExtendedString.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QVariant>
#include <QWidget>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : GetValues

View File

@ -18,8 +18,10 @@
#include <TDataStd_IntPackedMap.hxx>
#include <TColStd_MapIteratorOfPackedMapOfInteger.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QVariant>
#include <QWidget>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : GetValues

View File

@ -17,7 +17,9 @@
#include <TDataStd_Integer.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QVariant>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : GetValues

View File

@ -20,8 +20,10 @@
#include <TDataStd_IntegerArray.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QVariant>
#include <QWidget>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : CreateWidget

View File

@ -18,8 +18,10 @@
#include <TDataStd_IntegerList.hxx>
#include <TColStd_ListIteratorOfListOfInteger.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QVariant>
#include <QWidget>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : GetValues

View File

@ -18,7 +18,9 @@
#include <TDataStd_Name.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QVariant>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : GetValues

View File

@ -36,11 +36,13 @@
#include <TDataStd_HDataMapOfStringHArray1OfInteger.hxx>
#include <TDataStd_NamedData.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QTableView>
#include <QTabWidget>
#include <QVariant>
#include <QVBoxLayout>
#include <QWidget>
#include <Standard_WarningsRestore.hxx>
static const QString VALUES_INTEGER = "values_integer";
static const QString VALUES_REAL = "values_real";

View File

@ -17,7 +17,9 @@
#include <TDataStd_NoteBook.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QVariant>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : GetValues

View File

@ -17,7 +17,9 @@
#include <TDataStd_Real.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QVariant>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : GetValues

View File

@ -21,8 +21,10 @@
#include <TDataStd_RealArray.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QVariant>
#include <QWidget>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : CreateWidget

View File

@ -18,8 +18,10 @@
#include <TColStd_ListIteratorOfListOfReal.hxx>
#include <TDataStd_RealList.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QVariant>
#include <QWidget>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : GetValues

View File

@ -22,11 +22,13 @@
#include <TDataStd_ReferenceArray.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QGridLayout>
#include <QItemSelectionModel>
#include <QTableView>
#include <QVariant>
#include <QWidget>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : CreateWidget

View File

@ -21,8 +21,10 @@
#include <TDataStd_ReferenceList.hxx>
#include <TDF_ListIteratorOfLabelList.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QVariant>
#include <QWidget>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : GetValues

View File

@ -17,8 +17,10 @@
#include <TDataStd_Relation.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QVariant>
#include <QWidget>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : GetValues

View File

@ -17,8 +17,10 @@
#include <TDataStd_Tick.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QVariant>
#include <QWidget>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : GetValues

View File

@ -23,6 +23,7 @@
#include <TDataStd_TreeNode.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QHeaderView>
#include <QVariant>
#include <QTableView>
@ -30,6 +31,7 @@
#include <QVBoxLayout>
#include <QWidget>
#include <QItemSelectionModel>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : Constructor

View File

@ -27,8 +27,10 @@
#include <TDF_AttributeIterator.hxx>
#include <TDF_ChildIterator.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QIcon>
#include <QObject>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : Init

View File

@ -21,9 +21,11 @@
#include <Standard.hxx>
#include <TDF_Attribute.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QList>
#include <QMap>
#include <QVariant>
#include <Standard_WarningsRestore.hxx>
class DFBrowserPane_TDataStdTreeNodeItem;
typedef QExplicitlySharedDataPointer<DFBrowserPane_TDataStdTreeNodeItem> DFBrowserPane_TDataStdTreeNodeItemPtr;

View File

@ -18,7 +18,9 @@
#include <TDataStd_TreeNode.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QAbstractItemModel>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : Constructor

View File

@ -21,9 +21,11 @@
#include <Standard.hxx>
#include <TDF_Attribute.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QObject>
#include <QHash>
#include <QByteArray>
#include <Standard_WarningsRestore.hxx>
//! \class DFBrowserPane_TDataStdTreeNodeModel
//! \brief It builds a tree of items for the given tree node attribute.

View File

@ -18,7 +18,9 @@
#include <TDataStd_UAttribute.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QVariant>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : GetValues

View File

@ -17,7 +17,10 @@
#include <TDataStd_Variable.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QVariant>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : GetValues
// purpose :

View File

@ -17,7 +17,10 @@
#include <TDocStd_Modified.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QVariant>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : GetValues
// purpose :

View File

@ -25,12 +25,13 @@
#include <TDF_ListIteratorOfDeltaList.hxx>
#include <Standard_Version.hxx>
#include <QVariant>
#include <QWidget>
#include <Standard_WarningsDisable.hxx>
#include <QGridLayout>
#include <QGroupBox>
#include <QTableView>
#include <QVariant>
#include <QWidget>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : Constructor
@ -105,7 +106,7 @@ void DFBrowserPane_TDocStdOwner::GetValues (const Handle(TDF_Attribute)& theAttr
<< aSeparationStr.ToCString() << aSeparationStr.ToCString()
<< "IsSaved" << DFBrowserPane_Tools::BoolToStr (aDocument->IsSaved())
<< "IsChanged" << DFBrowserPane_Tools::BoolToStr (aDocument->IsChanged())
<< "GetSavedTime" << DFBrowserPane_Tools::BoolToStr (aDocument->GetSavedTime())
<< "GetSavedTime" << aDocument->GetSavedTime()
<< "GetName" << (aDocument->IsSaved() ? DFBrowserPane_Tools::ToString (aDocument->GetName()) : "")
<< "GetPath" << (aDocument->IsSaved() ? DFBrowserPane_Tools::ToString (aDocument->GetPath()) : "")
<< "GetData" << aDocumentDataInfo.ToCString()

View File

@ -17,7 +17,10 @@
#include <TDocStd_XLink.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QVariant>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : GetValues
// purpose :

View File

@ -17,7 +17,10 @@
#include <TDocStd_XLinkRoot.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QVariant>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : GetValues
// purpose :

View File

@ -18,7 +18,10 @@
#include <TFunction_Function.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QVariant>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : GetValues
// purpose :

Some files were not shown because too many files have changed in this diff Show More