[qet] [2560] Add text() fonction to elementtextitem |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/qet Archives
]
Revision: 2560
Author: cfdev
Date: 2013-09-27 22:29:44 +0200 (Fri, 27 Sep 2013)
Log Message:
-----------
Add text() fonction to elementtextitem
Modified Paths:
--------------
branches/0.4/sources/elementtextitem.cpp
branches/0.4/sources/elementtextitem.h
Modified: branches/0.4/sources/elementtextitem.cpp
===================================================================
--- branches/0.4/sources/elementtextitem.cpp 2013-09-27 20:28:51 UTC (rev 2559)
+++ branches/0.4/sources/elementtextitem.cpp 2013-09-27 20:29:44 UTC (rev 2560)
@@ -99,6 +99,13 @@
}
/**
+ * @brief ElementTextItem::text
+ * @return
+ */
+QString ElementTextItem::text() {
+ return(QGraphicsTextItem::toPlainText());
+}
+/**
Permet de lire le texte a mettre dans le champ a partir d'un element XML.
Cette methode se base sur la position du champ pour assigner ou non la
valeur a ce champ.
Modified: branches/0.4/sources/elementtextitem.h
===================================================================
--- branches/0.4/sources/elementtextitem.h 2013-09-27 20:28:51 UTC (rev 2559)
+++ branches/0.4/sources/elementtextitem.h 2013-09-27 20:29:44 UTC (rev 2560)
@@ -58,6 +58,7 @@
void setPos(const QPointF &);
void setPos(qreal, qreal);
virtual QPointF pos() const;
+ QString text();
void setOriginalPos(const QPointF &);
QPointF originalPos() const;
void setOriginalRotationAngle(const qreal &);