大重构

This commit is contained in:
2026-07-28 17:55:29 +08:00
parent 317b49403d
commit f5f1bf9cc7
63 changed files with 179 additions and 2000 deletions
+5 -4
View File
@@ -1,6 +1,7 @@
#ifndef RadioWidget_H
#define RadioWidget_H
#include "../BaseWidget.h"
#include <memory>
class TextButton;
@@ -25,10 +26,10 @@ public:
QWidget* createAudioSpectrogramPlot();
QWidget* createTimePowerPlot();
QWidget* createWaterFallPlot();
YSG::Spectrum *mSpectrogramLine{};
YSG::Spectrum* mAudioSpectrogramPlot{};
YSG::Audio_Frequent *mTimePower{};
YSG::Waterfall *mWaterFall{};
std::shared_ptr<YSG::Spectrum> mSpectrogramLine{};
std::shared_ptr<YSG::Spectrum> mAudioSpectrogramPlot{};
std::shared_ptr<YSG::Audio_Frequent> mTimePower{};
std::shared_ptr<YSG::Waterfall> mWaterFall{};
protected:
void focusInEvent(QFocusEvent *event) override;
void keyPressEvent(QKeyEvent *event) override;