mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-14 21:23:52 +01:00
136 lines
3.5 KiB
C++
136 lines
3.5 KiB
C++
|
/**
|
||
|
******************************************************************************
|
||
|
*
|
||
|
* @file notifytablemodel.cpp
|
||
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
||
|
* @brief
|
||
|
* @see The GNU Public License (GPL) Version 3
|
||
|
* @defgroup notifyplugin
|
||
|
* @{
|
||
|
*
|
||
|
*****************************************************************************/
|
||
|
/*
|
||
|
* This program is free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation; either version 3 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful, but
|
||
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||
|
* for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License along
|
||
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||
|
*/
|
||
|
|
||
|
#include "notifytablemodel.h"
|
||
|
|
||
|
bool NotifyTableModel::setData(const QModelIndex &index,
|
||
|
const QVariant &value, int role)
|
||
|
{
|
||
|
if (index.isValid() && role == Qt::EditRole) {
|
||
|
if(index.column()==1)
|
||
|
_list->at(index.row())->setRepeatFlag(value.toString());
|
||
|
else
|
||
|
if(index.column()==2)
|
||
|
_list->at(index.row())->setExpireTimeout(value.toInt());
|
||
|
|
||
|
emit dataChanged(index, index);
|
||
|
return true;
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
QVariant NotifyTableModel::data(const QModelIndex &index, int role) const
|
||
|
{
|
||
|
|
||
|
if (!index.isValid())
|
||
|
return QVariant();
|
||
|
|
||
|
if (index.row() >= _list->size())
|
||
|
return QVariant();
|
||
|
|
||
|
if (role == Qt::DisplayRole || role == Qt::EditRole)
|
||
|
{
|
||
|
switch(index.column())
|
||
|
{
|
||
|
case 0:
|
||
|
return _list->at(index.row())->parseNotifyMessage();
|
||
|
|
||
|
case 1:
|
||
|
return _list->at(index.row())->getRepeatFlag();
|
||
|
|
||
|
case 2:
|
||
|
return _list->at(index.row())->getExpireTimeout();
|
||
|
|
||
|
default:
|
||
|
return QVariant();
|
||
|
}
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
if (Qt::SizeHintRole == role){
|
||
|
//QVariant size = data(index, Qt::SizeHintRole);
|
||
|
return QVariant(10);
|
||
|
}
|
||
|
// if(role == Qt::DecorationRole)
|
||
|
// if (index.column() == 0)
|
||
|
// return defectsIcons[defectList->at(index.row()).id-1];
|
||
|
}
|
||
|
return QVariant();
|
||
|
}
|
||
|
|
||
|
QVariant NotifyTableModel::headerData(int section, Qt::Orientation orientation, int role) const
|
||
|
{
|
||
|
if (role != Qt::DisplayRole)
|
||
|
return QVariant();
|
||
|
|
||
|
if (orientation == Qt::Horizontal)
|
||
|
return headerStrings.at(section);
|
||
|
else
|
||
|
if(orientation == Qt::Vertical)
|
||
|
return QString("%1").arg(section);
|
||
|
|
||
|
return QVariant();
|
||
|
}
|
||
|
|
||
|
bool NotifyTableModel::insertRows(int position, int rows, const QModelIndex &index)
|
||
|
{
|
||
|
Q_UNUSED(index);
|
||
|
beginInsertRows(QModelIndex(), position, position+rows-1);
|
||
|
|
||
|
// for (int row=0; row < rows; ++row) {
|
||
|
// _list->append(position);
|
||
|
// }
|
||
|
|
||
|
|
||
|
endInsertRows();
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
bool NotifyTableModel::removeRows(int position, int rows, const QModelIndex &index)
|
||
|
{
|
||
|
Q_UNUSED(index);
|
||
|
beginRemoveRows(QModelIndex(), position, position+rows-1);
|
||
|
|
||
|
for (int row=0; row < rows; ++row) {
|
||
|
_list->removeAt(position);
|
||
|
}
|
||
|
|
||
|
endRemoveRows();
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
void NotifyTableModel::entryUpdated(int offset)
|
||
|
{
|
||
|
QModelIndex idx = index(offset, 0);
|
||
|
emit dataChanged(idx, idx);
|
||
|
}
|
||
|
|
||
|
void NotifyTableModel::entryAdded(int position)
|
||
|
{
|
||
|
insertRows(position, 1,QModelIndex());
|
||
|
}
|