Biomedical Image Analysis Library
The Biomedical Image Analysis Library is a poweful tool for developers, physicians, researchers, engineers, and so on.
Main Page
Modules
Namespaces
Classes
Files
File List
File Members
tool.cpp
Go to the documentation of this file.
1
#include "
tool.h
"
2
3
bool
Tool::hasLabel
( )
const
{
4
return
(
m_hasLabel
);
5
}
6
7
void
Tool::setHasLabel
(
bool
sHasLabel ) {
8
m_hasLabel
= sHasLabel;
9
}
10
11
Tool::Tool
(
GuiImage
*
guiImage
,
ImageViewer
*
viewer
) : QObject( guiImage ), guiImage( guiImage ), viewer( viewer ) {
12
}
13
14
void
Tool::setVisible
(
bool
value ) {
15
m_visible
= value;
16
}
17
18
QPixmap
Tool::getLabel
(
size_t
axis ) {
19
Q_UNUSED( axis );
20
return
( QPixmap( ) );
21
}
22
23
bool
Tool::visible
( )
const
{
24
return
(
m_visible
);
25
}
Tool::guiImage
GuiImage * guiImage
Definition:
tool.h:13
Tool::viewer
ImageViewer * viewer
Definition:
tool.h:14
GuiImage
The GuiImage class is a bridge to the Bial::Image data structure to the QImage data structure...
Definition:
guiimage.h:20
Tool::setVisible
void setVisible(bool value)
Definition:
tool.cpp:14
Tool::getLabel
virtual QPixmap getLabel(size_t axis)
Definition:
tool.cpp:18
ImageViewer
Definition:
imageviewer.h:16
Tool::setHasLabel
void setHasLabel(bool sHasLabel)
Definition:
tool.cpp:7
Tool::Tool
Tool(GuiImage *guiImage, ImageViewer *viewer)
Definition:
tool.cpp:11
Tool::visible
bool visible() const
Definition:
tool.cpp:23
Tool::hasLabel
bool hasLabel() const
Definition:
tool.cpp:3
Tool::m_visible
bool m_visible
Definition:
tool.h:15
Tool::m_hasLabel
bool m_hasLabel
Definition:
tool.h:16
tool.h
BIAL-GUI
src
tool.cpp
Generated by
1.8.11