mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	Having subsurface-core as a directory name really messes with autocomplete and is obviously redundant. Simmilarly, qt-mobile caused an autocomplete conflict and also was inconsistent with the desktop-widget name for the directory containing the "other" UI. And while cleaning up the resulting change in the path name for include files, I decided to clean up those even more to make them consistent overall. This could have been handled in more commits, but since this requires a make clean before the build, it seemed more sensible to do it all in one. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
		
			
				
	
	
		
			130 lines
		
	
	
	
		
			2.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			130 lines
		
	
	
	
		
			2.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include "qt-models/weigthsysteminfomodel.h"
 | |
| #include "core/dive.h"
 | |
| #include "core/metrics.h"
 | |
| #include "core/gettextfromc.h"
 | |
| 
 | |
| WSInfoModel *WSInfoModel::instance()
 | |
| {
 | |
| 	static QScopedPointer<WSInfoModel> self(new WSInfoModel());
 | |
| 	return self.data();
 | |
| }
 | |
| 
 | |
| bool WSInfoModel::insertRows(int row, int count, const QModelIndex &parent)
 | |
| {
 | |
| 	Q_UNUSED(row);
 | |
| 	beginInsertRows(parent, rowCount(), rowCount());
 | |
| 	rows += count;
 | |
| 	endInsertRows();
 | |
| 	return true;
 | |
| }
 | |
| 
 | |
| bool WSInfoModel::setData(const QModelIndex &index, const QVariant &value, int role)
 | |
| {
 | |
| 	//WARN: check for Qt::EditRole
 | |
| 	Q_UNUSED(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
 | |
| {
 | |
| 	Q_UNUSED(parent);
 | |
| 	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();
 | |
| 	}
 | |
| }
 |