mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0029748: Samples - Inspector tool - use recently opened files in TInspectorEXE
- recently files using in open file dialog - correction of TInspectorEXE title to show opened file path by Start
This commit is contained in:
parent
d0fbc7e5dd
commit
042e09aa36
@ -222,6 +222,9 @@ void DFBrowser_Window::SetParent (void* theParent)
|
|||||||
QLayout* aLayout = myParent->layout();
|
QLayout* aLayout = myParent->layout();
|
||||||
if (aLayout)
|
if (aLayout)
|
||||||
aLayout->addWidget (GetMainWindow());
|
aLayout->addWidget (GetMainWindow());
|
||||||
|
|
||||||
|
if (!myOpenedFileName.isEmpty())
|
||||||
|
myParent->setObjectName(myOpenedFileName);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -247,7 +250,6 @@ void DFBrowser_Window::FillActionsMenu (void* theMenu)
|
|||||||
// =======================================================================
|
// =======================================================================
|
||||||
void DFBrowser_Window::GetPreferences (TInspectorAPI_PreferencesDataMap& theItem)
|
void DFBrowser_Window::GetPreferences (TInspectorAPI_PreferencesDataMap& theItem)
|
||||||
{
|
{
|
||||||
theItem.Clear();
|
|
||||||
theItem.Bind ("geometry", TreeModel_Tools::ToString (myMainWindow->saveState()).toStdString().c_str());
|
theItem.Bind ("geometry", TreeModel_Tools::ToString (myMainWindow->saveState()).toStdString().c_str());
|
||||||
|
|
||||||
QMap<QString, QString> anItems;
|
QMap<QString, QString> anItems;
|
||||||
@ -498,6 +500,8 @@ void DFBrowser_Window::OpenFile (const TCollection_AsciiString& theFileName)
|
|||||||
|
|
||||||
if (myParent)
|
if (myParent)
|
||||||
myParent->setObjectName (isSTEPFileName ? QString (TCollection_AsciiString (theFileName).ToCString()) : getWindowTitle());
|
myParent->setObjectName (isSTEPFileName ? QString (TCollection_AsciiString (theFileName).ToCString()) : getWindowTitle());
|
||||||
|
else
|
||||||
|
myOpenedFileName = isSTEPFileName ? QString(TCollection_AsciiString(theFileName).ToCString()) : getWindowTitle();
|
||||||
|
|
||||||
if (anApplication.IsNull())
|
if (anApplication.IsNull())
|
||||||
{
|
{
|
||||||
|
@ -226,6 +226,7 @@ private:
|
|||||||
DFBrowser_Thread* myThread; //!< Threads manipulator, starting thread items, listens finalizing
|
DFBrowser_Thread* myThread; //!< Threads manipulator, starting thread items, listens finalizing
|
||||||
ViewControl_MessageDialog* myExportToShapeViewDialog; //!< dialog about exporting TopoDS_Shape to ShapeView plugin
|
ViewControl_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
|
||||||
|
QString myOpenedFileName; //!< cached name of opened file between parent is set, apply it by parent setting and nullify
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -167,7 +167,6 @@ void ShapeView_Window::FillActionsMenu (void* theMenu)
|
|||||||
// =======================================================================
|
// =======================================================================
|
||||||
void ShapeView_Window::GetPreferences (TInspectorAPI_PreferencesDataMap& theItem)
|
void ShapeView_Window::GetPreferences (TInspectorAPI_PreferencesDataMap& theItem)
|
||||||
{
|
{
|
||||||
theItem.Clear();
|
|
||||||
theItem.Bind ("geometry", TreeModel_Tools::ToString (myMainWindow->saveState()).toStdString().c_str());
|
theItem.Bind ("geometry", TreeModel_Tools::ToString (myMainWindow->saveState()).toStdString().c_str());
|
||||||
|
|
||||||
QMap<QString, QString> anItems;
|
QMap<QString, QString> anItems;
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
#define TInspector_Communicator_H
|
#define TInspector_Communicator_H
|
||||||
|
|
||||||
#include <inspector/TInspector_Window.hxx>
|
#include <inspector/TInspector_Window.hxx>
|
||||||
|
#include <inspector/TInspectorAPI_PluginParameters.hxx>
|
||||||
|
|
||||||
#include <NCollection_List.hxx>
|
#include <NCollection_List.hxx>
|
||||||
#include <Standard.hxx>
|
#include <Standard.hxx>
|
||||||
@ -107,8 +108,10 @@ public:
|
|||||||
//! \param theStream stream for output
|
//! \param theStream stream for output
|
||||||
void Dump (Standard_OStream& theStream) const { return myWindow->Dump (theStream); }
|
void Dump (Standard_OStream& theStream) const { return myWindow->Dump (theStream); }
|
||||||
|
|
||||||
private:
|
//! Returns plugins parameters container
|
||||||
|
Handle(TInspectorAPI_PluginParameters) const GetPluginParameters() { return myWindow->GetPluginParameters(); }
|
||||||
|
|
||||||
|
private:
|
||||||
TInspector_Window* myWindow; //!< current window
|
TInspector_Window* myWindow; //!< current window
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -63,7 +63,7 @@ public:
|
|||||||
{ myPreferences->SetPreferences (thePluginName, theItem); }
|
{ myPreferences->SetPreferences (thePluginName, theItem); }
|
||||||
|
|
||||||
//! Store plugin preferences into a preferences file
|
//! Store plugin preferences into a preferences file
|
||||||
void StorePreferences() { myPreferences->StorePreferences(); }
|
virtual void StorePreferences() Standard_OVERRIDE { myPreferences->StorePreferences(); }
|
||||||
|
|
||||||
//! Remove plugin preferences file
|
//! Remove plugin preferences file
|
||||||
void RemovePreferences() { myPreferences->RemovePreferences(); }
|
void RemovePreferences() { myPreferences->RemovePreferences(); }
|
||||||
|
@ -31,7 +31,6 @@
|
|||||||
void TInspector_Preferences::GetPreferences (const TCollection_AsciiString& thePluginName,
|
void TInspector_Preferences::GetPreferences (const TCollection_AsciiString& thePluginName,
|
||||||
TInspectorAPI_PreferencesDataMap& theItem)
|
TInspectorAPI_PreferencesDataMap& theItem)
|
||||||
{
|
{
|
||||||
theItem.Clear();
|
|
||||||
if (!myIsLoadedPreferences)
|
if (!myIsLoadedPreferences)
|
||||||
{
|
{
|
||||||
loadPreferences();
|
loadPreferences();
|
||||||
|
@ -366,8 +366,7 @@ bool TInspector_Window::LoadPlugin (const TCollection_AsciiString& thePluginName
|
|||||||
// =======================================================================
|
// =======================================================================
|
||||||
void TInspector_Window::GetPreferences (TInspectorAPI_PreferencesDataMap& theItem)
|
void TInspector_Window::GetPreferences (TInspectorAPI_PreferencesDataMap& theItem)
|
||||||
{
|
{
|
||||||
theItem.Clear();
|
theItem.Bind ("geometry", TreeModel_Tools::ToString (myMainWindow->saveGeometry()).toStdString().c_str());
|
||||||
theItem.Bind ("geometry", TreeModel_Tools::ToString (myMainWindow->saveGeometry()).toStdString().c_str());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
@ -414,6 +413,7 @@ void TInspector_Window::OnStorePreferences()
|
|||||||
if (!anInfo.myCommunicator)
|
if (!anInfo.myCommunicator)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
aParameters->GetPreferences (anInfo.myName, aPreferences);
|
||||||
anInfo.myCommunicator->GetPreferences (aPreferences);
|
anInfo.myCommunicator->GetPreferences (aPreferences);
|
||||||
myParameters->SetPreferences (anInfo.myName, aPreferences);
|
myParameters->SetPreferences (anInfo.myName, aPreferences);
|
||||||
}
|
}
|
||||||
|
@ -129,6 +129,10 @@ public:
|
|||||||
//! \return path
|
//! \return path
|
||||||
TCollection_AsciiString GetTemporaryDirectory() const { return myParameters->GetTemporaryDirectory(); }
|
TCollection_AsciiString GetTemporaryDirectory() const { return myParameters->GetTemporaryDirectory(); }
|
||||||
|
|
||||||
|
//! Returns plugins parameters container
|
||||||
|
//! \return instance of parameters container
|
||||||
|
Handle(TInspectorAPI_PluginParameters) GetPluginParameters() const { return myParameters; }
|
||||||
|
|
||||||
//! Returns plugin preferences: dock widgets state, tree view columns.
|
//! Returns plugin preferences: dock widgets state, tree view columns.
|
||||||
//! \param theItem container of preference elements
|
//! \param theItem container of preference elements
|
||||||
Standard_EXPORT void GetPreferences (TInspectorAPI_PreferencesDataMap& theItem);
|
Standard_EXPORT void GetPreferences (TInspectorAPI_PreferencesDataMap& theItem);
|
||||||
|
@ -131,6 +131,9 @@ public:
|
|||||||
Standard_EXPORT virtual void SetPreferences (const TCollection_AsciiString& thePluginName,
|
Standard_EXPORT virtual void SetPreferences (const TCollection_AsciiString& thePluginName,
|
||||||
const TInspectorAPI_PreferencesDataMap& theItem) = 0;
|
const TInspectorAPI_PreferencesDataMap& theItem) = 0;
|
||||||
|
|
||||||
|
//! Store plugin preferences into a preferences file
|
||||||
|
Standard_EXPORT virtual void StorePreferences() = 0;
|
||||||
|
|
||||||
//! Converts a Shape parameters excepting TShape into a string value
|
//! Converts a Shape parameters excepting TShape into a string value
|
||||||
//! \param theShape processed shape
|
//! \param theShape processed shape
|
||||||
//! \return string instance
|
//! \return string instance
|
||||||
|
@ -34,13 +34,13 @@
|
|||||||
// function : fileNameInDataDir
|
// function : fileNameInDataDir
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
TCollection_AsciiString fileNameInDataDir(const TCollection_AsciiString& theEnvironmentDir,
|
TCollection_AsciiString fileNameInDataDir (const TCollection_AsciiString& theEnvironmentDir,
|
||||||
const TCollection_AsciiString& theName)
|
const TCollection_AsciiString& theName)
|
||||||
{
|
{
|
||||||
OSD_Environment anEnvironment(theEnvironmentDir);
|
OSD_Environment anEnvironment (theEnvironmentDir);
|
||||||
|
|
||||||
TCollection_AsciiString aFileName = anEnvironment.Value();
|
TCollection_AsciiString aFileName = anEnvironment.Value();
|
||||||
aFileName += TCollection_AsciiString("/") + theName;
|
aFileName += TCollection_AsciiString ("/") + theName;
|
||||||
|
|
||||||
return aFileName;
|
return aFileName;
|
||||||
}
|
}
|
||||||
@ -52,22 +52,31 @@ TCollection_AsciiString fileNameInDataDir(const TCollection_AsciiString& theEnvi
|
|||||||
void setPluginSampleDirectory (const TCollection_AsciiString& theName, TInspector_Communicator* theCommunicator,
|
void setPluginSampleDirectory (const TCollection_AsciiString& theName, TInspector_Communicator* theCommunicator,
|
||||||
TInspectorEXE_OpenButton* theButtonControl)
|
TInspectorEXE_OpenButton* theButtonControl)
|
||||||
{
|
{
|
||||||
if (theName.IsEqual ("TKDFBrowser"))
|
QStringList aRecentlyOpenedFiles;
|
||||||
|
TInspectorEXE_OpenFileDialog::GetPluginRecentlyOpenedFiles (theName, theCommunicator, aRecentlyOpenedFiles);
|
||||||
|
TCollection_AsciiString aFileName, anAdditionalFileName;
|
||||||
|
if (!aRecentlyOpenedFiles.isEmpty())
|
||||||
|
aFileName = TCollection_AsciiString (aRecentlyOpenedFiles.last().toUtf8().data());
|
||||||
|
if (aFileName.IsEmpty())
|
||||||
{
|
{
|
||||||
theCommunicator->OpenFile (theName, fileNameInDataDir ("CSF_OCCTDataPath", "step/screw.step"));
|
if (theName.IsEqual ("TKDFBrowser"))
|
||||||
theButtonControl->SetPluginDir (theName, fileNameInDataDir ("CSF_OCCTDataPath", "step"));
|
aFileName = fileNameInDataDir ("CSF_OCCTDataPath", "step/screw.step");
|
||||||
}
|
else if (theName.IsEqual ("TKShapeView"))
|
||||||
else if (theName.IsEqual ("TKShapeView"))
|
aFileName = fileNameInDataDir ("CSF_OCCTDataPath", "occ/hammer.brep");
|
||||||
{
|
else if (theName.IsEqual ("TKVInspector"))
|
||||||
theCommunicator->OpenFile (theName, fileNameInDataDir ("CSF_OCCTDataPath", "occ/hammer.brep"));
|
{
|
||||||
theButtonControl->SetPluginDir (theName, fileNameInDataDir ("CSF_OCCTDataPath", "occ"));
|
aFileName = fileNameInDataDir ("CSF_OCCTDataPath", "occ/face1.brep");
|
||||||
}
|
anAdditionalFileName = fileNameInDataDir ("CSF_OCCTDataPath", "occ/face2.brep");
|
||||||
else if (theName.IsEqual ("TKVInspector"))
|
}
|
||||||
{
|
aRecentlyOpenedFiles.append (aFileName.ToCString());
|
||||||
theCommunicator->OpenFile (theName, fileNameInDataDir ("CSF_OCCTDataPath", "occ/face1.brep"));
|
if (!anAdditionalFileName.IsEmpty())
|
||||||
theCommunicator->OpenFile (theName, fileNameInDataDir ("CSF_OCCTDataPath", "occ/face2.brep"));
|
aRecentlyOpenedFiles.append (anAdditionalFileName.ToCString());
|
||||||
theButtonControl->SetPluginDir (theName, fileNameInDataDir ("CSF_OCCTDataPath", "occ"));
|
|
||||||
}
|
}
|
||||||
|
theCommunicator->OpenFile (theName, aFileName.ToCString());
|
||||||
|
if (!anAdditionalFileName.IsEmpty())
|
||||||
|
theCommunicator->OpenFile (theName, anAdditionalFileName);
|
||||||
|
|
||||||
|
theButtonControl->SetPluginRecentlyOpenedFiles (theName, aRecentlyOpenedFiles);
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
|
@ -47,6 +47,8 @@ const int OPEN_DIALOG_HEIGHT = 200;
|
|||||||
const int MARGIN_DIALOG = 4;
|
const int MARGIN_DIALOG = 4;
|
||||||
const int SPACING_DIALOG = 2;
|
const int SPACING_DIALOG = 2;
|
||||||
|
|
||||||
|
const int RECENT_FILES_CACHE_SIZE = 10;
|
||||||
|
|
||||||
TInspector_Communicator* MyCommunicator;
|
TInspector_Communicator* MyCommunicator;
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
@ -75,15 +77,36 @@ void TInspectorEXE_OpenButton::onStartButtonClicked()
|
|||||||
if (aPluginName.IsEmpty())
|
if (aPluginName.IsEmpty())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
QString aDataDirName = QDir::currentPath();
|
QStringList aPluginRecentlyOpenedFiles;
|
||||||
if (myDefaultDirs.IsBound (aPluginName))
|
if (myRecentlyOpenedFiles.contains(aPluginName))
|
||||||
aDataDirName = myDefaultDirs.Find (aPluginName).ToCString();
|
{
|
||||||
|
QStringList aFileNames = myRecentlyOpenedFiles[aPluginName];
|
||||||
|
for (int i = 0; i < aFileNames.size(); i++)
|
||||||
|
{
|
||||||
|
QFileInfo aFileInfo (aFileNames[i]);
|
||||||
|
if (aFileInfo.exists() && aFileInfo.isFile())
|
||||||
|
aPluginRecentlyOpenedFiles.append(aFileInfo.absoluteFilePath());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
QString aFileName = TInspectorEXE_OpenFileDialog::OpenFile (0, aDataDirName);
|
QString aFileName = TInspectorEXE_OpenFileDialog::OpenFile (0, aPluginRecentlyOpenedFiles);
|
||||||
aFileName = QDir().toNativeSeparators (aFileName);
|
aFileName = QDir().toNativeSeparators (aFileName);
|
||||||
if (!aFileName.isEmpty()) {
|
if (!aFileName.isEmpty()) {
|
||||||
QApplication::setOverrideCursor (Qt::WaitCursor);
|
QApplication::setOverrideCursor (Qt::WaitCursor);
|
||||||
TInspectorEXE_OpenFileDialog::Communicator()->OpenFile (aPluginName, TCollection_AsciiString (aFileName.toUtf8().data()));
|
TInspectorEXE_OpenFileDialog::Communicator()->OpenFile (aPluginName, TCollection_AsciiString (aFileName.toUtf8().data()));
|
||||||
|
|
||||||
|
QFileInfo aFileInfo (aFileName);
|
||||||
|
if (!aPluginRecentlyOpenedFiles.contains (aFileInfo.absoluteFilePath()))
|
||||||
|
{
|
||||||
|
myRecentlyOpenedFiles[aPluginName].append (aFileInfo.absoluteFilePath());
|
||||||
|
for (int i = 0; i < myRecentlyOpenedFiles[aPluginName].size() - RECENT_FILES_CACHE_SIZE; i++)
|
||||||
|
myRecentlyOpenedFiles[aPluginName].removeFirst();
|
||||||
|
TInspectorEXE_OpenFileDialog::SetPluginRecentlyOpenedFiles (aPluginName,
|
||||||
|
TInspectorEXE_OpenFileDialog::Communicator(), myRecentlyOpenedFiles[aPluginName]);
|
||||||
|
|
||||||
|
TInspectorEXE_OpenFileDialog::Communicator()->GetPluginParameters()->StorePreferences();
|
||||||
|
}
|
||||||
|
|
||||||
QApplication::restoreOverrideCursor();
|
QApplication::restoreOverrideCursor();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -102,26 +125,21 @@ void changeMargins (QBoxLayout* theLayout)
|
|||||||
// function : Constructor
|
// function : Constructor
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
TInspectorEXE_OpenFileDialog::TInspectorEXE_OpenFileDialog (QWidget* theParent, const QString& theDataDirName)
|
TInspectorEXE_OpenFileDialog::TInspectorEXE_OpenFileDialog (QWidget* theParent, const QStringList& theRecentlyOpenedFiles)
|
||||||
: QDialog(theParent), myDataDir (theDataDirName)
|
: QDialog (theParent), myRecentlyOpenedFiles (theRecentlyOpenedFiles)
|
||||||
{
|
{
|
||||||
setWindowTitle (theDataDirName);
|
setWindowTitle (tr ("Open File"));
|
||||||
|
|
||||||
QVBoxLayout* aDialogLay = new QVBoxLayout (this);
|
QVBoxLayout* aDialogLay = new QVBoxLayout (this);
|
||||||
changeMargins (aDialogLay);
|
changeMargins (aDialogLay);
|
||||||
|
|
||||||
// Title label
|
|
||||||
QLabel* aTitleLabel = new QLabel (this);
|
|
||||||
aTitleLabel->setText (tr ("Open File"));
|
|
||||||
aDialogLay->addWidget (aTitleLabel);
|
|
||||||
|
|
||||||
// Samples View
|
// Samples View
|
||||||
QGroupBox* aSamplesBox = new QGroupBox (this);
|
QGroupBox* aSamplesBox = new QGroupBox (this);
|
||||||
aSamplesBox->setTitle (tr ("Samples"));
|
aSamplesBox->setTitle (tr ("Recent files"));
|
||||||
aDialogLay->addWidget (aSamplesBox);
|
aDialogLay->addWidget (aSamplesBox);
|
||||||
QVBoxLayout* aSampleLay = new QVBoxLayout (aSamplesBox);
|
QVBoxLayout* aSampleLay = new QVBoxLayout (aSamplesBox);
|
||||||
changeMargins (aSampleLay);
|
changeMargins (aSampleLay);
|
||||||
mySamplesView = createTableView (readSampleNames());
|
mySamplesView = createTableView (theRecentlyOpenedFiles);
|
||||||
aSampleLay->addWidget (mySamplesView);
|
aSampleLay->addWidget (mySamplesView);
|
||||||
|
|
||||||
// Select file
|
// Select file
|
||||||
@ -143,16 +161,8 @@ TInspectorEXE_OpenFileDialog::TInspectorEXE_OpenFileDialog (QWidget* theParent,
|
|||||||
aSelectFileBtn->setIcon (QIcon (":folder_open.png"));
|
aSelectFileBtn->setIcon (QIcon (":folder_open.png"));
|
||||||
aSelectFileLay->addWidget (aSelectFileBtn, 1, 1);
|
aSelectFileLay->addWidget (aSelectFileBtn, 1, 1);
|
||||||
|
|
||||||
myFolderApplyOpen = new QToolButton (aSelectFileBox);
|
|
||||||
myFolderApplyOpen->setIcon (QIcon (":folder_import.png"));
|
|
||||||
myFolderApplyOpen->setIconSize (QSize (ICON_SIZE, ICON_SIZE));
|
|
||||||
myFolderApplyOpen->setEnabled (false);
|
|
||||||
aSelectFileLay->addWidget (myFolderApplyOpen, 0, 2, 2, 1);
|
|
||||||
|
|
||||||
connect (mySelectedName, SIGNAL (textChanged (const QString&)),
|
|
||||||
this, SLOT (onNameChanged (const QString&)));
|
|
||||||
connect (aSelectFileBtn, SIGNAL (clicked()), this, SLOT (onSelectClicked()));
|
connect (aSelectFileBtn, SIGNAL (clicked()), this, SLOT (onSelectClicked()));
|
||||||
connect (myFolderApplyOpen, SIGNAL (clicked()), this, SLOT (onApplySelectClicked()));
|
connect (mySelectedName, SIGNAL (returnPressed()), this, SLOT (onApplySelectClicked()));
|
||||||
|
|
||||||
resize (OPEN_DIALOG_WIDTH, OPEN_DIALOG_HEIGHT);
|
resize (OPEN_DIALOG_WIDTH, OPEN_DIALOG_HEIGHT);
|
||||||
}
|
}
|
||||||
@ -161,10 +171,10 @@ TInspectorEXE_OpenFileDialog::TInspectorEXE_OpenFileDialog (QWidget* theParent,
|
|||||||
// function : OpenFile
|
// function : OpenFile
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
QString TInspectorEXE_OpenFileDialog::OpenFile (QWidget* theParent, const QString& theDataDirName)
|
QString TInspectorEXE_OpenFileDialog::OpenFile (QWidget* theParent, const QStringList& theRecentlyOpenedFiles)
|
||||||
{
|
{
|
||||||
QString aFileName;
|
QString aFileName;
|
||||||
TInspectorEXE_OpenFileDialog* aDialog = new TInspectorEXE_OpenFileDialog(theParent, theDataDirName);
|
TInspectorEXE_OpenFileDialog* aDialog = new TInspectorEXE_OpenFileDialog (theParent, theRecentlyOpenedFiles);
|
||||||
if (aDialog->exec() == QDialog::Accepted)
|
if (aDialog->exec() == QDialog::Accepted)
|
||||||
aFileName = aDialog->GetFileName();
|
aFileName = aDialog->GetFileName();
|
||||||
|
|
||||||
@ -182,6 +192,47 @@ TInspector_Communicator* TInspectorEXE_OpenFileDialog::Communicator()
|
|||||||
return MyCommunicator;
|
return MyCommunicator;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : GetPluginRecentlyOpenedFiles
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void TInspectorEXE_OpenFileDialog::GetPluginRecentlyOpenedFiles (const TCollection_AsciiString& thePluginName,
|
||||||
|
TInspector_Communicator* theCommunicator,
|
||||||
|
QStringList& theFileNames)
|
||||||
|
{
|
||||||
|
Handle(TInspectorAPI_PluginParameters) aParameters = theCommunicator->GetPluginParameters();
|
||||||
|
TInspectorAPI_PreferencesDataMap aPreferencesItem;
|
||||||
|
aParameters->GetPreferences (thePluginName, aPreferencesItem);
|
||||||
|
|
||||||
|
for (TInspectorAPI_IteratorOfPreferencesDataMap anItemIt (aPreferencesItem); anItemIt.More(); anItemIt.Next())
|
||||||
|
{
|
||||||
|
if (!anItemIt.Key().IsEqual("recently_opened_files"))
|
||||||
|
continue;
|
||||||
|
theFileNames = QString(anItemIt.Value().ToCString()).split(";", QString::SkipEmptyParts);
|
||||||
|
if (theFileNames.size() > RECENT_FILES_CACHE_SIZE)
|
||||||
|
for (int i = 0; i < theFileNames.size() - RECENT_FILES_CACHE_SIZE; i++)
|
||||||
|
theFileNames.removeFirst();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : SetPluginRecentlyOpenedFiles
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
void TInspectorEXE_OpenFileDialog::SetPluginRecentlyOpenedFiles (const TCollection_AsciiString& thePluginName,
|
||||||
|
TInspector_Communicator* theCommunicator,
|
||||||
|
QStringList& theFileNames)
|
||||||
|
{
|
||||||
|
Handle(TInspectorAPI_PluginParameters) aParameters = theCommunicator->GetPluginParameters();
|
||||||
|
|
||||||
|
TInspectorAPI_PreferencesDataMap aPreferencesItem;
|
||||||
|
aParameters->GetPreferences (thePluginName, aPreferencesItem);
|
||||||
|
aPreferencesItem.Bind ("recently_opened_files", TCollection_AsciiString (theFileNames.join (";").toUtf8().data()));
|
||||||
|
|
||||||
|
aParameters->SetPreferences (thePluginName, aPreferencesItem);
|
||||||
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : onSampleSelectionChanged
|
// function : onSampleSelectionChanged
|
||||||
// purpose :
|
// purpose :
|
||||||
@ -203,17 +254,6 @@ void TInspectorEXE_OpenFileDialog::onSampleSelectionChanged (const QItemSelectio
|
|||||||
accept();
|
accept();
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
|
||||||
// function : onNameChanged
|
|
||||||
// purpose :
|
|
||||||
// =======================================================================
|
|
||||||
void TInspectorEXE_OpenFileDialog::onNameChanged (const QString& theText)
|
|
||||||
{
|
|
||||||
QFileInfo aFileInfo (theText);
|
|
||||||
bool anExists = aFileInfo.exists() && aFileInfo.isFile();
|
|
||||||
myFolderApplyOpen->setEnabled (anExists);
|
|
||||||
}
|
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : onSelectClicked
|
// function : onSelectClicked
|
||||||
// purpose :
|
// purpose :
|
||||||
@ -245,6 +285,12 @@ void TInspectorEXE_OpenFileDialog::onSelectClicked()
|
|||||||
// =======================================================================
|
// =======================================================================
|
||||||
void TInspectorEXE_OpenFileDialog::onApplySelectClicked()
|
void TInspectorEXE_OpenFileDialog::onApplySelectClicked()
|
||||||
{
|
{
|
||||||
|
QString aFileName = mySelectedName->text();
|
||||||
|
|
||||||
|
QFileInfo aFileInfo (aFileName);
|
||||||
|
if (!aFileInfo.exists() || !aFileInfo.isFile())
|
||||||
|
return;
|
||||||
|
|
||||||
myFileName = mySelectedName->text();
|
myFileName = mySelectedName->text();
|
||||||
accept();
|
accept();
|
||||||
}
|
}
|
||||||
@ -291,24 +337,3 @@ QAbstractItemModel* TInspectorEXE_OpenFileDialog::createModel (const QStringList
|
|||||||
aModel->Init (theFileNames);
|
aModel->Init (theFileNames);
|
||||||
return aModel;
|
return aModel;
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
|
||||||
// function : readSampleNames
|
|
||||||
// purpose :
|
|
||||||
// =======================================================================
|
|
||||||
QStringList TInspectorEXE_OpenFileDialog::readSampleNames()
|
|
||||||
{
|
|
||||||
QStringList aNames;
|
|
||||||
|
|
||||||
QDir aDir(myDataDir);
|
|
||||||
aDir.setSorting(QDir::Name);
|
|
||||||
|
|
||||||
QFileInfoList aDirEntries = aDir.entryInfoList();
|
|
||||||
for (int aDirId = 0; aDirId < aDirEntries.size(); ++aDirId)
|
|
||||||
{
|
|
||||||
QFileInfo aFileInfo = aDirEntries.at(aDirId);
|
|
||||||
if (aFileInfo.isFile())
|
|
||||||
aNames.append (aFileInfo.absoluteFilePath());
|
|
||||||
}
|
|
||||||
return aNames;
|
|
||||||
}
|
|
||||||
|
@ -16,7 +16,10 @@
|
|||||||
#ifndef TInspectorEXE_OpenFileDialog_H
|
#ifndef TInspectorEXE_OpenFileDialog_H
|
||||||
#define TInspectorEXE_OpenFileDialog_H
|
#define TInspectorEXE_OpenFileDialog_H
|
||||||
|
|
||||||
|
#include <inspector/TInspectorAPI_PreferencesDataMap.hxx>
|
||||||
|
|
||||||
#include <NCollection_DataMap.hxx>
|
#include <NCollection_DataMap.hxx>
|
||||||
|
#include <NCollection_List.hxx>
|
||||||
#include <TCollection_AsciiString.hxx>
|
#include <TCollection_AsciiString.hxx>
|
||||||
|
|
||||||
#include <Standard_WarningsDisable.hxx>
|
#include <Standard_WarningsDisable.hxx>
|
||||||
@ -56,8 +59,9 @@ public:
|
|||||||
QPushButton* StartButton();
|
QPushButton* StartButton();
|
||||||
|
|
||||||
//! Sets the default directory of plugin.
|
//! Sets the default directory of plugin.
|
||||||
void SetPluginDir (const TCollection_AsciiString& thePluginName, const TCollection_AsciiString& theDefaultDir)
|
void SetPluginRecentlyOpenedFiles (const TCollection_AsciiString& thePluginName,
|
||||||
{ myDefaultDirs.Bind (thePluginName, theDefaultDir); }
|
const QStringList& theRecentlyOpenedFiles)
|
||||||
|
{ myRecentlyOpenedFiles[thePluginName] = theRecentlyOpenedFiles; }
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
|
|
||||||
@ -67,7 +71,8 @@ private slots:
|
|||||||
private:
|
private:
|
||||||
|
|
||||||
QPushButton* myStartButton; //!< processed button
|
QPushButton* myStartButton; //!< processed button
|
||||||
NCollection_DataMap<TCollection_AsciiString, TCollection_AsciiString> myDefaultDirs; //!< plugins default directories
|
//!< plugins recently opened files
|
||||||
|
QMap<TCollection_AsciiString, QStringList> myRecentlyOpenedFiles;
|
||||||
};
|
};
|
||||||
|
|
||||||
//! \class TInspectorEXE_OpenFileDialog
|
//! \class TInspectorEXE_OpenFileDialog
|
||||||
@ -80,7 +85,7 @@ class TInspectorEXE_OpenFileDialog : public QDialog
|
|||||||
private:
|
private:
|
||||||
|
|
||||||
//! Constructor
|
//! Constructor
|
||||||
TInspectorEXE_OpenFileDialog (QWidget* theParent, const QString& theDataDirName);
|
Standard_EXPORT TInspectorEXE_OpenFileDialog (QWidget* theParent, const QStringList& theRecentlyOpenedFiles);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
@ -91,23 +96,35 @@ public:
|
|||||||
//! \param theParent a parent for the new dialog
|
//! \param theParent a parent for the new dialog
|
||||||
//! \param theDataDirName path to default samples directory
|
//! \param theDataDirName path to default samples directory
|
||||||
//! \returns a file name from the open file dialog
|
//! \returns a file name from the open file dialog
|
||||||
static QString OpenFile (QWidget* theParent, const QString& theDataDirName);
|
Standard_EXPORT static QString OpenFile (QWidget* theParent, const QStringList& theRecentlyOpenedFiles);
|
||||||
|
|
||||||
//! Returns selection name from the dialog
|
//! Returns selection name from the dialog
|
||||||
QString GetFileName() const { return myFileName; }
|
QString GetFileName() const { return myFileName; }
|
||||||
|
|
||||||
//! Returns communicator, if this is the first call, create a communicator instance
|
//! Returns communicator, if this is the first call, create a communicator instance
|
||||||
static TInspector_Communicator* Communicator();
|
Standard_EXPORT static TInspector_Communicator* Communicator();
|
||||||
|
|
||||||
|
//! Returns preferences: previous opened documents.
|
||||||
|
//! \param thePluginName name of the plugin
|
||||||
|
//! \param theCommunicator source of preferences
|
||||||
|
//! \param theFileNames [out] container of recently opened file names
|
||||||
|
Standard_EXPORT static void GetPluginRecentlyOpenedFiles (const TCollection_AsciiString& thePluginName,
|
||||||
|
TInspector_Communicator* theCommunicator,
|
||||||
|
QStringList& theFileNames);
|
||||||
|
|
||||||
|
//! Sets preferences: previous opened documents.
|
||||||
|
//! \param thePluginName name of the plugin
|
||||||
|
//! \param theCommunicator source of preferences
|
||||||
|
//! \param theFileNames container of recently opened file names to be set into communicator preferences
|
||||||
|
Standard_EXPORT static void SetPluginRecentlyOpenedFiles (const TCollection_AsciiString& thePluginName,
|
||||||
|
TInspector_Communicator* theCommunicator,
|
||||||
|
QStringList& theFileNames);
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
|
|
||||||
//! Stores name of selected sample file
|
//! Stores name of selected sample file
|
||||||
void onSampleSelectionChanged (const QItemSelection& theSelected, const QItemSelection& theDeselected);
|
void onSampleSelectionChanged (const QItemSelection& theSelected, const QItemSelection& theDeselected);
|
||||||
|
|
||||||
//! Updates enabling state of Open file button, it is enabled if the file by the entered path exists
|
|
||||||
//! \param theText a file name text in line edit
|
|
||||||
void onNameChanged (const QString& theText);
|
|
||||||
|
|
||||||
//! Open file dialog to select a file name. Fills file name line, enable import button
|
//! Open file dialog to select a file name. Fills file name line, enable import button
|
||||||
void onSelectClicked();
|
void onSelectClicked();
|
||||||
|
|
||||||
@ -126,17 +143,12 @@ private:
|
|||||||
//! \return model
|
//! \return model
|
||||||
QAbstractItemModel* createModel (const QStringList& theFileNames);
|
QAbstractItemModel* createModel (const QStringList& theFileNames);
|
||||||
|
|
||||||
//! Generates container of file names in samples directory
|
|
||||||
//! \return container of names
|
|
||||||
QStringList readSampleNames();
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
QString myDataDir; //!< samples directory
|
QStringList myRecentlyOpenedFiles; //!< recently opened files
|
||||||
QString myFileName; //!< result file name
|
QString myFileName; //!< result file name
|
||||||
QTableView* mySamplesView; //! <view of sample file names
|
QTableView* mySamplesView; //! <view of sample file names
|
||||||
QLineEdit* mySelectedName; //!< alternative control to open file
|
QLineEdit* mySelectedName; //!< alternative control to open file
|
||||||
QToolButton* myFolderApplyOpen; //! button to open file
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -36,7 +36,7 @@ void TInspectorEXE_OpenFileItemDelegate::paint (QPainter* thePainter, const QSty
|
|||||||
thePainter->fillRect (theOption.rect, myColor);
|
thePainter->fillRect (theOption.rect, myColor);
|
||||||
|
|
||||||
// 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 (":folder_import.png");
|
||||||
QSize anIconSize (ICON_SIZE, ICON_SIZE);
|
QSize anIconSize (ICON_SIZE, ICON_SIZE);
|
||||||
int aDX = (theOption.rect.width() - anIconSize.width()) / 2;
|
int aDX = (theOption.rect.width() - anIconSize.width()) / 2;
|
||||||
int aMargin = qApp->style()->pixelMetric (QStyle::PM_HeaderMargin);
|
int aMargin = qApp->style()->pixelMetric (QStyle::PM_HeaderMargin);
|
||||||
|
@ -193,7 +193,6 @@ void VInspector_Window::FillActionsMenu (void* theMenu)
|
|||||||
// =======================================================================
|
// =======================================================================
|
||||||
void VInspector_Window::GetPreferences (TInspectorAPI_PreferencesDataMap& theItem)
|
void VInspector_Window::GetPreferences (TInspectorAPI_PreferencesDataMap& theItem)
|
||||||
{
|
{
|
||||||
theItem.Clear();
|
|
||||||
theItem.Bind ("geometry", TreeModel_Tools::ToString (myMainWindow->saveState()).toStdString().c_str());
|
theItem.Bind ("geometry", TreeModel_Tools::ToString (myMainWindow->saveState()).toStdString().c_str());
|
||||||
|
|
||||||
QMap<QString, QString> anItems;
|
QMap<QString, QString> anItems;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user