Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenFlipper-Free
Plugin-PropertyVis
Commits
72f61323
Commit
72f61323
authored
Dec 20, 2018
by
Jan Möbius
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Extra dir for Models
parent
6c8a7af8
Changes
21
Hide whitespace changes
Inline
Side-by-side
Showing
21 changed files
with
18 additions
and
13 deletions
+18
-13
CMakeLists.txt
CMakeLists.txt
+1
-1
Models/MultiObjectPropertyModel.cc
Models/MultiObjectPropertyModel.cc
+2
-0
Models/MultiObjectPropertyModel.hh
Models/MultiObjectPropertyModel.hh
+2
-1
Models/ObjectListItemModel.cc
Models/ObjectListItemModel.cc
+1
-0
Models/ObjectListItemModel.hh
Models/ObjectListItemModel.hh
+2
-1
Models/PropertyModel.cc
Models/PropertyModel.cc
+0
-0
Models/PropertyModel.hh
Models/PropertyModel.hh
+0
-0
Models/PropertyModelFactory.cc
Models/PropertyModelFactory.cc
+0
-0
Models/PropertyModelFactory.hh
Models/PropertyModelFactory.hh
+0
-0
Models/PropertyNameListModel.cc
Models/PropertyNameListModel.cc
+0
-0
Models/PropertyNameListModel.hh
Models/PropertyNameListModel.hh
+0
-0
Models/SingleObjectPropertyModel.cc
Models/SingleObjectPropertyModel.cc
+0
-0
Models/SingleObjectPropertyModel.hh
Models/SingleObjectPropertyModel.hh
+2
-2
OpenMesh/OMPropertyModel.hh
OpenMesh/OMPropertyModel.hh
+1
-1
OpenMesh/OMPropertyVisualizer.hh
OpenMesh/OMPropertyVisualizer.hh
+1
-1
OpenVolumeMesh/OVMPropertyModelSubclass.hh
OpenVolumeMesh/OVMPropertyModelSubclass.hh
+1
-1
OpenVolumeMesh/OVMPropertyVisualizer.hh
OpenVolumeMesh/OVMPropertyVisualizer.hh
+1
-1
PropertyVisPlugin.cc
PropertyVisPlugin.cc
+2
-2
PropertyVisPlugin.hh
PropertyVisPlugin.hh
+2
-2
PropertyVisualizer/PropertyVisualizer.cc
PropertyVisualizer/PropertyVisualizer.cc
+0
-0
PropertyVisualizer/PropertyVisualizer.hh
PropertyVisualizer/PropertyVisualizer.hh
+0
-0
No files found.
CMakeLists.txt
View file @
72f61323
...
...
@@ -8,7 +8,7 @@ if(APPLE)
endif
()
openflipper_plugin
(
INSTALLDATA Icons
DIRS OpenMesh OpenVolumeMesh Widgets ScriptObjects Toolbars
DIRS OpenMesh OpenVolumeMesh Widgets ScriptObjects Toolbars
Models PropertyVisualizer
DEPS OpenMesh
OPTDEPS OpenVolumeMesh
OPT_TYPES SKELETON BSPLINECURVE POLYHEDRALMESH HEXAHEDRALMESH TETRAHEDRALMESH
...
...
MultiObjectPropertyModel.cc
→
Models/
MultiObjectPropertyModel.cc
View file @
72f61323
...
...
@@ -56,6 +56,8 @@
#include "OpenVolumeMesh/OVMPropertyModelT.hh"
#endif
#include "OpenFlipper/common/DataTypes.hh"
MultiObjectPropertyModel
::
MultiObjectPropertyModel
(
const
QStringList
&
res
,
QObject
*
parent
)
:
PropertyModel
(
parent
),
restriction
(
res
),
datatypes
(
supportedDataTypes
()),
widget
(
0
)
{
...
...
MultiObjectPropertyModel.hh
→
Models/
MultiObjectPropertyModel.hh
View file @
72f61323
...
...
@@ -51,9 +51,10 @@
#define MULTI_OBJECT_PROPERTY_MODEL_H
#include "PropertyModel.hh"
#include "OpenFlipper/common/DataTypes.hh"
class
PropertyVisualizer
;
class
DataType
;
class
MultiObjectPropertyModel
:
public
PropertyModel
{
...
...
ObjectListItemModel.cc
→
Models/
ObjectListItemModel.cc
View file @
72f61323
...
...
@@ -50,6 +50,7 @@
#include "ObjectListItemModel.hh"
#include <OpenFlipper/BasePlugin/PluginFunctions.hh>
#include <OpenFlipper/common/DataTypes.hh>
ObjectListItemModel
::
ObjectListItemModel
()
{
}
...
...
ObjectListItemModel.hh
→
Models/
ObjectListItemModel.hh
View file @
72f61323
...
...
@@ -51,7 +51,8 @@
#define OBJECTLISTITEMMODEL_HH_
#include <QAbstractItemModel>
#include <OpenFlipper/common/DataTypes.hh>
class
DataType
;
class
ObjectListItemModel
:
public
QAbstractListModel
{
public:
...
...
PropertyModel.cc
→
Models/
PropertyModel.cc
View file @
72f61323
File moved
PropertyModel.hh
→
Models/
PropertyModel.hh
View file @
72f61323
File moved
PropertyModelFactory.cc
→
Models/
PropertyModelFactory.cc
View file @
72f61323
File moved
PropertyModelFactory.hh
→
Models/
PropertyModelFactory.hh
View file @
72f61323
File moved
PropertyNameListModel.cc
→
Models/
PropertyNameListModel.cc
View file @
72f61323
File moved
PropertyNameListModel.hh
→
Models/
PropertyNameListModel.hh
View file @
72f61323
File moved
SingleObjectPropertyModel.cc
→
Models/
SingleObjectPropertyModel.cc
View file @
72f61323
File moved
SingleObjectPropertyModel.hh
→
Models/
SingleObjectPropertyModel.hh
View file @
72f61323
...
...
@@ -50,8 +50,8 @@
#ifndef SINGLE_OBJECT_PROPERTY_MODEL_H
#define SINGLE_OBJECT_PROPERTY_MODEL_H
#include "PropertyModel.hh"
#include "PropertyVisualizer.hh"
#include "
Models/
PropertyModel.hh"
#include "PropertyVisualizer
/PropertyVisualizer
.hh"
#include <OpenFlipper/BasePlugin/BaseInterface.hh>
#include <OpenFlipper/BasePlugin/PickingInterface.hh>
...
...
OpenMesh/OMPropertyModel.hh
View file @
72f61323
...
...
@@ -50,7 +50,7 @@
#ifndef OM_PROPERTY_MODEL_H
#define OM_PROPERTY_MODEL_H
#include "SingleObjectPropertyModel.hh"
#include "
Models/
SingleObjectPropertyModel.hh"
#include "OMPropertyVisualizer.hh"
#include "Widgets/LoadSaveWidget.hh"
...
...
OpenMesh/OMPropertyVisualizer.hh
View file @
72f61323
...
...
@@ -50,7 +50,7 @@
#ifndef OM_PROPERTY_VISUALIZER_HH
#define OM_PROPERTY_VISUALIZER_HH
#include "
..
/PropertyVisualizer.hh"
#include "
PropertyVisualizer
/PropertyVisualizer.hh"
#include <ObjectTypes/TriangleMesh/TriangleMesh.hh>
#include <ObjectTypes/PolyMesh/PolyMesh.hh>
...
...
OpenVolumeMesh/OVMPropertyModelSubclass.hh
View file @
72f61323
...
...
@@ -50,7 +50,7 @@
#pragma once
#include "SingleObjectPropertyModel.hh"
#include "
Models/
SingleObjectPropertyModel.hh"
/* This class adds signal/slot support for OVMPropertyModelSubclass. This needs
...
...
OpenVolumeMesh/OVMPropertyVisualizer.hh
View file @
72f61323
...
...
@@ -51,7 +51,7 @@
#ifndef OVM_PROPERTY_VISUALIZER_HH
#define OVM_PROPERTY_VISUALIZER_HH
#include "
..
/PropertyVisualizer.hh"
#include "
PropertyVisualizer
/PropertyVisualizer.hh"
#include <ObjectTypes/VolumeMeshObject/VolumeMeshObject.hh>
...
...
PropertyVisPlugin.cc
View file @
72f61323
...
...
@@ -57,8 +57,8 @@
#include "PropertyVisPlugin.hh"
#include "PropertyModelFactory.hh"
#include "SingleObjectPropertyModel.hh"
#include "
Models/
PropertyModelFactory.hh"
#include "
Models/
SingleObjectPropertyModel.hh"
#ifdef ENABLE_POLYHEDRALMESH_SUPPORT
#include <ObjectTypes/PolyhedralMesh/PolyhedralMesh.hh>
...
...
PropertyVisPlugin.hh
View file @
72f61323
...
...
@@ -78,9 +78,9 @@
#include <OpenFlipper/BasePlugin/LoggingInterface.hh>
#include "Toolbars/PropertyVisToolbar.hh"
#include "ObjectListItemModel.hh"
#include "
Models/
ObjectListItemModel.hh"
#include "PropertyModel.hh"
#include "
Models/
PropertyModel.hh"
//== CLASS DEFINITION =========================================================
...
...
PropertyVisualizer.cc
→
PropertyVisualizer/
PropertyVisualizer.cc
View file @
72f61323
File moved
PropertyVisualizer.hh
→
PropertyVisualizer/
PropertyVisualizer.hh
View file @
72f61323
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment