RISC-V/V203/usb/scope/software/mainwindow.h

39 lines
867 B
C
Raw Normal View History

2024-10-21 10:26:41 +02:00
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include "datasource.h"
class Ui_MainWindow;
class MainWindow : public QMainWindow {
Q_OBJECT
public:
MainWindow (QWidget *parent = 0);
~MainWindow ();
protected:
public slots:
2024-11-08 20:56:19 +01:00
void SendVoltageA (int n);
void SendVoltageB (int n);
2024-10-21 10:26:41 +02:00
void SendTrigerMode (int n);
void SendTrigerEdge (int n);
void SendTrigerChan (int n);
void TriggerValues (int n);
void TimeBaseRange (int n);
void ExportImage (bool);
2024-11-10 15:39:03 +01:00
void MarkerChangedA (bool);
void MarkerChangedB (bool);
void MarkerChangedC (bool);
2024-10-21 10:26:41 +02:00
void SaveSettings (bool);
void RestSettings (bool);
void PaketTriggered ();
void Started ();
2024-10-26 12:22:17 +02:00
void SetSelections (AllSettings);
2024-10-21 10:26:41 +02:00
private:
Ui_MainWindow * ui;
DataSource firmware;
};
#endif // MAINWINDOW_H