1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
#include "./clearspinbox.h"
#include <QHBoxLayout>
#include <QStyle>
#include <QStyleOptionSpinBox>
namespace QtUtilities {
/*!
* \class ClearSpinBox
* \brief A QSpinBox with an embedded button for clearing its contents and the
* ability to hide
* the minimum value.
*/
/*!
* \brief Constructs a clear spin box.
*/
ClearSpinBox::ClearSpinBox(QWidget *parent)
: QSpinBox(parent)
, ButtonOverlay(this, lineEdit())
, m_minimumHidden(false)
{
ButtonOverlay::setClearButtonEnabled(true);
}
/*!
* \brief Destroys the clear spin box.
*/
ClearSpinBox::~ClearSpinBox()
{
}
/*!
* \brief Updates the visibility of the clear button.
*/
void ClearSpinBox::handleValueChanged(int value)
{
updateClearButtonVisibility(value != minimum());
}
void ClearSpinBox::handleClearButtonClicked()
{
setValue(minimum());
}
void ClearSpinBox::handleCustomLayoutCreated()
{
const QStyle *const s = style();
QStyleOptionSpinBox opt;
opt.initFrom(this);
setContentsMarginsFromEditFieldRectAndFrameWidth(
s->subControlRect(QStyle::CC_SpinBox, &opt, QStyle::SC_SpinBoxEditField, this), s->pixelMetric(QStyle::PM_SpinBoxFrameWidth, &opt, this));
connect(this, static_cast<void (ClearSpinBox::*)(int)>(&ClearSpinBox::valueChanged), this, &ClearSpinBox::handleValueChanged);
}
bool ClearSpinBox::isCleared() const
{
return value() == minimum();
}
int ClearSpinBox::valueFromText(const QString &text) const
{
if (m_minimumHidden && text.isEmpty()) {
return minimum();
} else {
return QSpinBox::valueFromText(text);
}
}
QString ClearSpinBox::textFromValue(int val) const
{
if (m_minimumHidden && (val == minimum())) {
return QString();
} else {
return QSpinBox::textFromValue(val);
}
}
} // namespace QtUtilities
|