mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
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.
175 lines
9.1 KiB
C++
175 lines
9.1 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_TDocStdOwner.hxx>
|
|
|
|
#include <inspector/DFBrowserPane_AttributePaneModel.hxx>
|
|
#include <inspector/DFBrowserPane_TableView.hxx>
|
|
#include <inspector/DFBrowserPane_Tools.hxx>
|
|
|
|
#include <TDocStd_Document.hxx>
|
|
#include <TDocStd_Owner.hxx>
|
|
#include <TDF_Delta.hxx>
|
|
#include <TDF_ListIteratorOfDeltaList.hxx>
|
|
#include <Standard_Version.hxx>
|
|
|
|
#include <Standard_WarningsDisable.hxx>
|
|
#include <QGridLayout>
|
|
#include <QGroupBox>
|
|
#include <QTableView>
|
|
#include <QVariant>
|
|
#include <QWidget>
|
|
#include <Standard_WarningsRestore.hxx>
|
|
|
|
// =======================================================================
|
|
// function : Constructor
|
|
// purpose :
|
|
// =======================================================================
|
|
DFBrowserPane_TDocStdOwner::DFBrowserPane_TDocStdOwner()
|
|
: DFBrowserPane_AttributePane()
|
|
{
|
|
}
|
|
|
|
// =======================================================================
|
|
// function : GetValues
|
|
// purpose :
|
|
// =======================================================================
|
|
void DFBrowserPane_TDocStdOwner::GetValues (const Handle(TDF_Attribute)& theAttribute, QList<QVariant>& theValues)
|
|
{
|
|
Handle(TDocStd_Owner) anAttribute = Handle(TDocStd_Owner)::DownCast (theAttribute);
|
|
if (anAttribute.IsNull())
|
|
return;
|
|
|
|
Handle(TDocStd_Document) aDocument = anAttribute->GetDocument();
|
|
if (aDocument.IsNull())
|
|
return;
|
|
|
|
TCollection_AsciiString aDocumentInfo = DFBrowserPane_Tools::GetPointerInfo (aDocument).ToCString();
|
|
TColStd_SequenceOfExtendedString anExtensions;
|
|
aDocument->Extensions(anExtensions);
|
|
TCollection_AsciiString aSeparationStr = "---------------------------";
|
|
theValues << aSeparationStr.ToCString() << aSeparationStr.ToCString()
|
|
<< STANDARD_TYPE (CDM_Document)->Name() << aDocumentInfo.ToCString()
|
|
<< aSeparationStr.ToCString() << aSeparationStr.ToCString()
|
|
<< "StorageFormat" << DFBrowserPane_Tools::ToString (aDocument->StorageFormat())
|
|
<< "Extensions" << convertToString (anExtensions)
|
|
<< "FromReferencesNumber" << QString::number (aDocument->FromReferencesNumber())
|
|
<< "ToReferencesNumber" << QString::number (aDocument->ToReferencesNumber())
|
|
<< "IsReadOnly" << DFBrowserPane_Tools::BoolToStr (aDocument->IsReadOnly())
|
|
<< "Modifications" << QString::number (aDocument->Modifications());
|
|
|
|
TColStd_SequenceOfExtendedString aComments;
|
|
aDocument->Extensions(aComments);
|
|
// if the document application is empty, Application() sents an exception, it is called in LoadResources() of:
|
|
// FindFileExtension, FindDescription and others, so we need the check for it
|
|
bool isDocumentOpened = aDocument->IsOpened();
|
|
|
|
// CDM_Document methods
|
|
theValues << "Comments" << convertToString (aComments)
|
|
<< "Presentation" << DFBrowserPane_Tools::ToString (aDocument->Presentation())
|
|
<< "IsStored" << DFBrowserPane_Tools::BoolToStr (aDocument->IsStored())
|
|
<< "StorageVersion" << QString::number (aDocument->StorageVersion())
|
|
<< "Folder" << (aDocument->IsStored() ? DFBrowserPane_Tools::ToString (aDocument->Folder()) : "")
|
|
<< "HasRequestedFolder" << DFBrowserPane_Tools::BoolToStr (aDocument->HasRequestedFolder())
|
|
<< "RequestedFolder" << (aDocument->HasRequestedFolder() ? DFBrowserPane_Tools::ToString (aDocument->RequestedFolder()) : "")
|
|
<< "RequestedName" << DFBrowserPane_Tools::ToString (aDocument->RequestedName())
|
|
<< "HasRequestedPreviousVersion" << DFBrowserPane_Tools::BoolToStr (aDocument->HasRequestedPreviousVersion())
|
|
<< "RequestedPreviousVersion" << (aDocument->HasRequestedPreviousVersion() ?
|
|
DFBrowserPane_Tools::ToString (aDocument->RequestedPreviousVersion()) : "")
|
|
<< "RequestedComment" << DFBrowserPane_Tools::ToString (aDocument->RequestedComment())
|
|
<< "FindFileExtension" << (isDocumentOpened ? DFBrowserPane_Tools::BoolToStr (aDocument->FindFileExtension()) : "")
|
|
<< "FileExtension" << (isDocumentOpened ? DFBrowserPane_Tools::ToString (aDocument->FileExtension()) : "")
|
|
<< "FindDescription" << (isDocumentOpened ? DFBrowserPane_Tools::BoolToStr (aDocument->FindDescription()) : "")
|
|
<< "Description" << (isDocumentOpened ? DFBrowserPane_Tools::ToString (aDocument->Description()) : "")
|
|
<< "IsModified" << DFBrowserPane_Tools::BoolToStr (aDocument->IsModified())
|
|
<< "IsOpened" << DFBrowserPane_Tools::BoolToStr (aDocument->IsOpened())
|
|
<< "CanClose" << DFBrowserPane_Tools::ToName(DB_CDM_CAN_CLOSE_STATUS, aDocument->CanClose()).ToCString()
|
|
<< "ReferenceCounter" << QString::number (aDocument->ReferenceCounter());
|
|
|
|
// TDocStd_Document methods
|
|
TCollection_AsciiString aDocumentDataInfo = !aDocument->GetData().IsNull()
|
|
? DFBrowserPane_Tools::GetPointerInfo (aDocument->GetData()).ToCString() : "";
|
|
theValues << aSeparationStr.ToCString() << aSeparationStr.ToCString()
|
|
<< STANDARD_TYPE (TDocStd_Document)->Name() << ""
|
|
<< aSeparationStr.ToCString() << aSeparationStr.ToCString()
|
|
<< "IsSaved" << DFBrowserPane_Tools::BoolToStr (aDocument->IsSaved())
|
|
<< "IsChanged" << DFBrowserPane_Tools::BoolToStr (aDocument->IsChanged())
|
|
<< "GetSavedTime" << aDocument->GetSavedTime()
|
|
<< "GetName" << (aDocument->IsSaved() ? DFBrowserPane_Tools::ToString (aDocument->GetName()) : "")
|
|
<< "GetPath" << (aDocument->IsSaved() ? DFBrowserPane_Tools::ToString (aDocument->GetPath()) : "")
|
|
<< "GetData" << aDocumentDataInfo.ToCString()
|
|
<< "Main" << DFBrowserPane_Tools::GetEntry (aDocument->Main()).ToCString()
|
|
<< "IsEmpty" << DFBrowserPane_Tools::BoolToStr (aDocument->IsEmpty())
|
|
<< "IsValid" << DFBrowserPane_Tools::BoolToStr (aDocument->IsValid())
|
|
<< "HasOpenCommand" << DFBrowserPane_Tools::BoolToStr (aDocument->HasOpenCommand())
|
|
<< "GetUndoLimit" << QString::number (aDocument->GetUndoLimit())
|
|
<< "GetAvailableUndos" << QString::number (aDocument->GetAvailableUndos())
|
|
<< "GetUndos" << convertToString (aDocument->GetUndos())
|
|
<< "GetAvailableRedos" << QString::number (aDocument->GetAvailableRedos())
|
|
<< "GetRedos" << convertToString (aDocument->GetRedos())
|
|
#if OCC_VERSION_HEX > 0x070100
|
|
<< "EmptyLabelsSavingMode" << DFBrowserPane_Tools::BoolToStr (aDocument->EmptyLabelsSavingMode())
|
|
#endif
|
|
<< "IsNestedTransactionMode" << DFBrowserPane_Tools::BoolToStr (aDocument->IsNestedTransactionMode())
|
|
<< "ModificationMode" << DFBrowserPane_Tools::BoolToStr (aDocument->ModificationMode());
|
|
}
|
|
|
|
// =======================================================================
|
|
// function : GetShortAttributeInfo
|
|
// purpose :
|
|
// =======================================================================
|
|
void DFBrowserPane_TDocStdOwner::GetShortAttributeInfo (const Handle(TDF_Attribute)& theAttribute,
|
|
QList<QVariant>& theValues)
|
|
{
|
|
Handle(TDocStd_Owner) anAttribute = Handle(TDocStd_Owner)::DownCast (theAttribute);
|
|
if (anAttribute.IsNull())
|
|
return;
|
|
|
|
Handle(TDocStd_Document) aDocument = anAttribute->GetDocument();
|
|
if (aDocument.IsNull())
|
|
return;
|
|
|
|
theValues.append (DFBrowserPane_Tools::ToString (aDocument->StorageFormat()));
|
|
}
|
|
|
|
// =======================================================================
|
|
// function : convertToString
|
|
// purpose :
|
|
// =======================================================================
|
|
QString DFBrowserPane_TDocStdOwner::convertToString (const TDF_DeltaList& theDeltaList)
|
|
{
|
|
QStringList aNames;
|
|
|
|
for (TDF_ListIteratorOfDeltaList aDeltaIt (theDeltaList); aDeltaIt.More(); aDeltaIt.Next())
|
|
{
|
|
QString aName = DFBrowserPane_Tools::ToString (aDeltaIt.Value()->Name());
|
|
aNames.append (aName.isEmpty() ? "-" : aName);
|
|
}
|
|
return QString ("[%1]").arg (aNames.join (";"));
|
|
}
|
|
|
|
// =======================================================================
|
|
// function : convertToString
|
|
// purpose :
|
|
// =======================================================================
|
|
QString DFBrowserPane_TDocStdOwner::convertToString (const TColStd_SequenceOfExtendedString& theExtensions)
|
|
{
|
|
QStringList aNames;
|
|
for (Standard_Integer anExtensionId = 1, aNumber = theExtensions.Length(); anExtensionId <= aNumber; anExtensionId++)
|
|
aNames.append (DFBrowserPane_Tools::ToString (theExtensions(anExtensionId)));
|
|
|
|
return QString ("[%1]").arg (aNames.join (";"));
|
|
}
|