12345678910111213141516171819202122232425262728293031 |
- #ifndef ROOTFORM_H
- #define ROOTFORM_H
- #include <QWidget>
- namespace Ui {
- class RootForm;
- }
- class RootForm : public QWidget
- {
- Q_OBJECT
- public:
- explicit RootForm(QWidget *parent = nullptr);
- explicit RootForm(const QString& iniFilePath, QWidget *parent = nullptr);
- ~RootForm();
- public slots:
- void updateActions();
- private slots:
- void insertChild();
- bool insertColumn();
- void insertRow();
- bool removeColumn();
- void removeRow();
- private:
- Ui::RootForm *ui;
- };
- #endif // ROOTFORM_H
|