3500/TrendGraph.h

29 lines
445 B
C
Raw Normal View History

2023-04-14 19:30:30 +08:00
#ifndef TRENDGRAPH_H
#define TRENDGRAPH_H
#include <QWidget>
namespace Ui {
class CTrendGraph;
}
class CTrendGraph : public QWidget
{
Q_OBJECT
public:
explicit CTrendGraph(QWidget *parent = nullptr);
~CTrendGraph();
2023-04-27 19:48:15 +08:00
private slots:
void on_pushButton_search_clicked();
void on_comboBox_channel_currentTextChanged(const QString&);
2023-04-14 19:30:30 +08:00
private:
Ui::CTrendGraph *ui;
2023-04-27 19:48:15 +08:00
QString m_strChannelID;
2023-04-14 19:30:30 +08:00
};
#endif // TRENDGRAPH_H