Isis 3 Programmer Reference
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
void Write(const QString &string)
Add more information to the log widget.
Definition: GuiLog.cpp:32
GuiLog(QWidget *parent=0)
Constructor.
Definition: GuiLog.cpp:11
void Save()
Save the contents of the log widget to a file.
Definition: GuiLog.cpp:44
void Clear()
Clear the contents of the log widget.
Definition: GuiLog.cpp:37
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
~GuiLog()
Destructor.
Definition: GuiLog.cpp:28