mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2024-12-24 12:34:39 +03:00
Property filter has been added
This commit is contained in:
parent
47ae56ab26
commit
7a512eca0b
@ -40,6 +40,8 @@
|
||||
#include <QCheckBox>
|
||||
#include <QVBoxLayout>
|
||||
#include <QDesktopWidget>
|
||||
#include <QSortFilterProxyModel>
|
||||
#include <QLineEdit>
|
||||
|
||||
#include "lrreportdesignwindow.h"
|
||||
#include "lrbandsmanager.h"
|
||||
@ -504,13 +506,23 @@ void ReportDesignWindow::createObjectInspector()
|
||||
m_validator = new ObjectNameValidator();
|
||||
m_propertyModel->setValidator(m_validator);
|
||||
m_propertyModel->setSubclassesAsLevel(false);
|
||||
// connect(m_propertyModel,SIGNAL(objectPropetyChanged(QString,QVariant,QVariant)),this,SLOT(slotItemDataChanged(QString,QVariant,QVariant)));
|
||||
m_objectInspector->setModel(m_propertyModel);
|
||||
m_filterModel = new PropertyFilterModel(this);
|
||||
m_filterModel->setSourceModel(m_propertyModel);
|
||||
m_filterModel->setFilterRegExp(QRegExp("", Qt::CaseInsensitive, QRegExp::FixedString));
|
||||
m_filterModel->setRecursiveFilteringEnabled(false);
|
||||
m_objectInspector->setModel(m_filterModel);
|
||||
m_objectInspector->setAlternatingRowColors(true);
|
||||
m_objectInspector->setRootIsDecorated(!m_propertyModel->subclassesAsLevel());
|
||||
QDockWidget *objectDoc = new QDockWidget(this);
|
||||
QWidget* w = new QWidget(objectDoc);
|
||||
QVBoxLayout* l = new QVBoxLayout(w);
|
||||
QLineEdit* le = new QLineEdit(w);
|
||||
le->setPlaceholderText(tr("Filter"));
|
||||
connect(le, SIGNAL(textChanged(const QString&)), this, SLOT(slotFilterTextChanged(const QString&)));
|
||||
// QHBoxLayout* h = new QHBoxLayout(w);
|
||||
// h->addWidget(new QLabel(tr("Filter")));
|
||||
// h->addWidget(le);
|
||||
l->addWidget(le);
|
||||
l->addWidget(m_objectInspector);
|
||||
l->setContentsMargins(2,2,2,2);
|
||||
w->setLayout(l);
|
||||
@ -1470,6 +1482,11 @@ void ReportDesignWindow::slotPageDeleted()
|
||||
m_deletePageAction->setEnabled(m_reportDesignWidget->report()->pageCount()>1);
|
||||
}
|
||||
|
||||
void ReportDesignWindow::slotFilterTextChanged(const QString& filter)
|
||||
{
|
||||
m_filterModel->setFilterRegExp(QRegExp(filter, Qt::CaseInsensitive, QRegExp::FixedString));
|
||||
}
|
||||
|
||||
#ifdef HAVE_QTDESIGNER_INTEGRATION
|
||||
void ReportDesignWindow::slotDeleteDialog()
|
||||
{
|
||||
@ -1541,5 +1558,12 @@ bool ObjectNameValidator::validate(const QString &propName, const QVariant &prop
|
||||
return true;
|
||||
}
|
||||
|
||||
bool PropertyFilterModel::filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const
|
||||
{
|
||||
QModelIndex index = sourceModel()->index(sourceRow, 0, sourceParent);
|
||||
if (sourceParent.isValid()) return true;
|
||||
return sourceModel()->data(index).toString().contains(filterRegExp());
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
@ -120,6 +120,7 @@ private slots:
|
||||
void slotLoadRecentFile(const QString fileName);
|
||||
void slotPageAdded(PageDesignIntf* );
|
||||
void slotPageDeleted();
|
||||
void slotFilterTextChanged(const QString& filter);
|
||||
#ifdef HAVE_QTDESIGNER_INTEGRATION
|
||||
void slotDeleteDialog();
|
||||
void slotAddNewDialog();
|
||||
@ -273,12 +274,19 @@ private:
|
||||
bool m_reportItemIsLocked;
|
||||
QMap<QDockWidget*, bool> m_leftDocVisibleState;
|
||||
QMap<QDockWidget*, bool> m_rightDocVisibleState;
|
||||
|
||||
QSortFilterProxyModel* m_filterModel;
|
||||
};
|
||||
|
||||
class ObjectNameValidator : public ValidatorIntf{
|
||||
bool validate(const QString &propName, const QVariant &propValue, QObject *object, QString &msg);
|
||||
};
|
||||
|
||||
|
||||
class PropertyFilterModel: public QSortFilterProxyModel{
|
||||
public:
|
||||
PropertyFilterModel(QObject* parent = 0): QSortFilterProxyModel(parent){}
|
||||
protected:
|
||||
bool filterAcceptsRow(int sourceRow,const QModelIndex &sourceParent) const;
|
||||
};
|
||||
}
|
||||
#endif // LRREPORTEDITORWINDOW_H
|
||||
|
@ -134,7 +134,7 @@ void ObjectInspectorWidget::reset()
|
||||
|
||||
ObjectPropItem * ObjectInspectorWidget::nodeFromIndex(QModelIndex index) const
|
||||
{
|
||||
return static_cast<LimeReport::ObjectPropItem*>(index.internalPointer());
|
||||
return qvariant_cast<LimeReport::ObjectPropItem*>(index.data(Qt::UserRole));
|
||||
}
|
||||
|
||||
void ObjectInspectorWidget::keyPressEvent(QKeyEvent *event)
|
||||
|
@ -303,6 +303,8 @@ QVariant QObjectPropertyModel::data(const QModelIndex &index, int role) const
|
||||
return node->iconValue();
|
||||
}else return QIcon();
|
||||
break;
|
||||
case Qt::UserRole:
|
||||
return QVariant::fromValue(node);
|
||||
default:
|
||||
return QVariant();
|
||||
}
|
||||
|
@ -51,7 +51,7 @@ void LimeReport::PropertyDelegate::paint(QPainter *painter, const QStyleOptionVi
|
||||
|
||||
QStyle *style = opt.widget ? opt.widget->style() : QApplication::style();
|
||||
|
||||
LimeReport::ObjectPropItem *node = static_cast<LimeReport::ObjectPropItem*>(index.internalPointer());
|
||||
LimeReport::ObjectPropItem *node = qvariant_cast<LimeReport::ObjectPropItem*>(index.data(Qt::UserRole));
|
||||
if (node){
|
||||
if (!node->isHaveValue()){
|
||||
if (index.column()==0) {
|
||||
@ -137,7 +137,7 @@ QSize LimeReport::PropertyDelegate::sizeHint(const QStyleOptionViewItem &option,
|
||||
|
||||
QWidget * LimeReport::PropertyDelegate::createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const
|
||||
{
|
||||
m_editingItem=static_cast<LimeReport::ObjectPropItem*>(index.internalPointer());
|
||||
m_editingItem = qvariant_cast<LimeReport::ObjectPropItem*>(index.data(Qt::UserRole));
|
||||
connect(m_editingItem,SIGNAL(destroyed(QObject*)), this, SLOT(slotItemDeleted(QObject*)));
|
||||
QWidget *editor=m_editingItem->createProperyEditor(parent);
|
||||
if (editor){
|
||||
|
Loading…
Reference in New Issue
Block a user