#ifndef TRENDGRAPH_H #define TRENDGRAPH_H #include namespace Ui { class CTrendGraph; } class CTrendGraph : public QWidget { Q_OBJECT public: explicit CTrendGraph(QWidget *parent = nullptr); ~CTrendGraph(); private slots: void on_pushButton_search_clicked(); void on_comboBox_channel_currentTextChanged(const QString&); private: Ui::CTrendGraph *ui; QString m_strChannelID; }; #endif // TRENDGRAPH_H