mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-04 16:31: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.
97 lines
2.1 KiB
C++
97 lines
2.1 KiB
C++
#include "IARURegions.hpp"
|
|
|
|
#include <algorithm>
|
|
|
|
#include <QString>
|
|
#include <QVariant>
|
|
#include <QModelIndex>
|
|
#include <QMetaType>
|
|
|
|
#include "moc_IARURegions.cpp"
|
|
|
|
namespace
|
|
{
|
|
// human readable strings for each Region enumeration value
|
|
char const * const region_names[] =
|
|
{
|
|
"All",
|
|
"Region 1",
|
|
"Region 2",
|
|
"Region 3",
|
|
};
|
|
std::size_t constexpr region_names_size = sizeof (region_names) / sizeof (region_names[0]);
|
|
}
|
|
|
|
IARURegions::IARURegions (QObject * parent)
|
|
: QAbstractListModel {parent}
|
|
{
|
|
static_assert (region_names_size == SENTINAL,
|
|
"region_names array must match Region enumeration");
|
|
}
|
|
|
|
char const * IARURegions::name (Region r)
|
|
{
|
|
return region_names[static_cast<int> (r)];
|
|
}
|
|
|
|
auto IARURegions::value (QString const& s) -> Region
|
|
{
|
|
auto end = region_names + region_names_size;
|
|
auto p = std::find_if (region_names, end
|
|
, [&s] (char const * const name) {
|
|
return name == s;
|
|
});
|
|
return p != end ? static_cast<Region> (p - region_names) : ALL;
|
|
}
|
|
|
|
QVariant IARURegions::data (QModelIndex const& index, int role) const
|
|
{
|
|
QVariant item;
|
|
|
|
if (index.isValid ())
|
|
{
|
|
auto const& row = index.row ();
|
|
switch (role)
|
|
{
|
|
case Qt::ToolTipRole:
|
|
case Qt::AccessibleDescriptionRole:
|
|
item = tr ("IARU Region");
|
|
break;
|
|
|
|
case Qt::EditRole:
|
|
item = static_cast<Region> (row);
|
|
break;
|
|
|
|
case Qt::DisplayRole:
|
|
case Qt::AccessibleTextRole:
|
|
item = region_names[row];
|
|
break;
|
|
|
|
case Qt::TextAlignmentRole:
|
|
item = Qt::AlignHCenter + Qt::AlignVCenter;
|
|
break;
|
|
}
|
|
}
|
|
|
|
return item;
|
|
}
|
|
|
|
QVariant IARURegions::headerData (int section, Qt::Orientation orientation, int role) const
|
|
{
|
|
QVariant result;
|
|
|
|
if (Qt::DisplayRole == role && Qt::Horizontal == orientation)
|
|
{
|
|
result = tr ("IARU Region");
|
|
}
|
|
else
|
|
{
|
|
result = QAbstractListModel::headerData (section, orientation, role);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
ENUM_QDATASTREAM_OPS_IMPL (IARURegions, Region);
|
|
ENUM_CONVERSION_OPS_IMPL (IARURegions, Region);
|