KShare/cropeditor/drawing/textitem.cpp

30 lines
851 B
C++
Raw Normal View History

2017-05-05 23:59:39 +02:00
#include "textitem.hpp"
#include <QInputDialog>
#include <QtMath>
bool TextItem::init(CropScene *) {
bool ok;
text = QInputDialog::getText(nullptr, "Text to add", "Input", QLineEdit::Normal, QString(), &ok);
return ok;
2017-05-05 23:59:39 +02:00
}
void TextItem::mouseDragEvent(QGraphicsSceneMouseEvent *e, CropScene *scene) {
if (!textItem) {
textItem = scene->addSimpleText(text, scene->font());
textItem->setPos(e->scenePos());
textItem->setPen(scene->pen());
textItem->setBrush(scene->brush());
} else {
2017-06-14 23:34:58 +02:00
auto ee
= 180 + qRadiansToDegrees(qAtan2((textItem->pos().y() - e->scenePos().y()), (textItem->pos().x() - e->scenePos().x())));
textItem->setRotation(ee);
}
2017-05-05 23:59:39 +02:00
}
void TextItem::mouseDragEndEvent(QGraphicsSceneMouseEvent *, CropScene *) {
}
2017-05-05 23:59:39 +02:00
QString TextItem::name() {
return "Text";
}