Newer
Older
SurgeTankControl / devicelistform.h
[wangxitong] on 27 Jan 2022 556 bytes first commit
#ifndef DEVICELISTFORM_H
#define DEVICELISTFORM_H

#include <QWidget>

namespace Ui {
class DeviceListForm;
}

class DeviceListForm : public QWidget
{
    Q_OBJECT

public:
    explicit DeviceListForm(QString username="",QWidget *parent = nullptr);
    ~DeviceListForm();
    QString username;
public slots:
    void on_export_data_clicked();
    void check(QString);
    void submit();
    void on_search_clicked();

private:
    Ui::DeviceListForm *ui;

protected:
    bool eventFilter(QObject *watched, QEvent *event);
};

#endif // DEVICELISTFORM_H