mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-11-03 21:40:52 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			997 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			997 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "MaidenheadLocatorDelegate.hpp"
 | 
						|
 | 
						|
#include <QLineEdit>
 | 
						|
 | 
						|
#include "validators/MaidenheadLocatorValidator.hpp"
 | 
						|
 | 
						|
MaidenheadLocatorDelegate::MaidenheadLocatorDelegate (QObject * parent)
 | 
						|
  : QStyledItemDelegate {parent}
 | 
						|
  , validator_ {new MaidenheadLocatorValidator}
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
QWidget * MaidenheadLocatorDelegate::createEditor (QWidget * parent, QStyleOptionViewItem const&
 | 
						|
                                          , QModelIndex const&) const
 | 
						|
{
 | 
						|
  auto * editor = new QLineEdit {parent};
 | 
						|
  editor->setFrame (false);
 | 
						|
  editor->setValidator (validator_.data ());
 | 
						|
  return editor;
 | 
						|
}
 | 
						|
 | 
						|
void MaidenheadLocatorDelegate::setEditorData (QWidget * editor, QModelIndex const& index) const
 | 
						|
{
 | 
						|
  static_cast<QLineEdit *> (editor)->setText (index.model ()->data (index, Qt::EditRole).toString ());
 | 
						|
}
 | 
						|
 | 
						|
void MaidenheadLocatorDelegate::setModelData (QWidget * editor, QAbstractItemModel * model, QModelIndex const& index) const
 | 
						|
{
 | 
						|
  model->setData (index, static_cast<QLineEdit *> (editor)->text (), Qt::EditRole);
 | 
						|
}
 |