Add new entry if the main QElectroTech dialog conf, to set a defaut font and rotation of independent text item.

Revamp some GUI


git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5767 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
blacksun
2019-03-08 20:07:00 +00:00
parent a58cecc22a
commit 32db96c623
7 changed files with 347 additions and 156 deletions

View File

@@ -43,8 +43,8 @@ DynamicElementTextItem::DynamicElementTextItem(Element *parent_element) :
setText(tr("Texte"));
setParentItem(parent_element);
QSettings settings;
setRotation(settings.value("dynamic_rotation", 0).toInt());
setTextWidth(settings.value("dynamic_with", -1).toInt());
setRotation(settings.value("dynamic_text_rotation", 0).toInt());
setTextWidth(settings.value("dynamic_text_widht", -1).toInt());
connect(this, &DynamicElementTextItem::textEdited, [this](const QString &old_str, const QString &new_str)
{
if(this->m_parent_element && this->m_parent_element->diagram())
@@ -53,7 +53,6 @@ DynamicElementTextItem::DynamicElementTextItem(Element *parent_element) :
undo->setText(tr("Éditer un texte d'élément"));
this->m_parent_element->diagram()->undoStack().push(undo);
}
});
//Option when text is displayed in multiple line

View File

@@ -19,7 +19,10 @@
#include "qet.h"
#include "diagram.h"
#include "diagramcommands.h"
#include "qetapp.h"
#include <QDomElement>
#include <QSettings>
/**
Constructeur
@@ -27,7 +30,11 @@
*/
IndependentTextItem::IndependentTextItem() :
DiagramTextItem(nullptr)
{}
{
setFont(QETApp::indiTextsItemFont());
QSettings settings;
setRotation(settings.value("diagrameditor/independent_text_rotation", 0).toInt());
}
/**
Constructeur