[Tools] add PrefQuantitySpinBox to designer plugins/widget/FreeCAD_widgets.vcxproj

as discussed here: https://forum.freecadweb.org/viewtopic.php?f=10&t=49315&p=422648#p422648
This commit is contained in:
donovaly
2020-08-08 14:48:59 +02:00
committed by wwmayer
parent 278219b7cd
commit 8db4149c88
3 changed files with 111 additions and 8 deletions

View File

@@ -658,6 +658,37 @@ void PrefUnitSpinBox::setParamGrpPath ( const QByteArray& name )
// --------------------------------------------------------------------
PrefQuantitySpinBox::PrefQuantitySpinBox(QWidget* parent)
: QuantitySpinBox(parent)
{
}
PrefQuantitySpinBox::~PrefQuantitySpinBox()
{
}
QByteArray PrefQuantitySpinBox::entryName() const
{
return m_sPrefName;
}
QByteArray PrefQuantitySpinBox::paramGrpPath() const
{
return m_sPrefGrp;
}
void PrefQuantitySpinBox::setEntryName(const QByteArray& name)
{
m_sPrefName = name;
}
void PrefQuantitySpinBox::setParamGrpPath(const QByteArray& name)
{
m_sPrefGrp = name;
}
// --------------------------------------------------------------------
CommandIconView::CommandIconView ( QWidget * parent )
: QListWidget(parent)
{