Isis 3.0 Programmer Reference
Back
|
Home
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
HistogramPlotWindow.h
1
#ifndef HistogramPlotWindow_h
2
#define HistogramPlotWindow_h
3
4
#include "
PlotWindow.h
"
5
6
class
QDockWidget;
7
8
namespace
Isis {
9
class
HistogramItem;
10
16
class
HistogramPlotWindow
:
public
PlotWindow
{
17
Q_OBJECT
18
19
public
:
20
HistogramPlotWindow
(QString title,
QWidget
*parent);
21
using
PlotWindow::add
;
22
void
add
(
HistogramItem
*);
23
24
// void setViewport(CubeViewport *cvp);
25
int
getNumItems() {
26
return
p_histItems.size();
27
}
28
29
HistogramItem
*getHistItem(
int
index) {
30
return
p_histItems[index];
31
}
32
33
QDockWidget *getDockWidget() {
34
return
p_dock;
35
}
36
37
public
slots:
38
39
40
private
:
41
// CubeViewport *p_cvp; //!< The current viewport
42
QList<HistogramItem *>
p_histItems;
43
QDockWidget *p_dock;
44
};
45
};
46
47
#endif
Isis::HistogramPlotWindow::HistogramPlotWindow
HistogramPlotWindow(QString title, QWidget *parent)
Constructor, creates a new HistogramPlotWindow.
Definition:
HistogramPlotWindow.cpp:17
Isis::HistogramPlotWindow::add
void add(HistogramItem *)
Add a HistogramItem to the plot.
Definition:
HistogramPlotWindow.cpp:60
Isis::PlotWindow
Definition:
PlotWindow.h:86
PlotWindow.h
Isis::HistogramItem
This is the (qwt) plot item for a histogram.
Definition:
HistogramItem.h:24
QList
Definition:
BoxcarCachingAlgorithm.h:29
Isis::HistogramPlotWindow
Definition:
HistogramPlotWindow.h:16
Isis::PlotWindow::add
virtual void add(CubePlotCurve *pc)
This method adds the curves to the plot.
Definition:
PlotWindow.cpp:436
QWidget
U.S. Department of the Interior
|
U.S. Geological Survey
ISIS
|
Privacy & Disclaimers
|
Astrogeology Research Program
To contact us, please post comments and questions on the
ISIS Support Center
File Modified: 07/12/2023 23:19:41