大重构
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user