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.
openmw/apps/opencs/view/doc/sizehint.hpp

23 lines
416 B
C++

#ifndef CSV_DOC_SIZEHINT_H
#define CSV_DOC_SIZEHINT_H
#include <QSize>
#include <QWidget>
namespace CSVDoc
{
class SizeHintWidget : public QWidget
{
QSize mSize;
public:
SizeHintWidget(QWidget* parent = nullptr);
~SizeHintWidget() override = default;
QSize sizeHint() const override;
void setSizeHint(const QSize& size);
};
}
#endif // CSV_DOC_SIZEHINT_H