mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 15:47:10 -04:00
19c46774b4
There's not much to show for this so far but some of the necessary infrastructure is in place.
27 lines
941 B
C++
27 lines
941 B
C++
#include "FrequencyDeltaDelegate.hpp"
|
|
|
|
#include "widgets/FrequencyDeltaLineEdit.hpp"
|
|
|
|
FrequencyDeltaDelegate::FrequencyDeltaDelegate (QObject * parent)
|
|
: QStyledItemDelegate {parent}
|
|
{
|
|
}
|
|
|
|
QWidget * FrequencyDeltaDelegate::createEditor (QWidget * parent, QStyleOptionViewItem const&
|
|
, QModelIndex const&) const
|
|
{
|
|
auto * editor = new FrequencyDeltaLineEdit {parent};
|
|
editor->setFrame (false);
|
|
return editor;
|
|
}
|
|
|
|
void FrequencyDeltaDelegate::setEditorData (QWidget * editor, QModelIndex const& index) const
|
|
{
|
|
static_cast<FrequencyDeltaLineEdit *> (editor)->frequency_delta (index.model ()->data (index, Qt::EditRole).value<Radio::FrequencyDelta> ());
|
|
}
|
|
|
|
void FrequencyDeltaDelegate::setModelData (QWidget * editor, QAbstractItemModel * model, QModelIndex const& index) const
|
|
{
|
|
model->setData (index, static_cast<FrequencyDeltaLineEdit *> (editor)->frequency_delta (), Qt::EditRole);
|
|
}
|