mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
Move WeigthSystem Info model to qt-models
This is another effort to make it easyer for the mobile interface of Subsurface. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
32b0afa3e7
commit
a0f3c9992c
7 changed files with 162 additions and 149 deletions
|
@ -253,6 +253,7 @@ set(SUBSURFACE_MODELS_LIB_SRCS
|
||||||
qt-models/models.cpp
|
qt-models/models.cpp
|
||||||
qt-models/filtermodels.cpp
|
qt-models/filtermodels.cpp
|
||||||
qt-models/tankinfomodel.cpp
|
qt-models/tankinfomodel.cpp
|
||||||
|
qt-models/weigthsysteminfomodel.cpp
|
||||||
qt-models/completionmodels.cpp
|
qt-models/completionmodels.cpp
|
||||||
)
|
)
|
||||||
source_group("Subsurface Models" FILES ${SUBSURFACE_MODELS})
|
source_group("Subsurface Models" FILES ${SUBSURFACE_MODELS})
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
#include "display.h"
|
#include "display.h"
|
||||||
#include "color.h"
|
#include "color.h"
|
||||||
#include "cleanertablemodel.h"
|
#include "cleanertablemodel.h"
|
||||||
|
#include "weigthsysteminfomodel.h"
|
||||||
#include <QCoreApplication>
|
#include <QCoreApplication>
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
#include <QDir>
|
#include <QDir>
|
||||||
|
@ -319,128 +319,6 @@ void WeightModel::updateDive()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
WSInfoModel *WSInfoModel::instance()
|
|
||||||
{
|
|
||||||
static QScopedPointer<WSInfoModel> self(new WSInfoModel());
|
|
||||||
return self.data();
|
|
||||||
}
|
|
||||||
|
|
||||||
bool WSInfoModel::insertRows(int row, int count, const QModelIndex &parent)
|
|
||||||
{
|
|
||||||
beginInsertRows(parent, rowCount(), rowCount());
|
|
||||||
rows += count;
|
|
||||||
endInsertRows();
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool WSInfoModel::setData(const QModelIndex &index, const QVariant &value, int role)
|
|
||||||
{
|
|
||||||
struct ws_info_t *info = &ws_info[index.row()];
|
|
||||||
switch (index.column()) {
|
|
||||||
case DESCRIPTION:
|
|
||||||
info->name = strdup(value.toByteArray().data());
|
|
||||||
break;
|
|
||||||
case GR:
|
|
||||||
info->grams = value.toInt();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
emit dataChanged(index, index);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
void WSInfoModel::clear()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
QVariant WSInfoModel::data(const QModelIndex &index, int role) const
|
|
||||||
{
|
|
||||||
QVariant ret;
|
|
||||||
if (!index.isValid()) {
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
struct ws_info_t *info = &ws_info[index.row()];
|
|
||||||
|
|
||||||
int gr = info->grams;
|
|
||||||
switch (role) {
|
|
||||||
case Qt::FontRole:
|
|
||||||
ret = defaultModelFont();
|
|
||||||
break;
|
|
||||||
case Qt::DisplayRole:
|
|
||||||
case Qt::EditRole:
|
|
||||||
switch (index.column()) {
|
|
||||||
case GR:
|
|
||||||
ret = gr;
|
|
||||||
break;
|
|
||||||
case DESCRIPTION:
|
|
||||||
ret = gettextFromC::instance()->tr(info->name);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
int WSInfoModel::rowCount(const QModelIndex &parent) const
|
|
||||||
{
|
|
||||||
return rows + 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
const QString &WSInfoModel::biggerString() const
|
|
||||||
{
|
|
||||||
return biggerEntry;
|
|
||||||
}
|
|
||||||
|
|
||||||
WSInfoModel::WSInfoModel() : rows(-1)
|
|
||||||
{
|
|
||||||
setHeaderDataStrings(QStringList() << tr("Description") << tr("kg"));
|
|
||||||
struct ws_info_t *info = ws_info;
|
|
||||||
for (info = ws_info; info->name; info++, rows++) {
|
|
||||||
QString wsInfoName = gettextFromC::instance()->tr(info->name);
|
|
||||||
if (wsInfoName.count() > biggerEntry.count())
|
|
||||||
biggerEntry = wsInfoName;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (rows > -1) {
|
|
||||||
beginInsertRows(QModelIndex(), 0, rows);
|
|
||||||
endInsertRows();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void WSInfoModel::updateInfo()
|
|
||||||
{
|
|
||||||
struct ws_info_t *info = ws_info;
|
|
||||||
beginRemoveRows(QModelIndex(), 0, this->rows);
|
|
||||||
endRemoveRows();
|
|
||||||
rows = -1;
|
|
||||||
for (info = ws_info; info->name; info++, rows++) {
|
|
||||||
QString wsInfoName = gettextFromC::instance()->tr(info->name);
|
|
||||||
if (wsInfoName.count() > biggerEntry.count())
|
|
||||||
biggerEntry = wsInfoName;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (rows > -1) {
|
|
||||||
beginInsertRows(QModelIndex(), 0, rows);
|
|
||||||
endInsertRows();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void WSInfoModel::update()
|
|
||||||
{
|
|
||||||
if (rows > -1) {
|
|
||||||
beginRemoveRows(QModelIndex(), 0, rows);
|
|
||||||
endRemoveRows();
|
|
||||||
rows = -1;
|
|
||||||
}
|
|
||||||
struct ws_info_t *info = ws_info;
|
|
||||||
for (info = ws_info; info->name; info++, rows++)
|
|
||||||
;
|
|
||||||
|
|
||||||
if (rows > -1) {
|
|
||||||
beginInsertRows(QModelIndex(), 0, rows);
|
|
||||||
endInsertRows();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//#################################################################################################
|
//#################################################################################################
|
||||||
//#
|
//#
|
||||||
//# Tree Model - a Basic Tree Model so I don't need to kill myself repeating this for every model.
|
//# Tree Model - a Basic Tree Model so I don't need to kill myself repeating this for every model.
|
||||||
|
|
|
@ -21,32 +21,6 @@
|
||||||
#include "../divecomputer.h"
|
#include "../divecomputer.h"
|
||||||
#include "cleanertablemodel.h"
|
#include "cleanertablemodel.h"
|
||||||
|
|
||||||
/* Encapsulate ws_info */
|
|
||||||
class WSInfoModel : public CleanerTableModel {
|
|
||||||
Q_OBJECT
|
|
||||||
public:
|
|
||||||
static WSInfoModel *instance();
|
|
||||||
|
|
||||||
enum Column {
|
|
||||||
DESCRIPTION,
|
|
||||||
GR
|
|
||||||
};
|
|
||||||
WSInfoModel();
|
|
||||||
|
|
||||||
/*reimp*/ QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
|
|
||||||
/*reimp*/ int rowCount(const QModelIndex &parent = QModelIndex()) const;
|
|
||||||
/*reimp*/ bool insertRows(int row, int count, const QModelIndex &parent = QModelIndex());
|
|
||||||
/*reimp*/ bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole);
|
|
||||||
const QString &biggerString() const;
|
|
||||||
void clear();
|
|
||||||
void update();
|
|
||||||
void updateInfo();
|
|
||||||
|
|
||||||
private:
|
|
||||||
int rows;
|
|
||||||
QString biggerEntry;
|
|
||||||
};
|
|
||||||
|
|
||||||
/* Retrieve the trash icon pixmap, common to most table models */
|
/* Retrieve the trash icon pixmap, common to most table models */
|
||||||
const QPixmap &trashIcon();
|
const QPixmap &trashIcon();
|
||||||
|
|
||||||
|
|
126
qt-models/weigthsysteminfomodel.cpp
Normal file
126
qt-models/weigthsysteminfomodel.cpp
Normal file
|
@ -0,0 +1,126 @@
|
||||||
|
#include "weigthsysteminfomodel.h"
|
||||||
|
#include "dive.h"
|
||||||
|
#include "metrics.h"
|
||||||
|
#include "gettextfromc.h"
|
||||||
|
|
||||||
|
WSInfoModel *WSInfoModel::instance()
|
||||||
|
{
|
||||||
|
static QScopedPointer<WSInfoModel> self(new WSInfoModel());
|
||||||
|
return self.data();
|
||||||
|
}
|
||||||
|
|
||||||
|
bool WSInfoModel::insertRows(int row, int count, const QModelIndex &parent)
|
||||||
|
{
|
||||||
|
beginInsertRows(parent, rowCount(), rowCount());
|
||||||
|
rows += count;
|
||||||
|
endInsertRows();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool WSInfoModel::setData(const QModelIndex &index, const QVariant &value, int role)
|
||||||
|
{
|
||||||
|
struct ws_info_t *info = &ws_info[index.row()];
|
||||||
|
switch (index.column()) {
|
||||||
|
case DESCRIPTION:
|
||||||
|
info->name = strdup(value.toByteArray().data());
|
||||||
|
break;
|
||||||
|
case GR:
|
||||||
|
info->grams = value.toInt();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
emit dataChanged(index, index);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void WSInfoModel::clear()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
QVariant WSInfoModel::data(const QModelIndex &index, int role) const
|
||||||
|
{
|
||||||
|
QVariant ret;
|
||||||
|
if (!index.isValid()) {
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
struct ws_info_t *info = &ws_info[index.row()];
|
||||||
|
|
||||||
|
int gr = info->grams;
|
||||||
|
switch (role) {
|
||||||
|
case Qt::FontRole:
|
||||||
|
ret = defaultModelFont();
|
||||||
|
break;
|
||||||
|
case Qt::DisplayRole:
|
||||||
|
case Qt::EditRole:
|
||||||
|
switch (index.column()) {
|
||||||
|
case GR:
|
||||||
|
ret = gr;
|
||||||
|
break;
|
||||||
|
case DESCRIPTION:
|
||||||
|
ret = gettextFromC::instance()->tr(info->name);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
int WSInfoModel::rowCount(const QModelIndex &parent) const
|
||||||
|
{
|
||||||
|
return rows + 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
const QString &WSInfoModel::biggerString() const
|
||||||
|
{
|
||||||
|
return biggerEntry;
|
||||||
|
}
|
||||||
|
|
||||||
|
WSInfoModel::WSInfoModel() : rows(-1)
|
||||||
|
{
|
||||||
|
setHeaderDataStrings(QStringList() << tr("Description") << tr("kg"));
|
||||||
|
struct ws_info_t *info = ws_info;
|
||||||
|
for (info = ws_info; info->name; info++, rows++) {
|
||||||
|
QString wsInfoName = gettextFromC::instance()->tr(info->name);
|
||||||
|
if (wsInfoName.count() > biggerEntry.count())
|
||||||
|
biggerEntry = wsInfoName;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (rows > -1) {
|
||||||
|
beginInsertRows(QModelIndex(), 0, rows);
|
||||||
|
endInsertRows();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void WSInfoModel::updateInfo()
|
||||||
|
{
|
||||||
|
struct ws_info_t *info = ws_info;
|
||||||
|
beginRemoveRows(QModelIndex(), 0, this->rows);
|
||||||
|
endRemoveRows();
|
||||||
|
rows = -1;
|
||||||
|
for (info = ws_info; info->name; info++, rows++) {
|
||||||
|
QString wsInfoName = gettextFromC::instance()->tr(info->name);
|
||||||
|
if (wsInfoName.count() > biggerEntry.count())
|
||||||
|
biggerEntry = wsInfoName;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (rows > -1) {
|
||||||
|
beginInsertRows(QModelIndex(), 0, rows);
|
||||||
|
endInsertRows();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void WSInfoModel::update()
|
||||||
|
{
|
||||||
|
if (rows > -1) {
|
||||||
|
beginRemoveRows(QModelIndex(), 0, rows);
|
||||||
|
endRemoveRows();
|
||||||
|
rows = -1;
|
||||||
|
}
|
||||||
|
struct ws_info_t *info = ws_info;
|
||||||
|
for (info = ws_info; info->name; info++, rows++)
|
||||||
|
;
|
||||||
|
|
||||||
|
if (rows > -1) {
|
||||||
|
beginInsertRows(QModelIndex(), 0, rows);
|
||||||
|
endInsertRows();
|
||||||
|
}
|
||||||
|
}
|
32
qt-models/weigthsysteminfomodel.h
Normal file
32
qt-models/weigthsysteminfomodel.h
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
#ifndef WEIGTHSYSTEMINFOMODEL_H
|
||||||
|
#define WEIGHTSYSTEMINFOMODEL_H
|
||||||
|
|
||||||
|
#include "cleanertablemodel.h"
|
||||||
|
|
||||||
|
/* Encapsulate ws_info */
|
||||||
|
class WSInfoModel : public CleanerTableModel {
|
||||||
|
Q_OBJECT
|
||||||
|
public:
|
||||||
|
static WSInfoModel *instance();
|
||||||
|
|
||||||
|
enum Column {
|
||||||
|
DESCRIPTION,
|
||||||
|
GR
|
||||||
|
};
|
||||||
|
WSInfoModel();
|
||||||
|
|
||||||
|
/*reimp*/ QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
|
||||||
|
/*reimp*/ int rowCount(const QModelIndex &parent = QModelIndex()) const;
|
||||||
|
/*reimp*/ bool insertRows(int row, int count, const QModelIndex &parent = QModelIndex());
|
||||||
|
/*reimp*/ bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole);
|
||||||
|
const QString &biggerString() const;
|
||||||
|
void clear();
|
||||||
|
void update();
|
||||||
|
void updateInfo();
|
||||||
|
|
||||||
|
private:
|
||||||
|
int rows;
|
||||||
|
QString biggerEntry;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
|
@ -30,6 +30,7 @@
|
||||||
#include "printdialog.h"
|
#include "printdialog.h"
|
||||||
#endif
|
#endif
|
||||||
#include "tankinfomodel.h"
|
#include "tankinfomodel.h"
|
||||||
|
#include "weigthsysteminfomodel.h"
|
||||||
#include "diveplannermodel.h"
|
#include "diveplannermodel.h"
|
||||||
#include "divelogimportdialog.h"
|
#include "divelogimportdialog.h"
|
||||||
#include "divelogexportdialog.h"
|
#include "divelogexportdialog.h"
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
#include "starwidget.h"
|
#include "starwidget.h"
|
||||||
#include "profile/profilewidget2.h"
|
#include "profile/profilewidget2.h"
|
||||||
#include "tankinfomodel.h"
|
#include "tankinfomodel.h"
|
||||||
|
#include "weigthsysteminfomodel.h"
|
||||||
|
|
||||||
#include <QCompleter>
|
#include <QCompleter>
|
||||||
#include <QKeyEvent>
|
#include <QKeyEvent>
|
||||||
|
|
Loading…
Reference in a new issue