1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tools/DFBrowserPane/DFBrowserPane_AttributePaneModel.cxx
dpasukhi a5a7b3185b Coding - Apply .clang-format formatting #286
Update empty method guards to new style with regex (see PR).
Used clang-format 18.1.8.
New actions to validate code formatting is added.
Update .clang-format with disabling of include sorting.
  It is temporary changes, then include will be sorted.
Apply formatting for /src and /tools folder.
The files with .hxx,.cxx,.lxx,.h,.pxx,.hpp,*.cpp extensions.
2025-01-26 00:43:57 +00:00

169 lines
5.7 KiB
C++

// Created on: 2017-06-16
// Created by: Natalia ERMOLAEVA
// Copyright (c) 2017 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.
#include <inspector/DFBrowserPane_AttributePaneModel.hxx>
#include <Standard_WarningsDisable.hxx>
#include <QApplication>
#include <QFont>
#include <QColor>
#include <Standard_WarningsRestore.hxx>
// =======================================================================
// function : Constructor
// purpose :
// =======================================================================
DFBrowserPane_AttributePaneModel::DFBrowserPane_AttributePaneModel(QObject* theParent)
: QAbstractTableModel(theParent),
myOrientation(Qt::Vertical),
myColumnCount(1)
{
myItalicColumns.append(0);
}
// =======================================================================
// function : Init
// purpose :
// =======================================================================
void DFBrowserPane_AttributePaneModel::Init(const QList<QVariant>& theValues)
{
myValuesMap.clear();
if (myOrientation == Qt::Vertical)
{
int aRows = theValues.size() / myColumnCount;
QList<QVariant> aRowValues;
int aValuesIndex = 0;
for (int aRowId = 0; aRowId < aRows; aRowId++)
{
aRowValues.clear();
for (int aColumnId = 0; aColumnId < myColumnCount; aColumnId++)
{
aRowValues.append(theValues[aValuesIndex]);
aValuesIndex++;
}
myValuesMap[aRowId] = aRowValues;
}
}
else
{
int aCols = theValues.size() / myColumnCount;
QList<QVariant> aColValues;
int aValuesIndex = 0;
for (int aColumnId = 0; aColumnId < aCols; aColumnId++)
{
aColValues.clear();
for (int aRowId = 0; aRowId < myColumnCount; aRowId++)
{
aColValues.append(theValues[aValuesIndex]);
aValuesIndex++;
}
myValuesMap[aColumnId] = aColValues;
}
}
emit layoutChanged();
}
// =======================================================================
// function : SetHeaderValues
// purpose :
// =======================================================================
void DFBrowserPane_AttributePaneModel::SetHeaderValues(const QList<QVariant>& theValues,
Qt::Orientation theOrientation)
{
if (theOrientation == Qt::Horizontal)
myHorizontalHeaderValues = theValues;
else
myVerticalHeaderValues = theValues;
}
// =======================================================================
// function : columnCount
// purpose :
// =======================================================================
int DFBrowserPane_AttributePaneModel::columnCount(const QModelIndex& /* theParent*/) const
{
return myOrientation == Qt::Vertical ? myColumnCount : myValuesMap.size();
}
// =======================================================================
// function : rowCount
// purpose :
// =======================================================================
int DFBrowserPane_AttributePaneModel::rowCount(const QModelIndex& /* theParent*/) const
{
return myOrientation == Qt::Vertical ? myValuesMap.size() : myColumnCount;
}
// =======================================================================
// function : data
// purpose :
// =======================================================================
QVariant DFBrowserPane_AttributePaneModel::data(const QModelIndex& theIndex, int theRole) const
{
QVariant aValue;
if (theRole == Qt::DisplayRole)
{
if (myOrientation == Qt::Vertical)
{
int aRowId = theIndex.row();
QList<QVariant> aRowValues = myValuesMap[aRowId];
aValue = aRowValues.at(theIndex.column());
}
else
{
int aColId = theIndex.column();
QList<QVariant> aColValues = myValuesMap[aColId];
aValue = aColValues.at(theIndex.row());
}
}
if (myItalicColumns.contains(theIndex.column()) && theRole == Qt::FontRole)
{
QFont aFont = qApp->font();
aFont.setItalic(true);
return aFont;
}
if (myItalicColumns.contains(theIndex.column()) && theRole == Qt::ForegroundRole)
return QColor(Qt::darkGray).darker(150);
return aValue;
}
// =======================================================================
// function : headerData
// purpose :
// =======================================================================
QVariant DFBrowserPane_AttributePaneModel::headerData(int theSection,
Qt::Orientation theOrientation,
int theRole) const
{
QVariant aValue = QAbstractTableModel::headerData(theSection, theOrientation, theRole);
if (theRole == Qt::DisplayRole)
{
if (theOrientation == Qt::Horizontal)
{
if (!myHorizontalHeaderValues.empty() && theSection < myHorizontalHeaderValues.size())
aValue = myHorizontalHeaderValues[theSection];
}
else
{ // vertical
if (!myVerticalHeaderValues.empty() && theSection < myVerticalHeaderValues.size())
aValue = myVerticalHeaderValues[theSection];
}
}
return aValue;
}