mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0029674: Improvements in Inspector tool
- preferences for dock windows geometry, tree view columns and current view projection; - ViewControl package for common functionality between plugins; - processing Location and Orientation for external TopoDS_Shape object - 'F5' key to update content of each plugin - visibility column in tree view (used now only in ShapeView) - properties child item for context (presents tree of current Filters of context)
This commit is contained in:
parent
6dfdbb7ab8
commit
6822a3bef1
@ -1019,9 +1019,9 @@ OCCT_MODULES_AND_TOOLKITS (SAMPLES "SAMPLES_TOOLKITS" OCCT_SAMPLES)
|
|||||||
|
|
||||||
if (BUILD_Inspector OR BUILD_MODULE_QtSamples)
|
if (BUILD_Inspector OR BUILD_MODULE_QtSamples)
|
||||||
if (BUILD_MODULE_QtSamples)
|
if (BUILD_MODULE_QtSamples)
|
||||||
if (NOT Qt5_FOUND OR NOT WIN32)
|
if (NOT Qt5_FOUND OR "${Qt5Gui_EGL_INCLUDE_DIRS}" STREQUAL "" OR NOT WIN32)
|
||||||
list (REMOVE_ITEM qt_SAMPLES_TOOLKITS AndroidQt)
|
list (REMOVE_ITEM qt_SAMPLES_TOOLKITS AndroidQt)
|
||||||
message (STATUS "Info: AndroidQt sample excluded due to Qt5 usage is disabled or OS is not Windows")
|
message (STATUS "Info: AndroidQt sample excluded due to OS is not Windows or Qt is configured without ANGLE")
|
||||||
endif()
|
endif()
|
||||||
else()
|
else()
|
||||||
list (REMOVE_ITEM OCCT_SAMPLES qt)
|
list (REMOVE_ITEM OCCT_SAMPLES qt)
|
||||||
|
@ -25,7 +25,7 @@ set(CMAKE_PREFIX_PATH ${3RDPARTY_QT_DIR})
|
|||||||
|
|
||||||
# Now we can apply standard CMake finder for Qt5. We do this mostly
|
# Now we can apply standard CMake finder for Qt5. We do this mostly
|
||||||
# to have qt5_wrap_cpp() function available and Qt5_FOUND variable filled
|
# to have qt5_wrap_cpp() function available and Qt5_FOUND variable filled
|
||||||
find_package(Qt5 QUIET COMPONENTS Widgets Quick PATHS ${3RDPARTY_QT_DIR} NO_DEFAULT_PATH)
|
find_package(Qt5 QUIET COMPONENTS Widgets Quick Xml PATHS ${3RDPARTY_QT_DIR} NO_DEFAULT_PATH)
|
||||||
if (NOT ${Qt5_FOUND})
|
if (NOT ${Qt5_FOUND})
|
||||||
# Now we can apply standard CMake finder for Qt. We do this mostly
|
# Now we can apply standard CMake finder for Qt. We do this mostly
|
||||||
# to have qt4_wrap_cpp() function available
|
# to have qt4_wrap_cpp() function available
|
||||||
|
@ -9,9 +9,9 @@ macro (FIND_QT_PACKAGE PROJECT_LIBRARIES_DEBUG PROJECT_LIBRARIES_RELEASE PROJECT
|
|||||||
if (${Qt5_FOUND})
|
if (${Qt5_FOUND})
|
||||||
#message (STATUS "Qt5 cmake configuration")
|
#message (STATUS "Qt5 cmake configuration")
|
||||||
|
|
||||||
set(PROJECT_INCLUDES "${Qt5Widgets_INCLUDE_DIRS}" "${Qt5Quick_INCLUDE_DIRS}")
|
set(PROJECT_INCLUDES "${Qt5Widgets_INCLUDE_DIRS}" "${Qt5Quick_INCLUDE_DIRS}" "${Qt5Xml_INCLUDE_DIRS}")
|
||||||
set(PROJECT_LIBRARIES_DEBUG "${Qt5Widgets_LIBRARIES}" "${Qt5Quick_LIBRARIES}")
|
set(PROJECT_LIBRARIES_DEBUG "${Qt5Widgets_LIBRARIES}" "${Qt5Quick_LIBRARIES}" "${Qt5Xml_LIBRARIES}")
|
||||||
set(PROJECT_LIBRARIES_RELEASE "${Qt5Widgets_LIBRARIES}" "${Qt5Quick_LIBRARIES}")
|
set(PROJECT_LIBRARIES_RELEASE "${Qt5Widgets_LIBRARIES}" "${Qt5Quick_LIBRARIES}" "${Qt5Xml_LIBRARIES}")
|
||||||
|
|
||||||
# processing *.ts files to generate *.qm
|
# processing *.ts files to generate *.qm
|
||||||
find_package(Qt5LinguistTools)
|
find_package(Qt5LinguistTools)
|
||||||
@ -24,11 +24,11 @@ macro (FIND_QT_PACKAGE PROJECT_LIBRARIES_DEBUG PROJECT_LIBRARIES_RELEASE PROJECT
|
|||||||
#message (STATUS "Qt4 cmake configuration")
|
#message (STATUS "Qt4 cmake configuration")
|
||||||
set(PROJECT_INCLUDES ${QT_INCLUDES})
|
set(PROJECT_INCLUDES ${QT_INCLUDES})
|
||||||
if (WIN32)
|
if (WIN32)
|
||||||
set(PROJECT_LIBRARIES_DEBUG "${3RDPARTY_QT_DIR}/lib/QtCored4.lib;${3RDPARTY_QT_DIR}/lib/QtGuid4.lib")
|
set(PROJECT_LIBRARIES_DEBUG "${3RDPARTY_QT_DIR}/lib/QtCored4.lib;${3RDPARTY_QT_DIR}/lib/QtGuid4.lib;${3RDPARTY_QT_DIR}/lib/QtXmld4.lib")
|
||||||
set(PROJECT_LIBRARIES_RELEASE "${3RDPARTY_QT_DIR}/lib/QtCore4.lib;${3RDPARTY_QT_DIR}/lib/QtGui4.lib")
|
set(PROJECT_LIBRARIES_RELEASE "${3RDPARTY_QT_DIR}/lib/QtCore4.lib;${3RDPARTY_QT_DIR}/lib/QtGui4.lib;${3RDPARTY_QT_DIR}/lib/QtXml4.lib")
|
||||||
else()
|
else()
|
||||||
set(PROJECT_LIBRARIES_DEBUG "${3RDPARTY_QT_DIR}/lib/libQtCore.so;${3RDPARTY_QT_DIR}/lib/libQtGui.so")
|
set(PROJECT_LIBRARIES_DEBUG "${3RDPARTY_QT_DIR}/lib/libQtCore.so;${3RDPARTY_QT_DIR}/lib/libQtGui.so;${3RDPARTY_QT_DIR}/lib/libQtXml.so")
|
||||||
set(PROJECT_LIBRARIES_RELEASE "${3RDPARTY_QT_DIR}/lib/libQtCore.so;${3RDPARTY_QT_DIR}/lib/libQtGui.so")
|
set(PROJECT_LIBRARIES_RELEASE "${3RDPARTY_QT_DIR}/lib/libQtCore.so;${3RDPARTY_QT_DIR}/lib/libQtGui.so;${3RDPARTY_QT_DIR}/lib/libQtXml.so")
|
||||||
endif(WIN32)
|
endif(WIN32)
|
||||||
find_program(QT_LRELEASE_EXECUTABLE lrelease)
|
find_program(QT_LRELEASE_EXECUTABLE lrelease)
|
||||||
endif()
|
endif()
|
||||||
|
@ -20,11 +20,13 @@
|
|||||||
|
|
||||||
#include <OSD_Environment.hxx>
|
#include <OSD_Environment.hxx>
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QAction>
|
#include <QAction>
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
#include <QDir>
|
#include <QDir>
|
||||||
#include <QMainWindow>
|
#include <QMainWindow>
|
||||||
#include <QToolBar>
|
#include <QToolBar>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
#include <set>
|
#include <set>
|
||||||
|
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
|
|
||||||
#include <inspector/TInspector_Communicator.hxx>
|
#include <inspector/TInspector_Communicator.hxx>
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
#include <QCompleter>
|
#include <QCompleter>
|
||||||
#include <QDir>
|
#include <QDir>
|
||||||
@ -35,6 +36,7 @@
|
|||||||
#include <QPushButton>
|
#include <QPushButton>
|
||||||
#include <QVBoxLayout>
|
#include <QVBoxLayout>
|
||||||
#include <QWidget>
|
#include <QWidget>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
const int FONT_POINT_SIZE = 18;
|
const int FONT_POINT_SIZE = 18;
|
||||||
const int ICON_SIZE = 40;
|
const int ICON_SIZE = 40;
|
||||||
@ -232,8 +234,9 @@ void TInspectorEXE_OpenFileDialog::onSelectClicked()
|
|||||||
if (aFileName.isEmpty())
|
if (aFileName.isEmpty())
|
||||||
return; // do nothing, left the previous value
|
return; // do nothing, left the previous value
|
||||||
|
|
||||||
mySelectedName->setText (aFileName);
|
|
||||||
onNameChanged (aFileName);
|
myFileName = aFileName;
|
||||||
|
accept();
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
|
@ -19,12 +19,11 @@
|
|||||||
#include <NCollection_DataMap.hxx>
|
#include <NCollection_DataMap.hxx>
|
||||||
#include <TCollection_AsciiString.hxx>
|
#include <TCollection_AsciiString.hxx>
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#pragma warning(disable : 4127) // conditional expression is constant
|
|
||||||
#endif
|
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
#include <QItemSelection>
|
#include <QItemSelection>
|
||||||
#include <QStringList>
|
#include <QStringList>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
#include <map>
|
#include <map>
|
||||||
|
|
||||||
|
@ -15,10 +15,12 @@
|
|||||||
|
|
||||||
#include <TInspectorEXE_OpenFileViewModel.hxx>
|
#include <TInspectorEXE_OpenFileViewModel.hxx>
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
#include <QFileInfo>
|
#include <QFileInfo>
|
||||||
#include <QIcon>
|
#include <QIcon>
|
||||||
#include <QPainter>
|
#include <QPainter>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
const int ICON_SIZE = 40;
|
const int ICON_SIZE = 40;
|
||||||
|
|
||||||
@ -36,11 +38,9 @@ void TInspectorEXE_OpenFileItemDelegate::paint (QPainter* thePainter, const QSty
|
|||||||
// action icon for all indices before the last one
|
// action icon for all indices before the last one
|
||||||
QIcon anIcon (":/icons/folder_import.png");
|
QIcon anIcon (":/icons/folder_import.png");
|
||||||
QSize anIconSize (ICON_SIZE, ICON_SIZE);
|
QSize anIconSize (ICON_SIZE, ICON_SIZE);
|
||||||
int aWidth = theOption.rect.width();
|
int aDX = (theOption.rect.width() - anIconSize.width()) / 2;
|
||||||
int aCenter = aWidth / 2.;
|
|
||||||
int aHalf = anIconSize.width() / 2.;
|
|
||||||
int aMargin = qApp->style()->pixelMetric (QStyle::PM_HeaderMargin);
|
int aMargin = qApp->style()->pixelMetric (QStyle::PM_HeaderMargin);
|
||||||
thePainter->drawPixmap (QRect (theOption.rect.left() + (aCenter - aHalf),
|
thePainter->drawPixmap (QRect (theOption.rect.left() + aDX,
|
||||||
theOption.rect.top() + aMargin,
|
theOption.rect.top() + aMargin,
|
||||||
anIconSize.width(),
|
anIconSize.width(),
|
||||||
anIconSize.height()),
|
anIconSize.height()),
|
||||||
|
@ -18,12 +18,11 @@
|
|||||||
|
|
||||||
#include <Standard_Macro.hxx>
|
#include <Standard_Macro.hxx>
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#pragma warning(disable : 4127) // conditional expression is constant
|
|
||||||
#endif
|
|
||||||
#include <QAbstractTableModel>
|
#include <QAbstractTableModel>
|
||||||
#include <QStringList>
|
#include <QStringList>
|
||||||
#include <QItemDelegate>
|
#include <QItemDelegate>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
class QObject;
|
class QObject;
|
||||||
class QPainter;
|
class QPainter;
|
||||||
|
@ -70,6 +70,27 @@ Standard_CString TopAbs::ShapeOrientationToString (TopAbs_Orientation theOrienta
|
|||||||
return TopAbs_Table_PrintOrientation[theOrientation];
|
return TopAbs_Table_PrintOrientation[theOrientation];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//=======================================================================
|
||||||
|
//function : ShapeOrientationFromString
|
||||||
|
//purpose :
|
||||||
|
//=======================================================================
|
||||||
|
Standard_Boolean TopAbs::ShapeOrientationFromString (const Standard_CString theOrientationString,
|
||||||
|
TopAbs_Orientation& theOrientation)
|
||||||
|
{
|
||||||
|
TCollection_AsciiString aName (theOrientationString);
|
||||||
|
aName.UpperCase();
|
||||||
|
for (Standard_Integer anOrientationIter = 0; anOrientationIter <= TopAbs_EXTERNAL; ++anOrientationIter)
|
||||||
|
{
|
||||||
|
Standard_CString anOrientationName = TopAbs_Table_PrintOrientation[anOrientationIter];
|
||||||
|
if (aName == anOrientationName)
|
||||||
|
{
|
||||||
|
theOrientation = TopAbs_Orientation(anOrientationIter);
|
||||||
|
return Standard_True;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return Standard_False;
|
||||||
|
}
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
//function : TopAbs_Compose
|
//function : TopAbs_Compose
|
||||||
//purpose : Compose two orientations
|
//purpose : Compose two orientations
|
||||||
|
@ -141,6 +141,22 @@ public:
|
|||||||
//! @return string identifier from the list FORWARD, REVERSED, INTERNAL, EXTERNAL
|
//! @return string identifier from the list FORWARD, REVERSED, INTERNAL, EXTERNAL
|
||||||
Standard_EXPORT static Standard_CString ShapeOrientationToString (TopAbs_Orientation theOrientation);
|
Standard_EXPORT static Standard_CString ShapeOrientationToString (TopAbs_Orientation theOrientation);
|
||||||
|
|
||||||
|
//! Returns the shape orientation from the given string identifier (using case-insensitive comparison).
|
||||||
|
//! @param theOrientationString string identifier
|
||||||
|
//! @return shape orientation or TopAbs_FORWARD if string identifier is invalid
|
||||||
|
static TopAbs_Orientation ShapeOrientationFromString (const Standard_CString theOrientationString)
|
||||||
|
{
|
||||||
|
TopAbs_Orientation aType = TopAbs_FORWARD;
|
||||||
|
ShapeOrientationFromString (theOrientationString, aType);
|
||||||
|
return aType;
|
||||||
|
}
|
||||||
|
|
||||||
|
//! Determines the shape orientation from the given string identifier (using case-insensitive comparison).
|
||||||
|
//! @param theOrientationString string identifier
|
||||||
|
//! @param theOrientation detected shape orientation
|
||||||
|
//! @return TRUE if string identifier is known
|
||||||
|
Standard_EXPORT static Standard_Boolean ShapeOrientationFromString (const Standard_CString theOrientationString,
|
||||||
|
TopAbs_Orientation& theOrientation);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // _TopAbs_HeaderFile
|
#endif // _TopAbs_HeaderFile
|
||||||
|
@ -26,6 +26,17 @@
|
|||||||
#include <V3d_View.hxx>
|
#include <V3d_View.hxx>
|
||||||
#include <V3d_Viewer.hxx>
|
#include <V3d_Viewer.hxx>
|
||||||
|
|
||||||
|
namespace
|
||||||
|
{
|
||||||
|
static Standard_CString V3d_Table_PrintTypeOfOrientation[26] =
|
||||||
|
{
|
||||||
|
"XPOS", "YPOS", "ZPOS", "XNEG", "YNEG", "ZNEG", "XPOSYPOS", "XPOSZPOS", "XPOSZPOS", "XNEGYNEG",
|
||||||
|
"XNEGYPOS", "XNEGZNEG", "XNEGZPOS", "YNEGZNEG", "YNEGZPOS", "XPOSYNEG", "XPOSZNEG", "YPOSZNEG",
|
||||||
|
"XPOSYPOSZPOS", "XPOSYNEGZPOS", "XPOSYPOSZNEG", "XNEGYPOSZPOS", "XPOSYNEGZNEG", "XNEGYPOSZNEG",
|
||||||
|
"XNEGYNEGZPOS", "XNEGYNEGZNEG"
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
void V3d::ArrowOfRadius(const Handle(Graphic3d_Group)& garrow,const Standard_Real X0,const Standard_Real Y0,const Standard_Real Z0,const Standard_Real Dx,const Standard_Real Dy,const Standard_Real Dz,const Standard_Real Alpha,const Standard_Real Lng)
|
void V3d::ArrowOfRadius(const Handle(Graphic3d_Group)& garrow,const Standard_Real X0,const Standard_Real Y0,const Standard_Real Z0,const Standard_Real Dx,const Standard_Real Dy,const Standard_Real Dz,const Standard_Real Alpha,const Standard_Real Lng)
|
||||||
{
|
{
|
||||||
Standard_Real Xc, Yc, Zc, Xi, Yi, Zi, Xj, Yj, Zj;
|
Standard_Real Xc, Yc, Zc, Xi, Yi, Zi, Xj, Yj, Zj;
|
||||||
@ -134,3 +145,33 @@ void V3d::SwitchViewsinWindow(const Handle(V3d_View)& aPreviousView,
|
|||||||
aNextView->Viewer()->SetViewOn(aNextView);
|
aNextView->Viewer()->SetViewOn(aNextView);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//=======================================================================
|
||||||
|
//function : TypeOfOrientationToString
|
||||||
|
//purpose :
|
||||||
|
//=======================================================================
|
||||||
|
Standard_CString V3d::TypeOfOrientationToString (V3d_TypeOfOrientation theType)
|
||||||
|
{
|
||||||
|
return V3d_Table_PrintTypeOfOrientation[theType];
|
||||||
|
}
|
||||||
|
|
||||||
|
//=======================================================================
|
||||||
|
//function : TypeOfOrientationFromString
|
||||||
|
//purpose :
|
||||||
|
//=======================================================================
|
||||||
|
Standard_Boolean V3d::TypeOfOrientationFromString (Standard_CString theTypeString,
|
||||||
|
V3d_TypeOfOrientation& theType)
|
||||||
|
{
|
||||||
|
TCollection_AsciiString aName (theTypeString);
|
||||||
|
aName.UpperCase();
|
||||||
|
for (Standard_Integer aTypeIter = 0; aTypeIter <= V3d_XnegYnegZneg; ++aTypeIter)
|
||||||
|
{
|
||||||
|
Standard_CString aTypeName = V3d_Table_PrintTypeOfOrientation[aTypeIter];
|
||||||
|
if (aName == aTypeName)
|
||||||
|
{
|
||||||
|
theType = V3d_TypeOfOrientation (aTypeIter);
|
||||||
|
return Standard_True;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return Standard_False;
|
||||||
|
}
|
||||||
|
@ -93,6 +93,28 @@ public:
|
|||||||
|
|
||||||
Standard_EXPORT static void SwitchViewsinWindow (const Handle(V3d_View)& aPreviousView, const Handle(V3d_View)& aNextView);
|
Standard_EXPORT static void SwitchViewsinWindow (const Handle(V3d_View)& aPreviousView, const Handle(V3d_View)& aNextView);
|
||||||
|
|
||||||
|
//! Returns the string name for a given orientation type.
|
||||||
|
//! @param theType orientation type
|
||||||
|
//! @return string identifier from the list Xpos, Ypos, Zpos and others
|
||||||
|
Standard_EXPORT static Standard_CString TypeOfOrientationToString (V3d_TypeOfOrientation theType);
|
||||||
|
|
||||||
|
//! Returns the orientation type from the given string identifier (using case-insensitive comparison).
|
||||||
|
//! @param theTypeString string identifier
|
||||||
|
//! @return orientation type or V3d_TypeOfOrientation if string identifier is invalid
|
||||||
|
static V3d_TypeOfOrientation TypeOfOrientationFromString (Standard_CString theTypeString)
|
||||||
|
{
|
||||||
|
V3d_TypeOfOrientation aType = V3d_Xpos;
|
||||||
|
TypeOfOrientationFromString (theTypeString, aType);
|
||||||
|
return aType;
|
||||||
|
}
|
||||||
|
|
||||||
|
//! Determines the shape type from the given string identifier (using case-insensitive comparison).
|
||||||
|
//! @param theTypeString string identifier
|
||||||
|
//! @param theType detected shape type
|
||||||
|
//! @return TRUE if string identifier is known
|
||||||
|
Standard_EXPORT static Standard_Boolean TypeOfOrientationFromString (const Standard_CString theTypeString,
|
||||||
|
V3d_TypeOfOrientation& theType);
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // _V3d_HeaderFile
|
#endif // _V3d_HeaderFile
|
||||||
|
@ -25,6 +25,8 @@
|
|||||||
#include <inspector/DFBrowser_SearchView.hxx>
|
#include <inspector/DFBrowser_SearchView.hxx>
|
||||||
#include <inspector/DFBrowser_Window.hxx>
|
#include <inspector/DFBrowser_Window.hxx>
|
||||||
|
|
||||||
|
#include <inspector/ViewControl_Tools.hxx>
|
||||||
|
|
||||||
#include <TDF_Attribute.hxx>
|
#include <TDF_Attribute.hxx>
|
||||||
|
|
||||||
#include <Standard_WarningsDisable.hxx>
|
#include <Standard_WarningsDisable.hxx>
|
||||||
@ -51,9 +53,9 @@ DFBrowser_AttributePaneStack::DFBrowser_AttributePaneStack (QObject* theParent)
|
|||||||
void DFBrowser_AttributePaneStack::CreateWidget (QWidget* theParent)
|
void DFBrowser_AttributePaneStack::CreateWidget (QWidget* theParent)
|
||||||
{
|
{
|
||||||
myAttributesStack = new QStackedWidget (theParent);
|
myAttributesStack = new QStackedWidget (theParent);
|
||||||
DFBrowser_Window::SetWhiteBackground (myAttributesStack);
|
ViewControl_Tools::SetWhiteBackground (myAttributesStack);
|
||||||
myEmptyWidget = new QWidget (theParent);
|
myEmptyWidget = new QWidget (theParent);
|
||||||
DFBrowser_Window::SetWhiteBackground (myEmptyWidget);
|
ViewControl_Tools::SetWhiteBackground (myEmptyWidget);
|
||||||
|
|
||||||
myAttributesStack->addWidget (myEmptyWidget);
|
myAttributesStack->addWidget (myEmptyWidget);
|
||||||
|
|
||||||
@ -87,7 +89,7 @@ void DFBrowser_AttributePaneStack::SetPaneMode (const DFBrowser_AttributePaneTyp
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
QItemSelectionModel* aSelectionModel = myModule->GetOCAFViewSelectionModel();
|
QItemSelectionModel* aSelectionModel = myModule->GetOCAFViewSelectionModel();
|
||||||
QModelIndex anIndex = DFBrowser_Window::SingleSelected (aSelectionModel->selectedIndexes(), 0);
|
QModelIndex anIndex = TreeModel_ModelBase::SingleSelected (aSelectionModel->selectedIndexes(), 0);
|
||||||
SetCurrentItem (anIndex);
|
SetCurrentItem (anIndex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -49,6 +49,20 @@ public:
|
|||||||
//! \param theParameters a parameters container
|
//! \param theParameters a parameters container
|
||||||
Standard_EXPORT virtual void SetParameters (const Handle(TInspectorAPI_PluginParameters)& theParameters) Standard_OVERRIDE;
|
Standard_EXPORT virtual void SetParameters (const Handle(TInspectorAPI_PluginParameters)& theParameters) Standard_OVERRIDE;
|
||||||
|
|
||||||
|
//! Provide container for actions available in inspector on general level
|
||||||
|
//! \param theMenu if Qt implementation, it is QMenu object
|
||||||
|
Standard_EXPORT virtual void FillActionsMenu (void* theMenu) Standard_OVERRIDE { myWindow->FillActionsMenu (theMenu); }
|
||||||
|
|
||||||
|
//! Returns plugin preferences, empty implementation by default
|
||||||
|
//! \param theItem container of preference elements
|
||||||
|
virtual void GetPreferences (TInspectorAPI_PreferencesDataMap& theItem) Standard_OVERRIDE
|
||||||
|
{ myWindow->GetPreferences (theItem); }
|
||||||
|
|
||||||
|
//! Stores plugin preferences, empty implementation by default
|
||||||
|
//! \param theItem container of preference elements
|
||||||
|
virtual void SetPreferences (const TInspectorAPI_PreferencesDataMap& theItem) Standard_OVERRIDE
|
||||||
|
{ myWindow->SetPreferences (theItem); }
|
||||||
|
|
||||||
//! Updates content of the current window
|
//! Updates content of the current window
|
||||||
virtual void UpdateContent() Standard_OVERRIDE { myWindow->UpdateContent(); }
|
virtual void UpdateContent() Standard_OVERRIDE { myWindow->UpdateContent(); }
|
||||||
|
|
||||||
|
@ -31,8 +31,6 @@
|
|||||||
#include <QObject>
|
#include <QObject>
|
||||||
#include <Standard_WarningsRestore.hxx>
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
const int INFO_LENGHT = 60;
|
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : hasAttribute
|
// function : hasAttribute
|
||||||
// purpose :
|
// purpose :
|
||||||
@ -136,8 +134,8 @@ QVariant DFBrowser_Item::initValue (const int theItemRole) const
|
|||||||
DFBrowser_ItemRole_AdditionalInfo, Column()).toString();
|
DFBrowser_ItemRole_AdditionalInfo, Column()).toString();
|
||||||
if (!anAdditionalInfo.isEmpty())
|
if (!anAdditionalInfo.isEmpty())
|
||||||
{
|
{
|
||||||
if (theItemRole == DFBrowserPane_ItemRole_DisplayExtended && anAdditionalInfo.length() > INFO_LENGHT)
|
if (theItemRole == DFBrowserPane_ItemRole_DisplayExtended)
|
||||||
anAdditionalInfo = anAdditionalInfo.mid (0, INFO_LENGHT - 3) + "...";
|
anAdditionalInfo = TreeModel_Tools::CutString (anAdditionalInfo);
|
||||||
if (!anAdditionalInfo.isEmpty())
|
if (!anAdditionalInfo.isEmpty())
|
||||||
aValue = QVariant (aValue.toString() + QString (" [%1]").arg (anAdditionalInfo));
|
aValue = QVariant (aValue.toString() + QString (" [%1]").arg (anAdditionalInfo));
|
||||||
//if (aRole == Qt::ToolTipRole)
|
//if (aRole == Qt::ToolTipRole)
|
||||||
|
@ -21,6 +21,10 @@
|
|||||||
#include <inspector/DFBrowser_Window.hxx>
|
#include <inspector/DFBrowser_Window.hxx>
|
||||||
#include <inspector/DFBrowser_TreeLevelView.hxx>
|
#include <inspector/DFBrowser_TreeLevelView.hxx>
|
||||||
|
|
||||||
|
#include <inspector/TreeModel_ModelBase.hxx>
|
||||||
|
|
||||||
|
#include <inspector/ViewControl_Tools.hxx>
|
||||||
|
|
||||||
#include <Standard_WarningsDisable.hxx>
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QAbstractItemModel>
|
#include <QAbstractItemModel>
|
||||||
#include <QGridLayout>
|
#include <QGridLayout>
|
||||||
@ -36,7 +40,7 @@ DFBrowser_PropertyPanel::DFBrowser_PropertyPanel (QWidget* theParent)
|
|||||||
: QObject (theParent), myAttributesStack (0)
|
: QObject (theParent), myAttributesStack (0)
|
||||||
{
|
{
|
||||||
myMainWindow = new QWidget (theParent);
|
myMainWindow = new QWidget (theParent);
|
||||||
DFBrowser_Window::SetWhiteBackground (myMainWindow);
|
ViewControl_Tools::SetWhiteBackground (myMainWindow);
|
||||||
|
|
||||||
QGridLayout* aLayout = new QGridLayout (myMainWindow);
|
QGridLayout* aLayout = new QGridLayout (myMainWindow);
|
||||||
aLayout->setContentsMargins (0, 0, 0, 0);
|
aLayout->setContentsMargins (0, 0, 0, 0);
|
||||||
@ -55,6 +59,6 @@ void DFBrowser_PropertyPanel::UpdateBySelectionChanged (const QItemSelection& th
|
|||||||
{
|
{
|
||||||
GetAttributesStack()->GetSearchView()->Reset();
|
GetAttributesStack()->GetSearchView()->Reset();
|
||||||
|
|
||||||
QModelIndex anIndex = DFBrowser_Window::SingleSelected (theSelected.indexes(), 0);
|
QModelIndex anIndex = TreeModel_ModelBase::SingleSelected (theSelected.indexes(), 0);
|
||||||
myAttributesStack->SetCurrentItem (anIndex);
|
myAttributesStack->SetCurrentItem (anIndex);
|
||||||
}
|
}
|
||||||
|
@ -20,6 +20,8 @@
|
|||||||
#include <inspector/DFBrowserPane_Tools.hxx>
|
#include <inspector/DFBrowserPane_Tools.hxx>
|
||||||
#include <inspector/DFBrowser_Module.hxx>
|
#include <inspector/DFBrowser_Module.hxx>
|
||||||
|
|
||||||
|
#include <inspector/ViewControl_Tools.hxx>
|
||||||
|
|
||||||
#include <TDocStd_Application.hxx>
|
#include <TDocStd_Application.hxx>
|
||||||
#include <TDocStd_Document.hxx>
|
#include <TDocStd_Document.hxx>
|
||||||
#include <TDF_AttributeIterator.hxx>
|
#include <TDF_AttributeIterator.hxx>
|
||||||
@ -108,7 +110,7 @@ DFBrowser_SearchLine::DFBrowser_SearchLine (QWidget* theParent)
|
|||||||
connect (myLineControl, SIGNAL (returnPressed()), this, SLOT (onReturnPressed()));
|
connect (myLineControl, SIGNAL (returnPressed()), this, SLOT (onReturnPressed()));
|
||||||
connect (mySearchButton, SIGNAL (clicked()), this, SLOT (onSearchButtonClicked()));
|
connect (mySearchButton, SIGNAL (clicked()), this, SLOT (onSearchButtonClicked()));
|
||||||
|
|
||||||
DFBrowser_Window::SetWhiteBackground (this);
|
ViewControl_Tools::SetWhiteBackground (this);
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
|
@ -22,6 +22,11 @@
|
|||||||
|
|
||||||
#include <inspector/DFBrowserPane_Tools.hxx>
|
#include <inspector/DFBrowserPane_Tools.hxx>
|
||||||
|
|
||||||
|
#include <inspector/TreeModel_ModelBase.hxx>
|
||||||
|
#include <inspector/TreeModel_Tools.hxx>
|
||||||
|
|
||||||
|
#include <inspector/ViewControl_Tools.hxx>
|
||||||
|
|
||||||
#include <Standard_WarningsDisable.hxx>
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QAbstractProxyModel>
|
#include <QAbstractProxyModel>
|
||||||
#include <QGridLayout>
|
#include <QGridLayout>
|
||||||
@ -46,7 +51,7 @@ DFBrowser_SearchView::DFBrowser_SearchView (QWidget* theParent)
|
|||||||
|
|
||||||
myTableView = new QTableView (myMainWindow);
|
myTableView = new QTableView (myMainWindow);
|
||||||
myTableView->verticalHeader()->setVisible (false);
|
myTableView->verticalHeader()->setVisible (false);
|
||||||
myTableView->verticalHeader()->setDefaultSectionSize (DEFAULT_ICON_SIZE + DFBrowserPane_Tools::HeaderSectionMargin());
|
myTableView->verticalHeader()->setDefaultSectionSize (DEFAULT_ICON_SIZE + TreeModel_Tools::HeaderSectionMargin());
|
||||||
myTableView->setIconSize (QSize (DEFAULT_ICON_SIZE, DEFAULT_ICON_SIZE));
|
myTableView->setIconSize (QSize (DEFAULT_ICON_SIZE, DEFAULT_ICON_SIZE));
|
||||||
myTableView->horizontalHeader()->setVisible (false);
|
myTableView->horizontalHeader()->setVisible (false);
|
||||||
myTableView->horizontalHeader()->setStretchLastSection (true);
|
myTableView->horizontalHeader()->setStretchLastSection (true);
|
||||||
@ -56,7 +61,7 @@ DFBrowser_SearchView::DFBrowser_SearchView (QWidget* theParent)
|
|||||||
|
|
||||||
aLayout->addWidget (myTableView);
|
aLayout->addWidget (myTableView);
|
||||||
|
|
||||||
DFBrowser_Window::SetWhiteBackground (myTableView);
|
ViewControl_Tools::SetWhiteBackground (myTableView);
|
||||||
myTableView->setGridStyle (Qt::NoPen);
|
myTableView->setGridStyle (Qt::NoPen);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -69,7 +74,7 @@ void DFBrowser_SearchView::InitModels()
|
|||||||
QAbstractItemModel* aModel = mySearchLine->GetCompletionModel();
|
QAbstractItemModel* aModel = mySearchLine->GetCompletionModel();
|
||||||
myTableView->setModel (aModel);
|
myTableView->setModel (aModel);
|
||||||
myTableView->setColumnWidth (0, 0); // to hide column
|
myTableView->setColumnWidth (0, 0); // to hide column
|
||||||
myTableView->setColumnWidth (1, DEFAULT_ICON_SIZE + DFBrowserPane_Tools::HeaderSectionMargin());
|
myTableView->setColumnWidth (1, DEFAULT_ICON_SIZE + TreeModel_Tools::HeaderSectionMargin());
|
||||||
|
|
||||||
QItemSelectionModel* aSelectionModel = new QItemSelectionModel (aModel);
|
QItemSelectionModel* aSelectionModel = new QItemSelectionModel (aModel);
|
||||||
myTableView->setSelectionMode (QAbstractItemView::SingleSelection);
|
myTableView->setSelectionMode (QAbstractItemView::SingleSelection);
|
||||||
@ -89,7 +94,7 @@ void DFBrowser_SearchView::onTableSelectionChanged (const QItemSelection&,
|
|||||||
{
|
{
|
||||||
QItemSelectionModel* aSelectionModel = myTableView->selectionModel();
|
QItemSelectionModel* aSelectionModel = myTableView->selectionModel();
|
||||||
QModelIndexList aSelectedIndices = aSelectionModel->selectedIndexes();
|
QModelIndexList aSelectedIndices = aSelectionModel->selectedIndexes();
|
||||||
QModelIndex aSelectedIndex = DFBrowser_Window::SingleSelected (aSelectedIndices, 2);
|
QModelIndex aSelectedIndex = TreeModel_ModelBase::SingleSelected (aSelectedIndices, 2);
|
||||||
if (!aSelectedIndex.isValid())
|
if (!aSelectedIndex.isValid())
|
||||||
return;
|
return;
|
||||||
QAbstractProxyModel* aTableModel = dynamic_cast<QAbstractProxyModel*> (myTableView->model());
|
QAbstractProxyModel* aTableModel = dynamic_cast<QAbstractProxyModel*> (myTableView->model());
|
||||||
|
@ -15,7 +15,6 @@
|
|||||||
|
|
||||||
#include <inspector/DFBrowser_Thread.hxx>
|
#include <inspector/DFBrowser_Thread.hxx>
|
||||||
#include <inspector/DFBrowser_ThreadItemSearch.hxx>
|
#include <inspector/DFBrowser_ThreadItemSearch.hxx>
|
||||||
#include <inspector/DFBrowser_ThreadItemUsedShapesMap.hxx>
|
|
||||||
#include <inspector/DFBrowser_TreeLevelLine.hxx>
|
#include <inspector/DFBrowser_TreeLevelLine.hxx>
|
||||||
#include <inspector/DFBrowser_SearchLine.hxx>
|
#include <inspector/DFBrowser_SearchLine.hxx>
|
||||||
|
|
||||||
@ -67,21 +66,6 @@ DFBrowser_Thread::DFBrowser_Thread (DFBrowser_Window* theWindow)
|
|||||||
{
|
{
|
||||||
DFBrowser_SearchLine* aSearchLine = theWindow->GetTreeLevelLine()->GetSearchLine();
|
DFBrowser_SearchLine* aSearchLine = theWindow->GetTreeLevelLine()->GetSearchLine();
|
||||||
myItems.append (new DFBrowser_ThreadItemSearch(aSearchLine));
|
myItems.append (new DFBrowser_ThreadItemSearch(aSearchLine));
|
||||||
myItems.append (new DFBrowser_ThreadItemUsedShapesMap());
|
|
||||||
}
|
|
||||||
|
|
||||||
// =======================================================================
|
|
||||||
// function : SetModule
|
|
||||||
// purpose :
|
|
||||||
// =======================================================================
|
|
||||||
void DFBrowser_Thread::SetModule (DFBrowser_Module* theModule)
|
|
||||||
{
|
|
||||||
for (int anItemId = 0, aSize = myItems.size(); anItemId < aSize; anItemId++)
|
|
||||||
{
|
|
||||||
DFBrowser_ThreadItemUsedShapesMap* aShapesItem = dynamic_cast<DFBrowser_ThreadItemUsedShapesMap*> (myItems[anItemId]);
|
|
||||||
if (aShapesItem)
|
|
||||||
aShapesItem->SetModule (theModule);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
|
@ -42,10 +42,6 @@ public:
|
|||||||
//! Destructor
|
//! Destructor
|
||||||
virtual ~DFBrowser_Thread() {}
|
virtual ~DFBrowser_Thread() {}
|
||||||
|
|
||||||
//! Sets module to the started thread items
|
|
||||||
//! \param theModule a current module
|
|
||||||
Standard_EXPORT void SetModule (DFBrowser_Module* theModule);
|
|
||||||
|
|
||||||
//! Starts all candidate thread items
|
//! Starts all candidate thread items
|
||||||
Standard_EXPORT void ProcessApplication();
|
Standard_EXPORT void ProcessApplication();
|
||||||
|
|
||||||
|
@ -1,223 +0,0 @@
|
|||||||
// 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/DFBrowser_ThreadItemUsedShapesMap.hxx>
|
|
||||||
|
|
||||||
#include <inspector/DFBrowser_Module.hxx>
|
|
||||||
#include <inspector/DFBrowser_Tools.hxx>
|
|
||||||
#include <inspector/DFBrowser_TreeModel.hxx>
|
|
||||||
|
|
||||||
#include <inspector/DFBrowserPane_TNamingUsedShapes.hxx>
|
|
||||||
#include <inspector/DFBrowserPane_Tools.hxx>
|
|
||||||
|
|
||||||
#include <TNaming_DataMapIteratorOfDataMapOfShapePtrRefShape.hxx>
|
|
||||||
#include <TNaming_PtrRefShape.hxx>
|
|
||||||
#include <TNaming_RefShape.hxx>
|
|
||||||
#include <TNaming_UsedShapes.hxx>
|
|
||||||
|
|
||||||
#include <Standard_Type.hxx>
|
|
||||||
#include <TDocStd_Document.hxx>
|
|
||||||
|
|
||||||
// =======================================================================
|
|
||||||
// function : Run
|
|
||||||
// purpose :
|
|
||||||
// =======================================================================
|
|
||||||
void DFBrowser_ThreadItemUsedShapesMap::Run()
|
|
||||||
{
|
|
||||||
if (!myModule)
|
|
||||||
return;
|
|
||||||
DFBrowser_TreeModel* aDFBrowserModel = dynamic_cast<DFBrowser_TreeModel*> (myModule->GetOCAFViewModel());
|
|
||||||
if (!aDFBrowserModel)
|
|
||||||
return;
|
|
||||||
|
|
||||||
Handle(TDocStd_Application) anApplication = aDFBrowserModel->GetTDocStdApplication();
|
|
||||||
if (anApplication.IsNull())
|
|
||||||
return;
|
|
||||||
|
|
||||||
for (Standard_Integer aDocId = 1, aNbDocuments = anApplication->NbDocuments(); aDocId <= aNbDocuments; aDocId++)
|
|
||||||
{
|
|
||||||
Handle(TDocStd_Document) aDocument;
|
|
||||||
anApplication->GetDocument (aDocId, aDocument);
|
|
||||||
if (aDocument.IsNull())
|
|
||||||
continue;
|
|
||||||
|
|
||||||
TDF_Label aLabel = aDocument->Main().Root();
|
|
||||||
|
|
||||||
Handle(TNaming_UsedShapes) anAttribute;
|
|
||||||
if (!aLabel.FindAttribute (TNaming_UsedShapes::GetID(), anAttribute))
|
|
||||||
continue;
|
|
||||||
|
|
||||||
std::list<TCollection_AsciiString> aReferences;
|
|
||||||
findReferences (anAttribute, aReferences);
|
|
||||||
if (!aReferences.empty())
|
|
||||||
myAttributeRefs.Bind (anAttribute, aReferences);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// =======================================================================
|
|
||||||
// function : ApplyValues
|
|
||||||
// purpose :
|
|
||||||
// =======================================================================
|
|
||||||
void DFBrowser_ThreadItemUsedShapesMap::ApplyValues()
|
|
||||||
{
|
|
||||||
if (myAttributeRefs.IsEmpty())
|
|
||||||
return;
|
|
||||||
|
|
||||||
DFBrowserPane_AttributePaneAPI* aPane = myModule->GetAttributePane (STANDARD_TYPE (TNaming_UsedShapes)->Name());
|
|
||||||
if (aPane)
|
|
||||||
{
|
|
||||||
DFBrowserPane_TNamingUsedShapes* aUsedShapesPane = dynamic_cast<DFBrowserPane_TNamingUsedShapes*> (aPane);
|
|
||||||
aUsedShapesPane->SetSortedReferences (myAttributeRefs);
|
|
||||||
}
|
|
||||||
// update
|
|
||||||
DFBrowser_TreeModel* aDFBrowserModel = dynamic_cast<DFBrowser_TreeModel*> (myModule->GetOCAFViewModel());
|
|
||||||
for (NCollection_DataMap<Handle(TDF_Attribute), std::list<TCollection_AsciiString> >::Iterator aRefIt (myAttributeRefs);
|
|
||||||
aRefIt.More(); aRefIt.Next())
|
|
||||||
{
|
|
||||||
TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex
|
|
||||||
(aDFBrowserModel->FindIndexByAttribute (aRefIt.Key()));
|
|
||||||
if (anItemBase)
|
|
||||||
{
|
|
||||||
anItemBase->Reset();
|
|
||||||
anItemBase->Init();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// clear cache
|
|
||||||
myAttributeRefs.Clear();
|
|
||||||
}
|
|
||||||
|
|
||||||
// =======================================================================
|
|
||||||
// function : ClearSortedReferences
|
|
||||||
// purpose :
|
|
||||||
// =======================================================================
|
|
||||||
void DFBrowser_ThreadItemUsedShapesMap::ClearSortedReferences (DFBrowser_Module* theModule)
|
|
||||||
{
|
|
||||||
DFBrowserPane_AttributePaneAPI* aPane = theModule->GetAttributePane (STANDARD_TYPE (TNaming_UsedShapes)->Name());
|
|
||||||
if (!aPane)
|
|
||||||
return;
|
|
||||||
|
|
||||||
DFBrowserPane_TNamingUsedShapes* aUsedShapesPane = dynamic_cast<DFBrowserPane_TNamingUsedShapes*> (aPane);
|
|
||||||
aUsedShapesPane->ClearSortedReferences();
|
|
||||||
|
|
||||||
// update tree item state
|
|
||||||
DFBrowser_TreeModel* aDFBrowserModel = dynamic_cast<DFBrowser_TreeModel*> (theModule->GetOCAFViewModel());
|
|
||||||
if (!aDFBrowserModel)
|
|
||||||
return;
|
|
||||||
Handle(TDocStd_Application) anApplication = aDFBrowserModel->GetTDocStdApplication();
|
|
||||||
if (anApplication.IsNull())
|
|
||||||
return;
|
|
||||||
|
|
||||||
for (Standard_Integer aDocId = 1, aNbDocuments = anApplication->NbDocuments(); aDocId <= aNbDocuments; aDocId++)
|
|
||||||
{
|
|
||||||
Handle(TDocStd_Document) aDocument;
|
|
||||||
anApplication->GetDocument (aDocId, aDocument);
|
|
||||||
if (aDocument.IsNull())
|
|
||||||
continue;
|
|
||||||
TDF_Label aLabel = aDocument->Main().Root();
|
|
||||||
Handle(TNaming_UsedShapes) anAttribute;
|
|
||||||
if (aLabel.FindAttribute (TNaming_UsedShapes::GetID(), anAttribute))
|
|
||||||
{
|
|
||||||
TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex(
|
|
||||||
aDFBrowserModel->FindIndexByAttribute (anAttribute));
|
|
||||||
if (anItemBase)
|
|
||||||
anItemBase->Init();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// =======================================================================
|
|
||||||
// function : isLessThan
|
|
||||||
// purpose :
|
|
||||||
// =======================================================================
|
|
||||||
bool DFBrowser_ThreadItemUsedShapesMap::isLessThan (const QStringList& theLeft, const QStringList& theRight)
|
|
||||||
{
|
|
||||||
int aState = 1; //! where 0 - less, 1 - equal, 2 - larger
|
|
||||||
int aLeftSize = theLeft.size();
|
|
||||||
int aRightSize = theRight.size();
|
|
||||||
|
|
||||||
for (int anItemId = 0; anItemId < aRightSize && anItemId < aLeftSize && aState == 1; anItemId++)
|
|
||||||
{
|
|
||||||
int aRightId = theRight[anItemId].toInt();
|
|
||||||
int aLeftId = theLeft[anItemId].toInt();
|
|
||||||
if (aLeftId == aRightId)
|
|
||||||
continue;
|
|
||||||
else if (aLeftId < aRightId)
|
|
||||||
aState = 0; // less
|
|
||||||
else if (aLeftId > aRightId)
|
|
||||||
aState = 2; // less
|
|
||||||
}
|
|
||||||
if (aState == 1)
|
|
||||||
{ // equal in similar parts
|
|
||||||
if (aLeftSize < aRightSize)
|
|
||||||
aState = 0;
|
|
||||||
else if (aLeftSize > aRightSize)
|
|
||||||
aState = 2;
|
|
||||||
}
|
|
||||||
return aState == 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
// =======================================================================
|
|
||||||
// function : addValue
|
|
||||||
// purpose :
|
|
||||||
// =======================================================================
|
|
||||||
void DFBrowser_ThreadItemUsedShapesMap::addValue (const TCollection_AsciiString& theEntry,
|
|
||||||
QList<QPair<TCollection_AsciiString, QStringList > >& theEntries)
|
|
||||||
{
|
|
||||||
QStringList aSplit = QString (theEntry.ToCString()).split (":");
|
|
||||||
|
|
||||||
int aLessIndex = -1;
|
|
||||||
bool isInserted = false;
|
|
||||||
// looking for nearest smaller value from the end of the list
|
|
||||||
for (int anEntryId = theEntries.size() - 1; anEntryId >= 0 && !isInserted; anEntryId--)
|
|
||||||
{
|
|
||||||
if (isLessThan(aSplit, theEntries[anEntryId].second))
|
|
||||||
aLessIndex = anEntryId;
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// if less than was found and now, the entry is greater than current entry
|
|
||||||
if (aLessIndex != -1)
|
|
||||||
{
|
|
||||||
theEntries.insert (aLessIndex, qMakePair (theEntry, aSplit));
|
|
||||||
isInserted = true;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!isInserted)
|
|
||||||
{
|
|
||||||
if (aLessIndex != -1) // less than all, insert at this position
|
|
||||||
theEntries.insert (aLessIndex, qMakePair (theEntry, aSplit));
|
|
||||||
else
|
|
||||||
theEntries.append (qMakePair (theEntry, aSplit));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// =======================================================================
|
|
||||||
// function : findReferences
|
|
||||||
// purpose :
|
|
||||||
// =======================================================================
|
|
||||||
void DFBrowser_ThreadItemUsedShapesMap::findReferences (Handle(TDF_Attribute) theAttribute,
|
|
||||||
std::list<TCollection_AsciiString>& theReferences)
|
|
||||||
{
|
|
||||||
Handle(TNaming_UsedShapes) anAttribute = Handle(TNaming_UsedShapes)::DownCast (theAttribute);
|
|
||||||
|
|
||||||
QList<QPair<TCollection_AsciiString, QStringList> > anEntries;
|
|
||||||
for (TNaming_DataMapIteratorOfDataMapOfShapePtrRefShape aDataIt(anAttribute->Map()); aDataIt.More(); aDataIt.Next())
|
|
||||||
addValue(DFBrowserPane_Tools::GetEntry (aDataIt.Value()->Label()), anEntries);
|
|
||||||
|
|
||||||
for (QList<QPair<TCollection_AsciiString, QStringList> >::const_iterator anEntryIt = anEntries.begin();
|
|
||||||
anEntryIt != anEntries.end(); anEntryIt++)
|
|
||||||
theReferences.push_back (anEntryIt->first);
|
|
||||||
}
|
|
@ -1,81 +0,0 @@
|
|||||||
// 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.
|
|
||||||
|
|
||||||
#ifndef DFBROWSER_ThreadItemUsedShapesMap_H
|
|
||||||
#define DFBROWSER_ThreadItemUsedShapesMap_H
|
|
||||||
|
|
||||||
#include <inspector/DFBrowser_ThreadItem.hxx>
|
|
||||||
|
|
||||||
#include <NCollection_DataMap.hxx>
|
|
||||||
#include <Standard.hxx>
|
|
||||||
#include <TCollection_AsciiString.hxx>
|
|
||||||
#include <TDF_Attribute.hxx>
|
|
||||||
|
|
||||||
#include <Standard_WarningsDisable.hxx>
|
|
||||||
#include <QStringList>
|
|
||||||
#include <QPair>
|
|
||||||
#include <Standard_WarningsRestore.hxx>
|
|
||||||
|
|
||||||
class DFBrowser_Module;
|
|
||||||
|
|
||||||
//! \class DFBrowser_ThreadItemUsedShapesMap
|
|
||||||
//! Collects and sorts map values of TNaming_UsedShape attributes. Applies values to the OCAF tree view model
|
|
||||||
class DFBrowser_ThreadItemUsedShapesMap : public DFBrowser_ThreadItem
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
|
|
||||||
//! Constructor
|
|
||||||
DFBrowser_ThreadItemUsedShapesMap() : myModule (0) {}
|
|
||||||
|
|
||||||
//! Destructor
|
|
||||||
virtual ~DFBrowser_ThreadItemUsedShapesMap() {}
|
|
||||||
|
|
||||||
//! Sets the current module
|
|
||||||
void SetModule (DFBrowser_Module* theModule) { myModule = theModule; }
|
|
||||||
|
|
||||||
//! Iterates by application documents and for TNaming_UsedShape attribute collects container of sorted values.
|
|
||||||
Standard_EXPORT virtual void Run() Standard_OVERRIDE;
|
|
||||||
|
|
||||||
//! Initialize tree view model of OCAF by internal container of sorted values.
|
|
||||||
Standard_EXPORT virtual void ApplyValues() Standard_OVERRIDE;
|
|
||||||
|
|
||||||
//! Set empty cache into tree view model of OCAF. Calls Init of these item by usual values (not sorted)
|
|
||||||
Standard_EXPORT static void ClearSortedReferences (DFBrowser_Module* theModule);
|
|
||||||
|
|
||||||
private:
|
|
||||||
|
|
||||||
//! Collects sorted values of the attribute if the attribute has TNaming_UsedShape type
|
|
||||||
//! \param theAttribute a processed attribute
|
|
||||||
//! \param theReferences a output container of sorted references
|
|
||||||
void findReferences (Handle(TDF_Attribute) theAttribute, std::list<TCollection_AsciiString>& theReferences);
|
|
||||||
|
|
||||||
//! Checks whether the left path is less than the right path
|
|
||||||
//! \param theLeft path to label
|
|
||||||
//! \param theRight path to label
|
|
||||||
//! \returns true if the left path is less(not equal) than right path
|
|
||||||
static bool isLessThan (const QStringList& theLeft, const QStringList& theRight);
|
|
||||||
|
|
||||||
//! Insert entry into container of entries using sorting. It is split by ":" separator to perform soring
|
|
||||||
//! \param theEntry a label entry
|
|
||||||
//! \param theEntries a result container
|
|
||||||
void addValue (const TCollection_AsciiString& theEntry, QList<QPair<TCollection_AsciiString, QStringList > >& theEntries);
|
|
||||||
|
|
||||||
private:
|
|
||||||
|
|
||||||
DFBrowser_Module* myModule; //!< the current module
|
|
||||||
NCollection_DataMap<Handle(TDF_Attribute), std::list<TCollection_AsciiString> > myAttributeRefs; //!< sorted references
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
|
@ -22,6 +22,9 @@
|
|||||||
|
|
||||||
#include <inspector/DFBrowserPane_Tools.hxx>
|
#include <inspector/DFBrowserPane_Tools.hxx>
|
||||||
|
|
||||||
|
#include <inspector/TreeModel_ModelBase.hxx>
|
||||||
|
#include <inspector/TreeModel_Tools.hxx>
|
||||||
|
|
||||||
#include <Standard_WarningsDisable.hxx>
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QAbstractItemModel>
|
#include <QAbstractItemModel>
|
||||||
#include <QFrame>
|
#include <QFrame>
|
||||||
@ -65,7 +68,7 @@ DFBrowser_TreeLevelLine::DFBrowser_TreeLevelLine (QWidget* theParent)
|
|||||||
myTableView->horizontalHeader()->setVisible (false);
|
myTableView->horizontalHeader()->setVisible (false);
|
||||||
QHeaderView* aVHeader = myTableView->verticalHeader();
|
QHeaderView* aVHeader = myTableView->verticalHeader();
|
||||||
aVHeader->setVisible (false);
|
aVHeader->setVisible (false);
|
||||||
int aDefCellSize = aVHeader->minimumSectionSize() + DFBrowserPane_Tools::HeaderSectionMargin();
|
int aDefCellSize = aVHeader->minimumSectionSize() + TreeModel_Tools::HeaderSectionMargin();
|
||||||
aVHeader->setDefaultSectionSize (aDefCellSize);
|
aVHeader->setDefaultSectionSize (aDefCellSize);
|
||||||
aLayout->addWidget (myTableView, 0, 2);
|
aLayout->addWidget (myTableView, 0, 2);
|
||||||
|
|
||||||
@ -120,7 +123,7 @@ void DFBrowser_TreeLevelLine::OnTreeViewSelectionChanged (const QItemSelection&
|
|||||||
const QItemSelection&)
|
const QItemSelection&)
|
||||||
{
|
{
|
||||||
QModelIndexList aSelectedIndices = theSelected.indexes();
|
QModelIndexList aSelectedIndices = theSelected.indexes();
|
||||||
QModelIndex aSelectedIndex = DFBrowser_Window::SingleSelected (aSelectedIndices, 0);
|
QModelIndex aSelectedIndex = TreeModel_ModelBase::SingleSelected (aSelectedIndices, 0);
|
||||||
|
|
||||||
if (!mySelectionProcessingBlocked) // we're processing action click
|
if (!mySelectionProcessingBlocked) // we're processing action click
|
||||||
setForwardIndex (aSelectedIndex);
|
setForwardIndex (aSelectedIndex);
|
||||||
@ -152,7 +155,7 @@ void DFBrowser_TreeLevelLine::onTableSelectionChanged (const QItemSelection& the
|
|||||||
if (!aTableModel)
|
if (!aTableModel)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
QModelIndex aSelectedIndex = DFBrowser_Window::SingleSelected (theSelected.indexes(), 0, Qt::Vertical);
|
QModelIndex aSelectedIndex = TreeModel_ModelBase::SingleSelected (theSelected.indexes(), 0, Qt::Vertical);
|
||||||
emit indexSelected (aTableModel->GetTreeViewIndex (aSelectedIndex));
|
emit indexSelected (aTableModel->GetTreeViewIndex (aSelectedIndex));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
#include <inspector/DFBrowserPane_Tools.hxx>
|
#include <inspector/DFBrowserPane_Tools.hxx>
|
||||||
#include <inspector/TreeModel_ModelBase.hxx>
|
#include <inspector/TreeModel_ModelBase.hxx>
|
||||||
|
|
||||||
|
#include <inspector/ViewControl_Tools.hxx>
|
||||||
#include <Standard_WarningsDisable.hxx>
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QItemSelectionModel>
|
#include <QItemSelectionModel>
|
||||||
#include <QGridLayout>
|
#include <QGridLayout>
|
||||||
@ -62,7 +63,7 @@ DFBrowser_TreeLevelView::DFBrowser_TreeLevelView (QWidget* theParent)
|
|||||||
connect (myTableView, SIGNAL (doubleClicked (const QModelIndex&)),
|
connect (myTableView, SIGNAL (doubleClicked (const QModelIndex&)),
|
||||||
this, SLOT (onTableDoubleClicked (const QModelIndex&)));
|
this, SLOT (onTableDoubleClicked (const QModelIndex&)));
|
||||||
|
|
||||||
DFBrowser_Window::SetWhiteBackground (myTableView);
|
ViewControl_Tools::SetWhiteBackground (myTableView);
|
||||||
myTableView->setGridStyle (Qt::NoPen);
|
myTableView->setGridStyle (Qt::NoPen);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -129,7 +130,7 @@ void DFBrowser_TreeLevelView::onTableSelectionChanged (const QItemSelection& the
|
|||||||
const QItemSelection&)
|
const QItemSelection&)
|
||||||
{
|
{
|
||||||
QModelIndexList aSelectedIndices = theSelected.indexes();
|
QModelIndexList aSelectedIndices = theSelected.indexes();
|
||||||
QModelIndex aSelectedIndex = DFBrowser_Window::SingleSelected (aSelectedIndices, 0);
|
QModelIndex aSelectedIndex = TreeModel_ModelBase::SingleSelected (aSelectedIndices, 0);
|
||||||
|
|
||||||
DFBrowser_TreeLevelViewModel* aTableModel = dynamic_cast<DFBrowser_TreeLevelViewModel*> (myTableView->model());
|
DFBrowser_TreeLevelViewModel* aTableModel = dynamic_cast<DFBrowser_TreeLevelViewModel*> (myTableView->model());
|
||||||
if (aTableModel && aTableModel->IsInitialized())
|
if (aTableModel && aTableModel->IsInitialized())
|
||||||
|
@ -32,6 +32,8 @@
|
|||||||
#include <QAbstractItemModel>
|
#include <QAbstractItemModel>
|
||||||
#include <Standard_WarningsRestore.hxx>
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
|
const int COLUMN_NAME_WIDTH = 300;
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : Constructor
|
// function : Constructor
|
||||||
// purpose :
|
// purpose :
|
||||||
@ -39,11 +41,21 @@
|
|||||||
DFBrowser_TreeModel::DFBrowser_TreeModel (QObject* theParent, DFBrowser_Module* theModule)
|
DFBrowser_TreeModel::DFBrowser_TreeModel (QObject* theParent, DFBrowser_Module* theModule)
|
||||||
: TreeModel_ModelBase (theParent)
|
: TreeModel_ModelBase (theParent)
|
||||||
{
|
{
|
||||||
m_pRootItem = DFBrowser_ItemApplication::CreateItem (TreeModel_ItemBasePtr());
|
SetHeaderItem (0, TreeModel_HeaderSection ("Name", COLUMN_NAME_WIDTH));
|
||||||
|
|
||||||
DFBrowser_ItemApplicationPtr aRootItem = itemDynamicCast<DFBrowser_ItemApplication> (m_pRootItem);
|
DFBrowser_ItemApplicationPtr aRootItem = itemDynamicCast<DFBrowser_ItemApplication> (m_pRootItem);
|
||||||
aRootItem->SetModule (theModule);
|
aRootItem->SetModule (theModule);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : createRootItem
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void DFBrowser_TreeModel::createRootItem (const int)
|
||||||
|
{
|
||||||
|
m_pRootItem = DFBrowser_ItemApplication::CreateItem (TreeModel_ItemBasePtr());
|
||||||
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : Init
|
// function : Init
|
||||||
// purpose :
|
// purpose :
|
||||||
|
@ -95,11 +95,10 @@ public:
|
|||||||
Standard_EXPORT virtual QVariant data (const QModelIndex& theIndex,
|
Standard_EXPORT virtual QVariant data (const QModelIndex& theIndex,
|
||||||
int theRole = Qt::DisplayRole) const Standard_OVERRIDE;
|
int theRole = Qt::DisplayRole) const Standard_OVERRIDE;
|
||||||
|
|
||||||
//! Returns count of columns in the model
|
protected:
|
||||||
//! \param theParent an index of the parent item
|
//! Creates root item
|
||||||
//! \return integer value
|
//! \param theColumnId index of a column
|
||||||
virtual int columnCount (const QModelIndex& theParent = QModelIndex()) const Standard_OVERRIDE
|
virtual void createRootItem (const int theColumnId);
|
||||||
{ (void)theParent; return 1; }
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
@ -33,20 +33,24 @@
|
|||||||
#include <inspector/DFBrowser_PropertyPanel.hxx>
|
#include <inspector/DFBrowser_PropertyPanel.hxx>
|
||||||
#include <inspector/DFBrowser_SearchLine.hxx>
|
#include <inspector/DFBrowser_SearchLine.hxx>
|
||||||
#include <inspector/DFBrowser_SearchView.hxx>
|
#include <inspector/DFBrowser_SearchView.hxx>
|
||||||
#include <inspector/DFBrowser_Shortcut.hxx>
|
|
||||||
#include <inspector/DFBrowser_Thread.hxx>
|
#include <inspector/DFBrowser_Thread.hxx>
|
||||||
#include <inspector/DFBrowser_ThreadItemSearch.hxx>
|
#include <inspector/DFBrowser_ThreadItemSearch.hxx>
|
||||||
#include <inspector/DFBrowser_ThreadItemUsedShapesMap.hxx>
|
|
||||||
#include <inspector/DFBrowser_Tools.hxx>
|
#include <inspector/DFBrowser_Tools.hxx>
|
||||||
#include <inspector/DFBrowser_TreeLevelLine.hxx>
|
#include <inspector/DFBrowser_TreeLevelLine.hxx>
|
||||||
#include <inspector/DFBrowser_TreeLevelView.hxx>
|
#include <inspector/DFBrowser_TreeLevelView.hxx>
|
||||||
#include <inspector/DFBrowser_TreeModel.hxx>
|
#include <inspector/DFBrowser_TreeModel.hxx>
|
||||||
#include <inspector/DFBrowser_TreeView.hxx>
|
|
||||||
|
|
||||||
#include <inspector/DFBrowserPane_AttributePaneSelector.hxx>
|
#include <inspector/DFBrowserPane_AttributePaneSelector.hxx>
|
||||||
#include <inspector/DFBrowserPane_SelectionKind.hxx>
|
#include <inspector/DFBrowserPane_SelectionKind.hxx>
|
||||||
#include <inspector/DFBrowserPane_Tools.hxx>
|
#include <inspector/DFBrowserPane_Tools.hxx>
|
||||||
|
|
||||||
|
#include <inspector/TreeModel_ContextMenu.hxx>
|
||||||
|
#include <inspector/TreeModel_Tools.hxx>
|
||||||
|
|
||||||
|
#include <inspector/ViewControl_TreeView.hxx>
|
||||||
|
|
||||||
|
#include <inspector/View_Tools.hxx>
|
||||||
|
|
||||||
#include <OSD_Directory.hxx>
|
#include <OSD_Directory.hxx>
|
||||||
#include <OSD_Environment.hxx>
|
#include <OSD_Environment.hxx>
|
||||||
#include <OSD_Protection.hxx>
|
#include <OSD_Protection.hxx>
|
||||||
@ -58,7 +62,8 @@
|
|||||||
#include <inspector/View_Window.hxx>
|
#include <inspector/View_Window.hxx>
|
||||||
|
|
||||||
#include <TDF_Tool.hxx>
|
#include <TDF_Tool.hxx>
|
||||||
#include <inspector/TreeModel_MessageDialog.hxx>
|
#include <inspector/ViewControl_MessageDialog.hxx>
|
||||||
|
#include <inspector/ViewControl_Tools.hxx>
|
||||||
|
|
||||||
#include <Standard_WarningsDisable.hxx>
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QAction>
|
#include <QAction>
|
||||||
@ -94,7 +99,6 @@ const int DFBROWSER_DEFAULT_VIEW_HEIGHT = 300;
|
|||||||
const int DFBROWSER_DEFAULT_POSITION_X = 200;
|
const int DFBROWSER_DEFAULT_POSITION_X = 200;
|
||||||
const int DFBROWSER_DEFAULT_POSITION_Y = 60;
|
const int DFBROWSER_DEFAULT_POSITION_Y = 60;
|
||||||
|
|
||||||
const int OCAF_BROWSER_COLUMN_WIDTH_0 = 300;
|
|
||||||
const int DEFAULT_PROPERTY_PANEL_HEIGHT = 200;
|
const int DEFAULT_PROPERTY_PANEL_HEIGHT = 200;
|
||||||
const int DEFAULT_BROWSER_HEIGHT = 800;
|
const int DEFAULT_BROWSER_HEIGHT = 800;
|
||||||
|
|
||||||
@ -108,21 +112,16 @@ DFBrowser_Window::DFBrowser_Window()
|
|||||||
myMainWindow = new QMainWindow (0);
|
myMainWindow = new QMainWindow (0);
|
||||||
|
|
||||||
// tree view
|
// tree view
|
||||||
myTreeView = new DFBrowser_TreeView (myMainWindow);
|
myTreeView = new ViewControl_TreeView (myMainWindow);
|
||||||
myTreeView->setContextMenuPolicy (Qt::CustomContextMenu);
|
myTreeView->setContextMenuPolicy (Qt::CustomContextMenu);
|
||||||
connect (myTreeView, SIGNAL (customContextMenuRequested (const QPoint&)),
|
connect (myTreeView, SIGNAL (customContextMenuRequested (const QPoint&)),
|
||||||
this, SLOT (onTreeViewContextMenuRequested (const QPoint&)));
|
this, SLOT (onTreeViewContextMenuRequested (const QPoint&)));
|
||||||
((DFBrowser_TreeView*)myTreeView)->SetPredefinedSize (DFBROWSER_DEFAULT_TREE_VIEW_WIDTH,
|
new TreeModel_ContextMenu (myTreeView);
|
||||||
DFBROWSER_DEFAULT_TREE_VIEW_HEIGHT);
|
((ViewControl_TreeView*)myTreeView)->SetPredefinedSize (QSize (DFBROWSER_DEFAULT_TREE_VIEW_WIDTH,
|
||||||
|
DFBROWSER_DEFAULT_TREE_VIEW_HEIGHT));
|
||||||
myTreeView->setHeaderHidden (true);
|
myTreeView->setHeaderHidden (true);
|
||||||
myTreeView->setSortingEnabled (Standard_False);
|
myTreeView->setSortingEnabled (Standard_False);
|
||||||
|
myMainWindow->setCentralWidget (myTreeView);
|
||||||
QDockWidget* aTreeViewWidget = new QDockWidget (tr ("TreeView"), myMainWindow);
|
|
||||||
aTreeViewWidget->setTitleBarWidget (new QWidget(myMainWindow));
|
|
||||||
aTreeViewWidget->setFeatures (QDockWidget::NoDockWidgetFeatures);
|
|
||||||
aTreeViewWidget->setWidget (myTreeView);
|
|
||||||
myMainWindow->addDockWidget (Qt::LeftDockWidgetArea, aTreeViewWidget);
|
|
||||||
myMainWindow->setCorner (Qt::BottomLeftCorner, Qt::LeftDockWidgetArea);
|
|
||||||
|
|
||||||
#if QT_VERSION < 0x050000
|
#if QT_VERSION < 0x050000
|
||||||
myTreeView->setStyle (new QWindowsStyle);
|
myTreeView->setStyle (new QWindowsStyle);
|
||||||
@ -137,22 +136,11 @@ DFBrowser_Window::DFBrowser_Window()
|
|||||||
connect (myTreeLevelLine, SIGNAL (updateClicked()), this, SLOT (onUpdateClicked()));
|
connect (myTreeLevelLine, SIGNAL (updateClicked()), this, SLOT (onUpdateClicked()));
|
||||||
|
|
||||||
QDockWidget* aTreeLineDockWidget = new QDockWidget (tr ("Tree Level Line"), myMainWindow);
|
QDockWidget* aTreeLineDockWidget = new QDockWidget (tr ("Tree Level Line"), myMainWindow);
|
||||||
|
aTreeLineDockWidget->setObjectName (aTreeLineDockWidget->windowTitle());
|
||||||
aTreeLineDockWidget->setTitleBarWidget (new QWidget(myMainWindow));
|
aTreeLineDockWidget->setTitleBarWidget (new QWidget(myMainWindow));
|
||||||
aTreeLineDockWidget->setFeatures (QDockWidget::NoDockWidgetFeatures);
|
|
||||||
aTreeLineDockWidget->setWidget (myTreeLevelLine->GetControl());
|
aTreeLineDockWidget->setWidget (myTreeLevelLine->GetControl());
|
||||||
myMainWindow->addDockWidget (Qt::TopDockWidgetArea, aTreeLineDockWidget);
|
myMainWindow->addDockWidget (Qt::TopDockWidgetArea, aTreeLineDockWidget);
|
||||||
|
|
||||||
// dump view window
|
|
||||||
QWidget* aDumpWidget = new QWidget (myMainWindow);
|
|
||||||
QVBoxLayout* aDumpLay = new QVBoxLayout (aDumpWidget);
|
|
||||||
aDumpLay->setMargin (0);
|
|
||||||
myDumpView = new DFBrowser_DumpView (aDumpWidget);
|
|
||||||
aDumpLay->addWidget (myDumpView->GetControl());
|
|
||||||
QDockWidget* aDumpDockWidget = new QDockWidget (tr ("Dump"), myMainWindow);
|
|
||||||
|
|
||||||
aDumpDockWidget->setWidget (aDumpWidget);
|
|
||||||
myMainWindow->addDockWidget (Qt::BottomDockWidgetArea, aDumpDockWidget);
|
|
||||||
|
|
||||||
// property panel
|
// property panel
|
||||||
myPropertyPanel = new DFBrowser_PropertyPanel (myMainWindow);
|
myPropertyPanel = new DFBrowser_PropertyPanel (myMainWindow);
|
||||||
DFBrowser_AttributePaneStack* anAttributePaneStack = myPropertyPanel->GetAttributesStack();
|
DFBrowser_AttributePaneStack* anAttributePaneStack = myPropertyPanel->GetAttributesStack();
|
||||||
@ -173,27 +161,44 @@ DFBrowser_Window::DFBrowser_Window()
|
|||||||
connect (aLevelView, SIGNAL (indexDoubleClicked (const QModelIndex&)),
|
connect (aLevelView, SIGNAL (indexDoubleClicked (const QModelIndex&)),
|
||||||
this, SLOT (onLevelDoubleClicked (const QModelIndex&)));
|
this, SLOT (onLevelDoubleClicked (const QModelIndex&)));
|
||||||
|
|
||||||
myMainWindow->setCentralWidget (myPropertyPanel->GetControl());
|
QDockWidget* aPropertyPanelWidget = new QDockWidget (tr ("PropertyPanel"), myMainWindow);
|
||||||
|
aPropertyPanelWidget->setObjectName (aPropertyPanelWidget->windowTitle());
|
||||||
|
aPropertyPanelWidget->setTitleBarWidget (new QWidget(myMainWindow));
|
||||||
|
aPropertyPanelWidget->setWidget (myPropertyPanel->GetControl());
|
||||||
|
myMainWindow->addDockWidget (Qt::RightDockWidgetArea, aPropertyPanelWidget);
|
||||||
|
|
||||||
|
// dump view window
|
||||||
|
QWidget* aDumpWidget = new QWidget(myMainWindow);
|
||||||
|
QVBoxLayout* aDumpLay = new QVBoxLayout(aDumpWidget);
|
||||||
|
aDumpLay->setMargin(0);
|
||||||
|
myDumpView = new DFBrowser_DumpView(aDumpWidget);
|
||||||
|
aDumpLay->addWidget(myDumpView->GetControl());
|
||||||
|
QDockWidget* aDumpDockWidget = new QDockWidget(tr("Dump"), myMainWindow);
|
||||||
|
aDumpDockWidget->setObjectName(aDumpDockWidget->windowTitle());
|
||||||
|
|
||||||
|
aDumpDockWidget->setWidget(aDumpWidget);
|
||||||
|
myMainWindow->addDockWidget(Qt::RightDockWidgetArea, aDumpDockWidget);
|
||||||
|
|
||||||
// view
|
// view
|
||||||
myViewWindow = new View_Window (myMainWindow);
|
myViewWindow = new View_Window (myMainWindow);
|
||||||
myViewWindow->GetView()->SetPredefinedSize (DFBROWSER_DEFAULT_VIEW_WIDTH, DFBROWSER_DEFAULT_VIEW_HEIGHT);
|
myViewWindow->GetView()->SetPredefinedSize (DFBROWSER_DEFAULT_VIEW_WIDTH, DFBROWSER_DEFAULT_VIEW_HEIGHT);
|
||||||
|
|
||||||
QDockWidget* aViewDockWidget = new QDockWidget (tr ("View"), myMainWindow);
|
QDockWidget* aViewDockWidget = new QDockWidget (tr ("View"), myMainWindow);
|
||||||
|
aViewDockWidget->setObjectName (aViewDockWidget->windowTitle());
|
||||||
aViewDockWidget->setTitleBarWidget (myViewWindow->GetViewToolBar()->GetControl());
|
aViewDockWidget->setTitleBarWidget (myViewWindow->GetViewToolBar()->GetControl());
|
||||||
aViewDockWidget->setWidget (myViewWindow);
|
aViewDockWidget->setWidget (myViewWindow);
|
||||||
myMainWindow->addDockWidget (Qt::BottomDockWidgetArea, aViewDockWidget);
|
myMainWindow->addDockWidget (Qt::RightDockWidgetArea, aViewDockWidget);
|
||||||
|
|
||||||
QColor aHColor (229, 243, 255);
|
QColor aHColor (229, 243, 255);
|
||||||
myViewWindow->GetDisplayer()->SetAttributeColor (Quantity_Color(aHColor.red() / 255., aHColor.green() / 255.,
|
myViewWindow->GetDisplayer()->SetAttributeColor (Quantity_Color(aHColor.red() / 255., aHColor.green() / 255.,
|
||||||
aHColor.blue() / 255., Quantity_TOC_RGB), View_PresentationType_Additional);
|
aHColor.blue() / 255., Quantity_TOC_RGB), View_PresentationType_Additional);
|
||||||
|
|
||||||
|
myMainWindow->splitDockWidget(aPropertyPanelWidget, aViewDockWidget, Qt::Vertical);
|
||||||
myMainWindow->tabifyDockWidget (aDumpDockWidget, aViewDockWidget);
|
myMainWindow->tabifyDockWidget (aDumpDockWidget, aViewDockWidget);
|
||||||
|
|
||||||
aTreeViewWidget->resize (DFBROWSER_DEFAULT_TREE_VIEW_WIDTH, DFBROWSER_DEFAULT_TREE_VIEW_HEIGHT);
|
myTreeView->resize (DFBROWSER_DEFAULT_TREE_VIEW_WIDTH, DFBROWSER_DEFAULT_TREE_VIEW_HEIGHT);
|
||||||
|
|
||||||
myThread = new DFBrowser_Thread (this);
|
myThread = new DFBrowser_Thread (this);
|
||||||
|
|
||||||
myShortcut = new DFBrowser_Shortcut (myMainWindow);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
@ -220,6 +225,62 @@ void DFBrowser_Window::SetParent (void* theParent)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : FillActionsMenu
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void DFBrowser_Window::FillActionsMenu (void* theMenu)
|
||||||
|
{
|
||||||
|
QMenu* aMenu = (QMenu*)theMenu;
|
||||||
|
QList<QDockWidget*> aDockwidgets = myMainWindow->findChildren<QDockWidget*>();
|
||||||
|
for (QList<QDockWidget*>::iterator it = aDockwidgets.begin(); it != aDockwidgets.end(); ++it)
|
||||||
|
{
|
||||||
|
QDockWidget* aDockWidget = *it;
|
||||||
|
if (aDockWidget->parentWidget() == myMainWindow)
|
||||||
|
aMenu->addAction (aDockWidget->toggleViewAction());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : GetPreferences
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void DFBrowser_Window::GetPreferences (TInspectorAPI_PreferencesDataMap& theItem)
|
||||||
|
{
|
||||||
|
theItem.Clear();
|
||||||
|
theItem.Bind ("geometry", TreeModel_Tools::ToString (myMainWindow->saveState()).toStdString().c_str());
|
||||||
|
|
||||||
|
QMap<QString, QString> anItems;
|
||||||
|
TreeModel_Tools::SaveState (myTreeView, anItems);
|
||||||
|
View_Tools::SaveState(myViewWindow, anItems);
|
||||||
|
|
||||||
|
for (QMap<QString, QString>::const_iterator anItemsIt = anItems.begin(); anItemsIt != anItems.end(); anItemsIt++)
|
||||||
|
theItem.Bind (anItemsIt.key().toStdString().c_str(), anItemsIt.value().toStdString().c_str());
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : SetPreferences
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void DFBrowser_Window::SetPreferences (const TInspectorAPI_PreferencesDataMap& theItem)
|
||||||
|
{
|
||||||
|
if (theItem.IsEmpty())
|
||||||
|
{
|
||||||
|
TreeModel_Tools::SetDefaultHeaderSections (myTreeView);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (TInspectorAPI_IteratorOfPreferencesDataMap anItemIt (theItem); anItemIt.More(); anItemIt.Next())
|
||||||
|
{
|
||||||
|
if (anItemIt.Key().IsEqual ("geometry"))
|
||||||
|
myMainWindow->restoreState (TreeModel_Tools::ToByteArray (anItemIt.Value().ToCString()));
|
||||||
|
else if (TreeModel_Tools::RestoreState (myTreeView, anItemIt.Key().ToCString(), anItemIt.Value().ToCString()))
|
||||||
|
continue;
|
||||||
|
else if (View_Tools::RestoreState(myViewWindow, anItemIt.Key().ToCString(), anItemIt.Value().ToCString()))
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : UpdateContent
|
// function : UpdateContent
|
||||||
// purpose :
|
// purpose :
|
||||||
@ -370,9 +431,6 @@ void DFBrowser_Window::Init (const NCollection_List<Handle(Standard_Transient)>&
|
|||||||
myTreeLevelLine->GetSearchLine()->SetModule (myModule);
|
myTreeLevelLine->GetSearchLine()->SetModule (myModule);
|
||||||
myPropertyPanel->GetAttributesStack()->GetSearchView()->InitModels();
|
myPropertyPanel->GetAttributesStack()->GetSearchView()->InitModels();
|
||||||
|
|
||||||
myShortcut->SetModule (myModule);
|
|
||||||
myThread->SetModule (myModule);
|
|
||||||
|
|
||||||
connect (myModule, SIGNAL (beforeUpdateTreeModel()), this, SLOT (onBeforeUpdateTreeModel()));
|
connect (myModule, SIGNAL (beforeUpdateTreeModel()), this, SLOT (onBeforeUpdateTreeModel()));
|
||||||
|
|
||||||
if (!aContext.IsNull())
|
if (!aContext.IsNull())
|
||||||
@ -506,7 +564,6 @@ void DFBrowser_Window::setExpandedLevels (QTreeView* theTreeView, const QModelIn
|
|||||||
void DFBrowser_Window::setOCAFModel (QAbstractItemModel* theModel)
|
void DFBrowser_Window::setOCAFModel (QAbstractItemModel* theModel)
|
||||||
{
|
{
|
||||||
myTreeView->setModel (theModel);
|
myTreeView->setModel (theModel);
|
||||||
myTreeView->setColumnWidth (0, OCAF_BROWSER_COLUMN_WIDTH_0);
|
|
||||||
|
|
||||||
QItemSelectionModel* aSelectionModel = new QItemSelectionModel (theModel);
|
QItemSelectionModel* aSelectionModel = new QItemSelectionModel (theModel);
|
||||||
myTreeView->setSelectionModel (aSelectionModel);
|
myTreeView->setSelectionModel (aSelectionModel);
|
||||||
@ -536,21 +593,9 @@ void DFBrowser_Window::onBeforeUpdateTreeModel()
|
|||||||
// =======================================================================
|
// =======================================================================
|
||||||
void DFBrowser_Window::ClearThreadCache()
|
void DFBrowser_Window::ClearThreadCache()
|
||||||
{
|
{
|
||||||
DFBrowser_ThreadItemUsedShapesMap::ClearSortedReferences (myModule);
|
|
||||||
DFBrowser_ThreadItemSearch::ClearValues (GetTreeLevelLine()->GetSearchLine());
|
DFBrowser_ThreadItemSearch::ClearValues (GetTreeLevelLine()->GetSearchLine());
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
|
||||||
// function : SetWhiteBackground
|
|
||||||
// purpose :
|
|
||||||
// =======================================================================
|
|
||||||
void DFBrowser_Window::SetWhiteBackground (QWidget* theControl)
|
|
||||||
{
|
|
||||||
QPalette aPalette = theControl->palette();
|
|
||||||
aPalette.setColor (QPalette::All, QPalette::Foreground, Qt::white);
|
|
||||||
theControl->setPalette (aPalette);
|
|
||||||
}
|
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : TmpDirectory
|
// function : TmpDirectory
|
||||||
// purpose :
|
// purpose :
|
||||||
@ -582,25 +627,6 @@ TCollection_AsciiString DFBrowser_Window::TmpDirectory()
|
|||||||
return aTmpDir;
|
return aTmpDir;
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
|
||||||
// function : SingleSelected
|
|
||||||
// purpose :
|
|
||||||
// =======================================================================
|
|
||||||
QModelIndex DFBrowser_Window::SingleSelected (const QModelIndexList& theIndices, const int theCellId,
|
|
||||||
const Qt::Orientation theOrientation)
|
|
||||||
{
|
|
||||||
QModelIndexList aFirstColumnSelectedIndices;
|
|
||||||
for (QModelIndexList::const_iterator anIndicesIt = theIndices.begin(), aLast = theIndices.end();
|
|
||||||
anIndicesIt != aLast; anIndicesIt++)
|
|
||||||
{
|
|
||||||
QModelIndex anIndex = *anIndicesIt;
|
|
||||||
if ((theOrientation == Qt::Horizontal && anIndex.column() == theCellId) ||
|
|
||||||
(theOrientation == Qt::Vertical && anIndex.row() == theCellId))
|
|
||||||
aFirstColumnSelectedIndices.append (anIndex);
|
|
||||||
}
|
|
||||||
return aFirstColumnSelectedIndices.size() == 1 ? aFirstColumnSelectedIndices.first() : QModelIndex();
|
|
||||||
}
|
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : onTreeViewContextMenuRequested
|
// function : onTreeViewContextMenuRequested
|
||||||
// purpose :
|
// purpose :
|
||||||
@ -608,25 +634,14 @@ QModelIndex DFBrowser_Window::SingleSelected (const QModelIndexList& theIndices,
|
|||||||
void DFBrowser_Window::onTreeViewContextMenuRequested (const QPoint& thePosition)
|
void DFBrowser_Window::onTreeViewContextMenuRequested (const QPoint& thePosition)
|
||||||
{
|
{
|
||||||
QMenu* aMenu = new QMenu(GetMainWindow());
|
QMenu* aMenu = new QMenu(GetMainWindow());
|
||||||
aMenu->addAction (createAction (tr ("Expand"), SLOT (onExpand())));
|
aMenu->addAction (ViewControl_Tools::CreateAction (tr ("Expand"), SLOT (onExpand()), GetMainWindow(), this));
|
||||||
aMenu->addAction (createAction (tr ("Expand All"), SLOT (onExpandAll())));
|
aMenu->addAction (ViewControl_Tools::CreateAction (tr ("Expand All"), SLOT (onExpandAll()), GetMainWindow(), this));
|
||||||
aMenu->addAction (createAction (tr ("Collapse All"), SLOT (onCollapseAll())));
|
aMenu->addAction (ViewControl_Tools::CreateAction (tr ("Collapse All"), SLOT (onCollapseAll()), GetMainWindow(), this));
|
||||||
|
|
||||||
QPoint aPoint = myTreeView->mapToGlobal (thePosition);
|
QPoint aPoint = myTreeView->mapToGlobal (thePosition);
|
||||||
aMenu->exec (aPoint);
|
aMenu->exec (aPoint);
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
|
||||||
// function : createAction
|
|
||||||
// purpose :
|
|
||||||
// =======================================================================
|
|
||||||
QAction* DFBrowser_Window::createAction (const QString& theText, const char* theSlot)
|
|
||||||
{
|
|
||||||
QAction* anAction = new QAction (theText, GetMainWindow());
|
|
||||||
connect (anAction, SIGNAL (triggered(bool)), this, theSlot);
|
|
||||||
return anAction;
|
|
||||||
}
|
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : onExpand
|
// function : onExpand
|
||||||
// purpose :
|
// purpose :
|
||||||
@ -694,7 +709,7 @@ void DFBrowser_Window::onTreeViewSelectionChanged (const QItemSelection& theSele
|
|||||||
anAttributePaneStack->GetTreeLevelView()->UpdateByTreeSelectionChanged (theSelected, theDeselected);
|
anAttributePaneStack->GetTreeLevelView()->UpdateByTreeSelectionChanged (theSelected, theDeselected);
|
||||||
|
|
||||||
QModelIndexList aSelectedIndices = theSelected.indexes();
|
QModelIndexList aSelectedIndices = theSelected.indexes();
|
||||||
QModelIndex aSelectedIndex = DFBrowser_Window::SingleSelected (aSelectedIndices, 0);
|
QModelIndex aSelectedIndex = TreeModel_ModelBase::SingleSelected (aSelectedIndices, 0);
|
||||||
|
|
||||||
myTreeView->scrollTo (aSelectedIndex);
|
myTreeView->scrollTo (aSelectedIndex);
|
||||||
View_Displayer* aDisplayer = myViewWindow->GetDisplayer();
|
View_Displayer* aDisplayer = myViewWindow->GetDisplayer();
|
||||||
@ -736,8 +751,12 @@ void DFBrowser_Window::onPaneSelectionChanged (const QItemSelection&,
|
|||||||
if (myParameters->FindParameters (aPluginName))
|
if (myParameters->FindParameters (aPluginName))
|
||||||
aParameters = myParameters->Parameters (aPluginName);
|
aParameters = myParameters->Parameters (aPluginName);
|
||||||
|
|
||||||
|
NCollection_List<TCollection_AsciiString> anItemNames;
|
||||||
|
if (myParameters->FindSelectedNames (aPluginName))
|
||||||
|
anItemNames = myParameters->GetSelectedNames (aPluginName);
|
||||||
|
|
||||||
int aParametersCount = aParameters.Extent();
|
int aParametersCount = aParameters.Extent();
|
||||||
anAttributePane->GetSelectionParameters (aSelectionModel, aParameters);
|
anAttributePane->GetSelectionParameters (aSelectionModel, aParameters, anItemNames);
|
||||||
if (aParametersCount != aParameters.Extent()) // some TShapes are added
|
if (aParametersCount != aParameters.Extent()) // some TShapes are added
|
||||||
{
|
{
|
||||||
TCollection_AsciiString aPluginShortName = aPluginName.SubString (3, aPluginName.Length());
|
TCollection_AsciiString aPluginShortName = aPluginName.SubString (3, aPluginName.Length());
|
||||||
@ -747,11 +766,12 @@ void DFBrowser_Window::onPaneSelectionChanged (const QItemSelection&,
|
|||||||
QString aQuestion = QString ("Would you like to activate %1 immediately?\n")
|
QString aQuestion = QString ("Would you like to activate %1 immediately?\n")
|
||||||
.arg (aPluginShortName.ToCString()).toStdString().c_str();
|
.arg (aPluginShortName.ToCString()).toStdString().c_str();
|
||||||
if (!myExportToShapeViewDialog)
|
if (!myExportToShapeViewDialog)
|
||||||
myExportToShapeViewDialog = new TreeModel_MessageDialog (myParent, aMessage, aQuestion);
|
myExportToShapeViewDialog = new ViewControl_MessageDialog (myParent, aMessage, aQuestion);
|
||||||
else
|
else
|
||||||
myExportToShapeViewDialog->SetInformation (aMessage);
|
myExportToShapeViewDialog->SetInformation (aMessage);
|
||||||
myExportToShapeViewDialog->Start();
|
myExportToShapeViewDialog->Start();
|
||||||
|
|
||||||
|
myParameters->SetSelectedNames (aPluginName, anItemNames);
|
||||||
myParameters->SetParameters (aPluginName, aParameters, myExportToShapeViewDialog->IsAccepted());
|
myParameters->SetParameters (aPluginName, aParameters, myExportToShapeViewDialog->IsAccepted());
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
@ -35,11 +35,10 @@
|
|||||||
class DFBrowser_DumpView;
|
class DFBrowser_DumpView;
|
||||||
class DFBrowser_Module;
|
class DFBrowser_Module;
|
||||||
class DFBrowser_PropertyPanel;
|
class DFBrowser_PropertyPanel;
|
||||||
class DFBrowser_Shortcut;
|
|
||||||
class DFBrowser_Thread;
|
class DFBrowser_Thread;
|
||||||
class DFBrowser_TreeLevelLine;
|
class DFBrowser_TreeLevelLine;
|
||||||
|
|
||||||
class TreeModel_MessageDialog;
|
class ViewControl_MessageDialog;
|
||||||
|
|
||||||
class View_ToolBar;
|
class View_ToolBar;
|
||||||
class View_Window;
|
class View_Window;
|
||||||
@ -73,6 +72,18 @@ public:
|
|||||||
//! \param theParameters a parameters container
|
//! \param theParameters a parameters container
|
||||||
void SetParameters (const Handle(TInspectorAPI_PluginParameters)& theParameters) { myParameters = theParameters; }
|
void SetParameters (const Handle(TInspectorAPI_PluginParameters)& theParameters) { myParameters = theParameters; }
|
||||||
|
|
||||||
|
//! Provide container for actions available in inspector on general level
|
||||||
|
//! \param theMenu if Qt implementation, it is QMenu object
|
||||||
|
Standard_EXPORT virtual void FillActionsMenu (void* theMenu);
|
||||||
|
|
||||||
|
//! Returns plugin preferences: dock widgets state, tree view columns.
|
||||||
|
//! \param theItem container of preference elements
|
||||||
|
Standard_EXPORT void GetPreferences (TInspectorAPI_PreferencesDataMap& theItem);
|
||||||
|
|
||||||
|
//! Applies plugin preferences
|
||||||
|
//! \param theItem container of preference elements
|
||||||
|
Standard_EXPORT void SetPreferences (const TInspectorAPI_PreferencesDataMap& theItem);
|
||||||
|
|
||||||
//! Applyes parameters to Init controls, opens files if there are in parameters, updates OCAF tree view model
|
//! Applyes parameters to Init controls, opens files if there are in parameters, updates OCAF tree view model
|
||||||
Standard_EXPORT void UpdateContent();
|
Standard_EXPORT void UpdateContent();
|
||||||
|
|
||||||
@ -101,22 +112,10 @@ public:
|
|||||||
//! Returns tree level line control
|
//! Returns tree level line control
|
||||||
DFBrowser_TreeLevelLine* GetTreeLevelLine() const { return myTreeLevelLine; }
|
DFBrowser_TreeLevelLine* GetTreeLevelLine() const { return myTreeLevelLine; }
|
||||||
|
|
||||||
//! Change palette of the widget to have white foreground
|
|
||||||
//! \param theControl a widget to be modified
|
|
||||||
Standard_EXPORT static void SetWhiteBackground (QWidget* theControl);
|
|
||||||
|
|
||||||
//! Returns temporary directory defined by environment variables TEMP or TMP
|
//! Returns temporary directory defined by environment variables TEMP or TMP
|
||||||
//! \return string value
|
//! \return string value
|
||||||
Standard_EXPORT static TCollection_AsciiString TmpDirectory();
|
Standard_EXPORT static TCollection_AsciiString TmpDirectory();
|
||||||
|
|
||||||
//! Returns single selected item in the cell of given orientation. If the orientation is Horizontal,
|
|
||||||
//! in the cell id colum, one row should be selected.
|
|
||||||
//! \param theIndices a container of selected indices
|
|
||||||
//! \param theCellId column index if orientation is horizontal, row index otherwise
|
|
||||||
//! \param theOrientation an orientation to apply the cell index
|
|
||||||
//! \return model index from the list
|
|
||||||
Standard_EXPORT static QModelIndex SingleSelected (const QModelIndexList& theIndices, const int theCellId,
|
|
||||||
const Qt::Orientation theOrientation = Qt::Horizontal);
|
|
||||||
private slots:
|
private slots:
|
||||||
|
|
||||||
//! Cleans history in tree level line, clears cache of thread processing, starts threads for application
|
//! Cleans history in tree level line, clears cache of thread processing, starts threads for application
|
||||||
@ -191,12 +190,6 @@ private:
|
|||||||
//! \param theIndices a container of OCAF tree view model indices
|
//! \param theIndices a container of OCAF tree view model indices
|
||||||
void highlightIndices (const QModelIndexList& theIndices);
|
void highlightIndices (const QModelIndexList& theIndices);
|
||||||
|
|
||||||
//! Creates an action with the given text connected to the slot
|
|
||||||
//! \param theText an action text value
|
|
||||||
//! \param theSlot a listener of triggered signal of the new action
|
|
||||||
//! \return a new action
|
|
||||||
QAction* createAction (const QString& theText, const char* theSlot);
|
|
||||||
|
|
||||||
//! Returns candidate to be the window title. It is either name of opened STEP file or the application path
|
//! Returns candidate to be the window title. It is either name of opened STEP file or the application path
|
||||||
//! \return string value
|
//! \return string value
|
||||||
QString getWindowTitle() const;
|
QString getWindowTitle() const;
|
||||||
@ -231,8 +224,7 @@ private:
|
|||||||
View_Window* myViewWindow; //!< V3d view to visualize presentations/references if it can be build for a selected item
|
View_Window* myViewWindow; //!< V3d view to visualize presentations/references if it can be build for a selected item
|
||||||
DFBrowser_DumpView* myDumpView; //!< Text editor where "Dump" method output is shown
|
DFBrowser_DumpView* myDumpView; //!< Text editor where "Dump" method output is shown
|
||||||
DFBrowser_Thread* myThread; //!< Threads manipulator, starting thread items, listens finalizing
|
DFBrowser_Thread* myThread; //!< Threads manipulator, starting thread items, listens finalizing
|
||||||
DFBrowser_Shortcut* myShortcut; //!< Short cut processor, F5 - updates OCAF view model content
|
ViewControl_MessageDialog* myExportToShapeViewDialog; //!< dialog about exporting TopoDS_Shape to ShapeView plugin
|
||||||
TreeModel_MessageDialog* myExportToShapeViewDialog; //!< dialog about exporting TopoDS_Shape to ShapeView plugin
|
|
||||||
Handle(TInspectorAPI_PluginParameters) myParameters; //!< contains application, context, files that should be opened
|
Handle(TInspectorAPI_PluginParameters) myParameters; //!< contains application, context, files that should be opened
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -30,15 +30,11 @@ DFBrowser_SearchLineModel.cxx
|
|||||||
DFBrowser_SearchLineModel.hxx
|
DFBrowser_SearchLineModel.hxx
|
||||||
DFBrowser_SearchView.cxx
|
DFBrowser_SearchView.cxx
|
||||||
DFBrowser_SearchView.hxx
|
DFBrowser_SearchView.hxx
|
||||||
DFBrowser_Shortcut.cxx
|
|
||||||
DFBrowser_Shortcut.hxx
|
|
||||||
DFBrowser_Thread.cxx
|
DFBrowser_Thread.cxx
|
||||||
DFBrowser_Thread.hxx
|
DFBrowser_Thread.hxx
|
||||||
DFBrowser_ThreadItem.hxx
|
DFBrowser_ThreadItem.hxx
|
||||||
DFBrowser_ThreadItemSearch.cxx
|
DFBrowser_ThreadItemSearch.cxx
|
||||||
DFBrowser_ThreadItemSearch.hxx
|
DFBrowser_ThreadItemSearch.hxx
|
||||||
DFBrowser_ThreadItemUsedShapesMap.cxx
|
|
||||||
DFBrowser_ThreadItemUsedShapesMap.hxx
|
|
||||||
DFBrowser_Tools.cxx
|
DFBrowser_Tools.cxx
|
||||||
DFBrowser_Tools.hxx
|
DFBrowser_Tools.hxx
|
||||||
DFBrowser_TreeLevelLine.cxx
|
DFBrowser_TreeLevelLine.cxx
|
||||||
@ -53,7 +49,5 @@ DFBrowser_TreeLevelViewModel.cxx
|
|||||||
DFBrowser_TreeLevelViewModel.hxx
|
DFBrowser_TreeLevelViewModel.hxx
|
||||||
DFBrowser_TreeModel.cxx
|
DFBrowser_TreeModel.cxx
|
||||||
DFBrowser_TreeModel.hxx
|
DFBrowser_TreeModel.hxx
|
||||||
DFBrowser_TreeView.cxx
|
|
||||||
DFBrowser_TreeView.hxx
|
|
||||||
DFBrowser_Window.cxx
|
DFBrowser_Window.cxx
|
||||||
DFBrowser_Window.hxx
|
DFBrowser_Window.hxx
|
||||||
|
@ -66,9 +66,11 @@ public:
|
|||||||
//! Returns selection parameters, that may be useful for communicate between tools
|
//! Returns selection parameters, that may be useful for communicate between tools
|
||||||
//! \param theModel one of selection models provided by this pane
|
//! \param theModel one of selection models provided by this pane
|
||||||
//! \theParameters a container of parameters, might be extended depending on the pane state(e.g. selection)
|
//! \theParameters a container of parameters, might be extended depending on the pane state(e.g. selection)
|
||||||
|
//! \theItemNames names to be selected for each selection parameter
|
||||||
virtual void GetSelectionParameters (QItemSelectionModel* theModel,
|
virtual void GetSelectionParameters (QItemSelectionModel* theModel,
|
||||||
NCollection_List<Handle(Standard_Transient)>& theParameters)
|
NCollection_List<Handle(Standard_Transient)>& theParameters,
|
||||||
{ (void)theModel; (void)theParameters; }
|
NCollection_List<TCollection_AsciiString>& theItemNames)
|
||||||
|
{ (void)theModel; (void)theParameters; (void)theItemNames; }
|
||||||
|
|
||||||
//! Returns presentation of the attribute to be visualized in the view
|
//! Returns presentation of the attribute to be visualized in the view
|
||||||
//! \param theAttribute a current attribute
|
//! \param theAttribute a current attribute
|
||||||
|
@ -29,7 +29,16 @@
|
|||||||
DFBrowserPane_TDataStdTreeNodeModel::DFBrowserPane_TDataStdTreeNodeModel (QObject* theParent)
|
DFBrowserPane_TDataStdTreeNodeModel::DFBrowserPane_TDataStdTreeNodeModel (QObject* theParent)
|
||||||
: TreeModel_ModelBase (theParent)
|
: TreeModel_ModelBase (theParent)
|
||||||
{
|
{
|
||||||
m_pRootItem = DFBrowserPane_TDataStdTreeNodeItem::CreateItem (TreeModel_ItemBasePtr(), 0, 0);
|
createRootItem(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : createRootItem
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void DFBrowserPane_TDataStdTreeNodeModel::createRootItem (const int theColumnId)
|
||||||
|
{
|
||||||
|
m_pRootItem = DFBrowserPane_TDataStdTreeNodeItem::CreateItem (TreeModel_ItemBasePtr(), 0, theColumnId);
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
|
@ -56,6 +56,11 @@ public:
|
|||||||
virtual int columnCount (const QModelIndex& theParent = QModelIndex()) const Standard_OVERRIDE
|
virtual int columnCount (const QModelIndex& theParent = QModelIndex()) const Standard_OVERRIDE
|
||||||
{ (void)theParent; return 1; }
|
{ (void)theParent; return 1; }
|
||||||
|
|
||||||
|
protected:
|
||||||
|
//! Creates root item
|
||||||
|
//! \param theColumnId index of a column
|
||||||
|
virtual void createRootItem (const int theColumnId) Standard_OVERRIDE;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
Handle(TDF_Attribute) myAttribute; //! the parent attribute
|
Handle(TDF_Attribute) myAttribute; //! the parent attribute
|
||||||
|
@ -106,7 +106,7 @@ void DFBrowserPane_TDocStdOwner::GetValues (const Handle(TDF_Attribute)& theAttr
|
|||||||
<< aSeparationStr.ToCString() << aSeparationStr.ToCString()
|
<< aSeparationStr.ToCString() << aSeparationStr.ToCString()
|
||||||
<< "IsSaved" << DFBrowserPane_Tools::BoolToStr (aDocument->IsSaved())
|
<< "IsSaved" << DFBrowserPane_Tools::BoolToStr (aDocument->IsSaved())
|
||||||
<< "IsChanged" << DFBrowserPane_Tools::BoolToStr (aDocument->IsChanged())
|
<< "IsChanged" << DFBrowserPane_Tools::BoolToStr (aDocument->IsChanged())
|
||||||
<< "GetSavedTime" << aDocument->GetSavedTime()
|
<< "GetSavedTime" << QString::number (aDocument->GetSavedTime())
|
||||||
<< "GetName" << (aDocument->IsSaved() ? DFBrowserPane_Tools::ToString (aDocument->GetName()) : "")
|
<< "GetName" << (aDocument->IsSaved() ? DFBrowserPane_Tools::ToString (aDocument->GetName()) : "")
|
||||||
<< "GetPath" << (aDocument->IsSaved() ? DFBrowserPane_Tools::ToString (aDocument->GetPath()) : "")
|
<< "GetPath" << (aDocument->IsSaved() ? DFBrowserPane_Tools::ToString (aDocument->GetPath()) : "")
|
||||||
<< "GetData" << aDocumentDataInfo.ToCString()
|
<< "GetData" << aDocumentDataInfo.ToCString()
|
||||||
|
@ -22,6 +22,7 @@
|
|||||||
#include <inspector/DFBrowserPane_SelectionKind.hxx>
|
#include <inspector/DFBrowserPane_SelectionKind.hxx>
|
||||||
#include <inspector/DFBrowserPane_TableView.hxx>
|
#include <inspector/DFBrowserPane_TableView.hxx>
|
||||||
#include <inspector/DFBrowserPane_Tools.hxx>
|
#include <inspector/DFBrowserPane_Tools.hxx>
|
||||||
|
#include <inspector/TInspectorAPI_PluginParameters.hxx>
|
||||||
|
|
||||||
#include <AIS_InteractiveObject.hxx>
|
#include <AIS_InteractiveObject.hxx>
|
||||||
#include <AIS_Shape.hxx>
|
#include <AIS_Shape.hxx>
|
||||||
@ -367,7 +368,8 @@ int DFBrowserPane_TNamingNamedShape::GetSelectionKind (QItemSelectionModel* theM
|
|||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
void DFBrowserPane_TNamingNamedShape::GetSelectionParameters (QItemSelectionModel* theModel,
|
void DFBrowserPane_TNamingNamedShape::GetSelectionParameters (QItemSelectionModel* theModel,
|
||||||
NCollection_List<Handle(Standard_Transient)>& theParameters)
|
NCollection_List<Handle(Standard_Transient)>& theParameters,
|
||||||
|
NCollection_List<TCollection_AsciiString>& theItemNames)
|
||||||
{
|
{
|
||||||
QTableView* aTableView = myTableView->GetTableView();
|
QTableView* aTableView = myTableView->GetTableView();
|
||||||
if (aTableView->selectionModel() != theModel)
|
if (aTableView->selectionModel() != theModel)
|
||||||
@ -385,6 +387,7 @@ void DFBrowserPane_TNamingNamedShape::GetSelectionParameters (QItemSelectionMode
|
|||||||
if (aShape.IsNull())
|
if (aShape.IsNull())
|
||||||
return;
|
return;
|
||||||
theParameters.Append (aShape.TShape());
|
theParameters.Append (aShape.TShape());
|
||||||
|
theItemNames.Append (TInspectorAPI_PluginParameters::ParametersToString (aShape));
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
|
@ -75,8 +75,10 @@ public:
|
|||||||
//! Returns selection parameters, that may be useful for communicate between tools
|
//! Returns selection parameters, that may be useful for communicate between tools
|
||||||
//! \param theModel one of selection models provided by this pane
|
//! \param theModel one of selection models provided by this pane
|
||||||
//! \theParameters a container of parameters, might be extended depending on the pane state(e.g. selection)
|
//! \theParameters a container of parameters, might be extended depending on the pane state(e.g. selection)
|
||||||
|
//! \theItemNames names to be selected for each selection parameter
|
||||||
Standard_EXPORT virtual void GetSelectionParameters (QItemSelectionModel* theModel,
|
Standard_EXPORT virtual void GetSelectionParameters (QItemSelectionModel* theModel,
|
||||||
NCollection_List<Handle(Standard_Transient)>& theParameters) Standard_OVERRIDE;
|
NCollection_List<Handle(Standard_Transient)>& theParameters,
|
||||||
|
NCollection_List<TCollection_AsciiString>& theItemNames) Standard_OVERRIDE;
|
||||||
|
|
||||||
//! Returns container of Label references to the attribute
|
//! Returns container of Label references to the attribute
|
||||||
//! \param theAttribute a current attribute
|
//! \param theAttribute a current attribute
|
||||||
|
@ -16,6 +16,8 @@
|
|||||||
#include <inspector/DFBrowserPane_TableView.hxx>
|
#include <inspector/DFBrowserPane_TableView.hxx>
|
||||||
#include <inspector/DFBrowserPane_Tools.hxx>
|
#include <inspector/DFBrowserPane_Tools.hxx>
|
||||||
|
|
||||||
|
#include <inspector/TreeModel_Tools.hxx>
|
||||||
|
|
||||||
#include <Standard_WarningsDisable.hxx>
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QAbstractTableModel>
|
#include <QAbstractTableModel>
|
||||||
#include <QHeaderView>
|
#include <QHeaderView>
|
||||||
@ -70,7 +72,7 @@ void DFBrowserPane_TableView::SetModel (QAbstractTableModel* theModel)
|
|||||||
// =======================================================================
|
// =======================================================================
|
||||||
void DFBrowserPane_TableView::SetFixedRowCount (const int theCount, QTableView* theView, const bool theScroll)
|
void DFBrowserPane_TableView::SetFixedRowCount (const int theCount, QTableView* theView, const bool theScroll)
|
||||||
{
|
{
|
||||||
int aHeight = theView->verticalHeader()->defaultSectionSize() * theCount + DFBrowserPane_Tools::HeaderSectionMargin();
|
int aHeight = theView->verticalHeader()->defaultSectionSize()*theCount + TreeModel_Tools::HeaderSectionMargin();
|
||||||
if (theScroll)
|
if (theScroll)
|
||||||
aHeight += theView->horizontalScrollBar()->sizeHint().height();
|
aHeight += theView->horizontalScrollBar()->sizeHint().height();
|
||||||
|
|
||||||
|
@ -25,9 +25,7 @@
|
|||||||
#include <TopoDS_Shape.hxx>
|
#include <TopoDS_Shape.hxx>
|
||||||
|
|
||||||
#include <Standard_WarningsDisable.hxx>
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QApplication>
|
|
||||||
#include <QString>
|
#include <QString>
|
||||||
#include <QStyle>
|
|
||||||
#include <QString>
|
#include <QString>
|
||||||
#include <QVariant>
|
#include <QVariant>
|
||||||
#include <Standard_WarningsRestore.hxx>
|
#include <Standard_WarningsRestore.hxx>
|
||||||
@ -45,10 +43,6 @@ public:
|
|||||||
//! \returns value
|
//! \returns value
|
||||||
Standard_EXPORT static int DefaultPanelColumnWidth (const int theColumnId);
|
Standard_EXPORT static int DefaultPanelColumnWidth (const int theColumnId);
|
||||||
|
|
||||||
//! Returns header margin, defined in style settings of application
|
|
||||||
//! \return integer value
|
|
||||||
Standard_EXPORT static int HeaderSectionMargin() { return qApp->style()->pixelMetric (QStyle::PM_HeaderMargin); }
|
|
||||||
|
|
||||||
//! Returns a string presentation of the label
|
//! Returns a string presentation of the label
|
||||||
//! \param theLabel a label object
|
//! \param theLabel a label object
|
||||||
//! \return the string value
|
//! \return the string value
|
||||||
@ -69,7 +63,7 @@ public:
|
|||||||
//! Returns "true" or "false" text for the given boolean state
|
//! Returns "true" or "false" text for the given boolean state
|
||||||
//! \param theValue a boolean value
|
//! \param theValue a boolean value
|
||||||
//! \return string value
|
//! \return string value
|
||||||
Standard_EXPORT static QString BoolToStr (const Standard_Boolean theValue) { return theValue ? "true" : "false"; }
|
Standard_EXPORT static QString BoolToStr (const bool theValue) { return theValue ? "true" : "false"; }
|
||||||
|
|
||||||
//! Converts a Qt string to OCCT extended string
|
//! Converts a Qt string to OCCT extended string
|
||||||
//! \param theValue a converted string
|
//! \param theValue a converted string
|
||||||
|
@ -164,12 +164,13 @@ int DFBrowserPaneXDE_AttributeCommonPane::GetSelectionKind (QItemSelectionModel*
|
|||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
void DFBrowserPaneXDE_AttributeCommonPane::GetSelectionParameters (QItemSelectionModel* theModel,
|
void DFBrowserPaneXDE_AttributeCommonPane::GetSelectionParameters (QItemSelectionModel* theModel,
|
||||||
NCollection_List<Handle(Standard_Transient)>& theParameters)
|
NCollection_List<Handle(Standard_Transient)>& theParameters,
|
||||||
|
NCollection_List<TCollection_AsciiString>& theItemNames)
|
||||||
{
|
{
|
||||||
if (myStandardPane)
|
if (myStandardPane)
|
||||||
myStandardPane->GetSelectionParameters (theModel, theParameters);
|
myStandardPane->GetSelectionParameters (theModel, theParameters, theItemNames);
|
||||||
|
|
||||||
DFBrowserPane_AttributePane::GetSelectionParameters (theModel, theParameters);
|
DFBrowserPane_AttributePane::GetSelectionParameters (theModel, theParameters, theItemNames);
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
|
@ -83,8 +83,10 @@ public:
|
|||||||
//! Returns selection parameters, that may be useful for communicate between tools
|
//! Returns selection parameters, that may be useful for communicate between tools
|
||||||
//! \param theModel one of selection models provided by this pane
|
//! \param theModel one of selection models provided by this pane
|
||||||
//! \theParameters a container of parameters, might be extended depending on the pane state(e.g. selection)
|
//! \theParameters a container of parameters, might be extended depending on the pane state(e.g. selection)
|
||||||
|
//! \theItemNames names to be selected for each selection parameter
|
||||||
Standard_EXPORT virtual void GetSelectionParameters (QItemSelectionModel* theModel,
|
Standard_EXPORT virtual void GetSelectionParameters (QItemSelectionModel* theModel,
|
||||||
NCollection_List<Handle(Standard_Transient)>& theParameters) Standard_OVERRIDE;
|
NCollection_List<Handle(Standard_Transient)>& theParameters,
|
||||||
|
NCollection_List<TCollection_AsciiString>& theItemNames) Standard_OVERRIDE;
|
||||||
|
|
||||||
//! Returns presentation of the attribute to be visualized in the view
|
//! Returns presentation of the attribute to be visualized in the view
|
||||||
//! \param theAttribute a current attribute
|
//! \param theAttribute a current attribute
|
||||||
|
@ -14,5 +14,7 @@ ShapeView_Tools.cxx
|
|||||||
ShapeView_Tools.hxx
|
ShapeView_Tools.hxx
|
||||||
ShapeView_TreeModel.cxx
|
ShapeView_TreeModel.cxx
|
||||||
ShapeView_TreeModel.hxx
|
ShapeView_TreeModel.hxx
|
||||||
|
ShapeView_VisibilityState.cxx
|
||||||
|
ShapeView_VisibilityState.hxx
|
||||||
ShapeView_Window.cxx
|
ShapeView_Window.cxx
|
||||||
ShapeView_Window.hxx
|
ShapeView_Window.hxx
|
||||||
|
@ -15,18 +15,6 @@
|
|||||||
|
|
||||||
#include <inspector/ShapeView_Communicator.hxx>
|
#include <inspector/ShapeView_Communicator.hxx>
|
||||||
|
|
||||||
#include <inspector/ShapeView_Window.hxx>
|
|
||||||
#include <OSD_Directory.hxx>
|
|
||||||
#include <OSD_Environment.hxx>
|
|
||||||
#include <OSD_Path.hxx>
|
|
||||||
#include <OSD_Protection.hxx>
|
|
||||||
|
|
||||||
#include <Standard_WarningsDisable.hxx>
|
|
||||||
#include <QApplication>
|
|
||||||
#include <QMainWindow>
|
|
||||||
#include <QDir>
|
|
||||||
#include <Standard_WarningsRestore.hxx>
|
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : CreateCommunicator
|
// function : CreateCommunicator
|
||||||
// purpose : Creates a communicator by the library loading
|
// purpose : Creates a communicator by the library loading
|
||||||
@ -35,52 +23,3 @@ Standard_EXPORTEXTERNC TInspectorAPI_Communicator* CreateCommunicator()
|
|||||||
{
|
{
|
||||||
return new ShapeView_Communicator();
|
return new ShapeView_Communicator();
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
|
||||||
// function : Constructor
|
|
||||||
// purpose :
|
|
||||||
// =======================================================================
|
|
||||||
ShapeView_Communicator::ShapeView_Communicator()
|
|
||||||
: TInspectorAPI_Communicator(), myWindow (0)
|
|
||||||
{
|
|
||||||
// main window creation
|
|
||||||
TCollection_AsciiString aTmpDir;
|
|
||||||
#ifdef _WIN32
|
|
||||||
OSD_Environment anEnvironment ("TEMP");
|
|
||||||
aTmpDir = anEnvironment.Value();
|
|
||||||
if (aTmpDir.IsEmpty() )
|
|
||||||
{
|
|
||||||
anEnvironment.SetName("TMP");
|
|
||||||
aTmpDir = anEnvironment.Value();
|
|
||||||
if (aTmpDir.IsEmpty())
|
|
||||||
aTmpDir = "C:\\";
|
|
||||||
}
|
|
||||||
if (!aTmpDir.EndsWith ("\\"))
|
|
||||||
aTmpDir += "\\";
|
|
||||||
OSD_Path aTmpPath (aTmpDir);
|
|
||||||
OSD_Directory aTmpDirectory;
|
|
||||||
#else
|
|
||||||
OSD_Directory aTmpDirectory = OSD_Directory::BuildTemporary();
|
|
||||||
OSD_Path aTmpPath;
|
|
||||||
aTmpDirectory.Path (aTmpPath);
|
|
||||||
#endif
|
|
||||||
aTmpPath.DownTrek ("ShapeView");
|
|
||||||
aTmpDirectory.SetPath (aTmpPath);
|
|
||||||
if (!aTmpDirectory.Exists())
|
|
||||||
aTmpDirectory.Build (OSD_Protection());
|
|
||||||
|
|
||||||
aTmpDirectory.Path (aTmpPath);
|
|
||||||
TCollection_AsciiString aTmpDirectoryName;
|
|
||||||
aTmpPath.SystemName(aTmpDirectoryName);
|
|
||||||
myWindow = new ShapeView_Window (0, aTmpDirectoryName);
|
|
||||||
}
|
|
||||||
|
|
||||||
ShapeView_Communicator::~ShapeView_Communicator()
|
|
||||||
{
|
|
||||||
myWindow->RemoveAllShapes(); // removes all cached shapes and files in temporary directory
|
|
||||||
OSD_Path aPath (myWindow->GetTemporaryDirectory());
|
|
||||||
OSD_Directory aTmpDirectory (aPath);
|
|
||||||
// temporary directory can be removed only if is empty
|
|
||||||
aTmpDirectory.Remove();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@ class ShapeView_Communicator : public TInspectorAPI_Communicator
|
|||||||
public:
|
public:
|
||||||
|
|
||||||
//! Constructor
|
//! Constructor
|
||||||
Standard_EXPORT ShapeView_Communicator();
|
ShapeView_Communicator() : TInspectorAPI_Communicator(), myWindow (new ShapeView_Window (0)) {}
|
||||||
|
|
||||||
//! Destructor
|
//! Destructor
|
||||||
Standard_EXPORT virtual ~ShapeView_Communicator() Standard_OVERRIDE;
|
virtual ~ShapeView_Communicator() Standard_OVERRIDE { myWindow->RemoveAllShapes(); }
|
||||||
|
|
||||||
//! Provides the container with a parent where this container should be inserted.
|
//! Provides the container with a parent where this container should be inserted.
|
||||||
//! If Qt implementation, it should be QWidget with QLayout set inside
|
//! If Qt implementation, it should be QWidget with QLayout set inside
|
||||||
@ -41,6 +41,20 @@ public:
|
|||||||
virtual void SetParameters (const Handle(TInspectorAPI_PluginParameters)& theParameters) Standard_OVERRIDE
|
virtual void SetParameters (const Handle(TInspectorAPI_PluginParameters)& theParameters) Standard_OVERRIDE
|
||||||
{ myWindow->SetParameters (theParameters); }
|
{ myWindow->SetParameters (theParameters); }
|
||||||
|
|
||||||
|
//! Provide container for actions available in inspector on general level
|
||||||
|
//! \param theMenu if Qt implementation, it is QMenu object
|
||||||
|
Standard_EXPORT virtual void FillActionsMenu(void* theMenu) Standard_OVERRIDE { myWindow->FillActionsMenu (theMenu); }
|
||||||
|
|
||||||
|
//! Returns plugin preferences, empty implementation by default
|
||||||
|
//! \param theItem container of preference elements
|
||||||
|
virtual void GetPreferences (TInspectorAPI_PreferencesDataMap& theItem) Standard_OVERRIDE
|
||||||
|
{ myWindow->GetPreferences (theItem); }
|
||||||
|
|
||||||
|
//! Stores plugin preferences, empty implementation by default
|
||||||
|
//! \param theItem container of preference elements
|
||||||
|
virtual void SetPreferences (const TInspectorAPI_PreferencesDataMap& theItem) Standard_OVERRIDE
|
||||||
|
{ myWindow->SetPreferences (theItem); }
|
||||||
|
|
||||||
//! Calls update of the plugin's content
|
//! Calls update of the plugin's content
|
||||||
virtual void UpdateContent() Standard_OVERRIDE { myWindow->UpdateContent(); }
|
virtual void UpdateContent() Standard_OVERRIDE { myWindow->UpdateContent(); }
|
||||||
|
|
||||||
|
@ -96,21 +96,6 @@ QString ToName (const GeomAbs_Shape& theType)
|
|||||||
return QString();
|
return QString();
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
|
||||||
// function : ToFlags
|
|
||||||
// purpose :
|
|
||||||
// =======================================================================
|
|
||||||
void ToFlags (const TopoDS_Shape& theShape, QVariant& theValue, QVariant& theInfo)
|
|
||||||
{
|
|
||||||
QStringList aValues;
|
|
||||||
aValues << ToString (theShape.Checked()) << ToString (theShape.Closed())
|
|
||||||
<< ToString (theShape.Infinite()) << ToString (theShape.Locked())
|
|
||||||
<< ToString (theShape.Modified()) << ToString (theShape.Orientable());
|
|
||||||
|
|
||||||
theValue = aValues.join ("/");
|
|
||||||
theInfo = "Checked/Closed/Infinite/Locked/Modified/Orientable";
|
|
||||||
}
|
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : ToOtherInfo
|
// function : ToOtherInfo
|
||||||
// purpose :
|
// purpose :
|
||||||
@ -171,14 +156,6 @@ void ToOtherInfo (const TopoDS_Shape& theShape, QVariant& theValue, QVariant& th
|
|||||||
theInfo = QString ("%1:\n%2").arg (anInfo.join (" / ")).arg (aValues.join ("\n"));
|
theInfo = QString ("%1:\n%2").arg (anInfo.join (" / ")).arg (aValues.join ("\n"));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case TopAbs_VERTEX:
|
|
||||||
{
|
|
||||||
TopoDS_Vertex aVertex = TopoDS::Vertex (theShape);
|
|
||||||
gp_Pnt aPoint = BRep_Tool::Pnt (aVertex);
|
|
||||||
theValue = ToString (aPoint);
|
|
||||||
theInfo = "(X, Y, Z) of gp_Pnt";
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case TopAbs_SHAPE:
|
case TopAbs_SHAPE:
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
@ -235,25 +212,59 @@ QVariant ShapeView_ItemShape::initValue(const int theRole) const
|
|||||||
if (theRole != Qt::DisplayRole && theRole != Qt::ToolTipRole)
|
if (theRole != Qt::DisplayRole && theRole != Qt::ToolTipRole)
|
||||||
return QVariant();
|
return QVariant();
|
||||||
|
|
||||||
bool isDisplayRole = theRole == Qt::DisplayRole;
|
|
||||||
switch (Column())
|
switch (Column())
|
||||||
{
|
{
|
||||||
case 0: return isDisplayRole ? ToName (aShape.ShapeType()) : "ShapeType";
|
case 0: return ToName (aShape.ShapeType());
|
||||||
case 1: return isDisplayRole ? (rowCount() > 0 ? QVariant (rowCount()) : QVariant())
|
case 2: return rowCount() > 0 ? QVariant (rowCount()) : QVariant();
|
||||||
: QVariant ("Number of sub shapes");
|
case 3: return TShapePointer().ToCString();
|
||||||
case 2: return isDisplayRole ? TShapePointer().ToCString() : "TShape pointer";
|
case 4: return ToName(aShape.Orientation());
|
||||||
case 3: return isDisplayRole ? ToName(aShape.Orientation()) : "Orientation";
|
case 5: return locationInfo(aShape.Location());
|
||||||
case 4: return isDisplayRole ? locationInfo(aShape.Location()) : "Location";
|
case 6: return ToString (aShape.Checked());
|
||||||
case 5:
|
case 7: return ToString (aShape.Closed());
|
||||||
case 6:
|
case 8: return ToString (aShape.Infinite());
|
||||||
case 7:
|
case 9: return ToString (aShape.Locked());
|
||||||
|
case 10: return ToString (aShape.Modified());
|
||||||
|
case 11: return ToString (aShape.Orientable());
|
||||||
|
case 12:
|
||||||
{
|
{
|
||||||
QVariant aDataInfo, aTooTipInfo;
|
if (aShape.ShapeType() != TopAbs_VERTEX)
|
||||||
if (Column() == 5)
|
return QVariant();
|
||||||
ToFlags(aShape, aDataInfo, aTooTipInfo);
|
TopoDS_Vertex aVertex = TopoDS::Vertex (aShape);
|
||||||
else if (Column() == 6)
|
gp_Pnt aPoint = BRep_Tool::Pnt (aVertex);
|
||||||
ToOtherInfo(aShape, aDataInfo, aTooTipInfo);
|
return ToString (aPoint);
|
||||||
return isDisplayRole ? aDataInfo : aTooTipInfo;
|
}
|
||||||
|
case 13:
|
||||||
|
case 14:
|
||||||
|
case 15:
|
||||||
|
case 16:
|
||||||
|
case 17:
|
||||||
|
case 18:
|
||||||
|
case 19:
|
||||||
|
{
|
||||||
|
if (aShape.ShapeType() != TopAbs_EDGE)
|
||||||
|
return QVariant();
|
||||||
|
|
||||||
|
TopoDS_Edge anEdge = TopoDS::Edge(aShape);
|
||||||
|
double aFirst, aLast;
|
||||||
|
Handle(Geom_Curve) aCurve = BRep_Tool::Curve(anEdge, aFirst, aLast);
|
||||||
|
|
||||||
|
GeomAdaptor_Curve aAdaptor(aCurve, aFirst, aLast);
|
||||||
|
gp_Pnt aFirstPnt = aAdaptor.Value(aFirst);
|
||||||
|
gp_Pnt aLastPnt = aAdaptor.Value(aLast);
|
||||||
|
|
||||||
|
BRepAdaptor_Curve aBRepAdaptor = BRepAdaptor_Curve(anEdge);
|
||||||
|
Adaptor3d_Curve* anAdaptor3d = &aBRepAdaptor;
|
||||||
|
|
||||||
|
switch (Column())
|
||||||
|
{
|
||||||
|
case 13: return QString::number (GCPnts_AbscissaPoint::Length(*anAdaptor3d));
|
||||||
|
case 14: return aCurve->DynamicType()->Name();
|
||||||
|
case 15: return ToString (aFirstPnt);
|
||||||
|
case 16: return ToString (aLastPnt);
|
||||||
|
case 17: return ToName (aCurve->Continuity());
|
||||||
|
case 18: return ToString (aCurve->IsClosed());
|
||||||
|
case 19: return aCurve->IsPeriodic() ? QString::number (aCurve->Period()) : ToString (aCurve->IsPeriodic());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
default: break;
|
default: break;
|
||||||
}
|
}
|
||||||
|
@ -31,12 +31,3 @@ TopoDS_Shape ShapeView_Tools::ReadShape (const TCollection_AsciiString& theFileN
|
|||||||
BRepTools::Read (aShape, theFileName.ToCString(), aBuilder);
|
BRepTools::Read (aShape, theFileName.ToCString(), aBuilder);
|
||||||
return aShape;
|
return aShape;
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
|
||||||
// function : CreatePresentation
|
|
||||||
// purpose :
|
|
||||||
// =======================================================================
|
|
||||||
Handle(Standard_Transient) ShapeView_Tools::CreatePresentation (const TopoDS_Shape& theShape)
|
|
||||||
{
|
|
||||||
return new AIS_Shape (theShape);
|
|
||||||
}
|
|
||||||
|
@ -32,11 +32,6 @@ public:
|
|||||||
//! \param theFileName a file name
|
//! \param theFileName a file name
|
||||||
//! \return shape or NULL
|
//! \return shape or NULL
|
||||||
Standard_EXPORT static TopoDS_Shape ReadShape (const TCollection_AsciiString& theFileName);
|
Standard_EXPORT static TopoDS_Shape ReadShape (const TCollection_AsciiString& theFileName);
|
||||||
|
|
||||||
//! Creates AIS_Shape for the shape
|
|
||||||
//! \param theShape a shape
|
|
||||||
//! \return presentation
|
|
||||||
Standard_EXPORT static Handle(Standard_Transient) CreatePresentation (const TopoDS_Shape& theShape);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -19,6 +19,14 @@
|
|||||||
#include <inspector/ShapeView_ItemRoot.hxx>
|
#include <inspector/ShapeView_ItemRoot.hxx>
|
||||||
#include <inspector/ShapeView_ItemShape.hxx>
|
#include <inspector/ShapeView_ItemShape.hxx>
|
||||||
|
|
||||||
|
const int COLUMN_NAME_WIDTH = 190;
|
||||||
|
const int COLUMN_SIZE_WIDTH = 30;
|
||||||
|
const int COLUMN_POINTER_WIDTH = 70;
|
||||||
|
const int COLUMN_SHAPE_TYPE_WIDTH = 75;
|
||||||
|
|
||||||
|
const int COLUMN_ORIENTATION_WIDTH = 70;
|
||||||
|
const int COLUMN_LOCATION_WIDTH = 120;
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : Constructor
|
// function : Constructor
|
||||||
// purpose :
|
// purpose :
|
||||||
@ -26,10 +34,40 @@
|
|||||||
ShapeView_TreeModel::ShapeView_TreeModel (QObject* theParent)
|
ShapeView_TreeModel::ShapeView_TreeModel (QObject* theParent)
|
||||||
: TreeModel_ModelBase (theParent)
|
: TreeModel_ModelBase (theParent)
|
||||||
{
|
{
|
||||||
for (int aColumnId = 0, aNbColumns = columnCount(); aColumnId < aNbColumns; aColumnId++)
|
SetHeaderItem (0, TreeModel_HeaderSection ("Name", COLUMN_NAME_WIDTH));
|
||||||
myRootItems.insert(aColumnId, ShapeView_ItemRoot::CreateItem(TreeModel_ItemBasePtr(), 0, aColumnId));
|
// column 1 is reserved for visiblity state
|
||||||
|
SetHeaderItem (2, TreeModel_HeaderSection ("Size", COLUMN_SIZE_WIDTH));
|
||||||
|
SetHeaderItem (3, TreeModel_HeaderSection ("Pointer", COLUMN_POINTER_WIDTH));
|
||||||
|
SetHeaderItem (4, TreeModel_HeaderSection ("Orientation", COLUMN_ORIENTATION_WIDTH));
|
||||||
|
SetHeaderItem (5, TreeModel_HeaderSection ("Location", COLUMN_LOCATION_WIDTH));
|
||||||
|
|
||||||
m_pRootItem = myRootItems[0];
|
SetHeaderItem (6, TreeModel_HeaderSection ("Checked", -1, true));
|
||||||
|
SetHeaderItem (7, TreeModel_HeaderSection ("Closed", -1, true));
|
||||||
|
SetHeaderItem (8, TreeModel_HeaderSection ("Infinite", -1, true));
|
||||||
|
SetHeaderItem (9, TreeModel_HeaderSection ("Locked", -1, true));
|
||||||
|
SetHeaderItem (10, TreeModel_HeaderSection ("Modified", -1, true));
|
||||||
|
SetHeaderItem (11, TreeModel_HeaderSection ("Orientable", -1, true));
|
||||||
|
|
||||||
|
SetHeaderItem (12, TreeModel_HeaderSection ("VERTEX: (X, Y, Z)", -1, true));
|
||||||
|
|
||||||
|
SetHeaderItem (13, TreeModel_HeaderSection ("EDGE: Length", -1, true));
|
||||||
|
SetHeaderItem (14, TreeModel_HeaderSection ("DynamicType", -1, true));
|
||||||
|
SetHeaderItem (15, TreeModel_HeaderSection ("First", -1, true));
|
||||||
|
SetHeaderItem (16, TreeModel_HeaderSection ("Last", -1, true));
|
||||||
|
SetHeaderItem (17, TreeModel_HeaderSection ("Continuity", -1, true));
|
||||||
|
SetHeaderItem (18, TreeModel_HeaderSection ("IsClosed", -1, true));
|
||||||
|
SetHeaderItem (19, TreeModel_HeaderSection ("IsPeriodic", -1, true));
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : createRootItem
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void ShapeView_TreeModel::createRootItem (const int theColumnId)
|
||||||
|
{
|
||||||
|
myRootItems.insert (theColumnId, ShapeView_ItemRoot::CreateItem (TreeModel_ItemBasePtr(), 0, theColumnId));
|
||||||
|
if (theColumnId == 0)
|
||||||
|
m_pRootItem = myRootItems[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
@ -63,31 +101,6 @@ void ShapeView_TreeModel::RemoveAllShapes()
|
|||||||
EmitLayoutChanged();
|
EmitLayoutChanged();
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
|
||||||
// function : headerData
|
|
||||||
// purpose :
|
|
||||||
// =======================================================================
|
|
||||||
QVariant ShapeView_TreeModel::headerData (int theSection, Qt::Orientation theOrientation, int theRole) const
|
|
||||||
{
|
|
||||||
if (theOrientation != Qt::Horizontal || theRole != Qt::DisplayRole)
|
|
||||||
return QVariant();
|
|
||||||
{
|
|
||||||
switch (theSection)
|
|
||||||
{
|
|
||||||
case 0: return "Name";
|
|
||||||
case 1: return "Size";
|
|
||||||
case 2: return "Pointer";
|
|
||||||
case 3: return "Orientation";
|
|
||||||
case 4: return "Location";
|
|
||||||
case 5: return "Flags"; // Checked/Closed/Infinite/Locked/Modified/Orientable
|
|
||||||
case 7: return "Other";
|
|
||||||
//Auto Triangulation
|
|
||||||
default: break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return QVariant();
|
|
||||||
}
|
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : FindIndex
|
// function : FindIndex
|
||||||
// purpose :
|
// purpose :
|
||||||
@ -105,21 +118,3 @@ QModelIndex ShapeView_TreeModel::FindIndex (const TopoDS_Shape& theShape) const
|
|||||||
}
|
}
|
||||||
return QModelIndex();
|
return QModelIndex();
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
|
||||||
// function : SingleSelected
|
|
||||||
// purpose :
|
|
||||||
// =======================================================================
|
|
||||||
QModelIndex ShapeView_TreeModel::SingleSelected (const QModelIndexList& theIndices, const int theCellId,
|
|
||||||
const Qt::Orientation theOrientation)
|
|
||||||
{
|
|
||||||
QModelIndexList aFirstColumnSelectedIndices;
|
|
||||||
for (QModelIndexList::const_iterator anIndicesIt = theIndices.begin(); anIndicesIt != theIndices.end(); anIndicesIt++)
|
|
||||||
{
|
|
||||||
QModelIndex anIndex = *anIndicesIt;
|
|
||||||
if ((theOrientation == Qt::Horizontal && anIndex.column() == theCellId) ||
|
|
||||||
(theOrientation == Qt::Vertical && anIndex.row() == theCellId))
|
|
||||||
aFirstColumnSelectedIndices.append (anIndex);
|
|
||||||
}
|
|
||||||
return aFirstColumnSelectedIndices.size() == 1 ? aFirstColumnSelectedIndices.first() : QModelIndex();
|
|
||||||
}
|
|
||||||
|
@ -53,32 +53,15 @@ public:
|
|||||||
virtual TreeModel_ItemBasePtr RootItem(const int theColumn) const Standard_OVERRIDE
|
virtual TreeModel_ItemBasePtr RootItem(const int theColumn) const Standard_OVERRIDE
|
||||||
{ return myRootItems[theColumn]; }
|
{ return myRootItems[theColumn]; }
|
||||||
|
|
||||||
//! Returns count of columns in the model.
|
|
||||||
//! \param theParent an index of the parent item
|
|
||||||
//! \return integer value
|
|
||||||
virtual int columnCount (const QModelIndex& theParent = QModelIndex()) const Standard_OVERRIDE
|
|
||||||
{ (void)theParent; return 7; }
|
|
||||||
|
|
||||||
//! Returns the header data for the given role and section in the header with the specified orientation.
|
|
||||||
//! \param theSection the header section. For horizontal headers - column number, for vertical headers - row number.
|
|
||||||
//! \param theOrientation a header orientation
|
|
||||||
//! \param theRole a data role
|
|
||||||
//! \return the header data
|
|
||||||
Standard_EXPORT virtual QVariant headerData (int theSection, Qt::Orientation theOrientation,
|
|
||||||
int theRole = Qt::DisplayRole ) const Standard_OVERRIDE;
|
|
||||||
//! Returns model index of the shape.
|
//! Returns model index of the shape.
|
||||||
//! \param theShape a shape object
|
//! \param theShape a shape object
|
||||||
//! \return the model index
|
//! \return the model index
|
||||||
QModelIndex FindIndex (const TopoDS_Shape& theShape) const;
|
QModelIndex FindIndex (const TopoDS_Shape& theShape) const;
|
||||||
|
|
||||||
//! Returns single selected item in the cell of given orientation. If the orientation is Horizontal,
|
protected:
|
||||||
//! in the cell id colum, one row should be selected.
|
//! Creates root item
|
||||||
//! \param theIndices a container of selected indices
|
//! \param theColumnId index of a column
|
||||||
//! \param theCellId column index if orientation is horizontal, row index otherwise
|
virtual void createRootItem (const int theColumnId) Standard_OVERRIDE;
|
||||||
//! \param theOrientation an orientation to apply the cell index
|
|
||||||
//! \return model index from the list
|
|
||||||
Standard_EXPORT static QModelIndex SingleSelected (const QModelIndexList& theIndices, const int theCellId,
|
|
||||||
const Qt::Orientation theOrientation = Qt::Horizontal);
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QMap<int, TreeModel_ItemBasePtr> myRootItems; //!< container of root items, for each column own root item
|
QMap<int, TreeModel_ItemBasePtr> myRootItems; //!< container of root items, for each column own root item
|
||||||
|
52
tools/ShapeView/ShapeView_VisibilityState.cxx
Normal file
52
tools/ShapeView/ShapeView_VisibilityState.cxx
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
// 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/ShapeView_VisibilityState.hxx>
|
||||||
|
|
||||||
|
#include <inspector/ShapeView_ItemShape.hxx>
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : SetVisible
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
bool ShapeView_VisibilityState::SetVisible (const QModelIndex& theIndex, const bool theState, const bool toEmitDataChanged)
|
||||||
|
{
|
||||||
|
TopoDS_Shape aShape = GetShape (theIndex);
|
||||||
|
if (aShape.IsNull())
|
||||||
|
return false;
|
||||||
|
|
||||||
|
myDisplayer->SetVisible (aShape, theState, myPresentationType);
|
||||||
|
|
||||||
|
if (toEmitDataChanged)
|
||||||
|
getModel()->EmitDataChanged (theIndex, theIndex);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : GetShape
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
TopoDS_Shape ShapeView_VisibilityState::GetShape (const QModelIndex& theIndex) const
|
||||||
|
{
|
||||||
|
TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex (theIndex);
|
||||||
|
if (!anItemBase)
|
||||||
|
return TopoDS_Shape();
|
||||||
|
|
||||||
|
ShapeView_ItemShapePtr aShapeItem = itemDynamicCast<ShapeView_ItemShape>(anItemBase);
|
||||||
|
if (!aShapeItem)
|
||||||
|
return TopoDS_Shape();
|
||||||
|
|
||||||
|
return aShapeItem->GetItemShape();
|
||||||
|
}
|
76
tools/ShapeView/ShapeView_VisibilityState.hxx
Normal file
76
tools/ShapeView/ShapeView_VisibilityState.hxx
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
// 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.
|
||||||
|
|
||||||
|
#ifndef ShapeView_VisibilityState_H
|
||||||
|
#define ShapeView_VisibilityState_H
|
||||||
|
|
||||||
|
#include <inspector/TreeModel_VisibilityState.hxx>
|
||||||
|
|
||||||
|
#include <inspector/View_Displayer.hxx>
|
||||||
|
|
||||||
|
#include <Standard.hxx>
|
||||||
|
#include <Standard_Macro.hxx>
|
||||||
|
#include <TopoDS_Shape.hxx>
|
||||||
|
|
||||||
|
class TreeModel_ModelBase;
|
||||||
|
|
||||||
|
//! \class ShapeView_VisibilityState
|
||||||
|
//! \brief Class provides connection between model and visualization control
|
||||||
|
class ShapeView_VisibilityState : public TreeModel_VisibilityState
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
//! Constructor
|
||||||
|
ShapeView_VisibilityState (TreeModel_ModelBase* theModel) : TreeModel_VisibilityState (theModel),
|
||||||
|
myPresentationType (View_PresentationType_Main) {}
|
||||||
|
|
||||||
|
//! Destructor
|
||||||
|
~ShapeView_VisibilityState() {}
|
||||||
|
|
||||||
|
//! Sets current displayer
|
||||||
|
//! \theDisplayer class that provides connection to visualized objects
|
||||||
|
void SetDisplayer (View_Displayer* theDisplayer) { myDisplayer = theDisplayer; }
|
||||||
|
|
||||||
|
//! Sets presentation type for displayer
|
||||||
|
//! \param theType type value
|
||||||
|
void SetPresentationType (const View_PresentationType theType) { myPresentationType = theType; }
|
||||||
|
|
||||||
|
//! Returns true if visibility of the item can be changed
|
||||||
|
//! \param theIndex tree model index
|
||||||
|
//! \return boolean value
|
||||||
|
virtual bool CanBeVisible (const QModelIndex& theIndex) const Standard_OVERRIDE { return !GetShape (theIndex).IsNull(); }
|
||||||
|
|
||||||
|
//! Sets visibility state
|
||||||
|
//! \theIndex tree model index
|
||||||
|
//! \param theState visibility state
|
||||||
|
//! \param toEmitDataChanged boolean flag whether emit of the model should be done immediatelly
|
||||||
|
//! \return true if state is changed
|
||||||
|
Standard_EXPORT virtual bool SetVisible (const QModelIndex& theIndex, const bool theState, const bool toEmitDataChanged) Standard_OVERRIDE;
|
||||||
|
|
||||||
|
//! Returns visibility state value
|
||||||
|
virtual bool IsVisible (const QModelIndex& theIndex) const Standard_OVERRIDE
|
||||||
|
{ return myDisplayer->IsVisible (GetShape (theIndex), myPresentationType); }
|
||||||
|
|
||||||
|
protected:
|
||||||
|
//! Gets shape of the view model by the parameter index if it has a shape
|
||||||
|
//! \param theIndex tree model index
|
||||||
|
//! \return shape instance
|
||||||
|
TopoDS_Shape GetShape (const QModelIndex& theIndex) const;
|
||||||
|
|
||||||
|
private:
|
||||||
|
View_Displayer* myDisplayer; //! view displayer
|
||||||
|
View_PresentationType myPresentationType; //! presentation type
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
@ -17,16 +17,23 @@
|
|||||||
#include <inspector/ShapeView_ItemRoot.hxx>
|
#include <inspector/ShapeView_ItemRoot.hxx>
|
||||||
#include <inspector/ShapeView_ItemShape.hxx>
|
#include <inspector/ShapeView_ItemShape.hxx>
|
||||||
#include <inspector/ShapeView_TreeModel.hxx>
|
#include <inspector/ShapeView_TreeModel.hxx>
|
||||||
|
#include <inspector/ShapeView_VisibilityState.hxx>
|
||||||
|
|
||||||
|
#include <inspector/TreeModel_Tools.hxx>
|
||||||
|
#include <inspector/TreeModel_ContextMenu.hxx>
|
||||||
|
|
||||||
|
#include <inspector/ViewControl_Tools.hxx>
|
||||||
|
#include <inspector/ViewControl_TreeView.hxx>
|
||||||
|
|
||||||
#include <inspector/View_Displayer.hxx>
|
#include <inspector/View_Displayer.hxx>
|
||||||
|
#include <inspector/View_PresentationType.hxx>
|
||||||
|
#include <inspector/View_Tools.hxx>
|
||||||
#include <inspector/View_ToolBar.hxx>
|
#include <inspector/View_ToolBar.hxx>
|
||||||
#include <inspector/View_Widget.hxx>
|
#include <inspector/View_Widget.hxx>
|
||||||
#include <inspector/View_Window.hxx>
|
#include <inspector/View_Window.hxx>
|
||||||
#include <inspector/View_Viewer.hxx>
|
#include <inspector/View_Viewer.hxx>
|
||||||
|
|
||||||
#include <inspector/ShapeView_Window.hxx>
|
#include <inspector/ShapeView_Window.hxx>
|
||||||
#include <inspector/ShapeView_ItemRoot.hxx>
|
|
||||||
#include <inspector/ShapeView_ItemShape.hxx>
|
|
||||||
#include <inspector/ShapeView_TreeModel.hxx>
|
|
||||||
#include <inspector/ShapeView_OpenFileDialog.hxx>
|
#include <inspector/ShapeView_OpenFileDialog.hxx>
|
||||||
#include <inspector/ShapeView_Tools.hxx>
|
#include <inspector/ShapeView_Tools.hxx>
|
||||||
|
|
||||||
@ -54,13 +61,6 @@
|
|||||||
#include <QVBoxLayout>
|
#include <QVBoxLayout>
|
||||||
#include <Standard_WarningsRestore.hxx>
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
const int FIRST_COLUMN_WIDTH = 190;
|
|
||||||
const int SIZE_COLUMN_WIDTH = 30;
|
|
||||||
const int POINTER_COLUMN_WIDTH = 70;
|
|
||||||
const int ORIENTATION_COLUMN_WIDTH = 70;
|
|
||||||
const int LOCATION_COLUMN_WIDTH = 120;
|
|
||||||
const int FLAGS_COLUMN_WIDTH = 70;
|
|
||||||
|
|
||||||
const int DEFAULT_TEXT_VIEW_WIDTH = 800;
|
const int DEFAULT_TEXT_VIEW_WIDTH = 800;
|
||||||
const int DEFAULT_TEXT_VIEW_HEIGHT = 700;
|
const int DEFAULT_TEXT_VIEW_HEIGHT = 700;
|
||||||
const int DEFAULT_TEXT_VIEW_POSITION_X = 430;
|
const int DEFAULT_TEXT_VIEW_POSITION_X = 430;
|
||||||
@ -75,95 +75,44 @@ const int DEFAULT_SHAPE_VIEW_POSITION_Y = 60;
|
|||||||
const int SHAPEVIEW_DEFAULT_TREE_VIEW_WIDTH = 600;
|
const int SHAPEVIEW_DEFAULT_TREE_VIEW_WIDTH = 600;
|
||||||
const int SHAPEVIEW_DEFAULT_TREE_VIEW_HEIGHT = 500;
|
const int SHAPEVIEW_DEFAULT_TREE_VIEW_HEIGHT = 500;
|
||||||
|
|
||||||
const int SHAPEVIEW_DEFAULT_VIEW_WIDTH = 200;//400;
|
const int SHAPEVIEW_DEFAULT_VIEW_WIDTH = 300;
|
||||||
const int SHAPEVIEW_DEFAULT_VIEW_HEIGHT = 1000;
|
const int SHAPEVIEW_DEFAULT_VIEW_HEIGHT = 1000;
|
||||||
|
|
||||||
//! \class ShapeView_TreeView
|
|
||||||
//! Extended tree view control with possibility to set predefined size.
|
|
||||||
class ShapeView_TreeView : public QTreeView
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
//! Constructor
|
|
||||||
ShapeView_TreeView (QWidget* theParent) : QTreeView (theParent), myDefaultWidth (-1), myDefaultHeight (-1) {}
|
|
||||||
|
|
||||||
//! Destructor
|
|
||||||
virtual ~ShapeView_TreeView() {}
|
|
||||||
|
|
||||||
//! Sets default size of control, that is used by the first control show
|
|
||||||
//! \param theDefaultWidth the width value
|
|
||||||
//! \param theDefaultHeight the height value
|
|
||||||
void SetPredefinedSize (int theDefaultWidth, int theDefaultHeight);
|
|
||||||
|
|
||||||
//! Returns predefined size if both values are positive, otherwise parent size hint
|
|
||||||
virtual QSize sizeHint() const Standard_OVERRIDE;
|
|
||||||
|
|
||||||
private:
|
|
||||||
|
|
||||||
int myDefaultWidth; //!< default width, -1 if it should not be used
|
|
||||||
int myDefaultHeight; //!< default height, -1 if it should not be used
|
|
||||||
};
|
|
||||||
|
|
||||||
// =======================================================================
|
|
||||||
// function : SetPredefinedSize
|
|
||||||
// purpose :
|
|
||||||
// =======================================================================
|
|
||||||
void ShapeView_TreeView::SetPredefinedSize (int theDefaultWidth, int theDefaultHeight)
|
|
||||||
{
|
|
||||||
myDefaultWidth = theDefaultWidth;
|
|
||||||
myDefaultHeight = theDefaultHeight;
|
|
||||||
}
|
|
||||||
|
|
||||||
// =======================================================================
|
|
||||||
// function : sizeHint
|
|
||||||
// purpose :
|
|
||||||
// =======================================================================
|
|
||||||
QSize ShapeView_TreeView::sizeHint() const
|
|
||||||
{
|
|
||||||
if (myDefaultWidth > 0 && myDefaultHeight > 0)
|
|
||||||
return QSize (myDefaultWidth, myDefaultHeight);
|
|
||||||
return QTreeView::sizeHint();
|
|
||||||
}
|
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : Constructor
|
// function : Constructor
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
ShapeView_Window::ShapeView_Window (QWidget* theParent, const TCollection_AsciiString& theTemporaryDirectory)
|
ShapeView_Window::ShapeView_Window (QWidget* theParent)
|
||||||
: QObject (theParent), myTemporaryDirectory (theTemporaryDirectory), myNextPosition (0)
|
: QObject (theParent), myNextPosition (0)
|
||||||
{
|
{
|
||||||
myMainWindow = new QMainWindow (theParent);
|
myMainWindow = new QMainWindow (theParent);
|
||||||
|
|
||||||
myTreeView = new ShapeView_TreeView (myMainWindow);
|
myTreeView = new ViewControl_TreeView (myMainWindow);
|
||||||
((ShapeView_TreeView*)myTreeView)->SetPredefinedSize (SHAPEVIEW_DEFAULT_TREE_VIEW_WIDTH,
|
((ViewControl_TreeView*)myTreeView)->SetPredefinedSize (QSize (SHAPEVIEW_DEFAULT_TREE_VIEW_WIDTH,
|
||||||
SHAPEVIEW_DEFAULT_TREE_VIEW_HEIGHT);
|
SHAPEVIEW_DEFAULT_TREE_VIEW_HEIGHT));
|
||||||
myTreeView->setContextMenuPolicy (Qt::CustomContextMenu);
|
myTreeView->setContextMenuPolicy (Qt::CustomContextMenu);
|
||||||
connect (myTreeView, SIGNAL (customContextMenuRequested (const QPoint&)),
|
connect (myTreeView, SIGNAL (customContextMenuRequested (const QPoint&)),
|
||||||
this, SLOT (onTreeViewContextMenuRequested (const QPoint&)));
|
this, SLOT (onTreeViewContextMenuRequested (const QPoint&)));
|
||||||
|
new TreeModel_ContextMenu (myTreeView);
|
||||||
ShapeView_TreeModel* aModel = new ShapeView_TreeModel (myTreeView);
|
ShapeView_TreeModel* aModel = new ShapeView_TreeModel (myTreeView);
|
||||||
myTreeView->setModel (aModel);
|
myTreeView->setModel (aModel);
|
||||||
|
ShapeView_VisibilityState* aVisibilityState = new ShapeView_VisibilityState (aModel);
|
||||||
QItemSelectionModel* aSelectionModel = new QItemSelectionModel (aModel);
|
aModel->SetVisibilityState (aVisibilityState);
|
||||||
myTreeView->setSelectionMode (QAbstractItemView::ExtendedSelection);
|
TreeModel_Tools::UseVisibilityColumn (myTreeView);
|
||||||
myTreeView->setSelectionModel (aSelectionModel);
|
|
||||||
connect (aSelectionModel, SIGNAL (selectionChanged (const QItemSelection&, const QItemSelection&)),
|
|
||||||
this, SLOT (onTreeViewSelectionChanged (const QItemSelection&, const QItemSelection&)));
|
|
||||||
|
|
||||||
QModelIndex aParentIndex = myTreeView->model()->index (0, 0);
|
QModelIndex aParentIndex = myTreeView->model()->index (0, 0);
|
||||||
myTreeView->setExpanded (aParentIndex, true);
|
myTreeView->setExpanded (aParentIndex, true);
|
||||||
myTreeView->setColumnWidth (0, FIRST_COLUMN_WIDTH);
|
|
||||||
myTreeView->setColumnWidth (1, SIZE_COLUMN_WIDTH);
|
|
||||||
myTreeView->setColumnWidth (2, POINTER_COLUMN_WIDTH);
|
|
||||||
myTreeView->setColumnWidth (3, ORIENTATION_COLUMN_WIDTH);
|
|
||||||
myTreeView->setColumnWidth (4, LOCATION_COLUMN_WIDTH);
|
|
||||||
myTreeView->setColumnWidth (5, FLAGS_COLUMN_WIDTH);
|
|
||||||
|
|
||||||
myMainWindow->setCentralWidget (myTreeView);
|
myMainWindow->setCentralWidget (myTreeView);
|
||||||
|
|
||||||
// view
|
// view
|
||||||
myViewWindow = new View_Window (myMainWindow);
|
myViewWindow = new View_Window (myMainWindow, false);
|
||||||
|
connect (myViewWindow, SIGNAL(eraseAllPerformed()), this, SLOT(onEraseAllPerformed()));
|
||||||
|
aVisibilityState->SetDisplayer (myViewWindow->GetDisplayer());
|
||||||
|
aVisibilityState->SetPresentationType (View_PresentationType_Main);
|
||||||
myViewWindow->GetView()->SetPredefinedSize (SHAPEVIEW_DEFAULT_VIEW_WIDTH, SHAPEVIEW_DEFAULT_VIEW_HEIGHT);
|
myViewWindow->GetView()->SetPredefinedSize (SHAPEVIEW_DEFAULT_VIEW_WIDTH, SHAPEVIEW_DEFAULT_VIEW_HEIGHT);
|
||||||
|
|
||||||
QDockWidget* aViewDockWidget = new QDockWidget (tr ("View"), myMainWindow);
|
QDockWidget* aViewDockWidget = new QDockWidget (tr ("View"), myMainWindow);
|
||||||
|
aViewDockWidget->setObjectName (aViewDockWidget->windowTitle());
|
||||||
aViewDockWidget->setWidget (myViewWindow);
|
aViewDockWidget->setWidget (myViewWindow);
|
||||||
aViewDockWidget->setTitleBarWidget (myViewWindow->GetViewToolBar()->GetControl());
|
aViewDockWidget->setTitleBarWidget (myViewWindow->GetViewToolBar()->GetControl());
|
||||||
myMainWindow->addDockWidget (Qt::RightDockWidgetArea, aViewDockWidget);
|
myMainWindow->addDockWidget (Qt::RightDockWidgetArea, aViewDockWidget);
|
||||||
@ -196,6 +145,61 @@ void ShapeView_Window::SetParent (void* theParent)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : FillActionsMenu
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void ShapeView_Window::FillActionsMenu (void* theMenu)
|
||||||
|
{
|
||||||
|
QMenu* aMenu = (QMenu*)theMenu;
|
||||||
|
QList<QDockWidget*> aDockwidgets = myMainWindow->findChildren<QDockWidget*>();
|
||||||
|
for (QList<QDockWidget*>::iterator it = aDockwidgets.begin(); it != aDockwidgets.end(); ++it)
|
||||||
|
{
|
||||||
|
QDockWidget* aDockWidget = *it;
|
||||||
|
if (aDockWidget->parentWidget() == myMainWindow)
|
||||||
|
aMenu->addAction (aDockWidget->toggleViewAction());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : GetPreferences
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void ShapeView_Window::GetPreferences (TInspectorAPI_PreferencesDataMap& theItem)
|
||||||
|
{
|
||||||
|
theItem.Clear();
|
||||||
|
theItem.Bind ("geometry", TreeModel_Tools::ToString (myMainWindow->saveState()).toStdString().c_str());
|
||||||
|
|
||||||
|
QMap<QString, QString> anItems;
|
||||||
|
TreeModel_Tools::SaveState (myTreeView, anItems);
|
||||||
|
View_Tools::SaveState(myViewWindow, anItems);
|
||||||
|
for (QMap<QString, QString>::const_iterator anItemsIt = anItems.begin(); anItemsIt != anItems.end(); anItemsIt++)
|
||||||
|
theItem.Bind (anItemsIt.key().toStdString().c_str(), anItemsIt.value().toStdString().c_str());
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : SetPreferences
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void ShapeView_Window::SetPreferences (const TInspectorAPI_PreferencesDataMap& theItem)
|
||||||
|
{
|
||||||
|
if (theItem.IsEmpty())
|
||||||
|
{
|
||||||
|
TreeModel_Tools::SetDefaultHeaderSections (myTreeView);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (TInspectorAPI_IteratorOfPreferencesDataMap anItemIt (theItem); anItemIt.More(); anItemIt.Next())
|
||||||
|
{
|
||||||
|
if (anItemIt.Key().IsEqual ("geometry"))
|
||||||
|
myMainWindow->restoreState (TreeModel_Tools::ToByteArray (anItemIt.Value().ToCString()));
|
||||||
|
else if (TreeModel_Tools::RestoreState (myTreeView, anItemIt.Key().ToCString(), anItemIt.Value().ToCString()))
|
||||||
|
continue;
|
||||||
|
else if (View_Tools::RestoreState(myViewWindow, anItemIt.Key().ToCString(), anItemIt.Value().ToCString()))
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : UpdateContent
|
// function : UpdateContent
|
||||||
// purpose :
|
// purpose :
|
||||||
@ -255,15 +259,28 @@ void ShapeView_Window::Init (NCollection_List<Handle(Standard_Transient)>& thePa
|
|||||||
{
|
{
|
||||||
Handle(AIS_InteractiveContext) aContext;
|
Handle(AIS_InteractiveContext) aContext;
|
||||||
NCollection_List<Handle(Standard_Transient)> aParameters;
|
NCollection_List<Handle(Standard_Transient)> aParameters;
|
||||||
for (NCollection_List<Handle(Standard_Transient)>::Iterator aParamsIt (theParameters);
|
|
||||||
aParamsIt.More(); aParamsIt.Next())
|
TCollection_AsciiString aPluginName ("TKShapeView");
|
||||||
|
NCollection_List<TCollection_AsciiString> aSelectedParameters;
|
||||||
|
if (myParameters->FindSelectedNames (aPluginName)) // selected names have TShape parameters
|
||||||
|
aSelectedParameters = myParameters->GetSelectedNames (aPluginName);
|
||||||
|
|
||||||
|
NCollection_List<TCollection_AsciiString>::Iterator aParamsIt (aSelectedParameters);
|
||||||
|
for (NCollection_List<Handle(Standard_Transient)>::Iterator anObjectsIt (theParameters);
|
||||||
|
anObjectsIt.More(); anObjectsIt.Next())
|
||||||
{
|
{
|
||||||
Handle(Standard_Transient) anObject = aParamsIt.Value();
|
Handle(Standard_Transient) anObject = anObjectsIt.Value();
|
||||||
Handle(TopoDS_TShape) aShapePointer = Handle(TopoDS_TShape)::DownCast (anObject);
|
Handle(TopoDS_TShape) aShapePointer = Handle(TopoDS_TShape)::DownCast (anObject);
|
||||||
if (!aShapePointer.IsNull())
|
if (!aShapePointer.IsNull())
|
||||||
{
|
{
|
||||||
TopoDS_Shape aShape;
|
TopoDS_Shape aShape;
|
||||||
aShape.TShape (aShapePointer);
|
aShape.TShape (aShapePointer);
|
||||||
|
if (aParamsIt.More())
|
||||||
|
{
|
||||||
|
// each Transient object has own location/orientation description
|
||||||
|
TInspectorAPI_PluginParameters::ParametersToShape (aParamsIt.Value(), aShape);
|
||||||
|
aParamsIt.Next();
|
||||||
|
}
|
||||||
addShape (aShape);
|
addShape (aShape);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -277,6 +294,7 @@ void ShapeView_Window::Init (NCollection_List<Handle(Standard_Transient)>& thePa
|
|||||||
myViewWindow->SetContext (View_ContextType_External, aContext);
|
myViewWindow->SetContext (View_ContextType_External, aContext);
|
||||||
|
|
||||||
theParameters = aParameters;
|
theParameters = aParameters;
|
||||||
|
myParameters->SetSelectedNames (aPluginName, NCollection_List<TCollection_AsciiString>());
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
@ -322,7 +340,7 @@ void ShapeView_Window::onTreeViewContextMenuRequested (const QPoint& thePosition
|
|||||||
if (!aModel)
|
if (!aModel)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
QModelIndex anIndex = ShapeView_TreeModel::SingleSelected (aModel->selectedIndexes(), 0);
|
QModelIndex anIndex = TreeModel_ModelBase::SingleSelected (aModel->selectedIndexes(), 0);
|
||||||
TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex (anIndex);
|
TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex (anIndex);
|
||||||
if (!anItemBase)
|
if (!anItemBase)
|
||||||
return;
|
return;
|
||||||
@ -330,19 +348,34 @@ void ShapeView_Window::onTreeViewContextMenuRequested (const QPoint& thePosition
|
|||||||
QMenu* aMenu = new QMenu(myMainWindow);
|
QMenu* aMenu = new QMenu(myMainWindow);
|
||||||
ShapeView_ItemRootPtr aRootItem = itemDynamicCast<ShapeView_ItemRoot> (anItemBase);
|
ShapeView_ItemRootPtr aRootItem = itemDynamicCast<ShapeView_ItemRoot> (anItemBase);
|
||||||
if (aRootItem) {
|
if (aRootItem) {
|
||||||
aMenu->addAction (createAction("Load BREP file", SLOT (onLoadFile())));
|
aMenu->addAction (ViewControl_Tools::CreateAction ("Load BREP file", SLOT (onLoadFile()), myMainWindow, this));
|
||||||
aMenu->addAction (createAction ("Remove all shape items", SLOT (onClearView())));
|
aMenu->addAction (ViewControl_Tools::CreateAction ("Remove all shape items", SLOT (onClearView()), myMainWindow, this));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if (!myTemporaryDirectory.IsEmpty())
|
if (!GetTemporaryDirectory().IsEmpty())
|
||||||
aMenu->addAction (createAction ("BREP view", SLOT (onBREPView())));
|
aMenu->addAction (ViewControl_Tools::CreateAction ("BREP view", SLOT (onBREPView()), myMainWindow, this));
|
||||||
aMenu->addAction (createAction ("Close All BREP views", SLOT (onCloseAllBREPViews())));
|
aMenu->addAction (ViewControl_Tools::CreateAction ("Close All BREP views", SLOT (onCloseAllBREPViews()), myMainWindow, this));
|
||||||
aMenu->addAction (createAction ("BREP directory", SLOT (onBREPDirectory())));
|
aMenu->addAction (ViewControl_Tools::CreateAction ("BREP directory", SLOT (onBREPDirectory()), myMainWindow, this));
|
||||||
}
|
}
|
||||||
|
|
||||||
QPoint aPoint = myTreeView->mapToGlobal (thePosition);
|
QPoint aPoint = myTreeView->mapToGlobal (thePosition);
|
||||||
aMenu->exec (aPoint);
|
aMenu->exec (aPoint);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : onEraseAllPerformed
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void ShapeView_Window::onEraseAllPerformed()
|
||||||
|
{
|
||||||
|
ShapeView_TreeModel* aTreeModel = dynamic_cast<ShapeView_TreeModel*> (myTreeView->model());
|
||||||
|
|
||||||
|
// TODO: provide update for only visibility state for better performance TopoDS_Shape myCustomShape;
|
||||||
|
|
||||||
|
aTreeModel->Reset();
|
||||||
|
aTreeModel->EmitLayoutChanged();
|
||||||
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : onBREPDirectory
|
// function : onBREPDirectory
|
||||||
// purpose :
|
// purpose :
|
||||||
@ -352,7 +385,7 @@ void ShapeView_Window::onBREPDirectory()
|
|||||||
QString aFilter (tr ("BREP file (*.brep*)"));
|
QString aFilter (tr ("BREP file (*.brep*)"));
|
||||||
QString aSelectedFilter;
|
QString aSelectedFilter;
|
||||||
QString aFileName = QFileDialog::getOpenFileName (0, tr ("Export shape to BREP file"),
|
QString aFileName = QFileDialog::getOpenFileName (0, tr ("Export shape to BREP file"),
|
||||||
myTemporaryDirectory.ToCString(), aSelectedFilter);
|
GetTemporaryDirectory().ToCString(), aSelectedFilter);
|
||||||
if (!aFileName.isEmpty())
|
if (!aFileName.isEmpty())
|
||||||
viewFile (aFileName);
|
viewFile (aFileName);
|
||||||
}
|
}
|
||||||
@ -377,7 +410,7 @@ void ShapeView_Window::onLoadFile()
|
|||||||
// =======================================================================
|
// =======================================================================
|
||||||
void ShapeView_Window::onBREPView()
|
void ShapeView_Window::onBREPView()
|
||||||
{
|
{
|
||||||
if (myTemporaryDirectory.IsEmpty())
|
if (GetTemporaryDirectory().IsEmpty())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
QItemSelectionModel* aModel = myTreeView->selectionModel();
|
QItemSelectionModel* aModel = myTreeView->selectionModel();
|
||||||
@ -401,7 +434,7 @@ void ShapeView_Window::onBREPView()
|
|||||||
QDir aDir;
|
QDir aDir;
|
||||||
if (aFileName.isEmpty() || !aDir.exists (aFileName))
|
if (aFileName.isEmpty() || !aDir.exists (aFileName))
|
||||||
{
|
{
|
||||||
TCollection_AsciiString aFileNameIndiced = myTemporaryDirectory + TCollection_AsciiString ("\\") +
|
TCollection_AsciiString aFileNameIndiced = GetTemporaryDirectory() + TCollection_AsciiString ("\\") +
|
||||||
getNextTmpName (anItem->TShapePointer());
|
getNextTmpName (anItem->TShapePointer());
|
||||||
const TopoDS_Shape& aShape = anItem->GetItemShape();
|
const TopoDS_Shape& aShape = anItem->GetItemShape();
|
||||||
BRepTools::Write (aShape, aFileNameIndiced.ToCString());
|
BRepTools::Write (aShape, aFileNameIndiced.ToCString());
|
||||||
@ -440,32 +473,6 @@ void ShapeView_Window::onEditorDestroyed(QObject* theObject)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
|
||||||
// function : displaySelectedShapes
|
|
||||||
// purpose :
|
|
||||||
// =======================================================================
|
|
||||||
void ShapeView_Window::displaySelectedShapes (const QModelIndexList& theSelected)
|
|
||||||
{
|
|
||||||
for (QModelIndexList::const_iterator aSelIt = theSelected.begin(); aSelIt != theSelected.end(); aSelIt++)
|
|
||||||
{
|
|
||||||
QModelIndex anIndex = *aSelIt;
|
|
||||||
if (anIndex.column() != 0)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex (anIndex);
|
|
||||||
if (!anItemBase)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
ShapeView_ItemShapePtr aShapeItem = itemDynamicCast<ShapeView_ItemShape>(anItemBase);
|
|
||||||
if (!aShapeItem)
|
|
||||||
continue;
|
|
||||||
TopoDS_Shape aShape = aShapeItem->GetItemShape();
|
|
||||||
myViewWindow->GetDisplayer()->DisplayPresentation (ShapeView_Tools::CreatePresentation(aShape),
|
|
||||||
View_PresentationType_Main, true);
|
|
||||||
}
|
|
||||||
myViewWindow->GetDisplayer()->UpdateViewer();
|
|
||||||
}
|
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : viewFile
|
// function : viewFile
|
||||||
// purpose :
|
// purpose :
|
||||||
@ -506,7 +513,7 @@ void ShapeView_Window::viewFile (const QString& theFileName)
|
|||||||
// =======================================================================
|
// =======================================================================
|
||||||
void ShapeView_Window::removeBREPFiles()
|
void ShapeView_Window::removeBREPFiles()
|
||||||
{
|
{
|
||||||
QDir aDir (myTemporaryDirectory.ToCString());
|
QDir aDir (GetTemporaryDirectory().ToCString());
|
||||||
|
|
||||||
QStringList anEntries = aDir.entryList();
|
QStringList anEntries = aDir.entryList();
|
||||||
QString aPrefix(viewBREPPrefix().ToCString());
|
QString aPrefix(viewBREPPrefix().ToCString());
|
||||||
@ -517,17 +524,6 @@ void ShapeView_Window::removeBREPFiles()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
|
||||||
// function : createAction
|
|
||||||
// purpose :
|
|
||||||
// =======================================================================
|
|
||||||
QAction* ShapeView_Window::createAction (const QString& theText, const char* theSlot)
|
|
||||||
{
|
|
||||||
QAction* anAction = new QAction (theText, myMainWindow);
|
|
||||||
connect (anAction, SIGNAL (triggered(bool)), this, theSlot);
|
|
||||||
return anAction;
|
|
||||||
}
|
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : getNextTmpName
|
// function : getNextTmpName
|
||||||
// purpose :
|
// purpose :
|
||||||
|
@ -31,7 +31,6 @@
|
|||||||
#include <QTreeView>
|
#include <QTreeView>
|
||||||
#include <Standard_WarningsRestore.hxx>
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
class View_Displayer;
|
|
||||||
class View_Window;
|
class View_Window;
|
||||||
|
|
||||||
class QAction;
|
class QAction;
|
||||||
@ -46,7 +45,7 @@ class ShapeView_Window : public QObject
|
|||||||
public:
|
public:
|
||||||
|
|
||||||
//! Constructor
|
//! Constructor
|
||||||
Standard_EXPORT ShapeView_Window (QWidget* theParent, const TCollection_AsciiString& theTemporaryDirectory);
|
Standard_EXPORT ShapeView_Window (QWidget* theParent);
|
||||||
|
|
||||||
//! Destructor
|
//! Destructor
|
||||||
Standard_EXPORT virtual ~ShapeView_Window();
|
Standard_EXPORT virtual ~ShapeView_Window();
|
||||||
@ -60,6 +59,18 @@ public:
|
|||||||
//! \param theParameters a parameters container
|
//! \param theParameters a parameters container
|
||||||
void SetParameters (const Handle(TInspectorAPI_PluginParameters)& theParameters) { myParameters = theParameters; }
|
void SetParameters (const Handle(TInspectorAPI_PluginParameters)& theParameters) { myParameters = theParameters; }
|
||||||
|
|
||||||
|
//! Provide container for actions available in inspector on general level
|
||||||
|
//! \param theMenu if Qt implementation, it is QMenu object
|
||||||
|
Standard_EXPORT virtual void FillActionsMenu (void* theMenu);
|
||||||
|
|
||||||
|
//! Returns plugin preferences: dock widgets state, tree view columns.
|
||||||
|
//! \param theItem container of preference elements
|
||||||
|
Standard_EXPORT void GetPreferences (TInspectorAPI_PreferencesDataMap& theItem);
|
||||||
|
|
||||||
|
//! Applies plugin preferences
|
||||||
|
//! \param theItem container of preference elements
|
||||||
|
Standard_EXPORT void SetPreferences (const TInspectorAPI_PreferencesDataMap& theItem);
|
||||||
|
|
||||||
//! Applyes parameters to Init controls, opens files if there are in parameters, updates OCAF tree view model
|
//! Applyes parameters to Init controls, opens files if there are in parameters, updates OCAF tree view model
|
||||||
Standard_EXPORT void UpdateContent();
|
Standard_EXPORT void UpdateContent();
|
||||||
|
|
||||||
@ -70,7 +81,7 @@ public:
|
|||||||
QTreeView* GetTreeView() const { return myTreeView; }
|
QTreeView* GetTreeView() const { return myTreeView; }
|
||||||
|
|
||||||
//! Returns path to temporary directory
|
//! Returns path to temporary directory
|
||||||
TCollection_AsciiString GetTemporaryDirectory() const { return myTemporaryDirectory; }
|
TCollection_AsciiString GetTemporaryDirectory() const { return myParameters->GetTemporaryDirectory(); }
|
||||||
|
|
||||||
//! Removes all shapes in tree view model, remove all stored BREP files
|
//! Removes all shapes in tree view model, remove all stored BREP files
|
||||||
Standard_EXPORT void RemoveAllShapes();
|
Standard_EXPORT void RemoveAllShapes();
|
||||||
@ -93,16 +104,13 @@ private:
|
|||||||
|
|
||||||
protected slots:
|
protected slots:
|
||||||
|
|
||||||
//! Displays shapes obtained by selected indices
|
|
||||||
//! \param theSelected a container of selected indices in tree view
|
|
||||||
//! \param theDeselected a container of deselected indices in tree view
|
|
||||||
void onTreeViewSelectionChanged (const QItemSelection& theSelected, const QItemSelection& theDeselected)
|
|
||||||
{ (void)theDeselected; displaySelectedShapes(theSelected.indexes()); }
|
|
||||||
|
|
||||||
//! Shows context menu for tree view selected item. It contains expand/collapse actions.
|
//! Shows context menu for tree view selected item. It contains expand/collapse actions.
|
||||||
//! \param thePosition a clicked point
|
//! \param thePosition a clicked point
|
||||||
void onTreeViewContextMenuRequested (const QPoint& thePosition);
|
void onTreeViewContextMenuRequested (const QPoint& thePosition);
|
||||||
|
|
||||||
|
//! Updates visibility states by erase all in context
|
||||||
|
void onEraseAllPerformed();
|
||||||
|
|
||||||
//! Exports shape to BREP file and view result file
|
//! Exports shape to BREP file and view result file
|
||||||
void onBREPDirectory();
|
void onBREPDirectory();
|
||||||
|
|
||||||
@ -148,17 +156,13 @@ protected:
|
|||||||
//! \return string value
|
//! \return string value
|
||||||
TCollection_AsciiString getNextTmpName (const TCollection_AsciiString& thePointerInfo);
|
TCollection_AsciiString getNextTmpName (const TCollection_AsciiString& thePointerInfo);
|
||||||
|
|
||||||
//! Finds shapes for selected items in tree view and display presentations for the shapes
|
|
||||||
//! \param theSelected a list of selected indices in tree view
|
|
||||||
void displaySelectedShapes (const QModelIndexList& theSelected);
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
QMainWindow* myMainWindow; //!< main control, parent for all ShapeView controls
|
QMainWindow* myMainWindow; //!< main control, parent for all ShapeView controls
|
||||||
|
|
||||||
View_Window* myViewWindow; //!< OCC 3d view to visualize presentations
|
View_Window* myViewWindow; //!< OCC 3d view to visualize presentations
|
||||||
QTreeView* myTreeView; //!< tree view visualized shapes
|
QTreeView* myTreeView; //!< tree view visualized shapes
|
||||||
|
|
||||||
TCollection_AsciiString myTemporaryDirectory; //!< path to the temporary directory
|
|
||||||
int myNextPosition; //!< delta of moving control of view BREP file
|
int myNextPosition; //!< delta of moving control of view BREP file
|
||||||
|
|
||||||
QList<QWidget*> myBREPViews; //!< list of view BREP file controls
|
QList<QWidget*> myBREPViews; //!< list of view BREP file controls
|
||||||
|
@ -3,5 +3,9 @@ TInspector_Communicator.cxx
|
|||||||
TInspector_Communicator.hxx
|
TInspector_Communicator.hxx
|
||||||
TInspector_PluginParameters.cxx
|
TInspector_PluginParameters.cxx
|
||||||
TInspector_PluginParameters.hxx
|
TInspector_PluginParameters.hxx
|
||||||
|
TInspector_Preferences.cxx
|
||||||
|
TInspector_Preferences.hxx
|
||||||
|
TInspector_Shortcut.cxx
|
||||||
|
TInspector_Shortcut.hxx
|
||||||
TInspector_Window.cxx
|
TInspector_Window.cxx
|
||||||
TInspector_Window.hxx
|
TInspector_Window.hxx
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
<!DOCTYPE RCC><RCC version="1.0">
|
<!DOCTYPE RCC><RCC version="1.0">
|
||||||
<qresource>
|
<qresource>
|
||||||
<file>icons/item_algo_folder.png</file>
|
<file>icons/item_algo_folder.png</file>
|
||||||
|
<file>icons/plugin_actions.png</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
</RCC>
|
</RCC>
|
||||||
|
@ -37,9 +37,10 @@ TInspector_Communicator::TInspector_Communicator()
|
|||||||
static int argc = 1;
|
static int argc = 1;
|
||||||
static char* argv[] = { (char*)"", 0 };
|
static char* argv[] = { (char*)"", 0 };
|
||||||
#if QT_VERSION > 0x050000
|
#if QT_VERSION > 0x050000
|
||||||
TCollection_AsciiString aPlugindsDirName = OSD_Environment ("QTDIR").Value();
|
OSD_Environment anEnvironment ("QTDIR");
|
||||||
if (!aPlugindsDirName.IsEmpty())
|
TCollection_AsciiString aPlugindsDirName = anEnvironment.Value();
|
||||||
QApplication::addLibraryPath (QString (aPlugindsDirName.ToCString()) + "/plugins");
|
aPlugindsDirName += "/plugins";
|
||||||
|
QApplication::addLibraryPath (aPlugindsDirName.ToCString());
|
||||||
#endif
|
#endif
|
||||||
new QApplication (argc, argv);
|
new QApplication (argc, argv);
|
||||||
}
|
}
|
||||||
@ -58,3 +59,12 @@ void TInspector_Communicator::SetVisible (const bool theVisible)
|
|||||||
QApplication::processEvents();
|
QApplication::processEvents();
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : Move
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void TInspector_Communicator::Move (const int theXPosition, const int theYPosition)
|
||||||
|
{
|
||||||
|
myWindow->GetMainWindow()->move (theXPosition, theYPosition);
|
||||||
|
}
|
||||||
|
@ -86,10 +86,27 @@ public:
|
|||||||
Standard_EXPORT void SetSelected (const NCollection_List<Handle(Standard_Transient)>& theObjects)
|
Standard_EXPORT void SetSelected (const NCollection_List<Handle(Standard_Transient)>& theObjects)
|
||||||
{ myWindow->SetSelected (theObjects); }
|
{ myWindow->SetSelected (theObjects); }
|
||||||
|
|
||||||
|
//! Sets path to a directory for temporary plugin files
|
||||||
|
//! \param thePath a path
|
||||||
|
void SetTemporaryDirectory (const TCollection_AsciiString& thePath) { myWindow->SetTemporaryDirectory (thePath); }
|
||||||
|
|
||||||
|
//! Returns path to a directory for temporary plugin files
|
||||||
|
//! \return path
|
||||||
|
TCollection_AsciiString GetTemporaryDirectory() const { return myWindow->GetTemporaryDirectory(); }
|
||||||
|
|
||||||
//! Change window visibility
|
//! Change window visibility
|
||||||
//! \param theVisible boolean state
|
//! \param theVisible boolean state
|
||||||
Standard_EXPORT virtual void SetVisible (const bool theVisible);
|
Standard_EXPORT virtual void SetVisible (const bool theVisible);
|
||||||
|
|
||||||
|
//! Change window position
|
||||||
|
//! \param theX X pixel position of top left corner of the window
|
||||||
|
//! \param theY Y pixel position
|
||||||
|
Standard_EXPORT virtual void Move (const int theXPosition, const int theYPosition);
|
||||||
|
|
||||||
|
//! Puts in the stream information about communicator
|
||||||
|
//! \param theStream stream for output
|
||||||
|
void Dump (Standard_OStream& theStream) const { return myWindow->Dump (theStream); }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
TInspector_Window* myWindow; //!< current window
|
TInspector_Window* myWindow; //!< current window
|
||||||
|
@ -15,6 +15,17 @@
|
|||||||
|
|
||||||
|
|
||||||
#include <inspector/TInspector_PluginParameters.hxx>
|
#include <inspector/TInspector_PluginParameters.hxx>
|
||||||
|
#include <inspector/TInspector_Preferences.hxx>
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : Constructor
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
TInspector_PluginParameters::TInspector_PluginParameters (TInspector_Window* theWindow)
|
||||||
|
: myWindow (theWindow), myPreferences (new TInspector_Preferences())
|
||||||
|
{
|
||||||
|
myPreferences->SetDirectory (GetTemporaryDirectory());
|
||||||
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : SetParameters
|
// function : SetParameters
|
||||||
@ -32,3 +43,15 @@ void TInspector_PluginParameters::SetParameters (const TCollection_AsciiString&
|
|||||||
SetSelected (thePluginName, theParameters);
|
SetSelected (thePluginName, theParameters);
|
||||||
myWindow->ActivateTool (thePluginName);
|
myWindow->ActivateTool (thePluginName);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : SetTemporaryDirectory
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void TInspector_PluginParameters::SetTemporaryDirectory (const TCollection_AsciiString& thePath)
|
||||||
|
{
|
||||||
|
if (thePath.IsEqual (myPreferences->GetDirectory()))
|
||||||
|
return;
|
||||||
|
|
||||||
|
myPreferences->SetDirectory (thePath);
|
||||||
|
}
|
||||||
|
@ -20,8 +20,11 @@
|
|||||||
#include <Standard_Macro.hxx>
|
#include <Standard_Macro.hxx>
|
||||||
|
|
||||||
#include <inspector/TInspectorAPI_PluginParameters.hxx>
|
#include <inspector/TInspectorAPI_PluginParameters.hxx>
|
||||||
|
#include <inspector/TInspector_Preferences.hxx>
|
||||||
#include <inspector/TInspector_Window.hxx>
|
#include <inspector/TInspector_Window.hxx>
|
||||||
|
|
||||||
|
class TInspector_ReportCallBack;
|
||||||
|
|
||||||
//! \class TInspector_PluginParameters.
|
//! \class TInspector_PluginParameters.
|
||||||
//! \brief This is plugin parameters extended by a possibility to activate module during setting new parameters
|
//! \brief This is plugin parameters extended by a possibility to activate module during setting new parameters
|
||||||
class TInspector_PluginParameters : public TInspectorAPI_PluginParameters
|
class TInspector_PluginParameters : public TInspectorAPI_PluginParameters
|
||||||
@ -29,7 +32,7 @@ class TInspector_PluginParameters : public TInspectorAPI_PluginParameters
|
|||||||
public:
|
public:
|
||||||
|
|
||||||
//! Constructor
|
//! Constructor
|
||||||
Standard_EXPORT TInspector_PluginParameters (TInspector_Window* theWindow) : myWindow (theWindow) {}
|
Standard_EXPORT TInspector_PluginParameters (TInspector_Window* theWindow);
|
||||||
|
|
||||||
//! Destructor
|
//! Destructor
|
||||||
virtual ~TInspector_PluginParameters() Standard_OVERRIDE {}
|
virtual ~TInspector_PluginParameters() Standard_OVERRIDE {}
|
||||||
@ -42,9 +45,34 @@ public:
|
|||||||
const NCollection_List<Handle(Standard_Transient)>& theParameters,
|
const NCollection_List<Handle(Standard_Transient)>& theParameters,
|
||||||
const Standard_Boolean& theToActivatePlugin = Standard_False) Standard_OVERRIDE;
|
const Standard_Boolean& theToActivatePlugin = Standard_False) Standard_OVERRIDE;
|
||||||
|
|
||||||
|
//! Sets path to a directory for temporary plugin files. Sets the directory into preferences loader
|
||||||
|
//! \param thePath a path
|
||||||
|
virtual void SetTemporaryDirectory (const TCollection_AsciiString& thePath) Standard_OVERRIDE;
|
||||||
|
|
||||||
|
//! Returns plugin preferences
|
||||||
|
//! \param thePluginName a plugin name
|
||||||
|
virtual void GetPreferences (const TCollection_AsciiString& thePluginName,
|
||||||
|
TInspectorAPI_PreferencesDataMap& theItem) Standard_OVERRIDE
|
||||||
|
{ myPreferences->GetPreferences (thePluginName, theItem); }
|
||||||
|
|
||||||
|
//! Stores plugin preferences
|
||||||
|
//! \param thePluginName a plugin name
|
||||||
|
//! \theItem container of plugin preferences values in form: <name, value>
|
||||||
|
virtual void SetPreferences (const TCollection_AsciiString& thePluginName,
|
||||||
|
const TInspectorAPI_PreferencesDataMap& theItem) Standard_OVERRIDE
|
||||||
|
{ myPreferences->SetPreferences (thePluginName, theItem); }
|
||||||
|
|
||||||
|
//! Store plugin preferences into a preferences file
|
||||||
|
void StorePreferences() { myPreferences->StorePreferences(); }
|
||||||
|
|
||||||
|
//! Remove plugin preferences file
|
||||||
|
void RemovePreferences() { myPreferences->RemovePreferences(); }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
TInspector_Window* myWindow; //!< the current window
|
TInspector_Window* myWindow; //!< the current window
|
||||||
|
Handle(TInspector_ReportCallBack) myReportCallBack; //!< inspector report callback for automatic view update
|
||||||
|
TInspector_Preferences* myPreferences; //!< the preferences loader
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
159
tools/TInspector/TInspector_Preferences.cxx
Normal file
159
tools/TInspector/TInspector_Preferences.cxx
Normal file
@ -0,0 +1,159 @@
|
|||||||
|
// 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/TInspector_Preferences.hxx>
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
|
#include <QDir>
|
||||||
|
#include <QDomDocument>
|
||||||
|
#include <QDomElement>
|
||||||
|
#include <QDomNode>
|
||||||
|
#include <QFile>
|
||||||
|
#include <QTextStream>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : GetPreferences
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void TInspector_Preferences::GetPreferences (const TCollection_AsciiString& thePluginName,
|
||||||
|
TInspectorAPI_PreferencesDataMap& theItem)
|
||||||
|
{
|
||||||
|
theItem.Clear();
|
||||||
|
if (!myIsLoadedPreferences)
|
||||||
|
{
|
||||||
|
loadPreferences();
|
||||||
|
myIsLoadedPreferences = Standard_True;
|
||||||
|
}
|
||||||
|
myLoadedPreferences.Find (thePluginName, theItem);
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : StorePreferences
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void TInspector_Preferences::StorePreferences()
|
||||||
|
{
|
||||||
|
if (myLoadedPreferences.IsEmpty())
|
||||||
|
return;
|
||||||
|
|
||||||
|
QString aFileName = QString (GetDirectory().ToCString()) + QDir::separator() + PreferencesFileName();
|
||||||
|
QFile aFile(aFileName);
|
||||||
|
if (!aFile.open (QFile::WriteOnly))
|
||||||
|
return;
|
||||||
|
|
||||||
|
QDomDocument aDomDocument (documentKey());
|
||||||
|
QDomComment aComment = aDomDocument.createComment("\nThis file is automatically created by TInspector application.\nChanges made in this file can be lost.\n");
|
||||||
|
aDomDocument.appendChild (aComment);
|
||||||
|
QDomElement aRootElement = aDomDocument.createElement (documentKey());
|
||||||
|
aDomDocument.appendChild (aRootElement);
|
||||||
|
|
||||||
|
for (NCollection_DataMap<TCollection_AsciiString, TInspectorAPI_PreferencesDataMap>::Iterator aPrefsIt (myLoadedPreferences);
|
||||||
|
aPrefsIt.More(); aPrefsIt.Next())
|
||||||
|
{
|
||||||
|
QDomElement aPluginElement = aDomDocument.createElement (pluginKey());
|
||||||
|
aPluginElement.setAttribute (nameKey(), aPrefsIt.Key().ToCString());
|
||||||
|
aRootElement.appendChild (aPluginElement);
|
||||||
|
|
||||||
|
const TInspectorAPI_PreferencesDataMap& aPluginMap = aPrefsIt.Value();
|
||||||
|
for (TInspectorAPI_IteratorOfPreferencesDataMap aPluginPrefsIt (aPluginMap); aPluginPrefsIt.More(); aPluginPrefsIt.Next())
|
||||||
|
{
|
||||||
|
QDomElement aParameterElement = aDomDocument.createElement (parameterKey());
|
||||||
|
aParameterElement.setAttribute (nameKey(), aPluginPrefsIt.Key().ToCString());
|
||||||
|
aParameterElement.setAttribute (valueKey(), aPluginPrefsIt.Value().ToCString());
|
||||||
|
aPluginElement.appendChild (aParameterElement);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
QTextStream aTextStream (&aFile);
|
||||||
|
QStringList aDocumentStr = aDomDocument.toString().split ("\n");
|
||||||
|
for (QStringList::ConstIterator aContentIt = aDocumentStr.begin(); aContentIt != aDocumentStr.end(); ++aContentIt)
|
||||||
|
aTextStream << *aContentIt << endl;
|
||||||
|
aFile.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : RemovePreferences
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void TInspector_Preferences::RemovePreferences()
|
||||||
|
{
|
||||||
|
QString aFileName = QString (GetDirectory().ToCString()) + QDir::separator() + PreferencesFileName();
|
||||||
|
QDir aDir (GetDirectory().ToCString());
|
||||||
|
if (aDir.exists (aFileName))
|
||||||
|
aDir.remove (aFileName);
|
||||||
|
reset();
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : loadPreferences
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void TInspector_Preferences::loadPreferences()
|
||||||
|
{
|
||||||
|
QString aFileName = QString (GetDirectory().ToCString()) + QDir::separator() + PreferencesFileName();
|
||||||
|
QFile aFile (aFileName);
|
||||||
|
if (!aFile.open (QFile::ReadOnly))
|
||||||
|
return;
|
||||||
|
|
||||||
|
QDomDocument aDomDocument;
|
||||||
|
bool aResult = aDomDocument.setContent (&aFile);
|
||||||
|
aFile.close();
|
||||||
|
if (!aResult)
|
||||||
|
return;
|
||||||
|
|
||||||
|
QDomElement aRootElement = aDomDocument.documentElement();
|
||||||
|
if (aRootElement.isNull() || aRootElement.tagName() != documentKey())
|
||||||
|
return;
|
||||||
|
|
||||||
|
QDomNode aPluginNode = aRootElement.firstChild();
|
||||||
|
while (!aPluginNode.isNull())
|
||||||
|
{
|
||||||
|
if (aPluginNode.isElement())
|
||||||
|
{
|
||||||
|
QDomElement aPluginElement = aPluginNode.toElement();
|
||||||
|
if (aPluginElement.tagName() == pluginKey() && aPluginElement.hasAttribute (nameKey()))
|
||||||
|
{
|
||||||
|
TInspectorAPI_PreferencesDataMap anItem;
|
||||||
|
readPluginItem (aPluginElement, anItem);
|
||||||
|
myLoadedPreferences.Bind (aPluginElement.attribute (nameKey()).toStdString().c_str(), anItem);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
aPluginNode = aPluginNode.nextSibling();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : readPluginItem
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void TInspector_Preferences::readPluginItem (const QDomElement thePluginElement, TInspectorAPI_PreferencesDataMap& theItem)
|
||||||
|
{
|
||||||
|
QDomNode aParameterNode = thePluginElement.firstChild();
|
||||||
|
while (!aParameterNode.isNull())
|
||||||
|
{
|
||||||
|
if (aParameterNode.isElement())
|
||||||
|
{
|
||||||
|
QDomElement aParameterElement = aParameterNode.toElement();
|
||||||
|
if (aParameterElement.tagName() == parameterKey() &&
|
||||||
|
aParameterElement.hasAttribute (nameKey()) && aParameterElement.hasAttribute (valueKey()))
|
||||||
|
{
|
||||||
|
theItem.Bind (aParameterElement.attribute (nameKey()).toStdString().c_str(),
|
||||||
|
aParameterElement.attribute (valueKey()).toStdString().c_str());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
aParameterNode = aParameterNode.nextSibling();
|
||||||
|
}
|
||||||
|
}
|
100
tools/TInspector/TInspector_Preferences.hxx
Normal file
100
tools/TInspector/TInspector_Preferences.hxx
Normal file
@ -0,0 +1,100 @@
|
|||||||
|
// 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.
|
||||||
|
|
||||||
|
#ifndef TInspector_Preferences_H
|
||||||
|
#define TInspector_Preferences_H
|
||||||
|
|
||||||
|
#include <TCollection_AsciiString.hxx>
|
||||||
|
#include <inspector/TInspectorAPI_PreferencesDataMap.hxx>
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
|
#include <QDomElement>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
|
//! The class to read/write custom plugin preferences in XML format.
|
||||||
|
//! The preferences file is intended to know about:
|
||||||
|
//! - dock window placement
|
||||||
|
//! - tree view columns: visibility, width
|
||||||
|
class TInspector_Preferences
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
//! Constructs the communicator.
|
||||||
|
TInspector_Preferences() {}
|
||||||
|
|
||||||
|
//! Destructor
|
||||||
|
virtual ~TInspector_Preferences() {}
|
||||||
|
|
||||||
|
static Standard_CString PreferencesFileName() { return ".tinspector.xml"; }
|
||||||
|
|
||||||
|
//! Sets path to a preferences file
|
||||||
|
//! \param thePath a path
|
||||||
|
void SetDirectory (const TCollection_AsciiString& thePath) { reset(); myDirectory = thePath; }
|
||||||
|
|
||||||
|
//! Returns path to a preferences file
|
||||||
|
//! \return path
|
||||||
|
TCollection_AsciiString GetDirectory() const { return myDirectory; }
|
||||||
|
|
||||||
|
//! Returns plugin preferences
|
||||||
|
//! \param thePluginName a plugin name
|
||||||
|
Standard_EXPORT void GetPreferences (const TCollection_AsciiString& thePluginName,
|
||||||
|
TInspectorAPI_PreferencesDataMap& theItem);
|
||||||
|
|
||||||
|
//! Stores plugin preferences
|
||||||
|
//! \param thePluginName a plugin name
|
||||||
|
//! \theItem container of plugin preferences values in form: <name, value>
|
||||||
|
void SetPreferences (const TCollection_AsciiString& thePluginName, const TInspectorAPI_PreferencesDataMap& theItem)
|
||||||
|
{ myLoadedPreferences.Bind(thePluginName, theItem); }
|
||||||
|
|
||||||
|
//! Store plugin preferences into a preferences file
|
||||||
|
Standard_EXPORT void StorePreferences();
|
||||||
|
|
||||||
|
//! Remove plugin preferences file
|
||||||
|
Standard_EXPORT void RemovePreferences();
|
||||||
|
|
||||||
|
private:
|
||||||
|
//! Loads the directory preference file with filling internal container
|
||||||
|
void loadPreferences();
|
||||||
|
|
||||||
|
//! clears all internal containers with information of already loaded file
|
||||||
|
void reset() { myLoadedPreferences.Clear(); myIsLoadedPreferences = Standard_False; }
|
||||||
|
|
||||||
|
//! Reads plugin preferences and fill container
|
||||||
|
void readPluginItem(const QDomElement thePluginElement, TInspectorAPI_PreferencesDataMap& theItem);
|
||||||
|
|
||||||
|
//! Returns text of attribute document
|
||||||
|
static Standard_CString documentKey() { return "document"; }
|
||||||
|
|
||||||
|
//! Returns text of attribute plugin
|
||||||
|
static Standard_CString pluginKey() { return "plugin"; }
|
||||||
|
|
||||||
|
//! Returns text of attribute parameter
|
||||||
|
static Standard_CString parameterKey() { return "parameter"; }
|
||||||
|
|
||||||
|
//! Returns text of attribute name
|
||||||
|
static Standard_CString nameKey() { return "name"; }
|
||||||
|
|
||||||
|
//! Returns text of attribute value
|
||||||
|
static Standard_CString valueKey() { return "value"; }
|
||||||
|
|
||||||
|
private:
|
||||||
|
//! directory of preferences file
|
||||||
|
TCollection_AsciiString myDirectory;
|
||||||
|
//! container of already loaded preferences : cache
|
||||||
|
NCollection_DataMap<TCollection_AsciiString, TInspectorAPI_PreferencesDataMap> myLoadedPreferences;
|
||||||
|
//! state whether the preferences of the current directory is loaded
|
||||||
|
Standard_Boolean myIsLoadedPreferences;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
@ -13,9 +13,9 @@
|
|||||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||||
// commercial license or contractual agreement.
|
// commercial license or contractual agreement.
|
||||||
|
|
||||||
#include <inspector/DFBrowser_Shortcut.hxx>
|
#include <inspector/TInspector_Shortcut.hxx>
|
||||||
|
|
||||||
#include <inspector/DFBrowser_Module.hxx>
|
#include <inspector/TInspector_Window.hxx>
|
||||||
|
|
||||||
#include <Standard_WarningsDisable.hxx>
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
@ -26,8 +26,8 @@
|
|||||||
// function : Constructor
|
// function : Constructor
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
DFBrowser_Shortcut::DFBrowser_Shortcut (QObject* theParent)
|
TInspector_Shortcut::TInspector_Shortcut (QObject* theParent, TInspector_Window* theWindow)
|
||||||
: QObject (theParent), myModule (0)
|
: QObject (theParent), myWindow (theWindow)
|
||||||
{
|
{
|
||||||
qApp->installEventFilter (this);
|
qApp->installEventFilter (this);
|
||||||
}
|
}
|
||||||
@ -36,9 +36,9 @@ DFBrowser_Shortcut::DFBrowser_Shortcut (QObject* theParent)
|
|||||||
// function : eventFilter
|
// function : eventFilter
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
bool DFBrowser_Shortcut::eventFilter (QObject* theObject, QEvent* theEvent)
|
bool TInspector_Shortcut::eventFilter (QObject* theObject, QEvent* theEvent)
|
||||||
{
|
{
|
||||||
if (!myModule || theEvent->type() != QEvent::KeyRelease)
|
if (!myWindow || theEvent->type() != QEvent::KeyRelease)
|
||||||
return QObject::eventFilter (theObject, theEvent);
|
return QObject::eventFilter (theObject, theEvent);
|
||||||
|
|
||||||
QKeyEvent* aKeyEvent = dynamic_cast<QKeyEvent*> (theEvent);
|
QKeyEvent* aKeyEvent = dynamic_cast<QKeyEvent*> (theEvent);
|
||||||
@ -46,7 +46,7 @@ bool DFBrowser_Shortcut::eventFilter (QObject* theObject, QEvent* theEvent)
|
|||||||
{
|
{
|
||||||
case Qt::Key_F5:
|
case Qt::Key_F5:
|
||||||
{
|
{
|
||||||
myModule->UpdateTreeModel();
|
myWindow->UpdateContent();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
default: break;
|
default: break;
|
@ -13,8 +13,8 @@
|
|||||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||||
// commercial license or contractual agreement.
|
// commercial license or contractual agreement.
|
||||||
|
|
||||||
#ifndef DFBrowser_Shortcut_H
|
#ifndef TInspector_Shortcut_H
|
||||||
#define DFBrowser_Shortcut_H
|
#define TInspector_Shortcut_H
|
||||||
|
|
||||||
#include <Standard.hxx>
|
#include <Standard.hxx>
|
||||||
#include <Standard_Macro.hxx>
|
#include <Standard_Macro.hxx>
|
||||||
@ -23,31 +23,27 @@
|
|||||||
#include <QObject>
|
#include <QObject>
|
||||||
#include <Standard_WarningsRestore.hxx>
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
class DFBrowser_Module;
|
class TInspector_Window;
|
||||||
class QEvent;
|
class QEvent;
|
||||||
|
|
||||||
//! \class DFBrowser_Shortcut
|
//! \class TInspector_Shortcut
|
||||||
//! Listens application KeyRelease event. Processes key event:
|
//! Listens application KeyRelease event. Processes key event:
|
||||||
//! - <Key_F5>: updates tree view model
|
//! - <Key_F5>: updates content (tree view model) of the active plugin
|
||||||
class DFBrowser_Shortcut : public QObject
|
class TInspector_Shortcut : public QObject
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
//! Constructor
|
//! Constructor
|
||||||
Standard_EXPORT DFBrowser_Shortcut (QObject* theParent);
|
Standard_EXPORT TInspector_Shortcut (QObject* theParent, TInspector_Window* theWindow);
|
||||||
|
|
||||||
//! Destructor
|
//! Destructor
|
||||||
virtual ~DFBrowser_Shortcut() {}
|
virtual ~TInspector_Shortcut() {}
|
||||||
|
|
||||||
//! Sets the current module
|
|
||||||
//! \param theModule a module
|
|
||||||
void SetModule (DFBrowser_Module* theModule) { myModule = theModule; }
|
|
||||||
|
|
||||||
//! Processes key release event to update view model, otherwise do usual QObject functionality
|
//! Processes key release event to update view model, otherwise do usual QObject functionality
|
||||||
Standard_EXPORT virtual bool eventFilter (QObject *theObject, QEvent* theEvent) Standard_OVERRIDE;
|
Standard_EXPORT virtual bool eventFilter (QObject *theObject, QEvent* theEvent) Standard_OVERRIDE;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
DFBrowser_Module* myModule; //!< the current module
|
TInspector_Window* myWindow; //!< the current window
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -13,19 +13,30 @@
|
|||||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||||
// commercial license or contractual agreement.
|
// commercial license or contractual agreement.
|
||||||
|
|
||||||
#include <inspector/TInspector_Window.hxx>
|
|
||||||
#include <inspector/TInspector_Window.hxx>
|
#include <inspector/TInspector_Window.hxx>
|
||||||
|
|
||||||
#include <inspector/TInspectorAPI_Communicator.hxx>
|
#include <inspector/TInspectorAPI_Communicator.hxx>
|
||||||
#include <inspector/TInspector_PluginParameters.hxx>
|
#include <inspector/TInspector_PluginParameters.hxx>
|
||||||
|
#include <inspector/TInspector_Shortcut.hxx>
|
||||||
|
#include <inspector/TreeModel_Tools.hxx>
|
||||||
|
|
||||||
|
#include <inspector/ViewControl_Tools.hxx>
|
||||||
|
|
||||||
|
#include <OSD_Directory.hxx>
|
||||||
|
#include <OSD_Environment.hxx>
|
||||||
|
#include <OSD_Path.hxx>
|
||||||
|
#include <OSD_Protection.hxx>
|
||||||
|
|
||||||
#include <Standard_WarningsDisable.hxx>
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
|
#include <QButtonGroup>
|
||||||
#include <QDockWidget>
|
#include <QDockWidget>
|
||||||
#include <QLabel>
|
#include <QLabel>
|
||||||
#include <QMainWindow>
|
#include <QMainWindow>
|
||||||
|
#include <QMenu>
|
||||||
#include <QPushButton>
|
#include <QPushButton>
|
||||||
#include <QStackedWidget>
|
#include <QStackedWidget>
|
||||||
|
#include <QToolButton>
|
||||||
#include <QVBoxLayout>
|
#include <QVBoxLayout>
|
||||||
#include <Standard_WarningsRestore.hxx>
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
@ -56,13 +67,32 @@ TInspector_Window::TInspector_Window()
|
|||||||
myEmptyWidget = new QWidget (aCentralWidget);
|
myEmptyWidget = new QWidget (aCentralWidget);
|
||||||
myToolsStack->addWidget (myEmptyWidget);
|
myToolsStack->addWidget (myEmptyWidget);
|
||||||
|
|
||||||
|
QWidget* aTopWidget = new QWidget (aCentralWidget);
|
||||||
|
QHBoxLayout* aTopWidgetLayout = new QHBoxLayout (aTopWidget);
|
||||||
|
aTopWidgetLayout->setContentsMargins (0, 0, 0, 0);
|
||||||
|
aTopWidgetLayout->setSpacing (0);
|
||||||
|
|
||||||
myButtonWidget = new QWidget (aCentralWidget);
|
myButtonWidget = new QWidget (aCentralWidget);
|
||||||
myButtonLay = new QHBoxLayout (myButtonWidget);
|
myButtonLay = new QHBoxLayout (myButtonWidget);
|
||||||
myButtonLay->setContentsMargins (0, 0, 0, 0);
|
myButtonLay->setContentsMargins (0, 0, 0, 0);
|
||||||
myButtonLay->setSpacing (0);
|
myButtonLay->setSpacing (0);
|
||||||
myButtonLay->insertStretch (0, 1);
|
myButtonLay->insertStretch (0, 1);
|
||||||
|
|
||||||
aCentralLayout->addWidget (myButtonWidget);
|
myButtonGroup = new QButtonGroup (aCentralWidget);
|
||||||
|
myButtonGroup->setExclusive (true);
|
||||||
|
|
||||||
|
myActionsWidget = new QToolButton(aCentralWidget);
|
||||||
|
myActionsWidget->setPopupMode(QToolButton::InstantPopup);
|
||||||
|
myActionsWidget->setIcon (QIcon (":/icons/plugin_actions.png"));
|
||||||
|
myActionsWidget->setIconSize (QSize (20, 20));
|
||||||
|
QMenu* anActionsMenu = new QMenu(myActionsWidget);
|
||||||
|
myActionsWidget->setMenu(anActionsMenu);
|
||||||
|
connect (anActionsMenu, SIGNAL (aboutToShow()), this, SLOT (onShowActionsMenu()));
|
||||||
|
|
||||||
|
aTopWidgetLayout->addWidget(myButtonWidget, 1);
|
||||||
|
aTopWidgetLayout->addWidget(myActionsWidget);
|
||||||
|
|
||||||
|
aCentralLayout->addWidget (aTopWidget);
|
||||||
aCentralLayout->addWidget (myToolsStack);
|
aCentralLayout->addWidget (myToolsStack);
|
||||||
|
|
||||||
myMainWindow->resize (TINSPECTOR_DEFAULT_WIDTH, TINSPECTOR_DEFAULT_HEIGHT);
|
myMainWindow->resize (TINSPECTOR_DEFAULT_WIDTH, TINSPECTOR_DEFAULT_HEIGHT);
|
||||||
@ -70,6 +100,13 @@ TInspector_Window::TInspector_Window()
|
|||||||
myMainWindow->setDockOptions (QMainWindow::VerticalTabs);
|
myMainWindow->setDockOptions (QMainWindow::VerticalTabs);
|
||||||
|
|
||||||
myParameters = new TInspector_PluginParameters (this);
|
myParameters = new TInspector_PluginParameters (this);
|
||||||
|
|
||||||
|
myDefaultDirectory = defaultTemporaryDirectory();
|
||||||
|
myParameters->SetTemporaryDirectory (myDefaultDirectory);
|
||||||
|
|
||||||
|
applyPreferences();
|
||||||
|
|
||||||
|
myShortcut = new TInspector_Shortcut (myMainWindow, this);
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
@ -80,7 +117,7 @@ void TInspector_Window::RegisterPlugin (const TCollection_AsciiString& thePlugin
|
|||||||
{
|
{
|
||||||
TInspector_ToolInfo anInfo;
|
TInspector_ToolInfo anInfo;
|
||||||
int aToolId;
|
int aToolId;
|
||||||
if (FindPlugin (thePluginName, anInfo, aToolId))
|
if (findPlugin (thePluginName, anInfo, aToolId))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
myToolNames.append (TInspector_ToolInfo (thePluginName));
|
myToolNames.append (TInspector_ToolInfo (thePluginName));
|
||||||
@ -137,7 +174,7 @@ void TInspector_Window::Init (const TCollection_AsciiString& thePluginName,
|
|||||||
|
|
||||||
TInspector_ToolInfo anInfo;
|
TInspector_ToolInfo anInfo;
|
||||||
int aToolId;
|
int aToolId;
|
||||||
if (!FindPlugin (thePluginName, anInfo, aToolId))
|
if (!findPlugin (thePluginName, anInfo, aToolId))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (anInfo.myButton)
|
if (anInfo.myButton)
|
||||||
@ -148,8 +185,10 @@ void TInspector_Window::Init (const TCollection_AsciiString& thePluginName,
|
|||||||
aButtonName = aButtonName.mid(2);
|
aButtonName = aButtonName.mid(2);
|
||||||
|
|
||||||
QPushButton* aButton = new QPushButton(aButtonName, myButtonWidget);
|
QPushButton* aButton = new QPushButton(aButtonName, myButtonWidget);
|
||||||
|
aButton->setCheckable (true);
|
||||||
connect (aButton, SIGNAL (clicked (bool)), this, SLOT (onButtonClicked()));
|
connect (aButton, SIGNAL (clicked (bool)), this, SLOT (onButtonClicked()));
|
||||||
myButtonLay->insertWidget (myButtonLay->count()-1, aButton);
|
myButtonLay->insertWidget (myButtonLay->count()-1, aButton);
|
||||||
|
myButtonGroup->addButton (aButton);
|
||||||
anInfo.myButton = aButton;
|
anInfo.myButton = aButton;
|
||||||
myToolNames[aToolId] = anInfo;
|
myToolNames[aToolId] = anInfo;
|
||||||
}
|
}
|
||||||
@ -173,6 +212,7 @@ void TInspector_Window::ActivateTool (const TCollection_AsciiString& thePluginNa
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
TInspector_ToolInfo anInfo = myToolNames[aToolIndex];
|
TInspector_ToolInfo anInfo = myToolNames[aToolIndex];
|
||||||
|
bool isPluginLoaded = false;
|
||||||
if (!anInfo.myWidget)
|
if (!anInfo.myWidget)
|
||||||
{
|
{
|
||||||
if (!LoadPlugin (thePluginName, anInfo))
|
if (!LoadPlugin (thePluginName, anInfo))
|
||||||
@ -180,6 +220,7 @@ void TInspector_Window::ActivateTool (const TCollection_AsciiString& thePluginNa
|
|||||||
anInfo.myButton->setEnabled (false);
|
anInfo.myButton->setEnabled (false);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
isPluginLoaded = true;
|
||||||
myToolsStack->addWidget (anInfo.myWidget);
|
myToolsStack->addWidget (anInfo.myWidget);
|
||||||
myToolNames[aToolIndex] = anInfo;
|
myToolNames[aToolIndex] = anInfo;
|
||||||
}
|
}
|
||||||
@ -190,6 +231,13 @@ void TInspector_Window::ActivateTool (const TCollection_AsciiString& thePluginNa
|
|||||||
myOpenButton->setObjectName (thePluginName.ToCString());
|
myOpenButton->setObjectName (thePluginName.ToCString());
|
||||||
|
|
||||||
anInfo.myCommunicator->UpdateContent();
|
anInfo.myCommunicator->UpdateContent();
|
||||||
|
if (isPluginLoaded)
|
||||||
|
{
|
||||||
|
// apply preferences
|
||||||
|
TInspectorAPI_PreferencesDataMap aPreferences;
|
||||||
|
myParameters->GetPreferences (thePluginName, aPreferences);
|
||||||
|
anInfo.myCommunicator->SetPreferences (aPreferences);
|
||||||
|
}
|
||||||
onCommuncatorNameChanged();
|
onCommuncatorNameChanged();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -200,7 +248,7 @@ void TInspector_Window::ActivateTool (const TCollection_AsciiString& thePluginNa
|
|||||||
void TInspector_Window::SetSelected (const NCollection_List<TCollection_AsciiString>& theItemNames)
|
void TInspector_Window::SetSelected (const NCollection_List<TCollection_AsciiString>& theItemNames)
|
||||||
{
|
{
|
||||||
TInspector_ToolInfo anInfo;
|
TInspector_ToolInfo anInfo;
|
||||||
if (!ActiveToolInfo (anInfo))
|
if (!activeToolInfo (anInfo))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
myParameters->SetSelectedNames (anInfo.myName, theItemNames);
|
myParameters->SetSelectedNames (anInfo.myName, theItemNames);
|
||||||
@ -219,7 +267,7 @@ void TInspector_Window::SetSelected (const NCollection_List<TCollection_AsciiStr
|
|||||||
void TInspector_Window::SetSelected (const NCollection_List<Handle(Standard_Transient)>& theObjects)
|
void TInspector_Window::SetSelected (const NCollection_List<Handle(Standard_Transient)>& theObjects)
|
||||||
{
|
{
|
||||||
TInspector_ToolInfo anInfo;
|
TInspector_ToolInfo anInfo;
|
||||||
if (!ActiveToolInfo (anInfo))
|
if (!activeToolInfo (anInfo))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
myParameters->SetSelected (anInfo.myName, theObjects);
|
myParameters->SetSelected (anInfo.myName, theObjects);
|
||||||
@ -239,7 +287,7 @@ void TInspector_Window::SetOpenButton (QPushButton* theButton)
|
|||||||
{
|
{
|
||||||
myOpenButton = theButton;
|
myOpenButton = theButton;
|
||||||
TInspector_ToolInfo anInfo;
|
TInspector_ToolInfo anInfo;
|
||||||
if (ActiveToolInfo (anInfo))
|
if (activeToolInfo (anInfo))
|
||||||
myOpenButton->setObjectName (anInfo.myName.ToCString());
|
myOpenButton->setObjectName (anInfo.myName.ToCString());
|
||||||
myButtonLay->insertWidget (0, theButton);
|
myButtonLay->insertWidget (0, theButton);
|
||||||
}
|
}
|
||||||
@ -262,7 +310,7 @@ void TInspector_Window::OpenFile (const TCollection_AsciiString& thePluginName,
|
|||||||
myParameters->AddFileName (thePluginName, theFileName);
|
myParameters->AddFileName (thePluginName, theFileName);
|
||||||
|
|
||||||
TInspector_ToolInfo anInfo;
|
TInspector_ToolInfo anInfo;
|
||||||
if (!ActiveToolInfo (anInfo) || anInfo.myName != thePluginName)
|
if (!activeToolInfo (anInfo) || anInfo.myName != thePluginName)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
TInspectorAPI_Communicator* aCommunicator = anInfo.myCommunicator;
|
TInspectorAPI_Communicator* aCommunicator = anInfo.myCommunicator;
|
||||||
@ -277,10 +325,8 @@ void TInspector_Window::OpenFile (const TCollection_AsciiString& thePluginName,
|
|||||||
void TInspector_Window::UpdateContent()
|
void TInspector_Window::UpdateContent()
|
||||||
{
|
{
|
||||||
TInspector_ToolInfo anInfo;
|
TInspector_ToolInfo anInfo;
|
||||||
if (!ActiveToolInfo (anInfo) || !anInfo.myCommunicator)
|
if (activeToolInfo (anInfo) && anInfo.myCommunicator)
|
||||||
return;
|
anInfo.myCommunicator->UpdateContent();
|
||||||
|
|
||||||
anInfo.myCommunicator->UpdateContent();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
@ -314,6 +360,90 @@ bool TInspector_Window::LoadPlugin (const TCollection_AsciiString& thePluginName
|
|||||||
return aLoaded;
|
return aLoaded;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : GetPreferences
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void TInspector_Window::GetPreferences (TInspectorAPI_PreferencesDataMap& theItem)
|
||||||
|
{
|
||||||
|
theItem.Clear();
|
||||||
|
theItem.Bind ("geometry", TreeModel_Tools::ToString (myMainWindow->saveGeometry()).toStdString().c_str());
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : SetPreferences
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void TInspector_Window::SetPreferences (const TInspectorAPI_PreferencesDataMap& theItem)
|
||||||
|
{
|
||||||
|
for (TInspectorAPI_IteratorOfPreferencesDataMap anItemIt (theItem); anItemIt.More(); anItemIt.Next())
|
||||||
|
{
|
||||||
|
if (anItemIt.Key().IsEqual ("geometry"))
|
||||||
|
myMainWindow->restoreGeometry (TreeModel_Tools::ToByteArray (anItemIt.Value().ToCString()));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : Dump
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void TInspector_Window::Dump (Standard_OStream& theStream) const
|
||||||
|
{
|
||||||
|
TInspector_ToolInfo anInfo;
|
||||||
|
activeToolInfo(anInfo);
|
||||||
|
|
||||||
|
theStream << "Active Plugin: " << anInfo.myName << "\n";
|
||||||
|
theStream << "Temporary Directory: " << GetTemporaryDirectory() << "\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : OnStorePreferences
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void TInspector_Window::OnStorePreferences()
|
||||||
|
{
|
||||||
|
Handle(TInspector_PluginParameters) aParameters = Handle(TInspector_PluginParameters)::DownCast (myParameters);
|
||||||
|
TInspectorAPI_PreferencesDataMap aPreferences;
|
||||||
|
GetPreferences (aPreferences);
|
||||||
|
aParameters->SetPreferences ("Desktop", aPreferences);
|
||||||
|
|
||||||
|
TInspector_ToolInfo anInfo;
|
||||||
|
for (int aToolId = 0, aSize = myToolNames.size(); aToolId < aSize; aToolId++)
|
||||||
|
{
|
||||||
|
anInfo = myToolNames[aToolId];
|
||||||
|
if (!anInfo.myCommunicator)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
anInfo.myCommunicator->GetPreferences (aPreferences);
|
||||||
|
myParameters->SetPreferences (anInfo.myName, aPreferences);
|
||||||
|
}
|
||||||
|
|
||||||
|
// store preferences parameters into a file
|
||||||
|
aParameters->StorePreferences();
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : OnRemovePreferences
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void TInspector_Window::OnRemovePreferences()
|
||||||
|
{
|
||||||
|
Handle(TInspector_PluginParameters) aParameters = Handle(TInspector_PluginParameters)::DownCast (myParameters);
|
||||||
|
|
||||||
|
// remove preferences file
|
||||||
|
aParameters->RemovePreferences();
|
||||||
|
|
||||||
|
// restore plugins default state
|
||||||
|
TInspector_ToolInfo anInfo;
|
||||||
|
for (int aToolId = 0, aSize = myToolNames.size(); aToolId < aSize; aToolId++)
|
||||||
|
{
|
||||||
|
anInfo = myToolNames[aToolId];
|
||||||
|
if (!anInfo.myCommunicator)
|
||||||
|
continue;
|
||||||
|
anInfo.myCommunicator->SetPreferences (TInspectorAPI_PreferencesDataMap());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : onButtonClicked
|
// function : onButtonClicked
|
||||||
// purpose :
|
// purpose :
|
||||||
@ -321,7 +451,38 @@ bool TInspector_Window::LoadPlugin (const TCollection_AsciiString& thePluginName
|
|||||||
void TInspector_Window::onButtonClicked()
|
void TInspector_Window::onButtonClicked()
|
||||||
{
|
{
|
||||||
QPushButton* aButton = (QPushButton*)sender();
|
QPushButton* aButton = (QPushButton*)sender();
|
||||||
ActivateTool (TCollection_AsciiString ("TK") + aButton->text().toStdString().c_str());
|
|
||||||
|
TCollection_AsciiString aPluginName = aButton->text().toStdString().c_str();
|
||||||
|
|
||||||
|
TInspector_ToolInfo anInfo;
|
||||||
|
int aToolId;
|
||||||
|
if (!findPlugin (aPluginName, anInfo, aToolId))
|
||||||
|
aPluginName = TCollection_AsciiString ("TK") + aPluginName;
|
||||||
|
|
||||||
|
ActivateTool (aPluginName);
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : onShowActionsMenu
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void TInspector_Window::onShowActionsMenu()
|
||||||
|
{
|
||||||
|
myActionsWidget->menu()->clear();
|
||||||
|
|
||||||
|
TInspector_ToolInfo anInfo;
|
||||||
|
activeToolInfo(anInfo);
|
||||||
|
|
||||||
|
QMenu* aMenu = myActionsWidget->menu();
|
||||||
|
anInfo.myCommunicator->FillActionsMenu(aMenu);
|
||||||
|
|
||||||
|
aMenu->addSeparator();
|
||||||
|
aMenu->addAction (ViewControl_Tools::CreateAction (tr ("Store Preferences"),
|
||||||
|
SLOT (OnStorePreferences()), myMainWindow, this));
|
||||||
|
QAction* anAction = ViewControl_Tools::CreateAction (tr ("Remove Preferences"),
|
||||||
|
SLOT (OnRemovePreferences()), myMainWindow, this);
|
||||||
|
anAction->setToolTip ("Default state will be restored after restarting the application");
|
||||||
|
aMenu->addAction (anAction);
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
@ -332,17 +493,17 @@ void TInspector_Window::onCommuncatorNameChanged()
|
|||||||
{
|
{
|
||||||
#if QT_VERSION >= 0x050000
|
#if QT_VERSION >= 0x050000
|
||||||
TInspector_ToolInfo anInfo;
|
TInspector_ToolInfo anInfo;
|
||||||
if (!ActiveToolInfo (anInfo))
|
if (!activeToolInfo (anInfo))
|
||||||
return;
|
return;
|
||||||
myMainWindow->setWindowTitle (anInfo.myWidget->objectName());
|
myMainWindow->setWindowTitle (anInfo.myWidget->objectName());
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : ActiveToolInfo
|
// function : activeToolInfo
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
bool TInspector_Window::ActiveToolInfo (TInspector_Window::TInspector_ToolInfo& theToolInfo) const
|
bool TInspector_Window::activeToolInfo (TInspector_Window::TInspector_ToolInfo& theToolInfo) const
|
||||||
{
|
{
|
||||||
QWidget* anActiveWidget = myToolsStack->currentWidget();
|
QWidget* anActiveWidget = myToolsStack->currentWidget();
|
||||||
if (anActiveWidget == myEmptyWidget)
|
if (anActiveWidget == myEmptyWidget)
|
||||||
@ -360,10 +521,10 @@ bool TInspector_Window::ActiveToolInfo (TInspector_Window::TInspector_ToolInfo&
|
|||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : FindPlugin
|
// function : findPlugin
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
bool TInspector_Window::FindPlugin (const TCollection_AsciiString& thePluginName, TInspector_ToolInfo& theToolInfo,
|
bool TInspector_Window::findPlugin (const TCollection_AsciiString& thePluginName, TInspector_ToolInfo& theToolInfo,
|
||||||
int& theToolId)
|
int& theToolId)
|
||||||
{
|
{
|
||||||
for (int aToolId = 0, aSize = myToolNames.size(); aToolId < aSize; aToolId++)
|
for (int aToolId = 0, aSize = myToolNames.size(); aToolId < aSize; aToolId++)
|
||||||
@ -378,4 +539,53 @@ bool TInspector_Window::FindPlugin (const TCollection_AsciiString& thePluginName
|
|||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : applyPreferences
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void TInspector_Window::applyPreferences()
|
||||||
|
{
|
||||||
|
TInspectorAPI_PreferencesDataMap aPreferences;
|
||||||
|
myParameters->GetPreferences ("Desktop", aPreferences);
|
||||||
|
SetPreferences (aPreferences);
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : defaultTemporaryDirectory
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
TCollection_AsciiString TInspector_Window::defaultTemporaryDirectory() const
|
||||||
|
{
|
||||||
|
// main window creation
|
||||||
|
TCollection_AsciiString aTmpDir;
|
||||||
|
#ifdef _WIN32
|
||||||
|
OSD_Environment anEnvironment ("TEMP");
|
||||||
|
aTmpDir = anEnvironment.Value();
|
||||||
|
if (aTmpDir.IsEmpty() )
|
||||||
|
{
|
||||||
|
anEnvironment.SetName ("TMP");
|
||||||
|
aTmpDir = anEnvironment.Value();
|
||||||
|
if (aTmpDir.IsEmpty())
|
||||||
|
aTmpDir = "C:\\";
|
||||||
|
}
|
||||||
|
if (!aTmpDir.EndsWith ("\\"))
|
||||||
|
aTmpDir += "\\";
|
||||||
|
OSD_Path aTmpPath (aTmpDir);
|
||||||
|
OSD_Directory aTmpDirectory;
|
||||||
|
#else
|
||||||
|
OSD_Directory aTmpDirectory = OSD_Directory::BuildTemporary();
|
||||||
|
OSD_Path aTmpPath;
|
||||||
|
aTmpDirectory.Path (aTmpPath);
|
||||||
|
#endif
|
||||||
|
aTmpPath.DownTrek ("TInspector");
|
||||||
|
aTmpDirectory.SetPath (aTmpPath);
|
||||||
|
if (!aTmpDirectory.Exists())
|
||||||
|
aTmpDirectory.Build (OSD_Protection());
|
||||||
|
|
||||||
|
aTmpDirectory.Path (aTmpPath);
|
||||||
|
TCollection_AsciiString aTmpDirectoryName;
|
||||||
|
aTmpPath.SystemName (aTmpDirectoryName);
|
||||||
|
|
||||||
|
return aTmpDir;
|
||||||
|
}
|
||||||
|
@ -29,11 +29,14 @@
|
|||||||
#include <Standard_WarningsRestore.hxx>
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
class TInspectorAPI_Communicator;
|
class TInspectorAPI_Communicator;
|
||||||
|
class TInspector_Shortcut;
|
||||||
|
|
||||||
|
class QButtonGroup;
|
||||||
class QMainWindow;
|
class QMainWindow;
|
||||||
class QHBoxLayout;
|
class QHBoxLayout;
|
||||||
class QPushButton;
|
class QPushButton;
|
||||||
class QStackedWidget;
|
class QStackedWidget;
|
||||||
|
class QToolButton;
|
||||||
|
|
||||||
//! \class Inspector_Window
|
//! \class Inspector_Window
|
||||||
//! Control that contains:
|
//! Control that contains:
|
||||||
@ -117,11 +120,42 @@ public:
|
|||||||
//! \param theInfo an output parameter for plugin info
|
//! \param theInfo an output parameter for plugin info
|
||||||
Standard_EXPORT bool LoadPlugin (const TCollection_AsciiString& thePluginName, TInspector_ToolInfo& theInfo);
|
Standard_EXPORT bool LoadPlugin (const TCollection_AsciiString& thePluginName, TInspector_ToolInfo& theInfo);
|
||||||
|
|
||||||
|
//! Sets path to a directory for temporary plugin files. If parameter is empty, using default directory
|
||||||
|
//! \param thePath a path
|
||||||
|
void SetTemporaryDirectory (const TCollection_AsciiString& thePath)
|
||||||
|
{ myParameters->SetTemporaryDirectory (thePath.IsEmpty() ? myDefaultDirectory : thePath); }
|
||||||
|
|
||||||
|
//! Returns path to a directory for temporary plugin files
|
||||||
|
//! \return path
|
||||||
|
TCollection_AsciiString GetTemporaryDirectory() const { return myParameters->GetTemporaryDirectory(); }
|
||||||
|
|
||||||
|
//! Returns plugin preferences: dock widgets state, tree view columns.
|
||||||
|
//! \param theItem container of preference elements
|
||||||
|
Standard_EXPORT void GetPreferences (TInspectorAPI_PreferencesDataMap& theItem);
|
||||||
|
|
||||||
|
//! Applies plugin preferences
|
||||||
|
//! \param theItem container of preference elements
|
||||||
|
Standard_EXPORT void SetPreferences (const TInspectorAPI_PreferencesDataMap& theItem);
|
||||||
|
|
||||||
|
//! Puts in the stream information about communicator
|
||||||
|
//! \param theStream stream for output
|
||||||
|
Standard_EXPORT void Dump (Standard_OStream& theStream) const;
|
||||||
|
|
||||||
|
public slots:
|
||||||
|
//! Stores preferences (current state) of all plugins into a preferences file
|
||||||
|
Standard_EXPORT void OnStorePreferences();
|
||||||
|
|
||||||
|
//! Remove preferences file
|
||||||
|
Standard_EXPORT void OnRemovePreferences();
|
||||||
|
|
||||||
protected slots:
|
protected slots:
|
||||||
|
|
||||||
//! Activates plugin correspnded to the clicked button
|
//! Activates plugin correspnded to the clicked button
|
||||||
void onButtonClicked();
|
void onButtonClicked();
|
||||||
|
|
||||||
|
//! Updates available actions by the active plugin
|
||||||
|
void onShowActionsMenu();
|
||||||
|
|
||||||
//! Updates the TInspector window title giving object name of plugin widget (available only in Qt5)
|
//! Updates the TInspector window title giving object name of plugin widget (available only in Qt5)
|
||||||
void onCommuncatorNameChanged();
|
void onCommuncatorNameChanged();
|
||||||
|
|
||||||
@ -129,16 +163,23 @@ protected:
|
|||||||
|
|
||||||
//! Activates plugin by the plugin info
|
//! Activates plugin by the plugin info
|
||||||
//! \param theToolInfo an information about plugin
|
//! \param theToolInfo an information about plugin
|
||||||
bool ActiveToolInfo (TInspector_ToolInfo& theToolInfo) const;
|
bool activeToolInfo (TInspector_ToolInfo& theToolInfo) const;
|
||||||
|
|
||||||
//! Returns true if there is plugin registered by the given name
|
//! Returns true if there is plugin registered by the given name
|
||||||
//! \param thePluginName a name of the plugin
|
//! \param thePluginName a name of the plugin
|
||||||
//! \param theToolInfo an output parameter for plugin information
|
//! \param theToolInfo an output parameter for plugin information
|
||||||
//! \param theToolId an index in internal map
|
//! \param theToolId an index in internal map
|
||||||
//! \return true if the plugin is found
|
//! \return true if the plugin is found
|
||||||
bool FindPlugin (const TCollection_AsciiString& thePluginName, TInspector_ToolInfo& theToolInfo,
|
bool findPlugin (const TCollection_AsciiString& thePluginName, TInspector_ToolInfo& theToolInfo,
|
||||||
int& theToolId);
|
int& theToolId);
|
||||||
|
|
||||||
|
//! Applies desktop preferences to window
|
||||||
|
void applyPreferences();
|
||||||
|
|
||||||
|
//! Generate default temp directory by 'TEMP' or 'TMP' environment variables
|
||||||
|
//! \return generated path
|
||||||
|
TCollection_AsciiString defaultTemporaryDirectory() const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
QWidget* myEmptyWidget; //!< widget that is active in tools stack while no one plugin is loaded
|
QWidget* myEmptyWidget; //!< widget that is active in tools stack while no one plugin is loaded
|
||||||
@ -147,8 +188,12 @@ private:
|
|||||||
QWidget* myButtonWidget; //!< container of plugin buttons
|
QWidget* myButtonWidget; //!< container of plugin buttons
|
||||||
QPushButton* myOpenButton; //!< button to open file for the active plugin
|
QPushButton* myOpenButton; //!< button to open file for the active plugin
|
||||||
QHBoxLayout* myButtonLay; //!< layout of plugin buttons
|
QHBoxLayout* myButtonLay; //!< layout of plugin buttons
|
||||||
|
QButtonGroup* myButtonGroup; //!< exclusive toggled button
|
||||||
|
QToolButton* myActionsWidget; //!< tool button for plugin actions
|
||||||
QList<TInspector_ToolInfo> myToolNames; //!< container of plugin names
|
QList<TInspector_ToolInfo> myToolNames; //!< container of plugin names
|
||||||
Handle(TInspectorAPI_PluginParameters) myParameters; //!< plugins parameters container
|
Handle(TInspectorAPI_PluginParameters) myParameters; //!< plugins parameters container
|
||||||
|
TInspector_Shortcut* myShortcut; //!< listener of key events
|
||||||
|
TCollection_AsciiString myDefaultDirectory; //!< default directory
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
BIN
tools/TInspector/icons/plugin_actions.png
Normal file
BIN
tools/TInspector/icons/plugin_actions.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 204 B |
@ -2,3 +2,4 @@ TInspectorAPI_Communicator.cxx
|
|||||||
TInspectorAPI_Communicator.hxx
|
TInspectorAPI_Communicator.hxx
|
||||||
TInspectorAPI_PluginParameters.cxx
|
TInspectorAPI_PluginParameters.cxx
|
||||||
TInspectorAPI_PluginParameters.hxx
|
TInspectorAPI_PluginParameters.hxx
|
||||||
|
TInspectorAPI_PreferencesDataMap.hxx
|
||||||
|
@ -50,6 +50,16 @@ public:
|
|||||||
//! \param theParent a parent class
|
//! \param theParent a parent class
|
||||||
Standard_EXPORT virtual void SetParent (void* theParent) = 0;
|
Standard_EXPORT virtual void SetParent (void* theParent) = 0;
|
||||||
|
|
||||||
|
//! Provide container for actions available in inspector on general level
|
||||||
|
//! \param theMenu if Qt implementation, it is QMenu object
|
||||||
|
Standard_EXPORT virtual void FillActionsMenu (void* theMenu) { (void)theMenu; }
|
||||||
|
|
||||||
|
//! Returns plugin preferences, empty implementation by default
|
||||||
|
virtual void GetPreferences (TInspectorAPI_PreferencesDataMap&) {}
|
||||||
|
|
||||||
|
//! Applies plugin preferences, empty implementation by default
|
||||||
|
virtual void SetPreferences (const TInspectorAPI_PreferencesDataMap&) {}
|
||||||
|
|
||||||
//! Calls update of the plugin's content
|
//! Calls update of the plugin's content
|
||||||
Standard_EXPORT virtual void UpdateContent() = 0;
|
Standard_EXPORT virtual void UpdateContent() = 0;
|
||||||
|
|
||||||
|
@ -22,14 +22,6 @@ IMPLEMENT_STANDARD_RTTIEXT (TInspectorAPI_PluginParameters, Standard_Transient)
|
|||||||
IMPLEMENT_STANDARD_RTTIEXT (TInspectorAPI_PluginParameters, Standard_Transient)
|
IMPLEMENT_STANDARD_RTTIEXT (TInspectorAPI_PluginParameters, Standard_Transient)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// =======================================================================
|
|
||||||
// function : Constructor
|
|
||||||
// purpose :
|
|
||||||
// =======================================================================
|
|
||||||
TInspectorAPI_PluginParameters::TInspectorAPI_PluginParameters()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : SetParameters
|
// function : SetParameters
|
||||||
// purpose :
|
// purpose :
|
||||||
@ -51,8 +43,8 @@ void TInspectorAPI_PluginParameters::SetParameters (const TCollection_AsciiStrin
|
|||||||
void TInspectorAPI_PluginParameters::AddFileName (const TCollection_AsciiString& thePluginName,
|
void TInspectorAPI_PluginParameters::AddFileName (const TCollection_AsciiString& thePluginName,
|
||||||
const TCollection_AsciiString& theFileName)
|
const TCollection_AsciiString& theFileName)
|
||||||
{
|
{
|
||||||
if (myFileNames.IsBound(thePluginName))
|
if (myFileNames.IsBound (thePluginName))
|
||||||
myFileNames.ChangeFind(thePluginName).Append (theFileName);
|
myFileNames.ChangeFind (thePluginName).Append (theFileName);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
NCollection_List<TCollection_AsciiString> aNames;
|
NCollection_List<TCollection_AsciiString> aNames;
|
||||||
@ -103,7 +95,7 @@ void TInspectorAPI_PluginParameters::SetSelected (const TCollection_AsciiString&
|
|||||||
// =======================================================================
|
// =======================================================================
|
||||||
bool TInspectorAPI_PluginParameters::FindParameters (const TCollection_AsciiString& thePluginName)
|
bool TInspectorAPI_PluginParameters::FindParameters (const TCollection_AsciiString& thePluginName)
|
||||||
{
|
{
|
||||||
return myParameters.IsBound(thePluginName);
|
return myParameters.IsBound (thePluginName);
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
@ -122,7 +114,7 @@ const NCollection_List<Handle(Standard_Transient)>& TInspectorAPI_PluginParamete
|
|||||||
// =======================================================================
|
// =======================================================================
|
||||||
bool TInspectorAPI_PluginParameters::FindFileNames (const TCollection_AsciiString& thePluginName)
|
bool TInspectorAPI_PluginParameters::FindFileNames (const TCollection_AsciiString& thePluginName)
|
||||||
{
|
{
|
||||||
return myFileNames.IsBound(thePluginName);
|
return myFileNames.IsBound (thePluginName);
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
@ -141,7 +133,7 @@ const NCollection_List<TCollection_AsciiString>& TInspectorAPI_PluginParameters:
|
|||||||
// =======================================================================
|
// =======================================================================
|
||||||
bool TInspectorAPI_PluginParameters::FindSelectedNames (const TCollection_AsciiString& thePluginName)
|
bool TInspectorAPI_PluginParameters::FindSelectedNames (const TCollection_AsciiString& thePluginName)
|
||||||
{
|
{
|
||||||
return mySelectedItemNames.IsBound(thePluginName);
|
return mySelectedItemNames.IsBound (thePluginName);
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
@ -163,3 +155,131 @@ Standard_Boolean TInspectorAPI_PluginParameters::GetSelectedObjects (const TColl
|
|||||||
{
|
{
|
||||||
return mySelectedObjects.Find (thePluginName, theObjects);
|
return mySelectedObjects.Find (thePluginName, theObjects);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : toString
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
TCollection_AsciiString toString (const TopLoc_Location& theLocation)
|
||||||
|
{
|
||||||
|
TCollection_AsciiString anInfo;
|
||||||
|
gp_Trsf aTrsf = theLocation.Transformation();
|
||||||
|
for (int aRowId = 1; aRowId <= 3; aRowId++)
|
||||||
|
{
|
||||||
|
if (!anInfo.IsEmpty())
|
||||||
|
anInfo += " ";
|
||||||
|
for (int aColumnId = 1; aColumnId <= 4; aColumnId++)
|
||||||
|
{
|
||||||
|
if (aColumnId > 1)
|
||||||
|
anInfo += ",";
|
||||||
|
anInfo += TCollection_AsciiString (aTrsf.Value (aRowId, aColumnId));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return anInfo;
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : ParametersToString
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
TCollection_AsciiString TInspectorAPI_PluginParameters::ParametersToString (const TopoDS_Shape& theShape)
|
||||||
|
{
|
||||||
|
const TopLoc_Location& aLocation = theShape.Location();
|
||||||
|
TCollection_AsciiString aLocationStr = toString (aLocation);
|
||||||
|
|
||||||
|
TopAbs_Orientation anOrientation = theShape.Orientation();
|
||||||
|
Standard_SStream aSStream;
|
||||||
|
TopAbs::Print (anOrientation, aSStream);
|
||||||
|
return TCollection_AsciiString (aSStream.str().c_str()) + ":" + aLocationStr;
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : fromString
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
TopLoc_Location fromString (const TCollection_AsciiString& theValue)
|
||||||
|
{
|
||||||
|
NCollection_Mat4<Standard_Real> aValues;
|
||||||
|
|
||||||
|
TCollection_AsciiString aCurrentString = theValue;
|
||||||
|
Standard_Integer aPosition = aCurrentString.Search (" ");
|
||||||
|
if (aPosition < 0)
|
||||||
|
return TopLoc_Location();
|
||||||
|
TCollection_AsciiString aTailString = aCurrentString.Split (aPosition);
|
||||||
|
Standard_Integer aRow = 0;
|
||||||
|
while (!aCurrentString.IsEmpty())
|
||||||
|
{
|
||||||
|
TCollection_AsciiString aValueString = aCurrentString;
|
||||||
|
aPosition = aValueString.Search (",");
|
||||||
|
if (aPosition < 0 )
|
||||||
|
break;
|
||||||
|
aCurrentString = aValueString.Split (aPosition);
|
||||||
|
Standard_Integer aColumn = 0;
|
||||||
|
while (!aValueString.IsEmpty())
|
||||||
|
{
|
||||||
|
aPosition = aCurrentString.Search (" ");
|
||||||
|
if (aPosition > 0)
|
||||||
|
aValueString.Split (aValueString.Length() - 1);
|
||||||
|
|
||||||
|
aValues.SetValue (aRow, aColumn, aValueString.RealValue());
|
||||||
|
aColumn++;
|
||||||
|
if (aCurrentString.IsEmpty())
|
||||||
|
break;
|
||||||
|
aValueString = aCurrentString;
|
||||||
|
aPosition = aValueString.Search (",");
|
||||||
|
if (aPosition < 0 )
|
||||||
|
{
|
||||||
|
aValueString = aCurrentString;
|
||||||
|
aCurrentString = TCollection_AsciiString();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
aCurrentString = aValueString.Split (aPosition);
|
||||||
|
}
|
||||||
|
if (aTailString.IsEmpty())
|
||||||
|
break;
|
||||||
|
aCurrentString = aTailString;
|
||||||
|
aPosition = aCurrentString.Search (" ");
|
||||||
|
if (aPosition < 0 )
|
||||||
|
{
|
||||||
|
aCurrentString = aTailString;
|
||||||
|
aTailString = TCollection_AsciiString();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
aTailString = aCurrentString.Split (aPosition);
|
||||||
|
aRow++;
|
||||||
|
}
|
||||||
|
|
||||||
|
//if (aValues.Rows() != 3 || aValues.Cols() != 4)
|
||||||
|
// return TopLoc_Location();
|
||||||
|
|
||||||
|
gp_Trsf aTrsf;
|
||||||
|
aTrsf.SetValues (aValues.GetValue (0, 0), aValues.GetValue (0, 1), aValues.GetValue (0, 2), aValues.GetValue (0, 3),
|
||||||
|
aValues.GetValue (1, 0), aValues.GetValue (1, 1), aValues.GetValue (1, 2), aValues.GetValue (1, 3),
|
||||||
|
aValues.GetValue (2, 0), aValues.GetValue (2, 1), aValues.GetValue (2, 2), aValues.GetValue (2, 3));
|
||||||
|
return TopLoc_Location (aTrsf);
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : ParametersToShape
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void TInspectorAPI_PluginParameters::ParametersToShape (const TCollection_AsciiString& theValue,
|
||||||
|
TopoDS_Shape& theShape)
|
||||||
|
{
|
||||||
|
int aSeparatorPos = theValue.Search (":");
|
||||||
|
TCollection_AsciiString anOrientationStr = theValue;
|
||||||
|
TCollection_AsciiString aLocationStr = anOrientationStr.Split (aSeparatorPos);
|
||||||
|
// orientation
|
||||||
|
if (anOrientationStr.Length() < 2)
|
||||||
|
return;
|
||||||
|
anOrientationStr.Split (anOrientationStr.Length() - 1);
|
||||||
|
|
||||||
|
TopAbs_Orientation anOrientation;
|
||||||
|
if (!TopAbs::ShapeOrientationFromString (anOrientationStr.ToCString(), anOrientation))
|
||||||
|
return;
|
||||||
|
// location
|
||||||
|
TopLoc_Location aLocation = fromString (aLocationStr);
|
||||||
|
|
||||||
|
theShape.Location (aLocation);
|
||||||
|
theShape.Orientation (anOrientation);
|
||||||
|
}
|
||||||
|
@ -21,7 +21,9 @@
|
|||||||
#include <Standard_Version.hxx>
|
#include <Standard_Version.hxx>
|
||||||
#include <Standard_Transient.hxx>
|
#include <Standard_Transient.hxx>
|
||||||
#include <TCollection_AsciiString.hxx>
|
#include <TCollection_AsciiString.hxx>
|
||||||
#include <TCollection_AsciiString.hxx>
|
#include <TopoDS_Shape.hxx>
|
||||||
|
|
||||||
|
#include <inspector/TInspectorAPI_PreferencesDataMap.hxx>
|
||||||
|
|
||||||
class TInspectorAPI_PluginParameters;
|
class TInspectorAPI_PluginParameters;
|
||||||
DEFINE_STANDARD_HANDLE (TInspectorAPI_PluginParameters, Standard_Transient)
|
DEFINE_STANDARD_HANDLE (TInspectorAPI_PluginParameters, Standard_Transient)
|
||||||
@ -36,7 +38,7 @@ class TInspectorAPI_PluginParameters : public Standard_Transient
|
|||||||
public:
|
public:
|
||||||
|
|
||||||
//! Constructs the container.
|
//! Constructs the container.
|
||||||
Standard_EXPORT TInspectorAPI_PluginParameters();
|
Standard_EXPORT TInspectorAPI_PluginParameters() {}
|
||||||
|
|
||||||
//! Destructor
|
//! Destructor
|
||||||
Standard_EXPORT virtual ~TInspectorAPI_PluginParameters() Standard_OVERRIDE {}
|
Standard_EXPORT virtual ~TInspectorAPI_PluginParameters() Standard_OVERRIDE {}
|
||||||
@ -81,8 +83,7 @@ public:
|
|||||||
//! Returns parameters set for the given plugin
|
//! Returns parameters set for the given plugin
|
||||||
//! \param thePluginName a plugin name
|
//! \param thePluginName a plugin name
|
||||||
//! \return container of objects
|
//! \return container of objects
|
||||||
Standard_EXPORT const NCollection_List<Handle(Standard_Transient)>& Parameters (
|
Standard_EXPORT const NCollection_List<Handle(Standard_Transient)>& Parameters (const TCollection_AsciiString& thePluginName);
|
||||||
const TCollection_AsciiString& thePluginName);
|
|
||||||
|
|
||||||
//! Returns true if there are file names set for the given plugin
|
//! Returns true if there are file names set for the given plugin
|
||||||
//! \param thePluginName a plugin name
|
//! \param thePluginName a plugin name
|
||||||
@ -92,8 +93,7 @@ public:
|
|||||||
//! Returns file names set for the given plugin
|
//! Returns file names set for the given plugin
|
||||||
//! \param thePluginName a plugin name
|
//! \param thePluginName a plugin name
|
||||||
//! \return container of names
|
//! \return container of names
|
||||||
Standard_EXPORT const NCollection_List<TCollection_AsciiString>& FileNames(
|
Standard_EXPORT const NCollection_List<TCollection_AsciiString>& FileNames (const TCollection_AsciiString& thePluginName);
|
||||||
const TCollection_AsciiString& thePluginName);
|
|
||||||
|
|
||||||
//! Returns true if there are file names set for the given plugin
|
//! Returns true if there are file names set for the given plugin
|
||||||
//! \param thePluginName a plugin name
|
//! \param thePluginName a plugin name
|
||||||
@ -112,6 +112,36 @@ public:
|
|||||||
Standard_EXPORT Standard_Boolean GetSelectedObjects (const TCollection_AsciiString& thePluginName,
|
Standard_EXPORT Standard_Boolean GetSelectedObjects (const TCollection_AsciiString& thePluginName,
|
||||||
NCollection_List<Handle(Standard_Transient)>& theObjects);
|
NCollection_List<Handle(Standard_Transient)>& theObjects);
|
||||||
|
|
||||||
|
//! Sets path to a directory for temporary plugin files
|
||||||
|
//! \param thePath a path
|
||||||
|
virtual void SetTemporaryDirectory (const TCollection_AsciiString& thePath) { myTemporaryDirectory = thePath; }
|
||||||
|
|
||||||
|
//! Returns path to a directory for temporary plugin files
|
||||||
|
//! \return path
|
||||||
|
TCollection_AsciiString GetTemporaryDirectory() const { return myTemporaryDirectory; }
|
||||||
|
|
||||||
|
//! Returns plugin preferences
|
||||||
|
//! \param thePluginName a plugin name
|
||||||
|
Standard_EXPORT virtual void GetPreferences (const TCollection_AsciiString& thePluginName,
|
||||||
|
TInspectorAPI_PreferencesDataMap& theItem) = 0;
|
||||||
|
|
||||||
|
//! Stores plugin preferences
|
||||||
|
//! \param thePluginName a plugin name
|
||||||
|
//! \theItem container of plugin preferences values in form: <name, value>
|
||||||
|
Standard_EXPORT virtual void SetPreferences (const TCollection_AsciiString& thePluginName,
|
||||||
|
const TInspectorAPI_PreferencesDataMap& theItem) = 0;
|
||||||
|
|
||||||
|
//! Converts a Shape parameters excepting TShape into a string value
|
||||||
|
//! \param theShape processed shape
|
||||||
|
//! \return string instance
|
||||||
|
Standard_EXPORT static TCollection_AsciiString ParametersToString (const TopoDS_Shape& theShape);
|
||||||
|
|
||||||
|
//! Converts a Shape parameters exceptin TShape into a string value
|
||||||
|
//! \param theValue parameters string value (without TShape information)
|
||||||
|
//! \param theShape processed shape
|
||||||
|
Standard_EXPORT static void ParametersToShape (const TCollection_AsciiString& theValue, TopoDS_Shape& theShape);
|
||||||
|
|
||||||
|
|
||||||
#if OCC_VERSION_HEX <= 0x060901
|
#if OCC_VERSION_HEX <= 0x060901
|
||||||
DEFINE_STANDARD_RTTI (TInspectorAPI_PluginParameters)
|
DEFINE_STANDARD_RTTI (TInspectorAPI_PluginParameters)
|
||||||
#else
|
#else
|
||||||
@ -126,6 +156,8 @@ private:
|
|||||||
NCollection_DataMap<TCollection_AsciiString, NCollection_List<TCollection_AsciiString> > mySelectedItemNames;
|
NCollection_DataMap<TCollection_AsciiString, NCollection_List<TCollection_AsciiString> > mySelectedItemNames;
|
||||||
//! container of select objects
|
//! container of select objects
|
||||||
NCollection_DataMap<TCollection_AsciiString, NCollection_List<Handle(Standard_Transient)> > mySelectedObjects;
|
NCollection_DataMap<TCollection_AsciiString, NCollection_List<Handle(Standard_Transient)> > mySelectedObjects;
|
||||||
|
//! temporary directory for saving plugin preferences
|
||||||
|
TCollection_AsciiString myTemporaryDirectory;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
25
tools/TInspectorAPI/TInspectorAPI_PreferencesDataMap.hxx
Normal file
25
tools/TInspectorAPI/TInspectorAPI_PreferencesDataMap.hxx
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
// 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.
|
||||||
|
|
||||||
|
#ifndef TInspectorAPI_PreferencesDataMap_H
|
||||||
|
#define TInspectorAPI_PreferencesDataMap_H
|
||||||
|
|
||||||
|
#include <NCollection_DataMap.hxx>
|
||||||
|
#include <TCollection_AsciiString.hxx>
|
||||||
|
|
||||||
|
typedef NCollection_DataMap<TCollection_AsciiString, TCollection_AsciiString> TInspectorAPI_PreferencesDataMap;
|
||||||
|
typedef NCollection_DataMap<TCollection_AsciiString, TCollection_AsciiString>::Iterator TInspectorAPI_IteratorOfPreferencesDataMap;
|
||||||
|
|
||||||
|
#endif
|
@ -1,3 +1,4 @@
|
|||||||
TKTInspectorAPI
|
|
||||||
TKernel
|
TKernel
|
||||||
|
TKTInspectorAPI
|
||||||
|
TKTreeModel
|
||||||
CSF_QT
|
CSF_QT
|
@ -1,2 +1,4 @@
|
|||||||
|
TKG3d
|
||||||
TKernel
|
TKernel
|
||||||
TKLCAF
|
TKLCAF
|
||||||
|
TKMath
|
@ -1 +1,2 @@
|
|||||||
TreeModel
|
TreeModel
|
||||||
|
ViewControl
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||||
// commercial license or contractual agreement.
|
// commercial license or contractual agreement.
|
||||||
|
|
||||||
#include <inspector/ToolsDraw.hxx>
|
|
||||||
#include <inspector/ToolsDraw.hxx>
|
#include <inspector/ToolsDraw.hxx>
|
||||||
|
|
||||||
#include <AIS_InteractiveContext.hxx>
|
#include <AIS_InteractiveContext.hxx>
|
||||||
@ -26,11 +25,13 @@
|
|||||||
#include <NCollection_DataMap.hxx>
|
#include <NCollection_DataMap.hxx>
|
||||||
#include <Standard_Stream.hxx>
|
#include <Standard_Stream.hxx>
|
||||||
#include <TDocStd_Application.hxx>
|
#include <TDocStd_Application.hxx>
|
||||||
#include <inspector/TInspector_Communicator.hxx>
|
|
||||||
#include <TopoDS_Shape.hxx>
|
#include <TopoDS_Shape.hxx>
|
||||||
#include <ViewerTest.hxx>
|
#include <ViewerTest.hxx>
|
||||||
#include <ViewerTest_DoubleMapOfInteractiveAndName.hxx>
|
#include <ViewerTest_DoubleMapOfInteractiveAndName.hxx>
|
||||||
|
|
||||||
|
#include <inspector/TInspectorAPI_PluginParameters.hxx>
|
||||||
|
#include <inspector/TInspector_Communicator.hxx>
|
||||||
|
|
||||||
#if ! defined(_WIN32)
|
#if ! defined(_WIN32)
|
||||||
extern ViewerTest_DoubleMapOfInteractiveAndName& GetMapOfAIS();
|
extern ViewerTest_DoubleMapOfInteractiveAndName& GetMapOfAIS();
|
||||||
#else
|
#else
|
||||||
@ -84,7 +85,7 @@ void getArgumentPlugins (Standard_Integer theArgsNb, const char** theArgs, Stand
|
|||||||
// function : tinspector
|
// function : tinspector
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
static int tinspector (Draw_Interpretor&/* di*/, Standard_Integer theArgsNb, const char** theArgs)
|
static int tinspector (Draw_Interpretor& di, Standard_Integer theArgsNb, const char** theArgs)
|
||||||
{
|
{
|
||||||
if (theArgsNb < 1)
|
if (theArgsNb < 1)
|
||||||
{
|
{
|
||||||
@ -99,7 +100,10 @@ static int tinspector (Draw_Interpretor&/* di*/, Standard_Integer theArgsNb, con
|
|||||||
TCollection_AsciiString aPluginNameToActivate;
|
TCollection_AsciiString aPluginNameToActivate;
|
||||||
Standard_Boolean aNeedToUpdateContent = Standard_False,
|
Standard_Boolean aNeedToUpdateContent = Standard_False,
|
||||||
aNeedToHideInspector = Standard_False,
|
aNeedToHideInspector = Standard_False,
|
||||||
aNeedToShowInspector = Standard_False;
|
aNeedToShowInspector = Standard_False,
|
||||||
|
aNeedToPrintState = Standard_False,
|
||||||
|
aNeedDirectory = Standard_False;
|
||||||
|
TCollection_AsciiString aTemporaryDirectory;
|
||||||
|
|
||||||
NCollection_List<Handle(Standard_Transient)> aDefaultParameters;
|
NCollection_List<Handle(Standard_Transient)> aDefaultParameters;
|
||||||
TCollection_AsciiString aDefaultOpenFileParameter;
|
TCollection_AsciiString aDefaultOpenFileParameter;
|
||||||
@ -115,7 +119,7 @@ static int tinspector (Draw_Interpretor&/* di*/, Standard_Integer theArgsNb, con
|
|||||||
if (aParam.IsEqual ("-plugins")) // [-plugins {name1 [name2] ... [name3] | all}]
|
if (aParam.IsEqual ("-plugins")) // [-plugins {name1 [name2] ... [name3] | all}]
|
||||||
{
|
{
|
||||||
anIt++;
|
anIt++;
|
||||||
getArgumentPlugins(theArgsNb, theArgs, anIt, aPlugins);
|
getArgumentPlugins (theArgsNb, theArgs, anIt, aPlugins);
|
||||||
}
|
}
|
||||||
else if (aParam.IsEqual ("-activate")) // [-activate name]
|
else if (aParam.IsEqual ("-activate")) // [-activate name]
|
||||||
{
|
{
|
||||||
@ -145,17 +149,22 @@ static int tinspector (Draw_Interpretor&/* di*/, Standard_Integer theArgsNb, con
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
NCollection_List<TCollection_AsciiString> anArgPlugins;
|
NCollection_List<TCollection_AsciiString> anArgPlugins;
|
||||||
getArgumentPlugins(theArgsNb, theArgs, anIt, anArgPlugins);
|
getArgumentPlugins (theArgsNb, theArgs, anIt, anArgPlugins);
|
||||||
|
|
||||||
if (anArgPlugins.IsEmpty())
|
if (anArgPlugins.IsEmpty())
|
||||||
aDefaultParameters.Append(aShape.TShape());
|
{
|
||||||
|
aDefaultParameters.Append (aShape.TShape());
|
||||||
|
anItemNamesToSelect.Append (TInspectorAPI_PluginParameters::ParametersToString (aShape));
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
for (NCollection_List<TCollection_AsciiString>::Iterator anArgIt (anArgPlugins);
|
for (NCollection_List<TCollection_AsciiString>::Iterator anArgIt (anArgPlugins);
|
||||||
anArgIt.More(); anArgIt.Next())
|
anArgIt.More(); anArgIt.Next())
|
||||||
{
|
{
|
||||||
NCollection_List<Handle(Standard_Transient)> aPluginParameters;
|
NCollection_List<Handle(Standard_Transient)> aPluginParameters;
|
||||||
aParameters.Find(anArgIt.Value(), aPluginParameters);
|
aParameters.Find (anArgIt.Value(), aPluginParameters);
|
||||||
aPluginParameters.Append(aShape.TShape());
|
aPluginParameters.Append (aShape.TShape());
|
||||||
|
anItemNamesToSelect.Append (TInspectorAPI_PluginParameters::ParametersToString (aShape));
|
||||||
aParameters.Bind (anArgIt.Value(), aPluginParameters);
|
aParameters.Bind (anArgIt.Value(), aPluginParameters);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -181,11 +190,27 @@ static int tinspector (Draw_Interpretor&/* di*/, Standard_Integer theArgsNb, con
|
|||||||
anArgIt.More(); anArgIt.Next())
|
anArgIt.More(); anArgIt.Next())
|
||||||
{
|
{
|
||||||
NCollection_List<Handle(Standard_Transient)> aPluginParameters;
|
NCollection_List<Handle(Standard_Transient)> aPluginParameters;
|
||||||
aParameters.Find(anArgIt.Value(), aPluginParameters);
|
aParameters.Find (anArgIt.Value(), aPluginParameters);
|
||||||
anOpenFileParameters.Bind(anArgIt.Value(), aFileName);
|
anOpenFileParameters.Bind (anArgIt.Value(), aFileName);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else if (aParam.IsEqual ("-directory")) // [-directory path]"
|
||||||
|
{
|
||||||
|
anIt++;
|
||||||
|
if (anIt == theArgsNb)
|
||||||
|
{
|
||||||
|
cout << "Empty argument of '" << aParam << "'.\n";
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
aNeedDirectory = true;
|
||||||
|
aParam = theArgs[anIt];
|
||||||
|
aTemporaryDirectory = aParam.IsEqual ("default") ? "" : aParam;
|
||||||
|
}
|
||||||
|
else if (aParam.IsEqual ("-state")) // [-state]
|
||||||
|
{
|
||||||
|
aNeedToPrintState = Standard_True;
|
||||||
|
}
|
||||||
else if (aParam.IsEqual ("-update")) // [-update]
|
else if (aParam.IsEqual ("-update")) // [-update]
|
||||||
{
|
{
|
||||||
aNeedToUpdateContent = Standard_True;
|
aNeedToUpdateContent = Standard_True;
|
||||||
@ -202,15 +227,16 @@ static int tinspector (Draw_Interpretor&/* di*/, Standard_Integer theArgsNb, con
|
|||||||
TopoDS_Shape aShape = DBRep::Get (theArgs[anIt]);
|
TopoDS_Shape aShape = DBRep::Get (theArgs[anIt]);
|
||||||
if (!aShape.IsNull())
|
if (!aShape.IsNull())
|
||||||
{
|
{
|
||||||
anObjectsToSelect.Append(aShape.TShape());
|
anObjectsToSelect.Append (aShape.TShape());
|
||||||
|
anItemNamesToSelect.Append (TInspectorAPI_PluginParameters::ParametersToString (aShape));
|
||||||
}
|
}
|
||||||
// search prsentations with given name
|
// search prsentations with given name
|
||||||
if (GetMapOfAIS().IsBound2(theArgs[anIt]))
|
if (GetMapOfAIS().IsBound2 (theArgs[anIt]))
|
||||||
{
|
{
|
||||||
Handle(AIS_InteractiveObject) anIO = Handle(AIS_InteractiveObject)::DownCast
|
Handle(AIS_InteractiveObject) anIO = Handle(AIS_InteractiveObject)::DownCast
|
||||||
(GetMapOfAIS().Find2 (theArgs[anIt]));
|
(GetMapOfAIS().Find2 (theArgs[anIt]));
|
||||||
if (!anIO.IsNull())
|
if (!anIO.IsNull())
|
||||||
anObjectsToSelect.Append(anIO);
|
anObjectsToSelect.Append (anIO);
|
||||||
}
|
}
|
||||||
// give parameters as a container of names
|
// give parameters as a container of names
|
||||||
aParam = TCollection_AsciiString (theArgs[anIt]);
|
aParam = TCollection_AsciiString (theArgs[anIt]);
|
||||||
@ -258,8 +284,8 @@ static int tinspector (Draw_Interpretor&/* di*/, Standard_Integer theArgsNb, con
|
|||||||
if (!anApplication.IsNull())
|
if (!anApplication.IsNull())
|
||||||
{
|
{
|
||||||
NCollection_List<Handle(Standard_Transient)> aDFBrowserParameters;
|
NCollection_List<Handle(Standard_Transient)> aDFBrowserParameters;
|
||||||
aParameters.Find("TKDFBrowser", aDFBrowserParameters);
|
aParameters.Find ("TKDFBrowser", aDFBrowserParameters);
|
||||||
aDFBrowserParameters.Append(anApplication);
|
aDFBrowserParameters.Append (anApplication);
|
||||||
aParameters.Bind ("TKDFBrowser", aDFBrowserParameters);
|
aParameters.Bind ("TKDFBrowser", aDFBrowserParameters);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -268,9 +294,9 @@ static int tinspector (Draw_Interpretor&/* di*/, Standard_Integer theArgsNb, con
|
|||||||
{
|
{
|
||||||
if (aPlugins.IsEmpty())
|
if (aPlugins.IsEmpty())
|
||||||
{
|
{
|
||||||
aPlugins.Append("TKDFBrowser");
|
aPlugins.Append ("TKDFBrowser");
|
||||||
aPlugins.Append("TKShapeView");
|
aPlugins.Append ("TKShapeView");
|
||||||
aPlugins.Append("TKVInspector");
|
aPlugins.Append ("TKVInspector");
|
||||||
}
|
}
|
||||||
aPluginNameToActivate = !aPluginNameToActivate.IsEmpty() ? aPluginNameToActivate : aPlugins.First();
|
aPluginNameToActivate = !aPluginNameToActivate.IsEmpty() ? aPluginNameToActivate : aPlugins.First();
|
||||||
}
|
}
|
||||||
@ -289,7 +315,7 @@ static int tinspector (Draw_Interpretor&/* di*/, Standard_Integer theArgsNb, con
|
|||||||
NCollection_List<Handle(Standard_Transient)> aParameterValues;
|
NCollection_List<Handle(Standard_Transient)> aParameterValues;
|
||||||
aParameters.Find (aPluginName, aParameterValues);
|
aParameters.Find (aPluginName, aParameterValues);
|
||||||
|
|
||||||
for (NCollection_List<Handle(Standard_Transient)>::Iterator aDefIt(aDefaultParameters);
|
for (NCollection_List<Handle(Standard_Transient)>::Iterator aDefIt (aDefaultParameters);
|
||||||
aDefIt.More(); aDefIt.Next())
|
aDefIt.More(); aDefIt.Next())
|
||||||
aParameterValues.Append (aDefIt.Value());
|
aParameterValues.Append (aDefIt.Value());
|
||||||
MyCommunicator->Init (aPluginName, aParameterValues, Standard_True);
|
MyCommunicator->Init (aPluginName, aParameterValues, Standard_True);
|
||||||
@ -302,16 +328,19 @@ static int tinspector (Draw_Interpretor&/* di*/, Standard_Integer theArgsNb, con
|
|||||||
{
|
{
|
||||||
for (NCollection_DataMap<TCollection_AsciiString, TCollection_AsciiString >::Iterator anOpenIt
|
for (NCollection_DataMap<TCollection_AsciiString, TCollection_AsciiString >::Iterator anOpenIt
|
||||||
(anOpenFileParameters); anOpenIt.More(); anOpenIt.Next())
|
(anOpenFileParameters); anOpenIt.More(); anOpenIt.Next())
|
||||||
MyCommunicator->OpenFile(anOpenIt.Key(), anOpenIt.Value());
|
MyCommunicator->OpenFile (anOpenIt.Key(), anOpenIt.Value());
|
||||||
}
|
}
|
||||||
else if (!aDefaultOpenFileParameter.IsEmpty()) // open file in active plugin
|
else if (!aDefaultOpenFileParameter.IsEmpty()) // open file in active plugin
|
||||||
MyCommunicator->OpenFile("", aDefaultOpenFileParameter);
|
MyCommunicator->OpenFile ("", aDefaultOpenFileParameter);
|
||||||
|
|
||||||
if (!anObjectsToSelect.IsEmpty())
|
if (!anObjectsToSelect.IsEmpty())
|
||||||
MyCommunicator->SetSelected(anObjectsToSelect);
|
MyCommunicator->SetSelected (anObjectsToSelect);
|
||||||
|
|
||||||
if (!anItemNamesToSelect.IsEmpty())
|
if (!anItemNamesToSelect.IsEmpty())
|
||||||
MyCommunicator->SetSelected(anItemNamesToSelect);
|
MyCommunicator->SetSelected (anItemNamesToSelect);
|
||||||
|
|
||||||
|
if (aNeedDirectory)
|
||||||
|
MyCommunicator->SetTemporaryDirectory (aTemporaryDirectory);
|
||||||
|
|
||||||
if (aNeedToUpdateContent)
|
if (aNeedToUpdateContent)
|
||||||
MyCommunicator->UpdateContent();
|
MyCommunicator->UpdateContent();
|
||||||
@ -322,6 +351,13 @@ static int tinspector (Draw_Interpretor&/* di*/, Standard_Integer theArgsNb, con
|
|||||||
if (aNeedToHideInspector)
|
if (aNeedToHideInspector)
|
||||||
MyCommunicator->SetVisible (false);
|
MyCommunicator->SetVisible (false);
|
||||||
|
|
||||||
|
if (aNeedToPrintState)
|
||||||
|
{
|
||||||
|
Standard_SStream aSStream;
|
||||||
|
MyCommunicator->Dump (aSStream);
|
||||||
|
di << aSStream << "\n";
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -342,6 +378,8 @@ void ToolsDraw::Commands(Draw_Interpretor& theCommands)
|
|||||||
"\n\t\t: [-update]"
|
"\n\t\t: [-update]"
|
||||||
"\n\t\t: [-select {object | name1 ... [nameN]}]"
|
"\n\t\t: [-select {object | name1 ... [nameN]}]"
|
||||||
"\n\t\t: [-show {0|1} = 1]"
|
"\n\t\t: [-show {0|1} = 1]"
|
||||||
|
"\n\t\t: [-directory path|<default>]"
|
||||||
|
"\n\t\t: [-state]"
|
||||||
"\n\t\t: Starts tool of inspection."
|
"\n\t\t: Starts tool of inspection."
|
||||||
"\n\t\t: Options:"
|
"\n\t\t: Options:"
|
||||||
"\n\t\t: -plugins enters plugins that should be added in the inspector."
|
"\n\t\t: -plugins enters plugins that should be added in the inspector."
|
||||||
@ -360,8 +398,11 @@ void ToolsDraw::Commands(Draw_Interpretor& theCommands)
|
|||||||
"\n\t\t: ShapeView: 'object' is an instance of TopoDS_Shape TShape,"
|
"\n\t\t: ShapeView: 'object' is an instance of TopoDS_Shape TShape,"
|
||||||
"\n\t\t: DFBrowser: 'name' is an entry of TDF_Label and name2(optionaly) for TDF_Attribute type name,"
|
"\n\t\t: DFBrowser: 'name' is an entry of TDF_Label and name2(optionaly) for TDF_Attribute type name,"
|
||||||
"\n\t\t: VInspector: 'object' is an instance of AIS_InteractiveObject;"
|
"\n\t\t: VInspector: 'object' is an instance of AIS_InteractiveObject;"
|
||||||
"\n\t\t: -show sets Inspector view visible or hidden. The first call of this command will show it.",
|
"\n\t\t: -show sets Inspector view visible or hidden. The first call of this command will show it."
|
||||||
|
"\n\t\t: -directory sets Inspector temporary directory. Preferences file is stored there."
|
||||||
|
"\n\t\t: -state print some current information about inspector, like name of active plugin, temporary director.",
|
||||||
__FILE__, tinspector, group);
|
__FILE__, tinspector, group);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
|
@ -1,7 +1,15 @@
|
|||||||
|
TreeModel.hxx
|
||||||
|
TreeModel.qrc
|
||||||
|
TreeModel_ColumnType.hxx
|
||||||
|
TreeModel_ContextMenu.cxx
|
||||||
|
TreeModel_ContextMenu.hxx
|
||||||
|
TreeModel_HeaderSection.hxx
|
||||||
TreeModel_ItemBase.cxx
|
TreeModel_ItemBase.cxx
|
||||||
TreeModel_ItemBase.hxx
|
TreeModel_ItemBase.hxx
|
||||||
TreeModel_ItemRole.hxx
|
TreeModel_ItemRole.hxx
|
||||||
TreeModel_MessageDialog.cxx
|
|
||||||
TreeModel_MessageDialog.hxx
|
|
||||||
TreeModel_ModelBase.cxx
|
TreeModel_ModelBase.cxx
|
||||||
TreeModel_ModelBase.hxx
|
TreeModel_ModelBase.hxx
|
||||||
|
TreeModel_Tools.cxx
|
||||||
|
TreeModel_Tools.hxx
|
||||||
|
TreeModel_VisibilityState.cxx
|
||||||
|
TreeModel_VisibilityState.hxx
|
33
tools/TreeModel/TreeModel.hxx
Normal file
33
tools/TreeModel/TreeModel.hxx
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
// 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.
|
||||||
|
|
||||||
|
#ifndef TREEMODEL_H
|
||||||
|
#define TREEMODEL_H
|
||||||
|
|
||||||
|
#ifdef __TreeModel_DLL
|
||||||
|
#ifdef _WIN32
|
||||||
|
#define TREEMODEL_EXPORT __declspec(dllexport)
|
||||||
|
#else
|
||||||
|
#define TREEMODEL_EXPORT
|
||||||
|
#endif
|
||||||
|
#else
|
||||||
|
#ifdef _WIN32
|
||||||
|
#define TREEMODEL_EXPORT __declspec(dllimport)
|
||||||
|
#else
|
||||||
|
#define TREEMODEL_EXPORT
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
6
tools/TreeModel/TreeModel.qrc
Normal file
6
tools/TreeModel/TreeModel.qrc
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<!DOCTYPE RCC><RCC version="1.0">
|
||||||
|
<qresource>
|
||||||
|
<file>icons/item_invisible.png</file>
|
||||||
|
<file>icons/item_visible.png</file>
|
||||||
|
</qresource>
|
||||||
|
</RCC>
|
30
tools/TreeModel/TreeModel_ColumnType.hxx
Normal file
30
tools/TreeModel/TreeModel_ColumnType.hxx
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
// 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.
|
||||||
|
|
||||||
|
#ifndef TreeModel_ColumnType_H
|
||||||
|
#define TreeModel_ColumnType_H
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
|
#include <Qt>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
|
//! Sets custom item role of Tree view wmodel
|
||||||
|
enum TreeModel_ColumnType
|
||||||
|
{
|
||||||
|
TreeModel_ColumnType_Name = 0, //! name column
|
||||||
|
TreeModel_ColumnType_Visibility //! visibility state column
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
82
tools/TreeModel/TreeModel_ContextMenu.cxx
Normal file
82
tools/TreeModel/TreeModel_ContextMenu.cxx
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
// 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/TreeModel_ContextMenu.hxx>
|
||||||
|
#include <inspector/TreeModel_ModelBase.hxx>
|
||||||
|
#include <inspector/TreeModel_Tools.hxx>
|
||||||
|
|
||||||
|
#include <inspector/ViewControl_Tools.hxx>
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
|
#include <QHeaderView>
|
||||||
|
#include <QMenu>
|
||||||
|
#include <QTreeView>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : Constructor
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
TreeModel_ContextMenu::TreeModel_ContextMenu (QTreeView* theTreeView)
|
||||||
|
: QObject (theTreeView), myTreeView (theTreeView)
|
||||||
|
{
|
||||||
|
myTreeView->header()->setContextMenuPolicy (Qt::CustomContextMenu);
|
||||||
|
#if QT_VERSION >= 0x050000
|
||||||
|
myTreeView->header()->setSectionsClickable (true);
|
||||||
|
#endif
|
||||||
|
myTreeView->header()->setHighlightSections (true);
|
||||||
|
connect (myTreeView->header(), SIGNAL (customContextMenuRequested (const QPoint&)),
|
||||||
|
this, SLOT (onTreeViewHeaderContextMenuRequested (const QPoint&)));
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : onTreeViewHeaderContextMenuRequested
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void TreeModel_ContextMenu::onTreeViewHeaderContextMenuRequested (const QPoint& thePosition)
|
||||||
|
{
|
||||||
|
TreeModel_ModelBase* aModel = dynamic_cast<TreeModel_ModelBase*> (myTreeView->model());
|
||||||
|
if (!aModel)
|
||||||
|
return;
|
||||||
|
|
||||||
|
QMenu* aMenu = new QMenu (myTreeView);
|
||||||
|
int aNbSections = aModel->columnCount();
|
||||||
|
for (int aColumnId = 0; aColumnId < aNbSections; aColumnId++)
|
||||||
|
{
|
||||||
|
QAction* anAction = ViewControl_Tools::CreateAction (aModel->GetHeaderItem (aColumnId).GetName(),
|
||||||
|
SLOT (onColumnVisibilityChanged()), myTreeView, this);
|
||||||
|
anAction->setCheckable (true);
|
||||||
|
anAction->setChecked (!myTreeView->isColumnHidden (aColumnId));
|
||||||
|
anAction->setData (aColumnId);
|
||||||
|
aMenu->addAction (anAction);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (aMenu->actions().isEmpty())
|
||||||
|
return;
|
||||||
|
|
||||||
|
QPoint aPoint = myTreeView->mapToGlobal (thePosition);
|
||||||
|
aMenu->exec (aPoint);
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : onColumnVisibilityChanged
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void TreeModel_ContextMenu::onColumnVisibilityChanged()
|
||||||
|
{
|
||||||
|
QAction* aClickedAction = (QAction*)sender();
|
||||||
|
|
||||||
|
myTreeView->setColumnHidden(aClickedAction->data().toInt(), !aClickedAction->isChecked());
|
||||||
|
}
|
53
tools/TreeModel/TreeModel_ContextMenu.hxx
Normal file
53
tools/TreeModel/TreeModel_ContextMenu.hxx
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
// 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.
|
||||||
|
|
||||||
|
#ifndef TreeModel_ContextMenu_H
|
||||||
|
#define TreeModel_ContextMenu_H
|
||||||
|
|
||||||
|
#include <Standard.hxx>
|
||||||
|
#include <Standard_Macro.hxx>
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
|
#include <QObject>
|
||||||
|
#include <QPoint>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
|
class QTreeView;
|
||||||
|
|
||||||
|
//! \class TreeModel_ContextMenu
|
||||||
|
//! \brief Creates actions to show/hide tree view columns
|
||||||
|
class TreeModel_ContextMenu : public QObject
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
public:
|
||||||
|
//! Constructor
|
||||||
|
Standard_EXPORT TreeModel_ContextMenu (QTreeView* theTreeView);
|
||||||
|
|
||||||
|
//! Destructor
|
||||||
|
~TreeModel_ContextMenu() {}
|
||||||
|
|
||||||
|
protected slots:
|
||||||
|
//! Shows context menu for tree view header. It contains actions to change columns visibility.
|
||||||
|
//! \param thePosition a clicked point
|
||||||
|
void onTreeViewHeaderContextMenuRequested (const QPoint& thePosition);
|
||||||
|
|
||||||
|
//! Changes clicked column visiblity
|
||||||
|
void onColumnVisibilityChanged();
|
||||||
|
|
||||||
|
private:
|
||||||
|
QTreeView* myTreeView;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
78
tools/TreeModel/TreeModel_HeaderSection.hxx
Normal file
78
tools/TreeModel/TreeModel_HeaderSection.hxx
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
// 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.
|
||||||
|
|
||||||
|
#ifndef TreeModel_HeaderSection_H
|
||||||
|
#define TreeModel_HeaderSection_H
|
||||||
|
|
||||||
|
#include <Standard.hxx>
|
||||||
|
#include <Standard_Macro.hxx>
|
||||||
|
|
||||||
|
#include <inspector/TreeModel_Tools.hxx>
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
|
#include <QString>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
|
//! \class TreeModel_HeaderSection
|
||||||
|
//! \brief Container of tree view header sections, like width, visibility, text value
|
||||||
|
class TreeModel_HeaderSection
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
//! Constructor
|
||||||
|
TreeModel_HeaderSection() : myName(), myWidth (-1), myIsHidden (false), myIsItalic (false) {}
|
||||||
|
|
||||||
|
//! Constructor
|
||||||
|
TreeModel_HeaderSection (const QString& theName, const int theWidth = -1, const bool theIsHidden = false,
|
||||||
|
const bool theIsItalic = false)
|
||||||
|
: myName (theName), myWidth (theWidth), myIsHidden (theIsHidden), myIsItalic (theIsItalic) {}
|
||||||
|
|
||||||
|
//! Destructor
|
||||||
|
~TreeModel_HeaderSection() {}
|
||||||
|
|
||||||
|
//! Sets text value
|
||||||
|
//! \theName text value
|
||||||
|
void SetName (const QString& theName) { myName = theName; }
|
||||||
|
|
||||||
|
//! Returns text value
|
||||||
|
QString GetName() const { return myName; }
|
||||||
|
|
||||||
|
//! Sets section width
|
||||||
|
//! \param theValue width value
|
||||||
|
void SetWidth (const int theWidth) { myWidth = theWidth; }
|
||||||
|
|
||||||
|
//! Returns section width
|
||||||
|
int GetWidth (const bool isComputeDefault = true) const
|
||||||
|
{ return (myWidth ==-1 && isComputeDefault) ? TreeModel_Tools::GetTextWidth (GetName(), 0) : myWidth; }
|
||||||
|
|
||||||
|
//! Sets section width
|
||||||
|
void SetIsHidden (bool isHidden) { myIsHidden = isHidden; }
|
||||||
|
|
||||||
|
//! Returns if the section is visiblt
|
||||||
|
bool IsHidden() const { return myIsHidden; }
|
||||||
|
|
||||||
|
//! Sets section width
|
||||||
|
void SetIsItalic (bool isItalic) { myIsItalic = isItalic; }
|
||||||
|
|
||||||
|
//! Returns if the section is visiblt
|
||||||
|
bool IsItalic() const { return myIsItalic; }
|
||||||
|
|
||||||
|
private:
|
||||||
|
QString myName; //! text value
|
||||||
|
int myWidth; //! section width
|
||||||
|
bool myIsHidden; //! visibility
|
||||||
|
bool myIsItalic; //! italic
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
@ -14,6 +14,7 @@
|
|||||||
// commercial license or contractual agreement.
|
// commercial license or contractual agreement.
|
||||||
|
|
||||||
#include <inspector/TreeModel_ItemBase.hxx>
|
#include <inspector/TreeModel_ItemBase.hxx>
|
||||||
|
|
||||||
#include <inspector/TreeModel_ItemRole.hxx>
|
#include <inspector/TreeModel_ItemRole.hxx>
|
||||||
|
|
||||||
#include <Standard_WarningsDisable.hxx>
|
#include <Standard_WarningsDisable.hxx>
|
||||||
@ -45,8 +46,19 @@ void TreeModel_ItemBase::Reset()
|
|||||||
anItem->Reset();
|
anItem->Reset();
|
||||||
}
|
}
|
||||||
m_bInitialized = false;
|
m_bInitialized = false;
|
||||||
mycachedValues.clear();
|
myCachedValues.clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : Reset
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void TreeModel_ItemBase::Reset (int theRole)
|
||||||
|
{
|
||||||
|
if (!myCachedValues.contains (theRole))
|
||||||
|
return;
|
||||||
|
|
||||||
|
myCachedValues.remove (theRole);
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
@ -84,11 +96,11 @@ const TreeModel_ItemBasePtr TreeModel_ItemBase::currentItem()
|
|||||||
// =======================================================================
|
// =======================================================================
|
||||||
QVariant TreeModel_ItemBase::cachedValue (const int theItemRole) const
|
QVariant TreeModel_ItemBase::cachedValue (const int theItemRole) const
|
||||||
{
|
{
|
||||||
if (mycachedValues.contains (theItemRole))
|
if (myCachedValues.contains (theItemRole))
|
||||||
return mycachedValues[theItemRole];
|
return myCachedValues[theItemRole];
|
||||||
|
|
||||||
const_cast<TreeModel_ItemBase*>(this)->mycachedValues.insert (theItemRole,
|
const_cast<TreeModel_ItemBase*>(this)->myCachedValues.insert (theItemRole,
|
||||||
theItemRole == TreeModel_ItemRole_RowCountRole ? QVariant (initRowCount()) : initValue (theItemRole));
|
theItemRole == TreeModel_ItemRole_RowCountRole ? QVariant (initRowCount()) : initValue (theItemRole));
|
||||||
|
|
||||||
return mycachedValues.contains (theItemRole) ? mycachedValues[theItemRole] : QVariant();
|
return myCachedValues.contains (theItemRole) ? myCachedValues[theItemRole] : QVariant();
|
||||||
}
|
}
|
||||||
|
@ -87,6 +87,10 @@ public:
|
|||||||
//! If the item has internal values, there should be reseted here.
|
//! If the item has internal values, there should be reseted here.
|
||||||
Standard_EXPORT virtual void Reset();
|
Standard_EXPORT virtual void Reset();
|
||||||
|
|
||||||
|
//! Resets the item cached value for the parameter role.
|
||||||
|
//! \param theRole an item role
|
||||||
|
Standard_EXPORT virtual void Reset(int theRole);
|
||||||
|
|
||||||
//! Gets the parent of the item, or TreeModel_ItemBasePtr() if it has no parent.
|
//! Gets the parent of the item, or TreeModel_ItemBasePtr() if it has no parent.
|
||||||
//! \return pointer to the item
|
//! \return pointer to the item
|
||||||
TreeModel_ItemBasePtr Parent() const { return m_pParent; };
|
TreeModel_ItemBasePtr Parent() const { return m_pParent; };
|
||||||
@ -108,6 +112,11 @@ public:
|
|||||||
//! \return the child item or TreeModel_ItemBasePtr() if it does not exist
|
//! \return the child item or TreeModel_ItemBasePtr() if it does not exist
|
||||||
Standard_EXPORT TreeModel_ItemBasePtr Child (int theRow, int theColumn, const bool isToCreate = true);
|
Standard_EXPORT TreeModel_ItemBasePtr Child (int theRow, int theColumn, const bool isToCreate = true);
|
||||||
|
|
||||||
|
//! Sets a custom value for the role in an internal cache
|
||||||
|
//! \param theValue a value
|
||||||
|
//! \param theRole a value role
|
||||||
|
void SetCustomData(const QVariant theValue, int theRole) { myCachedValues.insert (theRole, theValue); }
|
||||||
|
|
||||||
//! Returns the data stored under the given role for the current item
|
//! Returns the data stored under the given role for the current item
|
||||||
//! \param theIndex the item model index
|
//! \param theIndex the item model index
|
||||||
//! \param theRole the item model role
|
//! \param theRole the item model role
|
||||||
@ -154,7 +163,7 @@ private:
|
|||||||
typedef QHash< QPair<int, int>, TreeModel_ItemBasePtr > PositionToItemHash;
|
typedef QHash< QPair<int, int>, TreeModel_ItemBasePtr > PositionToItemHash;
|
||||||
PositionToItemHash m_ChildItems; //!< the hash of item children
|
PositionToItemHash m_ChildItems; //!< the hash of item children
|
||||||
|
|
||||||
QMap<int, QVariant> mycachedValues; //!< cached values, should be cleared by reset
|
QMap<int, QVariant> myCachedValues; //!< cached values, should be cleared by reset
|
||||||
TreeModel_ItemBasePtr m_pParent; //!< the parent item
|
TreeModel_ItemBasePtr m_pParent; //!< the parent item
|
||||||
int m_iRow; //!< the item row position in the parent item
|
int m_iRow; //!< the item row position in the parent item
|
||||||
int m_iColumn; //!< the item column position in the parent item
|
int m_iColumn; //!< the item column position in the parent item
|
||||||
|
@ -16,13 +16,20 @@
|
|||||||
#include <inspector/TreeModel_ModelBase.hxx>
|
#include <inspector/TreeModel_ModelBase.hxx>
|
||||||
|
|
||||||
#include <inspector/TreeModel_ItemBase.hxx>
|
#include <inspector/TreeModel_ItemBase.hxx>
|
||||||
|
#include <inspector/TreeModel_Tools.hxx>
|
||||||
|
#include <inspector/TreeModel_VisibilityState.hxx>
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
|
#include <QIcon>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : Constructor
|
// function : Constructor
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
TreeModel_ModelBase::TreeModel_ModelBase (QObject* theParent)
|
TreeModel_ModelBase::TreeModel_ModelBase (QObject* theParent)
|
||||||
: QAbstractItemModel (theParent), m_pRootItem (0)
|
: QAbstractItemModel (theParent), m_pRootItem (0), m_pUseVisibilityColumn (false),
|
||||||
|
myVisibilityState (0)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -43,7 +50,11 @@ TreeModel_ItemBasePtr TreeModel_ModelBase::GetItemByIndex (const QModelIndex& th
|
|||||||
void TreeModel_ModelBase::Reset()
|
void TreeModel_ModelBase::Reset()
|
||||||
{
|
{
|
||||||
for (int aColId = 0, aNbColumns = columnCount(); aColId < aNbColumns; aColId++)
|
for (int aColId = 0, aNbColumns = columnCount(); aColId < aNbColumns; aColId++)
|
||||||
RootItem (aColId)->Reset();
|
{
|
||||||
|
TreeModel_ItemBasePtr aRootItem = RootItem (aColId);
|
||||||
|
if (aRootItem)
|
||||||
|
aRootItem->Reset();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
@ -78,6 +89,27 @@ QVariant TreeModel_ModelBase::data (const QModelIndex& theIndex, int theRole) co
|
|||||||
if (!theIndex.isValid())
|
if (!theIndex.isValid())
|
||||||
return QVariant ("undefined");
|
return QVariant ("undefined");
|
||||||
|
|
||||||
|
if (IsUseVisibilityColumn() && theIndex.column() == TreeModel_ColumnType_Visibility)
|
||||||
|
{
|
||||||
|
if (theRole != Qt::DecorationRole)
|
||||||
|
return QVariant();
|
||||||
|
|
||||||
|
TreeModel_ItemBasePtr anItem = GetItemByIndex (theIndex);
|
||||||
|
if (!anItem->data (theIndex, theRole).isNull()) // value is already in cache
|
||||||
|
return anItem->data (theIndex, theRole);
|
||||||
|
|
||||||
|
if (!anItem->IsInitialized())
|
||||||
|
anItem->Init();
|
||||||
|
|
||||||
|
if (!myVisibilityState || !myVisibilityState->CanBeVisible (theIndex))
|
||||||
|
return QVariant();
|
||||||
|
|
||||||
|
QVariant aValue = QIcon (myVisibilityState->IsVisible (theIndex) ? ":/icons/item_visible.png"
|
||||||
|
: ":/icons/item_invisible.png");
|
||||||
|
anItem->SetCustomData (aValue, theRole);
|
||||||
|
return aValue;
|
||||||
|
}
|
||||||
|
|
||||||
TreeModel_ItemBasePtr anItem = GetItemByIndex (theIndex);
|
TreeModel_ItemBasePtr anItem = GetItemByIndex (theIndex);
|
||||||
return anItem->data (theIndex, theRole);
|
return anItem->data (theIndex, theRole);
|
||||||
}
|
}
|
||||||
@ -111,6 +143,21 @@ Qt::ItemFlags TreeModel_ModelBase::flags (const QModelIndex& theIndex) const
|
|||||||
return Qt::ItemIsEnabled | Qt::ItemIsSelectable;
|
return Qt::ItemIsEnabled | Qt::ItemIsSelectable;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : headerData
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
QVariant TreeModel_ModelBase::headerData (int theSection, Qt::Orientation theOrientation, int theRole) const
|
||||||
|
{
|
||||||
|
if (theOrientation != Qt::Horizontal || theRole != Qt::DisplayRole)
|
||||||
|
return QVariant();
|
||||||
|
|
||||||
|
if (IsUseVisibilityColumn() && theSection == TreeModel_ColumnType_Visibility)
|
||||||
|
return QVariant();
|
||||||
|
|
||||||
|
return GetHeaderItem (theSection).GetName();
|
||||||
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : rowCount
|
// function : rowCount
|
||||||
// purpose :
|
// purpose :
|
||||||
@ -131,7 +178,7 @@ int TreeModel_ModelBase::rowCount (const QModelIndex& theParent) const
|
|||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : emitLayoutChanged
|
// function : EmitLayoutChanged
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
void TreeModel_ModelBase::EmitLayoutChanged()
|
void TreeModel_ModelBase::EmitLayoutChanged()
|
||||||
@ -139,6 +186,44 @@ void TreeModel_ModelBase::EmitLayoutChanged()
|
|||||||
emit layoutChanged();
|
emit layoutChanged();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : EmitLayoutChanged
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void TreeModel_ModelBase::EmitDataChanged (const QModelIndex& theTopLeft, const QModelIndex& theBottomRight,
|
||||||
|
const QVector<int>& theRoles,
|
||||||
|
const bool isResetItem)
|
||||||
|
{
|
||||||
|
TreeModel_ItemBasePtr anItemBase = TreeModel_ModelBase::GetItemByIndex (theTopLeft);
|
||||||
|
if (anItemBase && isResetItem)
|
||||||
|
anItemBase->Reset();
|
||||||
|
|
||||||
|
#if QT_VERSION < 0x050000
|
||||||
|
(void)theRoles;
|
||||||
|
emit dataChanged (theTopLeft, theBottomRight);
|
||||||
|
#else
|
||||||
|
emit dataChanged (theTopLeft, theBottomRight, theRoles);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : SingleSelected
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
QModelIndex TreeModel_ModelBase::SingleSelected (const QModelIndexList& theIndices, const int theCellId,
|
||||||
|
const Qt::Orientation theOrientation)
|
||||||
|
{
|
||||||
|
QModelIndexList aFirstColumnSelectedIndices;
|
||||||
|
for (QModelIndexList::const_iterator anIndicesIt = theIndices.begin(); anIndicesIt != theIndices.end(); anIndicesIt++)
|
||||||
|
{
|
||||||
|
QModelIndex anIndex = *anIndicesIt;
|
||||||
|
if ((theOrientation == Qt::Horizontal && anIndex.column() == theCellId) ||
|
||||||
|
(theOrientation == Qt::Vertical && anIndex.row() == theCellId))
|
||||||
|
aFirstColumnSelectedIndices.append (anIndex);
|
||||||
|
}
|
||||||
|
return aFirstColumnSelectedIndices.size() == 1 ? aFirstColumnSelectedIndices.first() : QModelIndex();
|
||||||
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : getIndexValue
|
// function : getIndexValue
|
||||||
// purpose :
|
// purpose :
|
||||||
|
@ -18,14 +18,19 @@
|
|||||||
|
|
||||||
#include <Standard.hxx>
|
#include <Standard.hxx>
|
||||||
#include <inspector/TreeModel_ItemBase.hxx>
|
#include <inspector/TreeModel_ItemBase.hxx>
|
||||||
|
#include <inspector/TreeModel_HeaderSection.hxx>
|
||||||
|
|
||||||
#include <Standard_WarningsDisable.hxx>
|
#include <Standard_WarningsDisable.hxx>
|
||||||
#include <QAbstractItemModel>
|
#include <QAbstractItemModel>
|
||||||
#include <QExplicitlySharedDataPointer>
|
#include <QExplicitlySharedDataPointer>
|
||||||
|
#include <QMap>
|
||||||
#include <QModelIndex>
|
#include <QModelIndex>
|
||||||
#include <QVariant>
|
#include <QVariant>
|
||||||
|
#include <QVector>
|
||||||
#include <Standard_WarningsRestore.hxx>
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
|
class TreeModel_VisibilityState;
|
||||||
|
|
||||||
//! \class TreeModel_ModelBase
|
//! \class TreeModel_ModelBase
|
||||||
//! \brief Implementation of the tree item based model of QAbstractItemModel.
|
//! \brief Implementation of the tree item based model of QAbstractItemModel.
|
||||||
//! The TreeModel_ModelBase class defines the abstract model realization throught the base item architecture.
|
//! The TreeModel_ModelBase class defines the abstract model realization throught the base item architecture.
|
||||||
@ -59,6 +64,26 @@ public:
|
|||||||
//! Emits the layoutChanged signal from outside of this class
|
//! Emits the layoutChanged signal from outside of this class
|
||||||
Standard_EXPORT void EmitLayoutChanged();
|
Standard_EXPORT void EmitLayoutChanged();
|
||||||
|
|
||||||
|
//! Emits the dataChanged signal from outside of this class
|
||||||
|
Standard_EXPORT void EmitDataChanged (const QModelIndex& theTopLeft, const QModelIndex& theBottomRight,
|
||||||
|
const QVector<int>& theRoles = QVector<int>(), const bool isResetItem = true);
|
||||||
|
|
||||||
|
//! Sets state whether visibility column (0) is used in the model
|
||||||
|
//! \param theState state
|
||||||
|
void SetUseVisibilityColumn (const bool theState) { m_pUseVisibilityColumn = theState; }
|
||||||
|
|
||||||
|
//! Returns state whether visibility column (0) is used in the model
|
||||||
|
//! \param theState state
|
||||||
|
bool IsUseVisibilityColumn() const { return m_pUseVisibilityColumn; }
|
||||||
|
|
||||||
|
//!< Fills visibility state checker
|
||||||
|
//!< \param theController the checker interface
|
||||||
|
void SetVisibilityState (TreeModel_VisibilityState* theController) { myVisibilityState = theController; }
|
||||||
|
|
||||||
|
//!< Returns visibility state checker
|
||||||
|
//!< \return the checker interface
|
||||||
|
TreeModel_VisibilityState* GetVisibilityState () const { return myVisibilityState; }
|
||||||
|
|
||||||
//! Returns the index of the item in the model specified by the given row, column and parent index.
|
//! Returns the index of the item in the model specified by the given row, column and parent index.
|
||||||
//! Saves an internal pointer at the createIndex. This pointer is a shared pointer to the class,
|
//! Saves an internal pointer at the createIndex. This pointer is a shared pointer to the class,
|
||||||
//! that realizes a base item interface. If the parent is invalid, a root item is used, otherwise a new item
|
//! that realizes a base item interface. If the parent is invalid, a root item is used, otherwise a new item
|
||||||
@ -92,8 +117,7 @@ public:
|
|||||||
//! \param theRole a data role
|
//! \param theRole a data role
|
||||||
//! \return the header data
|
//! \return the header data
|
||||||
Standard_EXPORT virtual QVariant headerData (int theSection, Qt::Orientation theOrientation,
|
Standard_EXPORT virtual QVariant headerData (int theSection, Qt::Orientation theOrientation,
|
||||||
int theRole = Qt::DisplayRole) const Standard_OVERRIDE
|
int theRole = Qt::DisplayRole) const Standard_OVERRIDE;
|
||||||
{ (void)theSection, (void)theOrientation; (void)theRole; return QVariant(); }
|
|
||||||
|
|
||||||
//! Returns the number of rows under the given parent. When the parent is valid it means that rowCount is returning
|
//! Returns the number of rows under the given parent. When the parent is valid it means that rowCount is returning
|
||||||
//! the number of children of parent.
|
//! the number of children of parent.
|
||||||
@ -101,13 +125,40 @@ public:
|
|||||||
//! \return the number of rows
|
//! \return the number of rows
|
||||||
Standard_EXPORT virtual int rowCount (const QModelIndex& theParent = QModelIndex()) const Standard_OVERRIDE;
|
Standard_EXPORT virtual int rowCount (const QModelIndex& theParent = QModelIndex()) const Standard_OVERRIDE;
|
||||||
|
|
||||||
//! Returns the number of columns for the children of the given parent.
|
//! Returns whether the column is hidden by default
|
||||||
//! \param theParent a parent model index
|
//! \param theColumnId a column index
|
||||||
//! \return the number of columns
|
//! \return header section values container
|
||||||
|
TreeModel_HeaderSection GetHeaderItem (const int theColumnId) const { return myHeaderValues[theColumnId]; }
|
||||||
|
|
||||||
|
//! Set header properties item.
|
||||||
|
//! \param theColumnId a column index
|
||||||
|
//! \param theSection a section value
|
||||||
|
void SetHeaderItem (const int theColumnId, const TreeModel_HeaderSection& theSection)
|
||||||
|
{ myHeaderValues[theColumnId] = theSection; createRootItem (theColumnId); }
|
||||||
|
|
||||||
|
//! Returns count of columns in the model
|
||||||
|
//! \param theParent an index of the parent item
|
||||||
|
//! \return integer value
|
||||||
virtual int columnCount (const QModelIndex& theParent = QModelIndex()) const Standard_OVERRIDE
|
virtual int columnCount (const QModelIndex& theParent = QModelIndex()) const Standard_OVERRIDE
|
||||||
{ (void)theParent; return 1; }
|
{ (void)theParent; return myHeaderValues.size(); }
|
||||||
|
|
||||||
|
//! Returns default value of the visibility column
|
||||||
|
//! \return integer value
|
||||||
|
static int ColumnVisibilityWidth() { return 20; }
|
||||||
|
|
||||||
|
//! Returns single selected item in the cell of given orientation. If the orientation is Horizontal,
|
||||||
|
//! in the cell id colum, one row should be selected.
|
||||||
|
//! \param theIndices a container of selected indices
|
||||||
|
//! \param theCellId column index if orientation is horizontal, row index otherwise
|
||||||
|
//! \param theOrientation an orientation to apply the cell index
|
||||||
|
//! \return model index from the list
|
||||||
|
Standard_EXPORT static QModelIndex SingleSelected (const QModelIndexList& theIndices, const int theCellId,
|
||||||
|
const Qt::Orientation theOrientation = Qt::Horizontal);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
//! Creates root item
|
||||||
|
//! \param theColumnId index of a column
|
||||||
|
virtual void createRootItem (const int theColumnId) = 0;
|
||||||
|
|
||||||
//! Converts the item shared pointer to void* type
|
//! Converts the item shared pointer to void* type
|
||||||
//! \param theItem
|
//! \param theItem
|
||||||
@ -117,7 +168,11 @@ protected:
|
|||||||
protected:
|
protected:
|
||||||
|
|
||||||
TreeModel_ItemBasePtr m_pRootItem; //!< the model root item. It should be created in the
|
TreeModel_ItemBasePtr m_pRootItem; //!< the model root item. It should be created in the
|
||||||
|
QMap<int, TreeModel_HeaderSection> myHeaderValues; //!< header values
|
||||||
//!< model subclass. The model is fulfilled by this item content
|
//!< model subclass. The model is fulfilled by this item content
|
||||||
|
|
||||||
|
bool m_pUseVisibilityColumn; //!< the state whether column=0 is reserved for Visibility state
|
||||||
|
TreeModel_VisibilityState* myVisibilityState; //!< the interface of item visibility
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
213
tools/TreeModel/TreeModel_Tools.cxx
Normal file
213
tools/TreeModel/TreeModel_Tools.cxx
Normal file
@ -0,0 +1,213 @@
|
|||||||
|
// 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/TreeModel_Tools.hxx>
|
||||||
|
#include <inspector/TreeModel_ModelBase.hxx>
|
||||||
|
#include <inspector/TreeModel_ColumnType.hxx>
|
||||||
|
#include <inspector/TreeModel_VisibilityState.hxx>
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
|
#include <QAction>
|
||||||
|
#include <QApplication>
|
||||||
|
#include <QFont>
|
||||||
|
#include <QFontMetrics>
|
||||||
|
#include <QHeaderView>
|
||||||
|
#include <QObject>
|
||||||
|
#include <QRegExp>
|
||||||
|
#include <QStringList>
|
||||||
|
#include <QStyle>
|
||||||
|
#include <QTreeView>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
|
const int INFO_LENGHT = 60;
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : ToString
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
QString TreeModel_Tools::ToString (const QByteArray& theValue)
|
||||||
|
{
|
||||||
|
char aBuffer[8];
|
||||||
|
QStringList aBytesList;
|
||||||
|
for (int aByteId = 0; aByteId < theValue.size(); aByteId++)
|
||||||
|
{
|
||||||
|
::sprintf (aBuffer, "#%02X", (unsigned char)theValue.at (aByteId));
|
||||||
|
aBytesList.append (QString (aBuffer));
|
||||||
|
}
|
||||||
|
return QString ("@ByteArray[%1]").arg (aBytesList.join (" "));
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : ToByteArray
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
QByteArray TreeModel_Tools::ToByteArray (const QString& theValue)
|
||||||
|
{
|
||||||
|
QByteArray aStateArray;
|
||||||
|
if (!theValue.startsWith ("@ByteArray[") || !theValue.endsWith (']'))
|
||||||
|
return aStateArray;
|
||||||
|
|
||||||
|
QString aValue = theValue.mid (11, theValue.size() - 12);
|
||||||
|
QStringList lst = aValue.split (QRegExp ("[\\s|,]"), QString::SkipEmptyParts);
|
||||||
|
for (QStringList::ConstIterator aByteId = lst.begin(); aByteId != lst.end(); ++aByteId)
|
||||||
|
{
|
||||||
|
int aBase = 10;
|
||||||
|
QString aString = *aByteId;
|
||||||
|
if (aString.startsWith ("#"))
|
||||||
|
{
|
||||||
|
aBase = 16;
|
||||||
|
aString = aString.mid (1);
|
||||||
|
}
|
||||||
|
bool isOk = false;
|
||||||
|
int aNum = aString.toInt (&isOk, aBase);
|
||||||
|
if (!isOk || aNum < 0 || aNum > 255)
|
||||||
|
continue;
|
||||||
|
aStateArray.append ((char)aNum);
|
||||||
|
}
|
||||||
|
return aStateArray;
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : SaveState
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void TreeModel_Tools::SaveState (QTreeView* theTreeView, QMap<QString, QString>& theItems,
|
||||||
|
const QString& thePrefix)
|
||||||
|
{
|
||||||
|
QStringList aColumnWidths, aHiddenColumns;
|
||||||
|
for (int aColumnId = 0; aColumnId < theTreeView->model()->columnCount(); aColumnId++)
|
||||||
|
{
|
||||||
|
if (theTreeView->isColumnHidden (aColumnId))
|
||||||
|
{
|
||||||
|
aHiddenColumns.append (QString::number (aColumnId));
|
||||||
|
aColumnWidths.append (QString());
|
||||||
|
}
|
||||||
|
else
|
||||||
|
aColumnWidths.append (QString::number (theTreeView->columnWidth (aColumnId)));
|
||||||
|
}
|
||||||
|
theItems[thePrefix + "columns_width"] = aColumnWidths.join (",");
|
||||||
|
theItems[thePrefix + "columns_hidden"] = aHiddenColumns.join (",");
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : RestoreState
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
bool TreeModel_Tools::RestoreState (QTreeView* theTreeView, const QString& theKey, const QString& theValue,
|
||||||
|
const QString& thePrefix)
|
||||||
|
{
|
||||||
|
if (theKey == thePrefix + "columns_width")
|
||||||
|
{
|
||||||
|
QStringList aValues = theValue.split (",");
|
||||||
|
for (int aColumnId = 0; aColumnId < theTreeView->model()->columnCount() && aColumnId < aValues.size(); aColumnId++)
|
||||||
|
{
|
||||||
|
bool isOk;
|
||||||
|
int aWidth = aValues.at (aColumnId).toInt (&isOk);
|
||||||
|
if (isOk && !theTreeView->isColumnHidden (aColumnId)) // do not resize hidden columnsa
|
||||||
|
theTreeView->setColumnWidth (aColumnId, aWidth);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (theKey == thePrefix + "columns_hidden")
|
||||||
|
{
|
||||||
|
int aColumnSize = theTreeView->model()->columnCount();
|
||||||
|
QStringList aValues = theValue.split (",", QString::SkipEmptyParts);
|
||||||
|
QList<int> aColumnIds;
|
||||||
|
for (int aValueId = 0; aValueId < aValues.size(); aValueId++)
|
||||||
|
{
|
||||||
|
if (aValueId < aColumnSize)
|
||||||
|
aColumnIds.append (aValues.at (aValueId).toInt());
|
||||||
|
}
|
||||||
|
for (int aColumnId = 0; aColumnId < aColumnSize; aColumnId++)
|
||||||
|
{
|
||||||
|
theTreeView->setColumnHidden (aColumnId, aColumnIds.contains(aColumnId) == true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
return false;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : SetDefaultHeaderSections
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void TreeModel_Tools::SetDefaultHeaderSections(QTreeView* theTreeView)
|
||||||
|
{
|
||||||
|
TreeModel_ModelBase* aTreeModel = dynamic_cast<TreeModel_ModelBase*> (theTreeView->model());
|
||||||
|
|
||||||
|
for (int aColumnId = 0, aNbColumns = aTreeModel->columnCount(); aColumnId < aNbColumns; aColumnId++)
|
||||||
|
{
|
||||||
|
TreeModel_HeaderSection aSection = aTreeModel->GetHeaderItem (aColumnId);
|
||||||
|
theTreeView->setColumnWidth (aColumnId, aSection.GetWidth());
|
||||||
|
theTreeView->setColumnHidden (aColumnId, aSection.IsHidden());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : UseVisibilityColumn
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void TreeModel_Tools::UseVisibilityColumn (QTreeView* theTreeView, const bool theActive)
|
||||||
|
{
|
||||||
|
QHeaderView* aHeader = theTreeView->header();
|
||||||
|
#if QT_VERSION < 0x050000
|
||||||
|
aHeader->setResizeMode (TreeModel_ColumnType_Visibility, QHeaderView::Fixed);
|
||||||
|
#else
|
||||||
|
aHeader->setSectionResizeMode (TreeModel_ColumnType_Visibility, QHeaderView::Fixed);
|
||||||
|
#endif
|
||||||
|
aHeader->moveSection (TreeModel_ColumnType_Name, TreeModel_ColumnType_Visibility);
|
||||||
|
|
||||||
|
TreeModel_ModelBase* aModel = dynamic_cast<TreeModel_ModelBase*> (theTreeView->model());
|
||||||
|
aModel->SetHeaderItem (TreeModel_ColumnType_Visibility,
|
||||||
|
TreeModel_HeaderSection ("Visibility", TreeModel_ModelBase::ColumnVisibilityWidth()));
|
||||||
|
|
||||||
|
TreeModel_VisibilityState* aVisibilityState = aModel->GetVisibilityState ();
|
||||||
|
|
||||||
|
aModel->SetUseVisibilityColumn (true);
|
||||||
|
if (theActive && aVisibilityState)
|
||||||
|
QObject::connect (theTreeView, SIGNAL (clicked (const QModelIndex&)),
|
||||||
|
aVisibilityState, SLOT (OnClicked(const QModelIndex&)));
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : GetTextWidth
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
int TreeModel_Tools::GetTextWidth (const QString& theText, QObject*)
|
||||||
|
{
|
||||||
|
// TODO: find margins like QApplication::style()->pixelMetric(QStyle::PM_FocusFrameHMargin, 0, (QWidget*)theParent);
|
||||||
|
int aTextMargin = 10;
|
||||||
|
QFontMetrics aFontMetrics (QApplication::font());
|
||||||
|
QRect aBoundingRect = aFontMetrics.boundingRect (theText);
|
||||||
|
return qMax (aBoundingRect.width(), aFontMetrics.width (theText)) + aTextMargin * 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : CutString
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
QString TreeModel_Tools::CutString (const QString& theText, const int theWidth, const QString& theTail)
|
||||||
|
{
|
||||||
|
if (theText.isEmpty())
|
||||||
|
return theText;
|
||||||
|
|
||||||
|
int aLength = theWidth < 0 ? INFO_LENGHT : theWidth - 3;
|
||||||
|
|
||||||
|
int anIndex = theText.indexOf ('\n');
|
||||||
|
if (anIndex > 0 && anIndex < aLength)
|
||||||
|
aLength = anIndex;
|
||||||
|
|
||||||
|
return aLength < theText.length() ? theText.mid (0, aLength) + theTail : theText;
|
||||||
|
}
|
95
tools/TreeModel/TreeModel_Tools.hxx
Normal file
95
tools/TreeModel/TreeModel_Tools.hxx
Normal file
@ -0,0 +1,95 @@
|
|||||||
|
// 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.
|
||||||
|
|
||||||
|
#ifndef TreeModel_Tools_H
|
||||||
|
#define TreeModel_Tools_H
|
||||||
|
|
||||||
|
#include <Standard.hxx>
|
||||||
|
#include <Standard_Macro.hxx>
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
|
#include <QApplication>
|
||||||
|
#include <QByteArray>
|
||||||
|
#include <QMap>
|
||||||
|
#include <QString>
|
||||||
|
#include <QStyle>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
|
class QAction;
|
||||||
|
class QObject;
|
||||||
|
class QTreeView;
|
||||||
|
|
||||||
|
//! \class TreeModel_Tools
|
||||||
|
//! \brief The tool that gives auxiliary methods for qt elements manipulation
|
||||||
|
class TreeModel_Tools
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
|
||||||
|
//! Converts a Qt string to byte array, string has mask: @ByteArray[...]
|
||||||
|
//! \param theValue a converted string
|
||||||
|
//! \return the extended filled array
|
||||||
|
Standard_EXPORT static QString ToString (const QByteArray& theValue);
|
||||||
|
|
||||||
|
//! Converts a Qt byte array to Qt string. It has mask: @ByteArray[...]
|
||||||
|
//! \param theValue a converted string
|
||||||
|
//! \return the extended filled array
|
||||||
|
Standard_EXPORT static QByteArray ToByteArray (const QString& theValue);
|
||||||
|
|
||||||
|
//! Returns header margin, defined in style settings of application
|
||||||
|
//! \return integer value
|
||||||
|
Standard_EXPORT static int HeaderSectionMargin() { return qApp->style()->pixelMetric (QStyle::PM_HeaderMargin); }
|
||||||
|
|
||||||
|
//! Save state of three view in a container in form: key, value. It saves:
|
||||||
|
//! - visibiblity of columns,
|
||||||
|
//! - columns width
|
||||||
|
//! \param theTreeView a view instance
|
||||||
|
//! \param theItems [out] properties
|
||||||
|
//! \param thePrefix peference item prefix
|
||||||
|
Standard_EXPORT static void SaveState (QTreeView* theTreeView, QMap<QString, QString>& theItems,
|
||||||
|
const QString& thePrefix = QString());
|
||||||
|
//! Restore state of three view by a container
|
||||||
|
//! \param theTreeView a view instance
|
||||||
|
//! \param theKey property key
|
||||||
|
//! \param theValue property value
|
||||||
|
//! \param thePrefix peference item prefix
|
||||||
|
//! \return boolean value whether the property is applyed to the tree view
|
||||||
|
Standard_EXPORT static bool RestoreState (QTreeView* theTreeView, const QString& theKey, const QString& theValue,
|
||||||
|
const QString& thePrefix = QString());
|
||||||
|
|
||||||
|
//! Fills tree view by default sections parameters obtained in view's tree model
|
||||||
|
//! \param theTreeView tree view instance
|
||||||
|
Standard_EXPORT static void SetDefaultHeaderSections (QTreeView* theTreeView);
|
||||||
|
|
||||||
|
//! Sets using visibility column in the tree view:
|
||||||
|
//! - sets the state in the TreeModel
|
||||||
|
//! - set section width, not resizable
|
||||||
|
//! \param theTreeView a view instance
|
||||||
|
//! \param theActive boolean value if the column should be connected/visible and other
|
||||||
|
Standard_EXPORT static void UseVisibilityColumn (QTreeView* theTreeView, const bool theActive = true);
|
||||||
|
|
||||||
|
//! Returns the text width
|
||||||
|
//! \param theText source text
|
||||||
|
//! \param theParent parent widget with its own style
|
||||||
|
//! \return calculated width value
|
||||||
|
Standard_EXPORT static int GetTextWidth (const QString& theText, QObject* theParent);
|
||||||
|
|
||||||
|
//! Returns string cut by width and '\n'
|
||||||
|
//! \param theText processing string
|
||||||
|
//! \param theWidth width value, if -1, default value is used
|
||||||
|
//! \param theTail symbols added to the end of the cut string
|
||||||
|
Standard_EXPORT static QString CutString (const QString& theText, const int theWidth = -1, const QString& theTail = "...");
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
@ -13,25 +13,20 @@
|
|||||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||||
// commercial license or contractual agreement.
|
// commercial license or contractual agreement.
|
||||||
|
|
||||||
#include <inspector/DFBrowser_TreeView.hxx>
|
#include <inspector/TreeModel_VisibilityState.hxx>
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : SetPredefinedSize
|
// function : OnClicked
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
void DFBrowser_TreeView::SetPredefinedSize (int theDefaultWidth, int theDefaultHeight)
|
void TreeModel_VisibilityState::OnClicked (const QModelIndex& theIndex)
|
||||||
{
|
{
|
||||||
myDefaultWidth = theDefaultWidth;
|
if (theIndex.column() != TreeModel_ColumnType_Visibility)
|
||||||
myDefaultHeight = theDefaultHeight;
|
return;
|
||||||
}
|
|
||||||
|
|
||||||
// =======================================================================
|
if (!CanBeVisible (theIndex))
|
||||||
// function : sizeHint
|
return;
|
||||||
// purpose :
|
|
||||||
// =======================================================================
|
SetVisible (theIndex, !IsVisible (theIndex), true);
|
||||||
QSize DFBrowser_TreeView::sizeHint() const
|
emit itemClicked (theIndex);
|
||||||
{
|
|
||||||
if (myDefaultWidth > 0 && myDefaultHeight > 0)
|
|
||||||
return QSize (myDefaultWidth, myDefaultHeight);
|
|
||||||
return QTreeView::sizeHint();
|
|
||||||
}
|
}
|
81
tools/TreeModel/TreeModel_VisibilityState.hxx
Normal file
81
tools/TreeModel/TreeModel_VisibilityState.hxx
Normal file
@ -0,0 +1,81 @@
|
|||||||
|
// 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.
|
||||||
|
|
||||||
|
#ifndef TreeModel_VisibilityState_H
|
||||||
|
#define TreeModel_VisibilityState_H
|
||||||
|
|
||||||
|
#include <inspector/TreeModel.hxx>
|
||||||
|
#include <inspector/TreeModel_ModelBase.hxx>
|
||||||
|
#include <inspector/TreeModel_ColumnType.hxx>
|
||||||
|
|
||||||
|
#include <Standard.hxx>
|
||||||
|
#include <Standard_Macro.hxx>
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
|
#include <QObject>
|
||||||
|
#include <QString>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
|
//! \class TreeModel_VisibilityState
|
||||||
|
//! \brief Interface that provides connection between model and visualization control to:
|
||||||
|
//! - know whether the model item is visible
|
||||||
|
//! - change visibility of the model item
|
||||||
|
class TREEMODEL_EXPORT TreeModel_VisibilityState : public QObject
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
public:
|
||||||
|
//! Constructor
|
||||||
|
TreeModel_VisibilityState (TreeModel_ModelBase* theModel) : myModel (theModel) {}
|
||||||
|
|
||||||
|
//! Destructor
|
||||||
|
~TreeModel_VisibilityState() {}
|
||||||
|
|
||||||
|
//! Returns true if visibility of the item can be changed
|
||||||
|
//! \param theIndex tree model index
|
||||||
|
//! \return boolean value
|
||||||
|
virtual bool CanBeVisible (const QModelIndex& theIndex) const = 0;
|
||||||
|
|
||||||
|
//! Sets visibility state
|
||||||
|
//! \param theIndex tree model index
|
||||||
|
//! \param theState visibility state
|
||||||
|
//! \param toEmitDataChanged boolean flag whether emit of the model should be done immediatelly
|
||||||
|
//! \return true if state is changed
|
||||||
|
virtual bool SetVisible (const QModelIndex& theIndex, const bool theState, const bool toEmitDataChanged = true) = 0;
|
||||||
|
|
||||||
|
//! Returns visibility state value
|
||||||
|
//! \param theIndex tree model index
|
||||||
|
//! \return boolean value
|
||||||
|
virtual bool IsVisible (const QModelIndex& theIndex) const = 0;
|
||||||
|
|
||||||
|
public slots:
|
||||||
|
//! Processes the mouse clicked on the index.
|
||||||
|
//! It changes the item visibility if model allows to change it.
|
||||||
|
//! \theIndex tree model index
|
||||||
|
void OnClicked (const QModelIndex& theIndex);
|
||||||
|
|
||||||
|
signals:
|
||||||
|
//! Signal after OnClicked is performed
|
||||||
|
//! \theIndex tree model index
|
||||||
|
void itemClicked (const QModelIndex& theIndex);
|
||||||
|
|
||||||
|
protected:
|
||||||
|
//! tree view model
|
||||||
|
TreeModel_ModelBase* getModel() const { return myModel; }
|
||||||
|
|
||||||
|
private:
|
||||||
|
TreeModel_ModelBase* myModel; //! tree view model
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
BIN
tools/TreeModel/icons/item_invisible.png
Normal file
BIN
tools/TreeModel/icons/item_invisible.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 446 B |
BIN
tools/TreeModel/icons/item_visible.png
Normal file
BIN
tools/TreeModel/icons/item_visible.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 478 B |
@ -8,6 +8,8 @@ VInspector_ItemBase.cxx
|
|||||||
VInspector_ItemBase.hxx
|
VInspector_ItemBase.hxx
|
||||||
VInspector_ItemContext.cxx
|
VInspector_ItemContext.cxx
|
||||||
VInspector_ItemContext.hxx
|
VInspector_ItemContext.hxx
|
||||||
|
VInspector_ItemFolderObject.cxx
|
||||||
|
VInspector_ItemFolderObject.hxx
|
||||||
VInspector_ItemEntityOwner.cxx
|
VInspector_ItemEntityOwner.cxx
|
||||||
VInspector_ItemEntityOwner.hxx
|
VInspector_ItemEntityOwner.hxx
|
||||||
VInspector_ItemHistoryElement.cxx
|
VInspector_ItemHistoryElement.cxx
|
||||||
@ -21,6 +23,8 @@ VInspector_ItemPresentableObject.cxx
|
|||||||
VInspector_ItemPresentableObject.hxx
|
VInspector_ItemPresentableObject.hxx
|
||||||
VInspector_ItemSelection.cxx
|
VInspector_ItemSelection.cxx
|
||||||
VInspector_ItemSelection.hxx
|
VInspector_ItemSelection.hxx
|
||||||
|
VInspector_ItemSelectMgrFilter.cxx
|
||||||
|
VInspector_ItemSelectMgrFilter.hxx
|
||||||
VInspector_ItemSensitiveEntity.cxx
|
VInspector_ItemSensitiveEntity.cxx
|
||||||
VInspector_ItemSensitiveEntity.hxx
|
VInspector_ItemSensitiveEntity.hxx
|
||||||
VInspector_SelectionType.hxx
|
VInspector_SelectionType.hxx
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
<!DOCTYPE RCC><RCC version="1.0">
|
<!DOCTYPE RCC><RCC version="1.0">
|
||||||
<qresource>
|
<qresource>
|
||||||
|
<file>icons/treeview_and.png</file>
|
||||||
|
<file>icons/treeview_or.png</file>
|
||||||
<file>icons/treeview_update.png</file>
|
<file>icons/treeview_update.png</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
</RCC>
|
</RCC>
|
||||||
|
@ -44,6 +44,20 @@ public:
|
|||||||
virtual void SetParameters (const Handle(TInspectorAPI_PluginParameters)& theParameters) Standard_OVERRIDE
|
virtual void SetParameters (const Handle(TInspectorAPI_PluginParameters)& theParameters) Standard_OVERRIDE
|
||||||
{ myWindow->SetParameters (theParameters); }
|
{ myWindow->SetParameters (theParameters); }
|
||||||
|
|
||||||
|
//! Provide container for actions available in inspector on general level
|
||||||
|
//! \param theMenu if Qt implementation, it is QMenu object
|
||||||
|
Standard_EXPORT virtual void FillActionsMenu(void* theMenu) Standard_OVERRIDE { myWindow->FillActionsMenu (theMenu); }
|
||||||
|
|
||||||
|
//! Returns plugin preferences, empty implementation by default
|
||||||
|
//! \param theItem container of preference elements
|
||||||
|
virtual void GetPreferences (TInspectorAPI_PreferencesDataMap& theItem) Standard_OVERRIDE
|
||||||
|
{ myWindow->GetPreferences (theItem); }
|
||||||
|
|
||||||
|
//! Stores plugin preferences, empty implementation by default
|
||||||
|
//! \param theItem container of preference elements
|
||||||
|
virtual void SetPreferences (const TInspectorAPI_PreferencesDataMap& theItem) Standard_OVERRIDE
|
||||||
|
{ myWindow->SetPreferences (theItem); }
|
||||||
|
|
||||||
//! Calls update of the plugin's content
|
//! Calls update of the plugin's content
|
||||||
virtual void UpdateContent() Standard_OVERRIDE { myWindow->UpdateContent(); }
|
virtual void UpdateContent() Standard_OVERRIDE { myWindow->UpdateContent(); }
|
||||||
|
|
||||||
|
@ -21,15 +21,15 @@
|
|||||||
// function : GetContext
|
// function : GetContext
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
const Handle(AIS_InteractiveContext)& VInspector_ItemBase::GetContext() const
|
Handle(AIS_InteractiveContext) VInspector_ItemBase::GetContext() const
|
||||||
{
|
{
|
||||||
if (!myContext.IsNull())
|
if (!myContext.IsNull())
|
||||||
return myContext;
|
return myContext;
|
||||||
|
|
||||||
Handle(AIS_InteractiveContext) aContext;
|
Handle(AIS_InteractiveContext) aContext;
|
||||||
if (const VInspector_ItemContext* aThisContextItem = dynamic_cast<const VInspector_ItemContext*> (this))
|
if (dynamic_cast<const VInspector_ItemContext*> (this))
|
||||||
{
|
{
|
||||||
aContext = aThisContextItem->GetContext();
|
return Handle(AIS_InteractiveContext)(); // context has not be set yet
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -41,12 +41,12 @@ public:
|
|||||||
|
|
||||||
//! Returns the current contex. It iterates up by list of parents to found context item and return context
|
//! Returns the current contex. It iterates up by list of parents to found context item and return context
|
||||||
//! \return a context
|
//! \return a context
|
||||||
Standard_EXPORT const Handle(AIS_InteractiveContext)& GetContext() const;
|
Standard_EXPORT Handle(AIS_InteractiveContext) GetContext() const;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
//! Initialize the current item. It creates a backup of the specific item information
|
//! Initialize the current item. It creates a backup of the specific item information
|
||||||
virtual void initItem() const {};// = 0;
|
virtual void initItem() const {}
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
|
@ -17,9 +17,14 @@
|
|||||||
|
|
||||||
#include <AIS_ListOfInteractive.hxx>
|
#include <AIS_ListOfInteractive.hxx>
|
||||||
#include <SelectMgr_EntityOwner.hxx>
|
#include <SelectMgr_EntityOwner.hxx>
|
||||||
|
#include <inspector/VInspector_ItemFolderObject.hxx>
|
||||||
#include <inspector/VInspector_ItemPresentableObject.hxx>
|
#include <inspector/VInspector_ItemPresentableObject.hxx>
|
||||||
#include <inspector/VInspector_Tools.hxx>
|
#include <inspector/VInspector_Tools.hxx>
|
||||||
|
|
||||||
|
#include <Standard_WarningsDisable.hxx>
|
||||||
|
#include <QStringList>
|
||||||
|
#include <Standard_WarningsRestore.hxx>
|
||||||
|
|
||||||
//#define DEBUG_FREE_OWNERS
|
//#define DEBUG_FREE_OWNERS
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
@ -31,53 +36,48 @@ int VInspector_ItemContext::initRowCount() const
|
|||||||
if (Column() != 0)
|
if (Column() != 0)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
int aNbProperties = 1; // item to visualize Filters/Drawer information of context
|
||||||
|
|
||||||
int aNbPresentations = 0;
|
int aNbPresentations = 0;
|
||||||
if (!GetContext().IsNull())
|
Handle(AIS_InteractiveContext) aContext = GetContext();
|
||||||
{
|
if (aContext.IsNull())
|
||||||
AIS_ListOfInteractive aListOfIO;
|
return 0;
|
||||||
GetContext()->DisplayedObjects (aListOfIO);
|
|
||||||
GetContext()->ErasedObjects(aListOfIO);
|
AIS_ListOfInteractive aListOfIO;
|
||||||
aNbPresentations = aListOfIO.Extent();
|
aContext->DisplayedObjects (aListOfIO);
|
||||||
}
|
aContext->ErasedObjects(aListOfIO);
|
||||||
|
aNbPresentations = aListOfIO.Extent();
|
||||||
|
|
||||||
// owners without Presentation
|
// owners without Presentation
|
||||||
#ifdef DEBUG_FREE_OWNERS
|
#ifdef DEBUG_FREE_OWNERS
|
||||||
int aRows = 0;
|
int aRows = 0;
|
||||||
// only local context is processed: TODO for global context
|
// only local context is processed: TODO for global context
|
||||||
Handle(AIS_InteractiveContext) aContext = GetContext();
|
NCollection_List<Handle(SelectBasics_EntityOwner)> anActiveOwners;
|
||||||
if (!aContext.IsNull()) {
|
aContext->MainSelector()->ActiveOwners(anActiveOwners);
|
||||||
NCollection_List<Handle(SelectBasics_EntityOwner)> anActiveOwners;
|
|
||||||
aContext->MainSelector()->ActiveOwners(anActiveOwners);
|
|
||||||
|
|
||||||
Handle(SelectMgr_EntityOwner) anOwner;
|
Handle(SelectMgr_EntityOwner) anOwner;
|
||||||
for (NCollection_List<Handle(SelectBasics_EntityOwner)>::Iterator anOwnersIt(anActiveOwners);
|
for (NCollection_List<Handle(SelectBasics_EntityOwner)>::Iterator anOwnersIt(anActiveOwners);
|
||||||
anOwnersIt.More(); anOwnersIt.Next())
|
anOwnersIt.More(); anOwnersIt.Next())
|
||||||
{
|
|
||||||
anOwner = Handle(SelectMgr_EntityOwner)::DownCast(anOwnersIt.Value());
|
|
||||||
if (anOwner.IsNull())
|
|
||||||
continue;
|
|
||||||
Handle(AIS_InteractiveObject) anAISObj = Handle(AIS_InteractiveObject)::DownCast(anOwner->Selectable());
|
|
||||||
if (anAISObj.IsNull())
|
|
||||||
aRows++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// owners in Global Context
|
|
||||||
if (!aContext.IsNull())
|
|
||||||
{
|
{
|
||||||
NCollection_List<Handle(SelectBasics_EntityOwner)> anActiveOwners;
|
anOwner = Handle(SelectMgr_EntityOwner)::DownCast(anOwnersIt.Value());
|
||||||
aContext->MainSelector()->ActiveOwners(anActiveOwners);
|
if (anOwner.IsNull())
|
||||||
|
continue;
|
||||||
|
Handle(AIS_InteractiveObject) anAISObj = Handle(AIS_InteractiveObject)::DownCast(anOwner->Selectable());
|
||||||
|
if (anAISObj.IsNull())
|
||||||
|
aRows++;
|
||||||
}
|
}
|
||||||
|
// owners in Global Context
|
||||||
|
NCollection_List<Handle(SelectBasics_EntityOwner)> anActiveOwners;
|
||||||
|
aContext->MainSelector()->ActiveOwners(anActiveOwners);
|
||||||
if (aRows > 0)
|
if (aRows > 0)
|
||||||
aNbPresentations += aRows;
|
aNbPresentations += aRows;
|
||||||
#endif
|
|
||||||
#ifdef DEBUG_FREE_OWNERS
|
|
||||||
NCollection_List<Handle(SelectBasics_EntityOwner)> anEmptySelectableOwners;
|
NCollection_List<Handle(SelectBasics_EntityOwner)> anEmptySelectableOwners;
|
||||||
NCollection_List<Handle(SelectBasics_EntityOwner)> anOwners =
|
NCollection_List<Handle(SelectBasics_EntityOwner)> anOwners =
|
||||||
VInspector_Tools::ActiveOwners (GetContext(), anEmptySelectableOwners);
|
VInspector_Tools::ActiveOwners (aContext, anEmptySelectableOwners);
|
||||||
if (anEmptySelectableOwners.Size() > 0)
|
if (anEmptySelectableOwners.Size() > 0)
|
||||||
aNbPresentations += 1;
|
aNbPresentations += 1;
|
||||||
#endif
|
#endif
|
||||||
return aNbPresentations;
|
return aNbProperties + aNbPresentations;
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
@ -89,42 +89,20 @@ QVariant VInspector_ItemContext::initValue (const int theItemRole) const
|
|||||||
if (theItemRole != Qt::DisplayRole && theItemRole != Qt::EditRole && theItemRole != Qt::ToolTipRole)
|
if (theItemRole != Qt::DisplayRole && theItemRole != Qt::EditRole && theItemRole != Qt::ToolTipRole)
|
||||||
return QVariant();
|
return QVariant();
|
||||||
|
|
||||||
|
if (GetContext().IsNull())
|
||||||
|
return Column() == 0 ? "Empty context" : "";
|
||||||
|
|
||||||
switch (Column())
|
switch (Column())
|
||||||
{
|
{
|
||||||
case 0: return GetContext()->DynamicType()->Name();
|
case 0: return GetContext()->DynamicType()->Name();
|
||||||
case 1: return rowCount();
|
case 1: return rowCount();
|
||||||
case 4:
|
case 4:
|
||||||
{
|
{
|
||||||
if (theItemRole == Qt::ToolTipRole)
|
Handle(AIS_InteractiveObject) anEmptyIO;
|
||||||
return "Selected Owners";
|
int aSelectedCount = VInspector_Tools::SelectedOwners (GetContext(), anEmptyIO, false);
|
||||||
else
|
return aSelectedCount > 0 ? QString::number (aSelectedCount) : "";
|
||||||
{
|
|
||||||
Handle(AIS_InteractiveObject) anEmptyIO;
|
|
||||||
int aSelectedCount = VInspector_Tools::SelectedOwners (GetContext(), anEmptyIO, false);
|
|
||||||
return aSelectedCount > 0 ? QString::number (aSelectedCount) : "";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
case 7:
|
|
||||||
{
|
|
||||||
if (theItemRole == Qt::ToolTipRole)
|
|
||||||
return QString ("All Owners/Active Owners");
|
|
||||||
else
|
|
||||||
{
|
|
||||||
NCollection_List<Handle(SelectBasics_EntityOwner)> anEmptySelectableOwners;
|
|
||||||
NCollection_List<Handle(SelectBasics_EntityOwner)> anOwners =
|
|
||||||
VInspector_Tools::ActiveOwners (GetContext(), anEmptySelectableOwners);
|
|
||||||
int anActiveOwners = anOwners.Size();
|
|
||||||
anOwners = VInspector_Tools::ContextOwners (GetContext());
|
|
||||||
return QString ("%1 / %2").arg (anOwners.Size()).arg (anActiveOwners);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
case 8:
|
|
||||||
{
|
|
||||||
if (theItemRole == Qt::ToolTipRole)
|
|
||||||
return QString ("DeviationCoefficient");
|
|
||||||
else
|
|
||||||
return GetContext()->DeviationCoefficient();
|
|
||||||
}
|
}
|
||||||
|
case 6: return GetContext()->DeviationCoefficient();
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -137,5 +115,8 @@ QVariant VInspector_ItemContext::initValue (const int theItemRole) const
|
|||||||
// =======================================================================
|
// =======================================================================
|
||||||
TreeModel_ItemBasePtr VInspector_ItemContext::createChild (int theRow, int theColumn)
|
TreeModel_ItemBasePtr VInspector_ItemContext::createChild (int theRow, int theColumn)
|
||||||
{
|
{
|
||||||
return VInspector_ItemPresentableObject::CreateItem (currentItem(), theRow, theColumn);
|
if (theRow == 0)
|
||||||
|
return VInspector_ItemFolderObject::CreateItem (currentItem(), theRow, theColumn);
|
||||||
|
else
|
||||||
|
return VInspector_ItemPresentableObject::CreateItem (currentItem(), theRow, theColumn);
|
||||||
}
|
}
|
||||||
|
@ -24,6 +24,9 @@ typedef QExplicitlySharedDataPointer<VInspector_ItemContext> VInspector_ItemCont
|
|||||||
|
|
||||||
//! \class VInspector_ItemContext
|
//! \class VInspector_ItemContext
|
||||||
//! Parent item, that corresponds to AIS_InteractiveContext
|
//! Parent item, that corresponds to AIS_InteractiveContext
|
||||||
|
//! Children of the item are:
|
||||||
|
//! - "Property" item to show context attributes such as selection filters and drawer properties
|
||||||
|
//! - presentation items to show all interactive elements displayed/erased in the context
|
||||||
class VInspector_ItemContext : public VInspector_ItemBase
|
class VInspector_ItemContext : public VInspector_ItemBase
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
@ -47,58 +47,34 @@ QVariant VInspector_ItemEntityOwner::initValue(int theItemRole) const
|
|||||||
switch (Column())
|
switch (Column())
|
||||||
{
|
{
|
||||||
case 0: return anOwner->DynamicType()->Name();
|
case 0: return anOwner->DynamicType()->Name();
|
||||||
case 2: return theItemRole == Qt::ToolTipRole ? "Owner pointer"
|
case 2: return VInspector_Tools::GetPointerInfo (anOwner, true).ToCString();
|
||||||
: VInspector_Tools::GetPointerInfo (anOwner, true).ToCString();
|
|
||||||
case 3:
|
case 3:
|
||||||
{
|
{
|
||||||
if (theItemRole == Qt::ToolTipRole)
|
Handle(StdSelect_BRepOwner) BROwnr = Handle(StdSelect_BRepOwner)::DownCast (anOwner);
|
||||||
return "Owner Shape type";
|
if (BROwnr.IsNull())
|
||||||
else
|
return QVariant();
|
||||||
{
|
|
||||||
Handle(StdSelect_BRepOwner) BROwnr = Handle(StdSelect_BRepOwner)::DownCast (anOwner);
|
const TopoDS_Shape& aShape = BROwnr->Shape();
|
||||||
if (!BROwnr.IsNull())
|
if (aShape.IsNull())
|
||||||
{
|
return QVariant();
|
||||||
const TopoDS_Shape& aShape = BROwnr->Shape();
|
|
||||||
if (!aShape.IsNull())
|
return VInspector_Tools::GetShapeTypeInfo (aShape.ShapeType()).ToCString();
|
||||||
return VInspector_Tools::GetShapeTypeInfo (aShape.ShapeType()).ToCString();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
case 5:
|
case 17:
|
||||||
{
|
case 18:
|
||||||
if (theItemRole == Qt::ToolTipRole)
|
case 19:
|
||||||
return "TShape pointer";
|
|
||||||
else
|
|
||||||
{
|
{
|
||||||
Handle(StdSelect_BRepOwner) BROwnr = Handle(StdSelect_BRepOwner)::DownCast (anOwner);
|
Handle(StdSelect_BRepOwner) BROwnr = Handle(StdSelect_BRepOwner)::DownCast (anOwner);
|
||||||
if (!BROwnr.IsNull())
|
if (BROwnr.IsNull())
|
||||||
{
|
return QVariant();
|
||||||
const TopoDS_Shape& aShape = BROwnr->Shape();
|
|
||||||
if (!aShape.IsNull())
|
const TopoDS_Shape& aShape = BROwnr->Shape();
|
||||||
return VInspector_Tools::GetPointerInfo (aShape.TShape(), true).ToCString();
|
if (aShape.IsNull())
|
||||||
}
|
return QVariant();
|
||||||
}
|
|
||||||
break;
|
return Column() == 17 ? VInspector_Tools::GetPointerInfo (aShape.TShape(), true).ToCString()
|
||||||
}
|
: Column() == 18 ? VInspector_Tools::OrientationToName (aShape.Orientation()).ToCString()
|
||||||
case 8:
|
: /*19*/ VInspector_Tools::LocationToName (aShape.Location()).ToCString();
|
||||||
{
|
|
||||||
if (theItemRole == Qt::ToolTipRole)
|
|
||||||
return "Shape Location : Shape Orientation";
|
|
||||||
else
|
|
||||||
{
|
|
||||||
Handle(StdSelect_BRepOwner) aBROwnr = Handle(StdSelect_BRepOwner)::DownCast (anOwner);
|
|
||||||
if (!aBROwnr.IsNull())
|
|
||||||
{
|
|
||||||
const TopoDS_Shape& aShape = aBROwnr->Shape();
|
|
||||||
if (!aShape.IsNull())
|
|
||||||
return QString ("%1 : %2")
|
|
||||||
.arg (VInspector_Tools::LocationToName(aShape.Location()).ToCString())
|
|
||||||
.arg (VInspector_Tools::OrientationToName(aShape.Orientation()).ToCString());
|
|
||||||
return VInspector_Tools::GetShapeTypeInfo (aShape.ShapeType()).ToCString();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
default: break;
|
default: break;
|
||||||
}
|
}
|
||||||
@ -148,12 +124,21 @@ void VInspector_ItemEntityOwner::Init()
|
|||||||
|
|
||||||
int aRowId = Row();
|
int aRowId = Row();
|
||||||
int aCurrentIndex = 0;
|
int aCurrentIndex = 0;
|
||||||
|
#if OCC_VERSION_HEX < 0x070201
|
||||||
|
for (anIO->Init(); anIO->More() && anOwner.IsNull(); anIO->Next())
|
||||||
|
{
|
||||||
|
const Handle(SelectMgr_Selection)& aSelection = anIO->CurrentSelection();
|
||||||
|
for (aSelection->Init(); aSelection->More() && anOwner.IsNull(); aSelection->Next())
|
||||||
|
{
|
||||||
|
Handle(SelectMgr_SensitiveEntity) anEntity = aSelection->Sensitive();
|
||||||
|
#else
|
||||||
for (SelectMgr_SequenceOfSelection::Iterator aSelIter (anIO->Selections()); aSelIter.More() && anOwner.IsNull(); aSelIter.Next())
|
for (SelectMgr_SequenceOfSelection::Iterator aSelIter (anIO->Selections()); aSelIter.More() && anOwner.IsNull(); aSelIter.Next())
|
||||||
{
|
{
|
||||||
const Handle(SelectMgr_Selection)& aSelection = aSelIter.Value();
|
const Handle(SelectMgr_Selection)& aSelection = aSelIter.Value();
|
||||||
for (NCollection_Vector<Handle(SelectMgr_SensitiveEntity)>::Iterator aSelEntIter (aSelection->Entities()); aSelEntIter.More() && anOwner.IsNull(); aSelEntIter.Next())
|
for (NCollection_Vector<Handle(SelectMgr_SensitiveEntity)>::Iterator aSelEntIter (aSelection->Entities()); aSelEntIter.More() && anOwner.IsNull(); aSelEntIter.Next())
|
||||||
{
|
{
|
||||||
Handle(SelectMgr_SensitiveEntity) anEntity = aSelEntIter.Value();
|
Handle(SelectMgr_SensitiveEntity) anEntity = aSelEntIter.Value();
|
||||||
|
#endif
|
||||||
const Handle(SelectBasics_SensitiveEntity)& aBase = anEntity->BaseSensitive();
|
const Handle(SelectBasics_SensitiveEntity)& aBase = anEntity->BaseSensitive();
|
||||||
if (!aBase.IsNull())
|
if (!aBase.IsNull())
|
||||||
{
|
{
|
||||||
|
93
tools/VInspector/VInspector_ItemFolderObject.cxx
Normal file
93
tools/VInspector/VInspector_ItemFolderObject.cxx
Normal file
@ -0,0 +1,93 @@
|
|||||||
|
// 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/VInspector_ItemFolderObject.hxx>
|
||||||
|
|
||||||
|
#include <inspector/VInspector_ItemContext.hxx>
|
||||||
|
#include <inspector/VInspector_ItemSelectMgrFilter.hxx>
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : initValue
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
QVariant VInspector_ItemFolderObject::initValue (int theItemRole) const
|
||||||
|
{
|
||||||
|
if (Column() == 0 && (theItemRole == Qt::DisplayRole || theItemRole == Qt::ToolTipRole))
|
||||||
|
{
|
||||||
|
if (parentItemIsContext()) return "Properties";
|
||||||
|
else if (Row() == 0) return "Filters";
|
||||||
|
else return QVariant();
|
||||||
|
}
|
||||||
|
return QVariant();
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : initRowCount
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
int VInspector_ItemFolderObject::initRowCount() const
|
||||||
|
{
|
||||||
|
return parentItemIsContext() ? 1 : (GetContext().IsNull() ? 0 : GetContext()->Filters().Extent());
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : createChild
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
TreeModel_ItemBasePtr VInspector_ItemFolderObject::createChild (int theRow, int theColumn)
|
||||||
|
{
|
||||||
|
if (parentItemIsContext())
|
||||||
|
return VInspector_ItemFolderObject::CreateItem (currentItem(), theRow, theColumn);
|
||||||
|
else
|
||||||
|
return VInspector_ItemSelectMgrFilter::CreateItem (currentItem(), theRow, theColumn);
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : Init
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void VInspector_ItemFolderObject::Init()
|
||||||
|
{
|
||||||
|
TreeModel_ItemBase::Init(); // to use getIO() without circling initialization
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : Reset
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void VInspector_ItemFolderObject::Reset()
|
||||||
|
{
|
||||||
|
VInspector_ItemBase::Reset();
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : initItem
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void VInspector_ItemFolderObject::initItem() const
|
||||||
|
{
|
||||||
|
if (IsInitialized())
|
||||||
|
return;
|
||||||
|
const_cast<VInspector_ItemFolderObject*> (this)->Init();
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : parentItemIsContext
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
bool VInspector_ItemFolderObject::parentItemIsContext() const
|
||||||
|
{
|
||||||
|
return itemDynamicCast<VInspector_ItemContext> (Parent());
|
||||||
|
}
|
86
tools/VInspector/VInspector_ItemFolderObject.hxx
Normal file
86
tools/VInspector/VInspector_ItemFolderObject.hxx
Normal file
@ -0,0 +1,86 @@
|
|||||||
|
// 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.
|
||||||
|
|
||||||
|
#ifndef VInspector_ItemFolderObject_H
|
||||||
|
#define VInspector_ItemFolderObject_H
|
||||||
|
|
||||||
|
#include <Standard.hxx>
|
||||||
|
#include <inspector/VInspector_ItemBase.hxx>
|
||||||
|
|
||||||
|
#include <AIS_InteractiveObject.hxx>
|
||||||
|
#include <NCollection_List.hxx>
|
||||||
|
#include <TCollection_AsciiString.hxx>
|
||||||
|
|
||||||
|
class QItemSelectionModel;
|
||||||
|
|
||||||
|
class VInspector_ItemFolderObject;
|
||||||
|
typedef QExplicitlySharedDataPointer<VInspector_ItemFolderObject> VInspector_ItemFolderObjectPtr;
|
||||||
|
|
||||||
|
//! \class VInspector_ItemFolderObject
|
||||||
|
//! Item presents additional level of information in the tree model.
|
||||||
|
//! Parent is item context, children are either folder item or Selection filter item.
|
||||||
|
class VInspector_ItemFolderObject : public VInspector_ItemBase
|
||||||
|
{
|
||||||
|
|
||||||
|
public:
|
||||||
|
|
||||||
|
//! Creates an item wrapped by a shared pointer
|
||||||
|
static VInspector_ItemFolderObjectPtr CreateItem (TreeModel_ItemBasePtr theParent,
|
||||||
|
const int theRow, const int theColumn)
|
||||||
|
{ return VInspector_ItemFolderObjectPtr (new VInspector_ItemFolderObject (theParent, theRow, theColumn)); }
|
||||||
|
//! Destructor
|
||||||
|
virtual ~VInspector_ItemFolderObject() Standard_OVERRIDE {};
|
||||||
|
|
||||||
|
//! Inits the item, fills internal containers
|
||||||
|
Standard_EXPORT virtual void Init() Standard_OVERRIDE;
|
||||||
|
|
||||||
|
//! Resets cached values
|
||||||
|
Standard_EXPORT virtual void Reset() Standard_OVERRIDE;
|
||||||
|
|
||||||
|
protected:
|
||||||
|
|
||||||
|
//! Initialize the current item. It is empty because Reset() is also empty.
|
||||||
|
virtual void initItem() const Standard_OVERRIDE;
|
||||||
|
|
||||||
|
//! Returns number of item selected
|
||||||
|
//! \return rows count
|
||||||
|
virtual int initRowCount() const Standard_OVERRIDE;
|
||||||
|
|
||||||
|
//! Returns item information for the given role. Fills internal container if it was not filled yet
|
||||||
|
//! \param theItemRole a value role
|
||||||
|
//! \return the value
|
||||||
|
virtual QVariant initValue (const int theItemRole) const Standard_OVERRIDE;
|
||||||
|
|
||||||
|
//! Creates a child item in the given position.
|
||||||
|
//! \param theRow the child row position
|
||||||
|
//! \param theColumn the child column position
|
||||||
|
//! \return the created item
|
||||||
|
virtual TreeModel_ItemBasePtr createChild (int theRow, int theColumn) Standard_OVERRIDE;
|
||||||
|
|
||||||
|
private:
|
||||||
|
//! Returns whether the parent item is context item
|
||||||
|
//! \returns bolean value
|
||||||
|
bool parentItemIsContext() const;
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
|
//! Constructor
|
||||||
|
//! param theParent a parent item
|
||||||
|
VInspector_ItemFolderObject (TreeModel_ItemBasePtr theParent, const int theRow, const int theColumn)
|
||||||
|
: VInspector_ItemBase (theParent, theRow, theColumn) {}
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user