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
+28
View File
@@ -0,0 +1,28 @@
#ifndef RESIZELABEL_H
#define RESIZELABEL_H
#include <QLabel>
#include <QPaintEvent>
#include "utils/shapesutils.h"
class ResizeLabel : public QLabel
{
Q_OBJECT
public:
ResizeLabel(QWidget* parent = 0);
~ResizeLabel();
public slots:
void paintResizeLabel(bool drawing, FourPoints fpoints);
protected:
void paintEvent(QPaintEvent* e);
private:
bool m_drawArtboard;
FourPoints m_artboardMPoints;
};
#endif // RESIZELABEL_H