From 8d5f1e04d7e4f24a4026804d62abe64883419bf2 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Wed, 3 Apr 2019 15:21:17 -0400 Subject: Remove lumina-calculator and lumina-pdf from the lumina repo. They have their own repos now (https://github.com/lumina-desktop/lumina-[pdf/calculator]) --- src-qt5/desktop-utils/lumina-pdf/Annotation.h | 52 --------------------------- 1 file changed, 52 deletions(-) delete mode 100644 src-qt5/desktop-utils/lumina-pdf/Annotation.h (limited to 'src-qt5/desktop-utils/lumina-pdf/Annotation.h') diff --git a/src-qt5/desktop-utils/lumina-pdf/Annotation.h b/src-qt5/desktop-utils/lumina-pdf/Annotation.h deleted file mode 100644 index ce7890b7..00000000 --- a/src-qt5/desktop-utils/lumina-pdf/Annotation.h +++ /dev/null @@ -1,52 +0,0 @@ -#include -#include -#include -#include -#include - -class Annotation { -public: - Annotation(int _annotType, double _opacity, QRectF _loc = QRectF()) - : annotType(_annotType), opacity(_opacity), loc(_loc) {} - - virtual ~Annotation() {} - - virtual int getType() { return annotType; } - virtual QRectF getLoc() { return loc; } - - virtual QString getAuthor() { return author; } - virtual QString getText() { return text; } - virtual QList getQuadList() { return quadList; } - virtual QVector> getInkList() { return inkList; } - virtual QColor getColor() { return color; } - virtual QColor getInternalColor() { return iColor; } - virtual double getOpacity() { return opacity; } - virtual bool print() { return canPrint; } - - virtual void setAuthor(QString _author) { author = _author; } - virtual void setContents(QString _text) { text = _text; } - virtual void setColor(QColor _color) { color = _color; }; - virtual void setInternalColor(QColor _iColor) { iColor = _iColor; }; - virtual void setQuadList(QList _quadList) { - quadList = _quadList; - }; - virtual void setInkList(QVector> _inkList) { - inkList = _inkList; - }; - virtual void setPrint(bool _print) { canPrint = _print; } - - virtual QImage renderImage() = 0; - -private: - int annotType; - double opacity; - QRectF loc; - - QString author; - QString text; - QColor color; - QColor iColor; - QList quadList; - QVector> inkList; - bool canPrint; -}; -- cgit