Add MataAvistas project (BudgetPro) as regular files

This commit is contained in:
Javier
2026-06-04 15:59:46 +02:00
parent 7643acf109
commit dccaa63bcc
644 changed files with 104937 additions and 1 deletions
+22
View File
@@ -0,0 +1,22 @@
#ifndef ITEMTEXTDELEGATE_H
#define ITEMTEXTDELEGATE_H
#include <QItemDelegate>
#include <QWidget>
class ItemTextDelegate : public QItemDelegate
{
Q_OBJECT
public:
ItemTextDelegate(QObject *parent = Q_NULLPTR);
QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option,
const QModelIndex &index) const;
void setEditorData(QWidget *editor, const QModelIndex &index) const;
void setModelData (QWidget *editor, QAbstractItemModel *model,
const QModelIndex &index) const;
void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &opcion,
const QModelIndex &index) const;
};
#endif // ITEMTEXTDELEGATE_H