29 lines
445 B
C++
29 lines
445 B
C++
#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();
|
|
|
|
private slots:
|
|
void on_pushButton_search_clicked();
|
|
void on_comboBox_channel_currentTextChanged(const QString&);
|
|
|
|
private:
|
|
Ui::CTrendGraph *ui;
|
|
|
|
QString m_strChannelID;
|
|
};
|
|
|
|
#endif // TRENDGRAPH_H
|