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.hxx
nds 14bbbdcbc1 0027398: Integrate Qt Browser Widget to Open CASCADE Technology
The following implementation has been made:
- CMake procedure is extended to compile Qt tools. This is optional and is handled by USE_QT_TOOLS option(OFF by default)
- It is possible to build Qt tools using Qt5 or Qt4, it is settled with USE_QT4 option.
- Sample of DFBrowser tool is available in samples/tools/TInspectorEXE. It is build with tools, executable is placed in binaries. To start the sample, use dfbrowser.bat command.
- DFBrowser tool may be started from DRAW
2017-07-28 15:35:16 +03:00

140 lines
5.2 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.
#ifndef TInspector_Window_H
#define TInspector_Window_H
#include <NCollection_List.hxx>
#include <Standard.hxx>
#include <Standard_Transient.hxx>
#include <TCollection_AsciiString.hxx>
#include <TInspectorAPI_PluginParameters.hxx>
#ifdef _MSC_VER
#pragma warning(disable : 4127) // conditional expression is constant
#endif
#include <QMap>
#include <QObject>
#include <QString>
class TInspectorAPI_Communicator;
class QMainWindow;
class QHBoxLayout;
class QPushButton;
class QStackedWidget;
//! \class Inspector_Window
//! Control that contains:
//! - stacked widget of loaded plugins
//! - Open button to open file in an active plugin
//! - plugin parameters container
class TInspector_Window : public QObject
{
Q_OBJECT
private:
//! Container of plugin information
struct TInspector_ToolInfo
{
//! Constructor
TInspector_ToolInfo (const TCollection_AsciiString& theName = TCollection_AsciiString())
: myName(theName), myCommunicator (0), myButton (0), myWidget (0) {}
TCollection_AsciiString myName; //!< plugin name
TInspectorAPI_Communicator* myCommunicator; //!< plugin communicator
QPushButton* myButton; //!< button with plugin name, that will be added into TInspector window layout
QWidget* myWidget; //!< parent widget of the plugin
};
public:
//! Constructor
Standard_EXPORT TInspector_Window();
//! Destructor
virtual ~TInspector_Window() Standard_OVERRIDE {}
//! Appends the plugin names into internal conainer
//! \param thePluginName a name of the plugin
void RegisterPlugin (const TCollection_AsciiString& thePluginName)
{ myToolNames.append (TInspector_ToolInfo(thePluginName)); }
//! Stores parameters for the plugin. If the plugin name is empty, it inits all plugins with the parameters
//! \param thePluginName a name of the plugin
//! \param theParameters container of parameters(e.g. AIS_InteractiveContext, TDocStd_Application)
Standard_EXPORT void Init (const TCollection_AsciiString& thePluginName,
const NCollection_List<Handle(Standard_Transient)>& theParameters);
//! Appends to container of parameters the given name, if the given parameter is active, cal UpdateContent
//! \param thePluginName a name of the plugin
//! \param theParameters container of parameters(e.g. AIS_InteractiveContext, TDocStd_Application)
Standard_EXPORT void OpenFile (const TCollection_AsciiString& thePluginName,
const TCollection_AsciiString& theFileName);
//! Calls UpdateContent for the active plugin
Standard_EXPORT void UpdateContent();
//! Returns the main TInspector window
QMainWindow* GetMainWindow() const { return myMainWindow; }
//! Activates the plugin. Loads the plugin if it has not been loaded yet
//! \param thePluginName a name of the plugin
Standard_EXPORT void ActivateTool (const TCollection_AsciiString& thePluginName);
//! Sets open button. Stores into objectName for the button the name of the current plugin to know where
//! the file should be applied
//! \param theButton a button
Standard_EXPORT void SetOpenButton (QPushButton* theButton);
//! Loads plugin, appends the plugin widget into layout, stores the plugin information
//! \param thePluginName a name of the plugin
//! \param theInfo an output parameter for plugin info
Standard_EXPORT bool LoadPlugin (const TCollection_AsciiString& thePluginName, TInspector_ToolInfo& theInfo);
public slots:
//! Destroys loaded communicators
Standard_EXPORT void OnLastApplicationWindowClosed();
protected slots:
//! Activates plugin correspnded to the clicked button
void onButtonClicked();
//! Updates the TInspector window title giving object name of plugin widget (available only in Qt5)
void onCommuncatorNameChanged();
protected:
//! Activates plugin by the plugin info
//! \param theToolInfo an information about plugin
bool ActiveToolInfo (TInspector_ToolInfo& theToolInfo) const;
private:
QWidget* myEmptyWidget; //!< widget that is active in tools stack while no one plugin is loaded
QMainWindow* myMainWindow; //!< main control of the window
QStackedWidget* myToolsStack; //!< stack widget of plugin windows
QWidget* myButtonWidget; //!< container of plugin buttons
QPushButton* myOpenButton; //!< button to open file for the active plugin
QHBoxLayout* myButtonLay; //!< layout of plugin buttons
QList<TInspector_ToolInfo> myToolNames; //!< container of plugin names
Handle(TInspectorAPI_PluginParameters) myParameters; //!< plugins parameters container
};
#endif