80 lines
1.8 KiB
C++
80 lines
1.8 KiB
C++
|
#include "x_spinboxdelegate.h"
|
||
|
/*
|
||
|
delegate.cpp
|
||
|
|
||
|
A delegate that allows the user to change integer values from the model
|
||
|
using a spin box widget.
|
||
|
*/
|
||
|
|
||
|
#include "x_spinboxdelegate.h"
|
||
|
|
||
|
#include <QSpinBox>
|
||
|
|
||
|
//! [0]
|
||
|
SpinBoxDelegate::SpinBoxDelegate(QObject *parent,int iFlag)
|
||
|
: QStyledItemDelegate(parent)
|
||
|
{
|
||
|
m_iFlag=iFlag;
|
||
|
}
|
||
|
//! [0]
|
||
|
|
||
|
//! [1]
|
||
|
QWidget *SpinBoxDelegate::createEditor(QWidget *parent,
|
||
|
const QStyleOptionViewItem &/* option */,
|
||
|
const QModelIndex & index ) const
|
||
|
{
|
||
|
if(index.column()==0)
|
||
|
{
|
||
|
QSpinBox *editor = new QSpinBox(parent);
|
||
|
editor->setFrame(false);
|
||
|
editor->setMinimum(0);
|
||
|
if(m_iFlag==0)
|
||
|
editor->setMaximum(255);//亮度最大值
|
||
|
else if(m_iFlag==1)
|
||
|
editor->setMaximum(15);//音量最大值
|
||
|
editor->setAlignment(Qt::AlignHCenter);
|
||
|
return editor;
|
||
|
|
||
|
}
|
||
|
return nullptr;
|
||
|
}
|
||
|
//! [1]
|
||
|
//void SpinBoxDelegate::setMinMaxData(int min,int max)
|
||
|
//{
|
||
|
|
||
|
// m_editor->setMinimum(min);
|
||
|
// m_editor->setMaximum(max);
|
||
|
|
||
|
|
||
|
//}
|
||
|
//! [2]
|
||
|
void SpinBoxDelegate::setEditorData(QWidget *editor,
|
||
|
const QModelIndex &index) const
|
||
|
{
|
||
|
int value = index.model()->data(index, Qt::EditRole).toInt();
|
||
|
|
||
|
QSpinBox *spinBox = static_cast<QSpinBox*>(editor);
|
||
|
spinBox->setValue(value);
|
||
|
}
|
||
|
//! [2]
|
||
|
|
||
|
//! [3]
|
||
|
void SpinBoxDelegate::setModelData(QWidget *editor, QAbstractItemModel *model,
|
||
|
const QModelIndex &index) const
|
||
|
{
|
||
|
QSpinBox *spinBox = static_cast<QSpinBox*>(editor);
|
||
|
spinBox->interpretText();
|
||
|
int value = spinBox->value();
|
||
|
|
||
|
model->setData(index, value, Qt::EditRole);
|
||
|
}
|
||
|
//! [3]
|
||
|
|
||
|
//! [4]
|
||
|
void SpinBoxDelegate::updateEditorGeometry(QWidget *editor,
|
||
|
const QStyleOptionViewItem &option, const QModelIndex &/* index */) const
|
||
|
{
|
||
|
editor->setGeometry(option.rect);
|
||
|
}
|
||
|
//! [4]
|