mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-04 02:41:19 +00:00
cfcfb17320
- move SizeHintWidget out to separate files - remove redundant logic in view.cpp - remove sizehint from dialogue subview - add tooltip hints in user preferences
23 lines
414 B
C++
23 lines
414 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 = 0);
|
|
~SizeHintWidget();
|
|
|
|
virtual QSize sizeHint() const;
|
|
void setSizeHint(const QSize &size);
|
|
};
|
|
}
|
|
|
|
#endif // CSV_DOC_SIZEHINT_H
|