Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
BigDataViewer_Core_Extension
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
BioinformaticDataCompression
BigDataViewer_Core_Extension
Commits
8020eb38
Commit
8020eb38
authored
7 years ago
by
Tobias Pietzsch
Browse files
Options
Downloads
Patches
Plain Diff
javadoc
parent
4460d990
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/bdv/viewer/ViewerPanel.java
+17
-0
17 additions, 0 deletions
src/main/java/bdv/viewer/ViewerPanel.java
with
17 additions
and
0 deletions
src/main/java/bdv/viewer/ViewerPanel.java
+
17
−
0
View file @
8020eb38
...
...
@@ -642,6 +642,9 @@ public class ViewerPanel extends JPanel implements OverlayRenderer, TransformLis
setInterpolation
(
mode
);
}
/**
* Set the {@link Interpolation} mode.
*/
public
synchronized
void
setInterpolation
(
final
Interpolation
mode
)
{
final
Interpolation
interpolation
=
state
.
getInterpolation
();
...
...
@@ -797,11 +800,25 @@ public class ViewerPanel extends JPanel implements OverlayRenderer, TransformLis
display
.
repaint
();
}
/**
* Add a {@link InterpolationModeListener} to notify when the interpolation
* mode is changed. Listeners will be notified <em>before</em> calling
* {@link #requestRepaint()} so they have the chance to interfere.
*
* @param listener
* the interpolation mode listener to add.
*/
public
void
addInterpolationModeListener
(
final
InterpolationModeListener
listener
)
{
interpolationModeListeners
.
add
(
listener
);
}
/**
* Remove a {@link InterpolationModeListener}.
*
* @param listener
* the interpolation mode listener to remove.
*/
public
void
removeInterpolationModeListener
(
final
InterpolationModeListener
listener
)
{
interpolationModeListeners
.
remove
(
listener
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment