Updates to optional horizontal scrollbar.
- move SizeHintWidget out to separate files - remove redundant logic in view.cpp - remove sizehint from dialogue subview - add tooltip hints in user preferencesc++11
parent
e9ca022162
commit
cfcfb17320
@ -0,0 +1,17 @@
|
|||||||
|
#include "sizehint.hpp"
|
||||||
|
|
||||||
|
CSVDoc::SizeHintWidget::SizeHintWidget(QWidget *parent) : QWidget(parent)
|
||||||
|
{}
|
||||||
|
|
||||||
|
CSVDoc::SizeHintWidget::~SizeHintWidget()
|
||||||
|
{}
|
||||||
|
|
||||||
|
QSize CSVDoc::SizeHintWidget::sizeHint() const
|
||||||
|
{
|
||||||
|
return mSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
void CSVDoc::SizeHintWidget::setSizeHint(const QSize &size)
|
||||||
|
{
|
||||||
|
mSize = size;
|
||||||
|
}
|
@ -0,0 +1,22 @@
|
|||||||
|
#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
|
Loading…
Reference in New Issue