Isis 3.0 Programmer Reference
Back
|
Home
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
ProgressBar.h
1
#ifndef ProgressBar_h
2
#define ProgressBar_h
3
4
#include <QProgressBar>
5
6
namespace
Isis {
15
class
ProgressBar
:
public
QProgressBar
{
16
Q_OBJECT
17
18
public
:
19
ProgressBar
(
QWidget
*parent = 0);
20
ProgressBar
(QString textDescription,
QWidget
*parent = 0);
21
~ProgressBar
();
22
23
void
setText
(QString
text
);
24
virtual
QString
text
()
const
;
25
26
private
:
27
QString m_customText;
28
29
};
30
}
31
32
#endif
QProgressBar
Isis::ProgressBar::text
virtual QString text() const
This applies the custom text.
Definition:
ProgressBar.cpp:39
Isis::ProgressBar::~ProgressBar
~ProgressBar()
Free the allocated memory by this object.
Definition:
ProgressBar.cpp:23
Isis::ProgressBar::setText
void setText(QString text)
Set custom text for this progress bar.
Definition:
ProgressBar.cpp:31
Isis::ProgressBar
QProgressBar with customizable text.
Definition:
ProgressBar.h:15
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:26:41