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.
22 lines
627 B
C++
22 lines
627 B
C++
#ifndef FREQUENCY_DELEGATE_HPP_
|
|
#define FREQUENCY_DELEGATE_HPP_
|
|
|
|
#include <QStyledItemDelegate>
|
|
|
|
//
|
|
// Class FrequencyDelegate
|
|
//
|
|
// Item delegate for editing a frequency in Hertz but displayed in MHz
|
|
//
|
|
class FrequencyDelegate final
|
|
: public QStyledItemDelegate
|
|
{
|
|
public:
|
|
explicit FrequencyDelegate (QObject * parent = nullptr);
|
|
QWidget * createEditor (QWidget * parent, QStyleOptionViewItem const&, QModelIndex const&) const override;
|
|
void setEditorData (QWidget * editor, QModelIndex const&) const override;
|
|
void setModelData (QWidget * editor, QAbstractItemModel *, QModelIndex const&) const override;
|
|
};
|
|
|
|
#endif
|