- don't popup a warning if all children of an object are selected too when deleting the object
119 lines
4.6 KiB
C++
119 lines
4.6 KiB
C++
/***************************************************************************
|
|
* Copyright (c) 2013 Jürgen Riegel <FreeCAD@juergen-riegel.net> *
|
|
* *
|
|
* This file is part of the FreeCAD CAx development system. *
|
|
* *
|
|
* This library is free software; you can redistribute it and/or *
|
|
* modify it under the terms of the GNU Library General Public *
|
|
* License as published by the Free Software Foundation; either *
|
|
* version 2 of the License, or (at your option) any later version. *
|
|
* *
|
|
* This library 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 Library General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Library General Public *
|
|
* License along with this library; see the file COPYING.LIB. If not, *
|
|
* write to the Free Software Foundation, Inc., 59 Temple Place, *
|
|
* Suite 330, Boston, MA 02111-1307, USA *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef FEM_ViewProviderAnalysis_H
|
|
#define FEM_ViewProviderAnalysis_H
|
|
|
|
#include <Gui/ViewProviderDocumentObjectGroup.h>
|
|
#include <Gui/ViewProviderPythonFeature.h>
|
|
#include <Mod/Fem/FemGlobal.h>
|
|
#include <QCoreApplication>
|
|
|
|
namespace FemGui
|
|
{
|
|
|
|
class ViewProviderFemAnalysis;
|
|
class ViewProviderFemHighlighter
|
|
{
|
|
public:
|
|
/// Constructor
|
|
ViewProviderFemHighlighter();
|
|
~ViewProviderFemHighlighter();
|
|
|
|
void attach(ViewProviderFemAnalysis*);
|
|
void highlightView(Gui::ViewProviderDocumentObject*);
|
|
|
|
private:
|
|
SoSeparator* annotate;
|
|
};
|
|
|
|
class FemGuiExport ViewProviderFemAnalysis : public Gui::ViewProviderDocumentObjectGroup
|
|
{
|
|
Q_DECLARE_TR_FUNCTIONS(FemGui::ViewProviderFemAnalysis)
|
|
PROPERTY_HEADER_WITH_OVERRIDE(FemGui::ViewProviderAnalysis);
|
|
|
|
public:
|
|
/// constructor
|
|
ViewProviderFemAnalysis();
|
|
|
|
/// destructor
|
|
~ViewProviderFemAnalysis() override;
|
|
|
|
void attach(App::DocumentObject*) override;
|
|
bool doubleClicked() override;
|
|
|
|
std::vector<App::DocumentObject*> claimChildren()const override;
|
|
|
|
/// handling when object is deleted
|
|
bool onDelete(const std::vector<std::string>&) override;
|
|
/// warning on deletion when there are children
|
|
static bool checkSelectedChildren(const std::vector<App::DocumentObject*> objs,
|
|
Gui::Document* docGui, std::string objectName);
|
|
/// asks the view provider if the given object can be deleted
|
|
bool canDelete(App::DocumentObject* obj) const override;
|
|
|
|
void setupContextMenu(QMenu*, QObject*, const char*) override;
|
|
|
|
/// list of all possible display modes
|
|
std::vector<std::string> getDisplayModes() const override;
|
|
/// shows solid in the tree
|
|
bool isShow() const override {
|
|
return Visibility.getValue();
|
|
}
|
|
/// Hide the object in the view
|
|
void hide() override;
|
|
/// Show the object in the view
|
|
void show() override;
|
|
|
|
void highlightView(Gui::ViewProviderDocumentObject*);
|
|
|
|
/** @name Drag and drop */
|
|
//@{
|
|
/// Returns true if the view provider generally supports dragging objects
|
|
bool canDragObjects() const override;
|
|
/// Check whether the object can be removed from the view provider by drag and drop
|
|
bool canDragObject(App::DocumentObject*) const override;
|
|
/// Starts to drag the object
|
|
void dragObject(App::DocumentObject*) override;
|
|
/// Returns true if the view provider generally accepts dropping of objects
|
|
bool canDropObjects() const override;
|
|
/// Check whether the object can be dropped to the view provider by drag and drop
|
|
bool canDropObject(App::DocumentObject*) const override;
|
|
/// If the dropped object type is accepted the object will be added as child
|
|
void dropObject(App::DocumentObject*) override;
|
|
//@}
|
|
|
|
protected:
|
|
bool setEdit(int ModNum) override;
|
|
void unsetEdit(int ModNum) override;
|
|
|
|
private:
|
|
ViewProviderFemHighlighter extension;
|
|
};
|
|
|
|
using ViewProviderFemAnalysisPython = Gui::ViewProviderPythonFeatureT<ViewProviderFemAnalysis>;
|
|
|
|
} //namespace FemGui
|
|
|
|
|
|
#endif // FEM_ViewProviderAnalysis_H
|