Mod doc set style de same

This commit is contained in:
Simon De Backer
2020-08-16 11:19:36 +02:00
parent 90417ae509
commit d4ee161c07
274 changed files with 6823 additions and 6756 deletions

View File

@@ -22,18 +22,18 @@
#include "diagram.h"
/**
* @brief DiagramTextItem::DiagramTextItem
* @param parent : parent item
*/
@brief DiagramTextItem::DiagramTextItem
@param parent : parent item
*/
DiagramTextItem::DiagramTextItem(QGraphicsItem *parent) :
QGraphicsTextItem(parent)
{ build(); }
/**
* @brief DiagramTextItem::DiagramTextItem
* @param text : text to display
* @param parent : parent item
*/
@brief DiagramTextItem::DiagramTextItem
@param text : text to display
@param parent : parent item
*/
DiagramTextItem::DiagramTextItem(const QString &text, QGraphicsItem *parent) :
QGraphicsTextItem(text, parent),
m_mouse_hover(false),
@@ -41,9 +41,9 @@ DiagramTextItem::DiagramTextItem(const QString &text, QGraphicsItem *parent) :
{ build(); }
/**
* @brief DiagramTextItem::build
* Build this item with default value
*/
@brief DiagramTextItem::build
Build this item with default value
*/
void DiagramTextItem::build()
{
//set Zvalue at 10 to be upper than the DiagramImageItem
@@ -57,19 +57,19 @@ void DiagramTextItem::build()
}
/**
* @brief DiagramTextItem::diagram
* @return The diagram of this item or 0 if this text isn't in a diagram
*/
@brief DiagramTextItem::diagram
@return The diagram of this item or 0 if this text isn't in a diagram
*/
Diagram *DiagramTextItem::diagram() const {
return(qobject_cast<Diagram *>(scene()));
}
/**
* @brief DiagramTextItem::toXml
* This method do nothing and return an empty DomElement
* This is used to be inherited by child class
* @return
*/
@brief DiagramTextItem::toXml
This method do nothing and return an empty DomElement
This is used to be inherited by child class
@return
*/
QDomElement DiagramTextItem::toXml(QDomDocument &) const {
return QDomElement();
}
@@ -186,9 +186,9 @@ Qt::Alignment DiagramTextItem::alignment() const
}
/**
* @brief DiagramTextItem::frameRect
* @return the rect used to draw a frame around this text
*/
@brief DiagramTextItem::frameRect
@return the rect used to draw a frame around this text
*/
QRectF DiagramTextItem::frameRect() const
{
//Get the bounding rectangle of the text
@@ -226,13 +226,13 @@ bool DiagramTextItem::isHtml() const {
}
/**
* @brief DiagramTextItem::paint
* Draw this text field. This method draw the text by calling QGraphicsTextItem::paint.
* If text is hovered, this method draw the bounding rect in grey
* @param painter : painter to use
* @param option : style option
* @param widget : widget where must to draw
*/
@brief DiagramTextItem::paint
Draw this text field. This method draw the text by calling QGraphicsTextItem::paint.
If text is hovered, this method draw the bounding rect in grey
@param painter : painter to use
@param option : style option
@param widget : widget where must to draw
*/
void DiagramTextItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
{
painter -> setRenderHint(QPainter::Antialiasing, false);
@@ -261,9 +261,9 @@ void DiagramTextItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *o
}
/**
* @brief DiagramTextItem::focusInEvent
* @param e
*/
@brief DiagramTextItem::focusInEvent
@param e
*/
void DiagramTextItem::focusInEvent(QFocusEvent *event)
{
QGraphicsTextItem::focusInEvent(event);
@@ -275,9 +275,9 @@ void DiagramTextItem::focusInEvent(QFocusEvent *event)
}
/**
* @brief DiagramTextItem::focusOutEvent
* @param event
*/
@brief DiagramTextItem::focusOutEvent
@param event
*/
void DiagramTextItem::focusOutEvent(QFocusEvent *event)
{
QGraphicsTextItem::focusOutEvent(event);
@@ -313,9 +313,9 @@ void DiagramTextItem::mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event) {
}
/**
* @brief DiagramTextItem::mousePressEvent
* @param event
*/
@brief DiagramTextItem::mousePressEvent
@param event
*/
void DiagramTextItem::mousePressEvent (QGraphicsSceneMouseEvent *event)
{
if (event->button() == Qt::LeftButton)
@@ -328,9 +328,9 @@ void DiagramTextItem::mousePressEvent (QGraphicsSceneMouseEvent *event)
}
/**
* @brief DiagramTextItem::mouseMoveEvent
* @param event
*/
@brief DiagramTextItem::mouseMoveEvent
@param event
*/
void DiagramTextItem::mouseMoveEvent(QGraphicsSceneMouseEvent *event) {
if (textInteractionFlags() & Qt::TextEditable) QGraphicsTextItem::mouseMoveEvent(event);
@@ -359,9 +359,9 @@ void DiagramTextItem::mouseMoveEvent(QGraphicsSceneMouseEvent *event) {
}
/**
* @brief DiagramTextItem::mouseReleaseEvent
* @param event
*/
@brief DiagramTextItem::mouseReleaseEvent
@param event
*/
void DiagramTextItem::mouseReleaseEvent (QGraphicsSceneMouseEvent *event)
{
//Signal to diagram movement is finish
@@ -394,19 +394,19 @@ void DiagramTextItem::applyRotation(const qreal &angle) {
}
/**
* @brief DiagramTextItem::prepareAlignment
* Call this function before changing the bounding rect of this text.
*/
@brief DiagramTextItem::prepareAlignment
Call this function before changing the bounding rect of this text.
*/
void DiagramTextItem::prepareAlignment()
{
m_alignment_rect = boundingRect();
}
/**
* @brief DiagramTextItem::finishAlignment
* Call this function after changing the bouding rect of this text
* to set the position of this text according to the alignment property.
*/
@brief DiagramTextItem::finishAlignment
Call this function after changing the bouding rect of this text
to set the position of this text according to the alignment property.
*/
void DiagramTextItem::finishAlignment()
{
if(m_block_alignment)
@@ -448,8 +448,8 @@ void DiagramTextItem::finishAlignment()
}
/**
* @brief Edit the text with HtmlEditor
*/
@brief Edit the text with HtmlEditor
*/
void DiagramTextItem::edit()
{
QWidget *parent = nullptr;