Isis 3.0 Programmer Reference
Back
|
Home
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
GuiLog.h
1
2
#ifndef Isis_GuiLog_h
3
#define Isis_GuiLog_h
4
5
#include <QTextEdit>
6
7
namespace
Isis {
13
class
GuiLog
:
public
QWidget
{
14
15
Q_OBJECT
16
17
public
:
18
19
GuiLog
(
QWidget
*parent = 0);
20
~GuiLog
();
21
22
void
Write
(
const
QString &
string
);
23
24
public
slots:
25
void
Clear
();
26
void
Save
();
27
28
private
:
29
QTextEdit *p_textEdit;
30
};
31
};
32
33
34
35
#endif
Isis::GuiLog::Write
void Write(const QString &string)
Add more information to the log widget.
Definition:
GuiLog.cpp:32
Isis::GuiLog
Definition:
GuiLog.h:13
Isis::GuiLog::GuiLog
GuiLog(QWidget *parent=0)
Constructor.
Definition:
GuiLog.cpp:11
Isis::GuiLog::Save
void Save()
Save the contents of the log widget to a file.
Definition:
GuiLog.cpp:44
Isis::GuiLog::Clear
void Clear()
Clear the contents of the log widget.
Definition:
GuiLog.cpp:37
Isis::GuiLog::~GuiLog
~GuiLog()
Destructor.
Definition:
GuiLog.cpp:28
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:14