QtExamples/QtCustomDialogEx/ExDlgSize.h
2019-10-04 23:37:27 +08:00

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