basicproperty.h 599 B

12345678910111213141516171819202122232425262728293031323334
  1. #ifndef BASICPROPERTY_H
  2. #define BASICPROPERTY_H
  3. #include <QMainWindow>
  4. #include <QLineEdit>
  5. namespace Ui {
  6. class BasicProperty;
  7. }
  8. class BasicProperty : public QMainWindow
  9. {
  10. Q_OBJECT
  11. public:
  12. explicit BasicProperty(QWidget *parent = nullptr);
  13. ~BasicProperty();
  14. void printTable();
  15. protected:
  16. void dragEnterEvent(QDragEnterEvent *event);
  17. void dropEvent(QDropEvent *event);
  18. private slots:
  19. void on_pushButton_chooseFile_clicked();
  20. void on_pushButton_addAnimation_clicked();
  21. private:
  22. Ui::BasicProperty *ui;
  23. QLineEdit *resource;
  24. };
  25. #endif // BASICPROPERTY_H