27 lines
366 B
C
27 lines
366 B
C
|
#ifndef EXDLGSIZE_H
|
||
|
#define EXDLGSIZE_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class ExDlgSize;
|
||
|
}
|
||
|
|
||
|
class ExDlgSize : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit ExDlgSize(QWidget *parent = nullptr);
|
||
|
~ExDlgSize();
|
||
|
|
||
|
int getRowCount();
|
||
|
int getColCount();
|
||
|
void setRowCol(int row, int col);
|
||
|
|
||
|
private:
|
||
|
Ui::ExDlgSize *ui;
|
||
|
};
|
||
|
|
||
|
#endif // EXDLGSIZE_H
|