mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
- append new MessageView plugin to display content of Message_Report; - correct DumpJson of TDataStd array attributes to print Lower/Upper values; - correct remove level of Message_Report to store stop time during removing all levels; - append DumpJson for TFunction, TPrsStd attributes; - correct DumpJson of XCAFDoc tools due to simplify performance of it; - move AttributeInfo functionality from XDEDRAW into a static public method of XCAFDoc to call it outside; - remove obsolete pane classes in DFBrowser plugin, now we may use DumpJSon panel to visualize this content of attributes; - add new property panel in DFBrowser (synchronized with the same in other plugins); - add button to switch ON DumpJson in DFBrowser(OFF by default, for better performance), also there is a context menu item in tree view; - rename in DFBrowser "Property Panel" into "Property Panel (custom)"; - implement ViewControl_ColorSeletor and setting color in TreeModel_ItemProperties. Use only for light in VInspector now; - implement setting false for all created AIS_Shape presentation to don't modify source TopoDS_Shape; - remove not use VInspector_CallBack. It's possible using Message_Report/MessageView to track commands way; - remove History panel in VInspector as not used, MessageView will be better solution for this; - implement item and actions in VInspector for setting Lights in the view.
94 lines
3.7 KiB
C++
94 lines
3.7 KiB
C++
// Created on: 2021-04-27
|
|
// Created by: Svetlana SHUTINA
|
|
// Copyright (c) 2021 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.
|
|
|
|
#pragma once
|
|
|
|
#include <inspector/TreeModel_ItemBase.hxx>
|
|
|
|
#include <Message_Alert.hxx>
|
|
#include <Message_MetricType.hxx>
|
|
|
|
#include <Standard_WarningsDisable.hxx>
|
|
#include <QAbstractTableModel>
|
|
#include <Standard_WarningsRestore.hxx>
|
|
|
|
//! @class MessageView_MetricStatisticModel
|
|
//! Table model that sums for parameter alert the number of calls and
|
|
//! metric time spent on the alert and its children.
|
|
//! It visualizes a table with statistic information:
|
|
//! the 1st column is alert name, the 2nd column is a counter of the name appearance,
|
|
//! the 3rd column is the cummulative time.
|
|
//! Tables rows are sorted by descending time.
|
|
class MessageView_MetricStatisticModel : public QAbstractTableModel
|
|
{
|
|
private:
|
|
// Struct to describe a row of the table
|
|
struct RowValues
|
|
{
|
|
QString myName; //!< string values
|
|
int myCounter; //!< count of the values
|
|
double myTime; //!< total time
|
|
};
|
|
|
|
public:
|
|
//! Constructor
|
|
MessageView_MetricStatisticModel (const Message_MetricType& theType, QObject* theParent = 0)
|
|
: QAbstractTableModel (theParent), myMetricType (theType) {}
|
|
|
|
//! Destructor
|
|
virtual ~MessageView_MetricStatisticModel() {}
|
|
|
|
//! Fills map of the fields values
|
|
//! \param theItemBase a parent item.
|
|
Standard_EXPORT void Init (const TreeModel_ItemBasePtr theItemBase);
|
|
|
|
//! Returns content of the model index for the given role,
|
|
//! it is obtained from internal container of values.
|
|
//! It returns value only for DisplayRole
|
|
//! \param theIndex a model index
|
|
//! \param theRole a view role
|
|
//! \return value intepreted depending on the given role
|
|
Standard_EXPORT virtual QVariant data (const QModelIndex& theIndex, int theRole = Qt::DisplayRole) const Standard_OVERRIDE;
|
|
|
|
//! Returns number of rows
|
|
//! \param theParent an index of the parent item
|
|
//! \return an integer value
|
|
Standard_EXPORT virtual int rowCount (const QModelIndex& theParent = QModelIndex()) const Standard_OVERRIDE
|
|
{ (void)theParent; return myValues.size(); }
|
|
|
|
//! Returns number of columns
|
|
//! \param theParent an index of the parent item
|
|
//! \return an integer value
|
|
Standard_EXPORT virtual int columnCount (const QModelIndex& theParent = QModelIndex()) const Standard_OVERRIDE
|
|
{ (void)theParent; return 3; }
|
|
|
|
private:
|
|
|
|
//! Sorts values and fills map of the fields values depends on unique text identifier. It's recursive.
|
|
//! \param theAlert unique text identifier. The alert should have attribute of the metric type
|
|
void appendAlert (const Handle(Message_Alert)& theAlert);
|
|
|
|
//! Adds theValues in the map to position theIndex
|
|
//! If theIndex is -1, the element will be added in the end of the map
|
|
//! \param theIndex the serial number in the map
|
|
//! \param theValues the field values
|
|
void setValueByIndex (const int theIndex, const RowValues theValues);
|
|
|
|
private:
|
|
Message_MetricType myMetricType; //!< current metric type
|
|
QMap<QString, QPair<int, double> > myValues; //!< map of fields values
|
|
QMap<int, RowValues> mySortValues; //!< sorted map of fields values
|
|
};
|