You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
405 B
27 lines
405 B
#ifndef MYDEVICE_H
|
|
#define MYDEVICE_H
|
|
|
|
#include <QWidget>
|
|
#include "flyme/flyme.h"
|
|
|
|
namespace Ui {
|
|
class mydevice;
|
|
}
|
|
class FloatingButton;
|
|
class mydevice : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit mydevice(QWidget *parent = nullptr);
|
|
~mydevice();
|
|
|
|
private:
|
|
Ui::mydevice *ui;
|
|
FloatingButton *floatingbutton;
|
|
/*悬浮球 */
|
|
void onButtonPressed();
|
|
};
|
|
|
|
#endif // MYDEVICE_H
|