Newer
Older
SurgeTankControl / realtimeform.h
[wangxitong] on 27 Jan 2022 484 bytes first commit
#ifndef REALTIMEFORM_H
#define REALTIMEFORM_H

#include <QWidget>

namespace Ui {
class RealTimeForm;
}

class RealTimeForm : public QWidget
{
    Q_OBJECT

public:
    explicit RealTimeForm(QString username="",QWidget *parent = nullptr);
    ~RealTimeForm();
    QString username;
public slots:
    void on_search_clicked();
    void check(QString);
private:
    Ui::RealTimeForm *ui;
protected:
    bool eventFilter(QObject *watched, QEvent *event);
};

#endif // REALTIMEFORM_H