2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
#ifndef MAINWINDOW_H
|
|
|
|
#define MAINWINDOW_H
|
|
|
|
|
|
|
|
#include "ui_mainwindow.h"
|
|
|
|
|
2012-11-22 12:40:51 +00:00
|
|
|
#include <QMainWindow>
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
class MainWindow : public QMainWindow, private Ui::MainWindow
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2018-11-23 18:45:56 +00:00
|
|
|
MainWindow(QWidget *parent = nullptr);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
void updateActions();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void insertChild();
|
2015-07-31 11:53:29 +00:00
|
|
|
bool insertColumn();
|
2011-04-27 10:05:43 +00:00
|
|
|
void insertRow();
|
2015-07-31 11:53:29 +00:00
|
|
|
bool removeColumn();
|
2011-04-27 10:05:43 +00:00
|
|
|
void removeRow();
|
|
|
|
};
|
|
|
|
|
2012-11-22 12:40:51 +00:00
|
|
|
#endif // MAINWINDOW_H
|