mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-04 08:21:17 -05:00
873b1d1c43
Includes a new settings facility with the highlighting being contrled by a new model class and a modified QListView to display the data for editing. Edits include enable and disable check boxes, a contextual pop-up menu to adjust backkground and foreground colours. Still to be implemented are priorities for highlighting categories. This will be adjustable by drag and drop in the Colors settings panel, it is already implemented by the priority order has no effect on highlighting of decodes yet. The LotW users data file fetch and time since user's last upload is now controled from the settings dialog. This change also drops support for Qt versions before 5.5 so that many workarounds for earlier versions can be removed. Debug trace is slightly modified to make better use of the Qt built in facilities to format and synchronize cross thread messaging.
67 lines
1.7 KiB
C++
67 lines
1.7 KiB
C++
#ifndef IARU_REGIONS_HPP__
|
|
#define IARU_REGIONS_HPP__
|
|
|
|
#include <QAbstractListModel>
|
|
|
|
#include "qt_helpers.hpp"
|
|
|
|
class QString;
|
|
class QVariant;
|
|
class QModelIndex;
|
|
|
|
//
|
|
// Class IARURegions - Qt model that implements the list of IARU regions
|
|
//
|
|
//
|
|
// Responsibilities
|
|
//
|
|
// Provides a single column list model that contains the human
|
|
// readable string version of the data region in the display
|
|
// role. Also provided is a translatable column header string and
|
|
// tool tip string.
|
|
//
|
|
//
|
|
// Collaborations
|
|
//
|
|
// Implements a concrete sub-class of the QAbstractListModel class.
|
|
//
|
|
class IARURegions final
|
|
: public QAbstractListModel
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
//
|
|
// This enumeration contains the supported regions, to complement
|
|
// this an array of human readable strings in the implementation
|
|
// (IARURegions.cpp) must be maintained in parallel.
|
|
//
|
|
enum Region
|
|
{
|
|
ALL, // matches with all regions
|
|
R1,
|
|
R2,
|
|
R3,
|
|
SENTINAL // this must be last
|
|
};
|
|
Q_ENUM (Region)
|
|
|
|
explicit IARURegions (QObject * parent = nullptr);
|
|
|
|
// translate between enumeration and human readable strings
|
|
static char const * name (Region);
|
|
static Region value (QString const&);
|
|
|
|
// Implement the QAbstractListModel interface
|
|
int rowCount (QModelIndex const& parent = QModelIndex {}) const override
|
|
{
|
|
return parent.isValid () ? 0 : SENTINAL; // Number of regionss in Region enumeration class
|
|
}
|
|
QVariant data (QModelIndex const&, int role = Qt::DisplayRole) const override;
|
|
QVariant headerData (int section, Qt::Orientation, int = Qt::DisplayRole) const override;
|
|
};
|
|
|
|
ENUM_QDATASTREAM_OPS_DECL (IARURegions, Region);
|
|
ENUM_CONVERSION_OPS_DECL (IARURegions, Region);
|
|
|
|
#endif
|