mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-22 03:40:04 +02:00
29 lines
397 B
C++
Executable File
29 lines
397 B
C++
Executable File
#pragma once
|
|
|
|
#include "qDebugStream.h"
|
|
|
|
class QTextEdit;
|
|
class QPushButton;
|
|
|
|
class qTabMessages:public QWidget{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
qTabMessages(QWidget* parent);
|
|
~qTabMessages();
|
|
|
|
private slots:
|
|
void customEvent(QEvent *e);
|
|
void SaveLog();
|
|
void ClearLog();
|
|
|
|
private:
|
|
void SetupWidgetWindow();
|
|
void Initialization();
|
|
|
|
QTextEdit *dispLog;
|
|
QPushButton *btnSave;
|
|
QPushButton *btnClear;
|
|
};
|
|
|