mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0032429: Coding - Warnings during compilation on macosx arm64 with option BUILD_Inspector:BOOL=ON - part 2
This commit is contained in:
parent
1f3c5058f2
commit
9e5e4c0c84
@ -85,7 +85,7 @@ protected:
|
|||||||
virtual TreeModel_ItemBasePtr createChild (int theRow, int theColumn) Standard_OVERRIDE;
|
virtual TreeModel_ItemBasePtr createChild (int theRow, int theColumn) Standard_OVERRIDE;
|
||||||
|
|
||||||
//! Initializes the current item. It creates a backup of the specific item information
|
//! Initializes the current item. It creates a backup of the specific item information
|
||||||
virtual void initItem() const {}
|
virtual void initItem() const Standard_OVERRIDE {}
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
|
@ -35,8 +35,7 @@
|
|||||||
#include <QWidget>
|
#include <QWidget>
|
||||||
#include <Standard_WarningsRestore.hxx>
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
const int DEFAULT_COLUMN_WIDTH = 500;
|
static const int DEFAULT_ICON_SIZE = 40;
|
||||||
const int DEFAULT_ICON_SIZE = 40;
|
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : Constructor
|
// function : Constructor
|
||||||
|
@ -104,7 +104,7 @@ public:
|
|||||||
//! Returns flags for the item: ItemIsEnabled | Qt::ItemIsSelectable
|
//! Returns flags for the item: ItemIsEnabled | Qt::ItemIsSelectable
|
||||||
//! \param theIndex a model index
|
//! \param theIndex a model index
|
||||||
//! \return flags
|
//! \return flags
|
||||||
Qt::ItemFlags flags (const QModelIndex& theIndex) const
|
virtual Qt::ItemFlags flags (const QModelIndex& theIndex) const Standard_OVERRIDE
|
||||||
{ return theIndex.isValid() ? Qt::ItemIsEnabled | Qt::ItemIsSelectable : Qt::NoItemFlags; }
|
{ return theIndex.isValid() ? Qt::ItemIsEnabled | Qt::ItemIsSelectable : Qt::NoItemFlags; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
@ -97,7 +97,7 @@ protected:
|
|||||||
: TreeModel_ItemBase (theParent, theRow, theColumn), myIsCurrentItem (false) {}
|
: TreeModel_ItemBase (theParent, theRow, theColumn), myIsCurrentItem (false) {}
|
||||||
|
|
||||||
//! Initializes the current item. It creates a backup of the specific item information
|
//! Initializes the current item. It creates a backup of the specific item information
|
||||||
void initItem() const;
|
virtual void initItem() const Standard_OVERRIDE;
|
||||||
|
|
||||||
//! Returns number of children attributes, initializes item is necessary
|
//! Returns number of children attributes, initializes item is necessary
|
||||||
int getRowCount() const;
|
int getRowCount() const;
|
||||||
|
@ -49,11 +49,7 @@
|
|||||||
#include <QWidget>
|
#include <QWidget>
|
||||||
#include <Standard_WarningsRestore.hxx>
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
const int COLUMN_EXPORT_WIDTH = 20;
|
static const int COLUMN_EXPORT_WIDTH = 20;
|
||||||
const int COLUMN_TYPE_WIDTH = 70;
|
|
||||||
const int COLUMN_POINTER_WIDTH = 110;
|
|
||||||
const int COLUMN_REFERENCE_WIDTH = 90;
|
|
||||||
const int COLUMN_EVOLUTION_WIDTH = 90;
|
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : Constructor
|
// function : Constructor
|
||||||
|
@ -51,7 +51,7 @@ public:
|
|||||||
|
|
||||||
//! Initializes the content of the pane by the parameter attribute
|
//! Initializes the content of the pane by the parameter attribute
|
||||||
//! \param theAttribute an OCAF attribute
|
//! \param theAttribute an OCAF attribute
|
||||||
Standard_EXPORT void Init (const Handle(TDF_Attribute)& theAttribute);
|
Standard_EXPORT virtual void Init (const Handle(TDF_Attribute)& theAttribute) Standard_OVERRIDE;
|
||||||
|
|
||||||
//! Returns information for the given attribute
|
//! Returns information for the given attribute
|
||||||
//! \param theAttribute a current attribute
|
//! \param theAttribute a current attribute
|
||||||
|
@ -58,7 +58,7 @@ public:
|
|||||||
protected:
|
protected:
|
||||||
//! Defines widths of table columns
|
//! Defines widths of table columns
|
||||||
//! \return container of widths
|
//! \return container of widths
|
||||||
Standard_EXPORT virtual QMap<int, int> getTableColumnWidths() const;
|
Standard_EXPORT virtual QMap<int, int> getTableColumnWidths() const Standard_OVERRIDE;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -27,8 +27,6 @@
|
|||||||
#include <QWidget>
|
#include <QWidget>
|
||||||
#include <Standard_WarningsRestore.hxx>
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
static const int DEFAULT_ROW_HEIGHT = 30;
|
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : Constructor
|
// function : Constructor
|
||||||
// purpose :
|
// purpose :
|
||||||
|
@ -55,7 +55,7 @@ protected:
|
|||||||
//! Returns data value for the role.
|
//! Returns data value for the role.
|
||||||
//! \param theItemRole a value role
|
//! \param theItemRole a value role
|
||||||
//! \return the value
|
//! \return the value
|
||||||
virtual QVariant initValue(const int theItemRole) const;
|
virtual QVariant initValue(const int theItemRole) const Standard_OVERRIDE;
|
||||||
|
|
||||||
//! \return number of children.
|
//! \return number of children.
|
||||||
virtual int initRowCount() const Standard_OVERRIDE { return myShapes.Size(); }
|
virtual int initRowCount() const Standard_OVERRIDE { return myShapes.Size(); }
|
||||||
|
@ -82,7 +82,7 @@ public:
|
|||||||
//! Returns data value for the role.
|
//! Returns data value for the role.
|
||||||
//! \param theRole a value role
|
//! \param theRole a value role
|
||||||
//! \return the value
|
//! \return the value
|
||||||
Standard_EXPORT virtual QVariant initValue(const int theRole) const;
|
Standard_EXPORT virtual QVariant initValue(const int theRole) const Standard_OVERRIDE;
|
||||||
|
|
||||||
//! \return number of children.
|
//! \return number of children.
|
||||||
Standard_EXPORT virtual int initRowCount() const Standard_OVERRIDE;
|
Standard_EXPORT virtual int initRowCount() const Standard_OVERRIDE;
|
||||||
|
@ -37,14 +37,13 @@
|
|||||||
#include <QToolButton>
|
#include <QToolButton>
|
||||||
#include <Standard_WarningsRestore.hxx>
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
const int FONT_POINT_SIZE = 18;
|
static const int ICON_SIZE = 40;
|
||||||
const int ICON_SIZE = 40;
|
|
||||||
|
|
||||||
const int OPEN_DIALOG_WIDTH = 550;
|
static const int OPEN_DIALOG_WIDTH = 550;
|
||||||
const int OPEN_DIALOG_HEIGHT = 200;
|
static const int OPEN_DIALOG_HEIGHT = 200;
|
||||||
|
|
||||||
const int MARGIN_DIALOG = 4;
|
static const int MARGIN_DIALOG = 4;
|
||||||
const int SPACING_DIALOG = 2;
|
static const int SPACING_DIALOG = 2;
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : StartButton
|
// function : StartButton
|
||||||
|
@ -62,22 +62,16 @@
|
|||||||
#include <QVBoxLayout>
|
#include <QVBoxLayout>
|
||||||
#include <Standard_WarningsRestore.hxx>
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
const int DEFAULT_TEXT_VIEW_WIDTH = 800;
|
static const int DEFAULT_SHAPE_VIEW_WIDTH = 900;
|
||||||
const int DEFAULT_TEXT_VIEW_HEIGHT = 700;
|
static const int DEFAULT_SHAPE_VIEW_HEIGHT = 450;
|
||||||
const int DEFAULT_TEXT_VIEW_POSITION_X = 430;
|
static const int DEFAULT_SHAPE_VIEW_POSITION_X = 60;
|
||||||
const int DEFAULT_TEXT_VIEW_POSITION_Y = 30;
|
static const int DEFAULT_SHAPE_VIEW_POSITION_Y = 60;
|
||||||
const int DEFAULT_TEXT_VIEW_DELTA = 100;
|
|
||||||
|
|
||||||
const int DEFAULT_SHAPE_VIEW_WIDTH = 900;
|
static const int SHAPEVIEW_DEFAULT_TREE_VIEW_WIDTH = 600;
|
||||||
const int DEFAULT_SHAPE_VIEW_HEIGHT = 450;
|
static const int SHAPEVIEW_DEFAULT_TREE_VIEW_HEIGHT = 500;
|
||||||
const int DEFAULT_SHAPE_VIEW_POSITION_X = 60;
|
|
||||||
const int DEFAULT_SHAPE_VIEW_POSITION_Y = 60;
|
|
||||||
|
|
||||||
const int SHAPEVIEW_DEFAULT_TREE_VIEW_WIDTH = 600;
|
static const int SHAPEVIEW_DEFAULT_VIEW_WIDTH = 300;
|
||||||
const int SHAPEVIEW_DEFAULT_TREE_VIEW_HEIGHT = 500;
|
static const int SHAPEVIEW_DEFAULT_VIEW_HEIGHT = 1000;
|
||||||
|
|
||||||
const int SHAPEVIEW_DEFAULT_VIEW_WIDTH = 300;
|
|
||||||
const int SHAPEVIEW_DEFAULT_VIEW_HEIGHT = 1000;
|
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : Constructor
|
// function : Constructor
|
||||||
|
@ -40,16 +40,15 @@
|
|||||||
#include <QWidget>
|
#include <QWidget>
|
||||||
#include <Standard_WarningsRestore.hxx>
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
const int FONT_POINT_SIZE = 18;
|
static const int ICON_SIZE = 40;
|
||||||
const int ICON_SIZE = 40;
|
|
||||||
|
|
||||||
const int OPEN_DIALOG_WIDTH = 550;
|
static const int OPEN_DIALOG_WIDTH = 550;
|
||||||
const int OPEN_DIALOG_HEIGHT = 200;
|
static const int OPEN_DIALOG_HEIGHT = 200;
|
||||||
|
|
||||||
const int MARGIN_DIALOG = 4;
|
static const int MARGIN_DIALOG = 4;
|
||||||
const int SPACING_DIALOG = 2;
|
static const int SPACING_DIALOG = 2;
|
||||||
|
|
||||||
const int RECENT_FILES_CACHE_SIZE = 10;
|
static const int RECENT_FILES_CACHE_SIZE = 10;
|
||||||
|
|
||||||
TInspector_Communicator* MyCommunicator;
|
TInspector_Communicator* MyCommunicator;
|
||||||
|
|
||||||
|
@ -79,7 +79,9 @@ void TInspector_Preferences::StorePreferences()
|
|||||||
QTextStream aTextStream (&aFile);
|
QTextStream aTextStream (&aFile);
|
||||||
QStringList aDocumentStr = aDomDocument.toString().split ("\n");
|
QStringList aDocumentStr = aDomDocument.toString().split ("\n");
|
||||||
for (QStringList::ConstIterator aContentIt = aDocumentStr.begin(); aContentIt != aDocumentStr.end(); ++aContentIt)
|
for (QStringList::ConstIterator aContentIt = aDocumentStr.begin(); aContentIt != aDocumentStr.end(); ++aContentIt)
|
||||||
aTextStream << *aContentIt << endl;
|
{
|
||||||
|
aTextStream << *aContentIt << '\n';
|
||||||
|
}
|
||||||
aFile.close();
|
aFile.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -69,7 +69,7 @@ public:
|
|||||||
protected:
|
protected:
|
||||||
//! Returns stream value of the item to fulfill property panel.
|
//! Returns stream value of the item to fulfill property panel.
|
||||||
//! \return stream value or dummy
|
//! \return stream value or dummy
|
||||||
Standard_EXPORT virtual void initStream (Standard_OStream& theOStream) const;
|
Standard_EXPORT virtual void initStream (Standard_OStream& theOStream) const Standard_OVERRIDE;
|
||||||
|
|
||||||
//! Initializes the current item. It creates a backup of the specific item information
|
//! Initializes the current item. It creates a backup of the specific item information
|
||||||
//! Does nothing as context has been already set into item
|
//! Does nothing as context has been already set into item
|
||||||
|
@ -162,7 +162,9 @@ QModelIndex TreeModel_ModelBase::parent (const QModelIndex& theIndex) const
|
|||||||
Qt::ItemFlags TreeModel_ModelBase::flags (const QModelIndex& theIndex) const
|
Qt::ItemFlags TreeModel_ModelBase::flags (const QModelIndex& theIndex) const
|
||||||
{
|
{
|
||||||
if (!theIndex.isValid())
|
if (!theIndex.isValid())
|
||||||
return 0;
|
{
|
||||||
|
return Qt::ItemFlags();
|
||||||
|
}
|
||||||
return Qt::ItemIsEnabled | Qt::ItemIsSelectable;
|
return Qt::ItemIsEnabled | Qt::ItemIsSelectable;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -105,7 +105,7 @@ public:
|
|||||||
//! \param theColumn a model index column
|
//! \param theColumn a model index column
|
||||||
//! \param theRole a view role
|
//! \param theRole a view role
|
||||||
//! \return true if the value is changed
|
//! \return true if the value is changed
|
||||||
virtual bool SetData (const int theRow, const int theColumn, const QVariant& theValue, int)
|
virtual bool SetData (const int theRow, const int theColumn, const QVariant& theValue, int) Standard_OVERRIDE
|
||||||
{
|
{
|
||||||
if (theColumn != 1 || theRow < 2 || theRow > 5)
|
if (theColumn != 1 || theRow < 2 || theRow > 5)
|
||||||
return false;
|
return false;
|
||||||
@ -138,7 +138,7 @@ public:
|
|||||||
|
|
||||||
//! Returns editable flag for color RGB and alpha rows
|
//! Returns editable flag for color RGB and alpha rows
|
||||||
//! \return flags
|
//! \return flags
|
||||||
Qt::ItemFlags Flags (const QModelIndex& theIndex) const
|
virtual Qt::ItemFlags Flags (const QModelIndex& theIndex) const Standard_OVERRIDE
|
||||||
{
|
{
|
||||||
Qt::ItemFlags aFlags = ViewControl_TableModelValues::Flags (theIndex);
|
Qt::ItemFlags aFlags = ViewControl_TableModelValues::Flags (theIndex);
|
||||||
|
|
||||||
|
@ -90,7 +90,7 @@ public:
|
|||||||
//! Returns flags for the item: ItemIsEnabled | Qt::ItemIsSelectable
|
//! Returns flags for the item: ItemIsEnabled | Qt::ItemIsSelectable
|
||||||
//! \param theIndex a model index
|
//! \param theIndex a model index
|
||||||
//! \return flags
|
//! \return flags
|
||||||
Qt::ItemFlags flags (const QModelIndex& theIndex) const
|
virtual Qt::ItemFlags flags (const QModelIndex& theIndex) const Standard_OVERRIDE
|
||||||
{ return myModelValues ? myModelValues->Flags (theIndex) : Qt::NoItemFlags; }
|
{ return myModelValues ? myModelValues->Flags (theIndex) : Qt::NoItemFlags; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user