110 lines
3.9 KiB
C++
110 lines
3.9 KiB
C++
/***************************************************************************
|
|
* Copyright (c) 2023 David Carter <dcarter@david.carter.ca> *
|
|
* *
|
|
* This file is part of FreeCAD. *
|
|
* *
|
|
* FreeCAD is free software: you can redistribute it and/or modify it *
|
|
* under the terms of the GNU Lesser General Public License as *
|
|
* published by the Free Software Foundation, either version 2.1 of the *
|
|
* License, or (at your option) any later version. *
|
|
* *
|
|
* FreeCAD is distributed in the hope that it will be useful, but *
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
|
|
* Lesser General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Lesser General Public *
|
|
* License along with FreeCAD. If not, see *
|
|
* <https://www.gnu.org/licenses/>. *
|
|
* *
|
|
**************************************************************************/
|
|
|
|
#ifndef MATGUI_MODELSELECT_H
|
|
#define MATGUI_MODELSELECT_H
|
|
|
|
#include <boost/filesystem.hpp>
|
|
|
|
#include <QDialog>
|
|
#include <QDir>
|
|
#include <QStandardItem>
|
|
#include <QTableView>
|
|
#include <QTreeView>
|
|
|
|
#include <Mod/Material/App/Materials.h>
|
|
#include <Mod/Material/App/ModelManager.h>
|
|
|
|
namespace fs = boost::filesystem;
|
|
|
|
namespace MatGui
|
|
{
|
|
|
|
class Ui_ModelSelect;
|
|
|
|
class ModelSelect: public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ModelSelect(
|
|
QWidget* parent = nullptr,
|
|
Materials::ModelManager::ModelFilter filter = Materials::ModelManager::ModelFilter_None);
|
|
~ModelSelect() override;
|
|
|
|
void onURL(bool checked);
|
|
void onDOI(bool checked);
|
|
void onFavourite(bool checked);
|
|
void onSelectModel(const QItemSelection& selected, const QItemSelection& deselected);
|
|
const QString& selectedModel() const
|
|
{
|
|
return _selected;
|
|
}
|
|
void accept() override;
|
|
void reject() override;
|
|
|
|
private:
|
|
void getFavorites();
|
|
void saveFavorites();
|
|
void addFavorite(const QString& uuid);
|
|
void removeFavorite(const QString& uuid);
|
|
bool isFavorite(const QString& uuid) const;
|
|
|
|
void getRecents();
|
|
void saveRecents();
|
|
void addRecent(const QString& uuid);
|
|
bool isRecent(const QString& uuid) const;
|
|
|
|
void addExpanded(QTreeView* tree, QStandardItem* parent, QStandardItem* child);
|
|
void addExpanded(QTreeView* tree, QStandardItemModel* parent, QStandardItem* child);
|
|
void addRecents(QStandardItem* parent);
|
|
void addFavorites(QStandardItem* parent);
|
|
void addModels(QStandardItem& parent,
|
|
const std::shared_ptr<std::map<QString, Materials::ModelTreeNode*>> modelTree,
|
|
const QIcon& icon);
|
|
void updateMaterialModel(const QString& uuid);
|
|
void clearMaterialModel();
|
|
void createModelTree();
|
|
void refreshModelTree();
|
|
void fillTree();
|
|
|
|
void setHeaders(QStandardItemModel* model);
|
|
void setColumnWidths(QTableView* table);
|
|
void updateModelProperties(const Materials::Model& model);
|
|
void createModelProperties();
|
|
Materials::ModelManager& getModelManager()
|
|
{
|
|
return _modelManager;
|
|
}
|
|
|
|
Materials::ModelManager::ModelFilter _filter;
|
|
std::unique_ptr<Ui_ModelSelect> ui;
|
|
Materials::ModelManager _modelManager;
|
|
QString _selected;
|
|
std::list<QString> _favorites;
|
|
std::list<QString> _recents;
|
|
int _recentMax;
|
|
};
|
|
|
|
} // namespace MatGui
|
|
|
|
#endif // MATGUI_MODELSELECT_H
|