mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-23 23:10:02 +02:00

* WIP * dacWidget * main WIP * advanced WIP * WIP * WIP * WIP * WIP * WIP * WIP * works * updated gui to chrono * review fixes * unitque ptrs in gui
37 lines
708 B
C++
Executable File
37 lines
708 B
C++
Executable File
#pragma once
|
|
|
|
#include "ui_form_tab_debugging.h"
|
|
|
|
#include "Detector.h"
|
|
|
|
class QTreeWidget;
|
|
class QTreeWidgetItem;
|
|
|
|
class qTabDebugging:public QWidget, private Ui::TabDebuggingObject{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
qTabDebugging(QWidget *parent, sls::Detector* detector);
|
|
~qTabDebugging();
|
|
void Refresh();
|
|
|
|
private slots:
|
|
void GetDetectorStatus();
|
|
void GetInfo();
|
|
void SetParameters(QTreeWidgetItem *item);
|
|
void TestDetector();
|
|
|
|
private:
|
|
void SetupWidgetWindow();
|
|
void Initialization();
|
|
void PopulateDetectors();
|
|
|
|
sls::Detector *det;
|
|
/** Tree Widget displaying the detectors, modules */
|
|
QTreeWidget *treeDet;
|
|
QLabel *lblDetectorHostname;
|
|
QLabel *lblDetectorFirmware;
|
|
QLabel *lblDetectorSoftware;
|
|
};
|
|
|