Files
create/src/Mod/Fem/Gui/ViewProviderAnalysis.h
wmayer 1e1fc10748 + Code cleanup:
+ do not include header of itself
+ do not include unneeded header files
+ removed unneeded forward declarations
+ do not translate C string to get a QString
+ break too long lines
+ replace tabs with spaces
+ use virtual keyword on destructors
2015-11-13 15:47:03 +01:00

86 lines
3.5 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/ViewProviderDocumentObject.h>
#include <Gui/ViewProviderPythonFeature.h>
#include <QCoreApplication>
namespace FemGui
{
class FemGuiExport ViewProviderFemAnalysis : public Gui::ViewProviderDocumentObject
{
Q_DECLARE_TR_FUNCTIONS(FemGui::ViewProviderFemAnalysis)
PROPERTY_HEADER(FemGui::ViewProviderAnalysis);
public:
/// constructor.
ViewProviderFemAnalysis();
/// destructor.
virtual ~ViewProviderFemAnalysis();
virtual bool doubleClicked(void);
virtual std::vector<App::DocumentObject*> claimChildren(void)const;
//virtual std::vector<App::DocumentObject*> claimChildren3D(void)const;
void setupContextMenu(QMenu*, QObject*, const char*);
virtual bool onDelete(const std::vector<std::string> &);
// shows solid in the tree
virtual bool isShow(void) const{return true;}
/** @name Drag and drop */
//@{
/// Returns true if the view provider generally supports dragging objects
bool canDragObjects() const;
/// Check whether the object can be removed from the view provider by drag and drop
bool canDragObject(App::DocumentObject*) const;
/// Starts to drag the object
void dragObject(App::DocumentObject*);
/// Returns true if the view provider generally accepts dropping of objects
bool canDropObjects() const;
/// Check whether the object can be dropped to the view provider by drag and drop
bool canDropObject(App::DocumentObject*) const;
/// If the dropped object type is accepted the object will be added as child
void dropObject(App::DocumentObject*);
//@}
protected:
virtual bool setEdit(int ModNum);
virtual void unsetEdit(int ModNum);
};
typedef Gui::ViewProviderPythonFeatureT<ViewProviderFemAnalysis> ViewProviderFemAnalysisPython;
} //namespace FemGui
#endif // FEM_ViewProviderAnalysis_H