1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tools/TInspector/TInspector_Window.cxx
nds d2c909178e 0029018: Documentation - Provide user guide for Qt browser
Documentation is added in a new "Inspector" page of "User Guides".
Inspector plugins has some improvements by the documentation needs.
New DRAW scripts are implemented for 'tinspector' command.
2017-08-31 15:47:56 +03:00

379 lines
12 KiB
C++

// Created on: 2017-06-16
// Created by: Natalia ERMOLAEVA
// Copyright (c) 2017 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
#include <inspector/TInspector_Window.hxx>
#include <inspector/TInspector_Window.hxx>
#include <inspector/TInspectorAPI_Communicator.hxx>
#include <inspector/TInspector_PluginParameters.hxx>
#include <QApplication>
#include <QDockWidget>
#include <QLabel>
#include <QMainWindow>
#include <QPushButton>
#include <QStackedWidget>
#include <QVBoxLayout>
const int TINSPECTOR_DEFAULT_WIDTH = 650;
const int TINSPECTOR_DEFAULT_HEIGHT = 500;//350;
const int TINSPECTOR_DEFAULT_POSITION_X = 200;
const int TINSPECTOR_DEFAULT_POSITION_Y = 60;
// =======================================================================
// function : Constructor
// purpose :
// =======================================================================
TInspector_Window::TInspector_Window()
: QObject(), myOpenButton (0)
{
myMainWindow = new QMainWindow();
QWidget* aCentralWidget = new QWidget (myMainWindow);
myMainWindow->setCentralWidget (aCentralWidget);
QVBoxLayout* aCentralLayout = new QVBoxLayout (aCentralWidget);
aCentralLayout->setContentsMargins (0, 0, 0, 0);
aCentralLayout->setSpacing (0);
myToolsStack = new QStackedWidget (aCentralWidget);
myToolsStack->setFrameShape (QFrame::Box);
aCentralLayout->addWidget (myToolsStack);
myEmptyWidget = new QWidget (aCentralWidget);
myToolsStack->addWidget (myEmptyWidget);
myButtonWidget = new QWidget (aCentralWidget);
myButtonLay = new QHBoxLayout (myButtonWidget);
myButtonLay->setContentsMargins (0, 0, 0, 0);
myButtonLay->setSpacing (0);
myButtonLay->insertStretch (0, 1);
aCentralLayout->addWidget (myButtonWidget);
aCentralLayout->addWidget (myToolsStack);
myMainWindow->resize (TINSPECTOR_DEFAULT_WIDTH, TINSPECTOR_DEFAULT_HEIGHT);
myMainWindow->move (TINSPECTOR_DEFAULT_POSITION_X, TINSPECTOR_DEFAULT_POSITION_Y);
myMainWindow->setDockOptions (QMainWindow::VerticalTabs);
myParameters = new TInspector_PluginParameters (this);
}
// =======================================================================
// function : RegisterPlugin
// purpose :
// =======================================================================
void TInspector_Window::RegisterPlugin (const TCollection_AsciiString& thePluginName)
{
TInspector_ToolInfo anInfo;
int aToolId;
if (FindPlugin (thePluginName, anInfo, aToolId))
return;
myToolNames.append (TInspector_ToolInfo (thePluginName));
}
// =======================================================================
// function : RegisteredPlugins
// purpose :
// =======================================================================
NCollection_List<TCollection_AsciiString> TInspector_Window::RegisteredPlugins() const
{
NCollection_List<TCollection_AsciiString> aPlugins;
for (int aToolId = 0, aSize = myToolNames.size(); aToolId < aSize; aToolId++)
aPlugins.Append (myToolNames[aToolId].myName);
return aPlugins;
}
// =======================================================================
// function : Init
// purpose :
// =======================================================================
void TInspector_Window::Init (const TCollection_AsciiString& thePluginName,
const NCollection_List<Handle(Standard_Transient)>& theParameters,
const Standard_Boolean theAppend)
{
if (thePluginName.IsEmpty())
{
// Init all plugins by the given parameters
for (int aToolId = 0, aSize = myToolNames.size(); aToolId < aSize; aToolId++)
Init (myToolNames[aToolId].myName, theParameters, theAppend);
// temporary activation of the first tool
if (!myToolNames.isEmpty())
ActivateTool (myToolNames[0].myName);
return;
}
if (theAppend)
{
NCollection_List<Handle(Standard_Transient)> aParameters;
if (myParameters->FindParameters (thePluginName))
aParameters = myParameters->Parameters (thePluginName);
for (NCollection_List<Handle(Standard_Transient)>::Iterator anIterator (theParameters);
anIterator.More(); anIterator.Next())
aParameters.Append (anIterator.Value());
myParameters->SetParameters (thePluginName, aParameters, Standard_False);
}
else
myParameters->SetParameters (thePluginName, theParameters, Standard_False);
TInspector_ToolInfo anInfo;
int aToolId;
if (!FindPlugin (thePluginName, anInfo, aToolId))
return;
if (anInfo.myButton)
return;
QString aButtonName = anInfo.myName.ToCString();
if (aButtonName.indexOf("TK") == 0)
aButtonName = aButtonName.mid(2);
QPushButton* aButton = new QPushButton(aButtonName, myButtonWidget);
connect (aButton, SIGNAL (clicked (bool)), this, SLOT (onButtonClicked()));
myButtonLay->insertWidget (myButtonLay->count()-1, aButton);
anInfo.myButton = aButton;
myToolNames[aToolId] = anInfo;
}
// =======================================================================
// function : ActivateTool
// purpose :
// =======================================================================
void TInspector_Window::ActivateTool (const TCollection_AsciiString& thePluginName)
{
int aToolIndex = -1;
for (int aToolId = 0, aSize = myToolNames.size(); aToolId < aSize; aToolId++)
{
if (myToolNames[aToolId].myName != thePluginName)
continue;
aToolIndex = aToolId;
break;
}
if (aToolIndex < 0)
return;
TInspector_ToolInfo anInfo = myToolNames[aToolIndex];
if (!anInfo.myWidget)
{
if (!LoadPlugin (thePluginName, anInfo))
{
anInfo.myButton->setEnabled (false);
return;
}
myToolsStack->addWidget (anInfo.myWidget);
myToolNames[aToolIndex] = anInfo;
}
QWidget* aWidget = anInfo.myWidget;
myToolsStack->setCurrentWidget (aWidget);
if (myOpenButton)
myOpenButton->setObjectName (thePluginName.ToCString());
anInfo.myCommunicator->UpdateContent();
onCommuncatorNameChanged();
}
// =======================================================================
// function : SetSelected
// purpose :
// =======================================================================
void TInspector_Window::SetSelected (const NCollection_List<TCollection_AsciiString>& theItemNames)
{
TInspector_ToolInfo anInfo;
if (!ActiveToolInfo (anInfo))
return;
myParameters->SetSelectedNames (anInfo.myName, theItemNames);
TInspectorAPI_Communicator* aCommunicator = anInfo.myCommunicator;
if (aCommunicator)
{
aCommunicator->UpdateContent();
}
}
// =======================================================================
// function : SetSelected
// purpose :
// =======================================================================
void TInspector_Window::SetSelected (const NCollection_List<Handle(Standard_Transient)>& theObjects)
{
TInspector_ToolInfo anInfo;
if (!ActiveToolInfo (anInfo))
return;
myParameters->SetSelected (anInfo.myName, theObjects);
TInspectorAPI_Communicator* aCommunicator = anInfo.myCommunicator;
if (aCommunicator)
{
aCommunicator->UpdateContent();
}
}
// =======================================================================
// function : SetOpenButton
// purpose :
// =======================================================================
void TInspector_Window::SetOpenButton (QPushButton* theButton)
{
myOpenButton = theButton;
TInspector_ToolInfo anInfo;
if (ActiveToolInfo (anInfo))
myOpenButton->setObjectName (anInfo.myName.ToCString());
myButtonLay->insertWidget (0, theButton);
}
// =======================================================================
// function : OpenFile
// purpose :
// =======================================================================
void TInspector_Window::OpenFile (const TCollection_AsciiString& thePluginName,
const TCollection_AsciiString& theFileName)
{
if (thePluginName.IsEmpty())
{
// Apply file name to all plugins
for (int aToolId = 0, aSize = myToolNames.size(); aToolId < aSize; aToolId++)
OpenFile (myToolNames[aToolId].myName, theFileName);
return;
}
myParameters->AddFileName (thePluginName, theFileName);
TInspector_ToolInfo anInfo;
if (!ActiveToolInfo (anInfo) || anInfo.myName != thePluginName)
return;
TInspectorAPI_Communicator* aCommunicator = anInfo.myCommunicator;
if (aCommunicator)
aCommunicator->UpdateContent();
}
// =======================================================================
// function : UpdateContent
// purpose :
// =======================================================================
void TInspector_Window::UpdateContent()
{
TInspector_ToolInfo anInfo;
if (!ActiveToolInfo (anInfo) || !anInfo.myCommunicator)
return;
anInfo.myCommunicator->UpdateContent();
}
// =======================================================================
// function : LoadPlugin
// purpose :
// =======================================================================
bool TInspector_Window::LoadPlugin (const TCollection_AsciiString& thePluginName, TInspector_ToolInfo& theInfo)
{
bool aLoaded = false;
QApplication::setOverrideCursor (Qt::WaitCursor);
TInspectorAPI_Communicator* aCommunicator = TInspectorAPI_Communicator::LoadPluginLibrary (thePluginName);
if (aCommunicator)
{
aCommunicator->SetParameters (myParameters);
QWidget* aParentWidget = new QWidget (myMainWindow);
QVBoxLayout* aLayout = new QVBoxLayout (aParentWidget);
aLayout->setContentsMargins (0, 0, 0, 0);
aLayout->setSpacing (0);
aParentWidget->setLayout (aLayout);
aCommunicator->SetParent (aParentWidget);
theInfo.myWidget = aParentWidget;
theInfo.myCommunicator = aCommunicator;
#if QT_VERSION >= 0x050000
connect (aParentWidget, SIGNAL (objectNameChanged (const QString&)), this, SLOT (onCommuncatorNameChanged()));
#endif
aLoaded = true;
}
QApplication::restoreOverrideCursor();
return aLoaded;
}
// =======================================================================
// function : onButtonClicked
// purpose :
// =======================================================================
void TInspector_Window::onButtonClicked()
{
QPushButton* aButton = (QPushButton*)sender();
ActivateTool (TCollection_AsciiString ("TK") + aButton->text().toStdString().c_str());
}
// =======================================================================
// function : onCommuncatorNameChanged
// purpose :
// =======================================================================
void TInspector_Window::onCommuncatorNameChanged()
{
#if QT_VERSION >= 0x050000
TInspector_ToolInfo anInfo;
if (!ActiveToolInfo (anInfo))
return;
myMainWindow->setWindowTitle (anInfo.myWidget->objectName());
#endif
}
// =======================================================================
// function : ActiveToolInfo
// purpose :
// =======================================================================
bool TInspector_Window::ActiveToolInfo (TInspector_Window::TInspector_ToolInfo& theToolInfo) const
{
QWidget* anActiveWidget = myToolsStack->currentWidget();
if (anActiveWidget == myEmptyWidget)
return false;
for (int aToolId = 0, aSize = myToolNames.size(); aToolId < aSize; aToolId++)
{
if (myToolNames[aToolId].myWidget && myToolNames[aToolId].myWidget == anActiveWidget)
{
theToolInfo = myToolNames[aToolId];
return true;
}
}
return false;
}
// =======================================================================
// function : FindPlugin
// purpose :
// =======================================================================
bool TInspector_Window::FindPlugin (const TCollection_AsciiString& thePluginName, TInspector_ToolInfo& theToolInfo,
int& theToolId)
{
for (int aToolId = 0, aSize = myToolNames.size(); aToolId < aSize; aToolId++)
{
TInspector_ToolInfo anInfo = myToolNames[aToolId];
if (anInfo.myName != thePluginName)
continue;
theToolInfo = anInfo;
theToolId = aToolId;
return true;
}
return false;
}