2010-07-01 13:23:15 +00:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
*
|
|
|
|
* @file notifyitemdelegate.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 "notifyitemdelegate.h"
|
|
|
|
#include <QtGui>
|
|
|
|
|
|
|
|
|
|
|
|
NotifyItemDelegate::NotifyItemDelegate(QStringList items,QObject *parent)
|
|
|
|
: QItemDelegate(parent),
|
|
|
|
m_parent(parent),
|
|
|
|
m_items(items) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
QWidget *NotifyItemDelegate::createEditor(QWidget *parent,
|
|
|
|
const QStyleOptionViewItem &,
|
|
|
|
const QModelIndex &index) const
|
|
|
|
{
|
|
|
|
if (index.column() == 1) {
|
|
|
|
QComboBox* editor = new QComboBox(parent);
|
|
|
|
editor->clear();
|
|
|
|
editor->addItems(m_items);
|
|
|
|
//repeatEditor->setCurrentIndex(0);
|
|
|
|
//repeatEditor->setItemDelegate(new RepeatCounterDelegate());
|
|
|
|
|
|
|
|
//connect(repeatEditor,SIGNAL(activated (const QString& )),this,SLOT(selectRow(const QString& )));
|
|
|
|
//QTableWidgetItem* item = qobject_cast<QTableWidgetItem *>(parent);
|
|
|
|
//((QTableWidgetItem*)parent)->setSelected(true);
|
2010-07-18 18:16:30 +00:00
|
|
|
// connect(editor, SIGNAL(editingFinished()),
|
|
|
|
// this, SLOT(commitAndCloseEditor()));
|
2010-07-01 13:23:15 +00:00
|
|
|
return editor;
|
2010-07-18 18:16:30 +00:00
|
|
|
} else
|
|
|
|
{
|
|
|
|
if(index.column() == 2)
|
|
|
|
{
|
|
|
|
QSpinBox* editor = new QSpinBox(parent);
|
|
|
|
connect(editor, SIGNAL(editingFinished()),
|
|
|
|
this, SLOT(commitAndCloseEditor()));
|
|
|
|
return editor;
|
|
|
|
}
|
|
|
|
|
2010-07-01 13:23:15 +00:00
|
|
|
}
|
|
|
|
QLineEdit *editor = new QLineEdit(parent);
|
2010-07-18 18:16:30 +00:00
|
|
|
// connect(editor, SIGNAL(editingFinished()),
|
|
|
|
// this, SLOT(commitAndCloseEditor()));
|
2010-07-01 13:23:15 +00:00
|
|
|
return editor;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NotifyItemDelegate::commitAndCloseEditor()
|
|
|
|
{
|
|
|
|
QLineEdit *editor = qobject_cast<QLineEdit *>(sender());
|
|
|
|
if (editor)
|
|
|
|
{
|
|
|
|
emit commitData(editor);
|
|
|
|
emit closeEditor(editor);
|
2010-07-18 18:16:30 +00:00
|
|
|
|
|
|
|
} else {
|
2010-07-01 13:23:15 +00:00
|
|
|
QComboBox* editor = qobject_cast<QComboBox*>(sender());
|
2010-07-18 18:16:30 +00:00
|
|
|
if (editor)
|
2010-07-01 13:23:15 +00:00
|
|
|
{
|
2010-07-18 18:16:30 +00:00
|
|
|
emit commitData(editor);
|
|
|
|
emit closeEditor(editor);
|
|
|
|
} else {
|
|
|
|
QSpinBox* editor = qobject_cast<QSpinBox*>(sender());
|
|
|
|
if (editor)
|
|
|
|
{
|
|
|
|
emit commitData(editor);
|
|
|
|
emit closeEditor(editor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-07-01 13:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void NotifyItemDelegate::setEditorData(QWidget *editor,
|
|
|
|
const QModelIndex &index) const
|
|
|
|
{
|
|
|
|
QLineEdit *edit = qobject_cast<QLineEdit*>(editor);
|
|
|
|
if (edit) {
|
|
|
|
edit->setText(index.model()->data(index, Qt::EditRole).toString());
|
|
|
|
} else {
|
|
|
|
QComboBox * repeatEditor = qobject_cast<QComboBox *>(editor);
|
|
|
|
if (repeatEditor)
|
|
|
|
repeatEditor->setCurrentIndex(repeatEditor->findText(index.model()->data(index, Qt::EditRole).toString()));
|
2010-07-18 18:16:30 +00:00
|
|
|
else {
|
|
|
|
QSpinBox * expireEditor = qobject_cast<QSpinBox *>(editor);
|
|
|
|
if (expireEditor)
|
|
|
|
expireEditor->setValue(index.model()->data(index, Qt::EditRole).toInt());
|
2010-07-01 13:23:15 +00:00
|
|
|
}
|
2010-07-18 18:16:30 +00:00
|
|
|
}
|
2010-07-01 13:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void NotifyItemDelegate::setModelData(QWidget *editor,
|
|
|
|
QAbstractItemModel *model, const QModelIndex &index) const
|
|
|
|
{
|
|
|
|
QLineEdit *edit = qobject_cast<QLineEdit *>(editor);
|
|
|
|
if (edit) {
|
|
|
|
model->setData(index, edit->text());
|
|
|
|
} else {
|
|
|
|
QComboBox * repeatEditor = qobject_cast<QComboBox *>(editor);
|
|
|
|
if (repeatEditor) {
|
|
|
|
model->setData(index, repeatEditor->currentText());
|
2010-07-18 18:16:30 +00:00
|
|
|
|
|
|
|
} else {
|
|
|
|
QSpinBox * expireEditor = qobject_cast<QSpinBox *>(editor);
|
|
|
|
if (expireEditor) {
|
|
|
|
//expireEditor->interpretText();
|
|
|
|
model->setData(index, expireEditor->value(), Qt::EditRole);
|
|
|
|
}
|
2010-07-01 13:23:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-18 18:16:30 +00:00
|
|
|
|
2010-07-01 13:23:15 +00:00
|
|
|
void NotifyItemDelegate::selectRow(const QString & text)
|
|
|
|
{
|
|
|
|
//QList<QTableWidgetItem *> list = ((QTableWidget*)(sender()->parent()))->findItems(text,Qt::MatchExactly);
|
|
|
|
QComboBox* combo = qobject_cast<QComboBox*>(sender());
|
|
|
|
QTableWidget* table = new QTableWidget;
|
|
|
|
table = (QTableWidget*)(combo->parent());
|
|
|
|
qDebug()<<table->columnCount();
|
|
|
|
qDebug()<<table->rowCount();
|
|
|
|
qDebug()<<table->currentRow();
|
|
|
|
//table->setCurrentIndex(1);
|
|
|
|
//table->findItems(text,Qt::MatchExactly);
|
|
|
|
//item->model()->index()
|
|
|
|
//item->setSelected(true);
|
|
|
|
}
|
|
|
|
|
2010-07-18 18:16:30 +00:00
|
|
|
QSize NotifyItemDelegate::sizeHint ( const QStyleOptionViewItem & option,
|
|
|
|
const QModelIndex & index ) const
|
|
|
|
{
|
|
|
|
QSize s = QItemDelegate::sizeHint(option, index);
|
|
|
|
s.setHeight(10);
|
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|