Files
create/src/Mod/TechDraw/Gui/TemplateTextField.cpp
Ladislav Michl 0ee3c9f8e6 Base: Drop QString-std::string conversion functions from Tools
Convenience helpers function Tools::toStdString and Tools::fromStdString
were implemented for Qt4 or older to perform utf8 aware conversion as
QString::toStdString/QString::fromStdString were using toAscii/fromAscii
internally (see https://dreamswork.github.io/qt4/classQString.html).

Since Qt5 QString uses toUtf8/fromUTf8, which makes the helper functions
obsolete (see https://doc.qt.io/qt-5/qstring.html#fromStdString).
2024-12-02 23:30:53 -05:00

128 lines
4.5 KiB
C++

/***************************************************************************
* Copyright (c) 2015 Ian Rees <ian.rees@gmail.com> *
* *
* This file is part of the FreeCAD CAx development system. *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Library General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU Library General Public License for more details. *
* *
* You should have received a copy of the GNU Library General Public *
* License along with this library; see the file COPYING.LIB. If not, *
* write to the Free Software Foundation, Inc., 59 Temple Place, *
* Suite 330, Boston, MA 02111-1307, USA *
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <QGraphicsSceneMouseEvent>
#include <QInputDialog>
#include <QLineEdit>
#include <QTextDocument>
#endif // #ifndef _PreCmp_
#include <Base/Console.h>
#include <Mod/TechDraw/App/DrawTemplate.h>
#include <Mod/TechDraw/App/DrawSVGTemplate.h>
#include "DlgTemplateField.h"
#include "TemplateTextField.h"
using namespace TechDrawGui;
using namespace TechDraw;
TemplateTextField::TemplateTextField(QGraphicsItem *parent,
TechDraw::DrawTemplate *myTmplte,
const std::string &myFieldName)
: QGraphicsItemGroup(parent),
tmplte(myTmplte),
fieldNameStr(myFieldName)
{
setToolTip(QObject::tr("Click to update text"));
m_rect = new QGraphicsRectItem();
addToGroup(m_rect);
QPen rectPen(Qt::transparent);
QBrush rectBrush(Qt::NoBrush);
m_rect->setPen(rectPen);
m_rect->setBrush(rectBrush);
m_line = new QGraphicsPathItem();
addToGroup(m_line);
}
void TemplateTextField::mousePressEvent(QGraphicsSceneMouseEvent *event)
{
if ( tmplte && m_rect->rect().contains(event->pos()) ) {
event->accept();
} else {
QGraphicsItemGroup::mousePressEvent(event);
}
}
void TemplateTextField::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
{
if ( tmplte && m_rect->rect().contains(event->pos()) ) {
event->accept();
DlgTemplateField ui;
ui.setFieldName(fieldNameStr);
ui.setFieldContent(tmplte->EditableTexts[fieldNameStr]);
ui.setAutofillContent(m_autofillString.toStdString());
if (ui.exec() == QDialog::Accepted) {
QString qsClean = ui.getFieldContent();
std::string utf8Content = qsClean.toUtf8().constData();
if (ui.getAutofillState()) {
auto svgTemplate = dynamic_cast<DrawSVGTemplate*>(tmplte);
if (svgTemplate) {
QString fieldName = QString::fromStdString(fieldNameStr);
QString autofillValue = svgTemplate->getAutofillByEditableName(fieldName);
if (!autofillValue.isEmpty()) {
utf8Content = autofillValue.toUtf8().constData();
}
}
}
tmplte->EditableTexts.setValue(fieldNameStr, utf8Content);
}
} else {
QGraphicsItemGroup::mouseReleaseEvent(event);
}
}
//void setAutofill(std::string autofillString);
void TemplateTextField::setAutofill(QString autofillString)
{
m_autofillString = autofillString;
}
void TemplateTextField::setRectangle(QRectF rect)
{
m_rect->setRect(rect);
}
void TemplateTextField::setLine(QPointF from, QPointF to)
{
QPainterPath path(from);
path.lineTo(to);
m_line->setPath(path);
}
void TemplateTextField::setLineColor(QColor color)
{
QPen pen(color);
pen.setWidth(5);
m_line->setPen(pen);
}