12345678910111213141516171819202122232425262728293031323334 |
- #ifndef BASICPROPERTY_H
- #define BASICPROPERTY_H
- #include <QMainWindow>
- #include <QLineEdit>
- namespace Ui {
- class BasicProperty;
- }
- class BasicProperty : public QMainWindow
- {
- Q_OBJECT
- public:
- explicit BasicProperty(QWidget *parent = nullptr);
- ~BasicProperty();
- void printTable();
- protected:
- void dragEnterEvent(QDragEnterEvent *event);
- void dropEvent(QDropEvent *event);
- private slots:
- void on_pushButton_chooseFile_clicked();
- void on_pushButton_addAnimation_clicked();
- private:
- Ui::BasicProperty *ui;
- QLineEdit *resource;
- };
- #endif // BASICPROPERTY_H
|