Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenWalnut
OpenWalnut Core
Commits
e9828d66
Commit
e9828d66
authored
Feb 10, 2011
by
Sebastian Eichelbaum
Browse files
[MERGE]
parents
67ebf72e
72ea8ff8
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
319 additions
and
87 deletions
+319
-87
src/modules/clusterDisplayVoxels/WMClusterDisplayVoxels.cpp
src/modules/clusterDisplayVoxels/WMClusterDisplayVoxels.cpp
+278
-81
src/modules/clusterDisplayVoxels/WMClusterDisplayVoxels.h
src/modules/clusterDisplayVoxels/WMClusterDisplayVoxels.h
+41
-6
No files found.
src/modules/clusterDisplayVoxels/WMClusterDisplayVoxels.cpp
View file @
e9828d66
This diff is collapsed.
Click to expand it.
src/modules/clusterDisplayVoxels/WMClusterDisplayVoxels.h
View file @
e9828d66
...
...
@@ -186,6 +186,17 @@ private:
*/
void
dendrogramClick
(
WPickInfo
pickInfo
);
/**
* update the output connector on demand, for performance reasons this is not done every time
* a change to the cluster selection is applied
*/
void
updateOutDataset
();
/**
* helper function to set the label on the in scene buttons depending on which labeling scheme is selected
*/
void
setButtonLabels
();
/**
* An input connector that accepts order 1 datasets.
...
...
@@ -316,12 +327,6 @@ private:
*/
WPropGroup
m_groupTriangulation
;
/**
* grouping the properties controlling cluster selection for minimum branch length
*/
WPropGroup
m_groupMinBranchLength
;
/**
* controls the display of the dendrogram overlay
*/
...
...
@@ -394,6 +399,36 @@ private:
WPropInt
m_infoMaxLevel
;
//!< info property
std
::
vector
<
std
::
vector
<
size_t
>
>
m_loadedPartitions
;
//!< set partitions loaded from file
/**
* updates the output connector on demand, as we don't want to do this every paint command
*/
WPropTrigger
m_buttonUpdateOutput
;
/**
* A list of cluster selection methods
*/
boost
::
shared_ptr
<
WItemSelection
>
m_clusterSelectionsList
;
/**
* Selection property for clusters
*/
WPropSelection
m_clusterSelection
;
/**
* triggers the cluster selection update
*/
WPropTrigger
m_buttonExecuteSelection
;
/**
* A list of button labels
*/
boost
::
shared_ptr
<
WItemSelection
>
m_buttonLabelList
;
/**
* Selection property for button labels
*/
WPropSelection
m_buttonLabelSelection
;
};
#endif // WMCLUSTERDISPLAYVOXELS_H
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