You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
421 B
C++
23 lines
421 B
C++
#ifndef CSV_DOC_SIZEHINT_H
|
|
#define CSV_DOC_SIZEHINT_H
|
|
|
|
#include <QWidget>
|
|
#include <QSize>
|
|
|
|
namespace CSVDoc
|
|
{
|
|
class SizeHintWidget : public QWidget
|
|
{
|
|
QSize mSize;
|
|
|
|
public:
|
|
SizeHintWidget(QWidget *parent = nullptr);
|
|
~SizeHintWidget();
|
|
|
|
QSize sizeHint() const override;
|
|
void setSizeHint(const QSize &size);
|
|
};
|
|
}
|
|
|
|
#endif // CSV_DOC_SIZEHINT_H
|