Krita Source Code Documentation
Loading...
Searching...
No Matches
SvgTextTool.cpp
Go to the documentation of this file.
1/* This file is part of the KDE project
2
3 SPDX-FileCopyrightText: 2017 Boudewijn Rempt <boud@valdyas.org>
4
5 SPDX-License-Identifier: LGPL-2.0-or-later
6*/
7
8#include "SvgTextTool.h"
10#include "KoSvgTextShape.h"
16#include "SvgInlineSizeHelper.h"
17#include "SvgMoveTextCommand.h"
18#include "SvgMoveTextStrategy.h"
20#include "SvgTextEditor.h"
23#include "SvgTextShortCuts.h"
30
31#include <QPainterPath>
32#include <QDesktopServices>
33#include <QApplication>
34#include <QStyle>
35#include <QDockWidget>
36#include <QQuickItem>
37#include <QActionGroup>
38
39#include <klocalizedstring.h>
40
41#include <KisPart.h>
42#include <kis_canvas2.h>
43#include <KSharedConfig>
44#include "kis_assert.h"
46
47#include <KoFileDialog.h>
48#include <KoIcon.h>
49#include <KoCanvasBase.h>
50#include <KoSelection.h>
51#include <KoShapeManager.h>
52#include <KoShapeController.h>
53#include <KoShapeRegistry.h>
54#include <KoShapeFactoryBase.h>
55#include <KoPointerEvent.h>
56#include <KoProperties.h>
58#include "KoToolManager.h"
59#include <KoShapeFillWrapper.h>
61#include <KoPathShape.h>
62#include <KoPathSegment.h>
63
65#include <KoCssStylePreset.h>
67#include <KoColorBackground.h>
68#include <KisResourceModel.h>
69
71#include <KisViewManager.h>
72#include <KisQQuickWidget.h>
73#include <QQmlError>
74#include <KisMainWindow.h>
75
77#include "kis_tool_utils.h"
78#include "kis_debug.h"
80
81#ifdef Q_OS_ANDROID
82#include <QMenuBar>
83#endif
84
85
87
88constexpr double INLINE_SIZE_DASHES_PATTERN_A = 4.0;
89constexpr double INLINE_SIZE_DASHES_PATTERN_B = 8.0;
91constexpr double INLINE_SIZE_HANDLE_THICKNESS = 1.0;
92
93
94static bool debugEnabled()
95{
96 static const bool debugEnabled = !qEnvironmentVariableIsEmpty("KRITA_DEBUG_TEXTTOOL");
97 return debugEnabled;
98}
99
101 : KoToolBase(canvas)
102 , m_optionManager(new SvgTextToolOptionsManager(this))
103 , m_textCursor(canvas)
104 , m_textOutlineHelper(new KoSvgTextShapeOutlineHelper(canvas))
105{
106 // TODO: figure out whether we should use system config for this, Windows and GTK have values for it, but Qt and MacOS don't(?).
107 const int cursorFlashLimit = 5000;
108 const bool enableCursorWithSelection = QApplication::style()->styleHint(QStyle::SH_BlinkCursorWhenTextSelected);
109 m_textCursor.setCaretSetting(QApplication::style()->pixelMetric(QStyle::PM_TextCursorWidth)
110 , qApp->cursorFlashTime()
111 , cursorFlashLimit
112 , enableCursorWithSelection);
113 connect(&m_textCursor, SIGNAL(updateCursorDecoration(QRectF)), this, SLOT(slotUpdateCursorDecoration(QRectF)));
114
115 Q_FOREACH(const QString name, SvgTextShortCuts::possibleActions()) {
116 QAction *a = action(name);
118 dbgTools << "registered" << name << a->shortcut();
119 }
120 }
121
122 const QStringList extraActions = {
123 "svg_insert_special_character",
124 "svg_paste_rich_text",
125 "svg_paste_plain_text",
126 "svg_remove_transforms_from_range",
127 "svg_clear_formatting"
128 };
129 connect(&m_textCursor, SIGNAL(sigOpenGlyphPalette()), this, SLOT(showGlyphPalette()));
130 Q_FOREACH (const QString name, extraActions) {
131 QAction *a = action(name);
132 if (a) {
134 qWarning() << "could not register" << name << a->shortcut();
135 }
136 }
137 }
138
140 QActionGroup *textTypeActions = new QActionGroup(this);
141 addMappedAction(m_textTypeSignalsMapper.data(), "text_type_preformatted", KoSvgTextShape::PreformattedText, textTypeActions);
142 addMappedAction(m_textTypeSignalsMapper.data(), "text_type_inline_wrap", KoSvgTextShape::InlineWrap, textTypeActions);
143 addMappedAction(m_textTypeSignalsMapper.data(), "text_type_pre_positioned", KoSvgTextShape::PrePositionedText, textTypeActions);
144
146 QActionGroup *typeSettingActions = new QActionGroup(this);
147 addMappedAction(m_typeSettingMovementMapper.data(), "svg_type_setting_move_selection_start_down_1_px", Qt::Key_Down, typeSettingActions);
148 addMappedAction(m_typeSettingMovementMapper.data(), "svg_type_setting_move_selection_start_up_1_px", Qt::Key_Up, typeSettingActions);
149 addMappedAction(m_typeSettingMovementMapper.data(), "svg_type_setting_move_selection_start_left_1_px", Qt::Key_Left, typeSettingActions);
150 addMappedAction(m_typeSettingMovementMapper.data(), "svg_type_setting_move_selection_start_right_1_px", Qt::Key_Right, typeSettingActions);
151
152 m_textOutlineHelper->setDrawBoundingRect(false);
153 m_textOutlineHelper->setDrawTextWrappingArea(true);
154
155 connect(&m_textCursor, SIGNAL(selectionChanged()), this, SLOT(updateTextPathHelper()));
156
157 m_base_cursor = QCursor(QPixmap(":/tool_text_basic.xpm"), 7, 7);
158 m_text_inline_horizontal = QCursor(QPixmap(":/tool_text_inline_horizontal.xpm"), 7, 7);
159 m_text_inline_vertical = QCursor(QPixmap(":/tool_text_inline_vertical.xpm"), 7, 7);
160 m_text_on_path = QCursor(QPixmap(":/tool_text_on_path.xpm"), 7, 7);
161 m_text_in_shape = QCursor(QPixmap(":/tool_text_in_shape.xpm"), 7, 7);
162 m_ibeam_horizontal = QCursor(QPixmap(":/tool_text_i_beam_horizontal.xpm"), 11, 11);
163 m_ibeam_vertical = QCursor(QPixmap(":/tool_text_i_beam_vertical.xpm"), 11, 11);
164 m_ibeam_horizontal_done = QCursor(QPixmap(":/tool_text_i_beam_horizontal_done.xpm"), 5, 11);
165}
166
168{
169 if(m_editor) {
170 m_editor->close();
171 }
172 if(m_glyphPalette) {
173 m_glyphPalette->close();
174 }
175}
176
177void SvgTextTool::activate(const QSet<KoShape *> &shapes)
178{
179 KoToolBase::activate(shapes);
180 m_canvasConnections.addConnection(canvas()->selectedShapesProxy(), SIGNAL(selectionChanged()), this, SLOT(slotShapeSelectionChanged()));
181
182 KisCanvas2 *canvas2 = qobject_cast<KisCanvas2 *>(this->canvas());
183 if (canvas2) {
184 canvas2->setCurrentShapeManagerOwnerShape(nullptr);
186 QDockWidget *docker = canvas2->viewManager()->mainWindow()->dockWidget("TextProperties");
187 if (docker && m_optionManager) {
188 m_optionManager->setTextPropertiesOpen(docker->isVisible());
189 }
190 }
191
192 connect(m_textTypeSignalsMapper.data(), SIGNAL(mapped(int)), this, SLOT(slotConvertType(int)));
193 connect(m_typeSettingMovementMapper.data(), SIGNAL(mapped(int)), this, SLOT(slotMoveTextSelection(int)));
194
197
199}
200
202{
205 m_textCursor.setShape(nullptr);
206 const KisCanvas2 *canvas2 = qobject_cast<const KisCanvas2 *>(this->canvas());
207 if (canvas2) {
209 }
210 // Exiting text editing mode is handled by requestStrokeEnd
211 disconnect(m_textTypeSignalsMapper.data(), 0, this, 0);
212 disconnect(m_typeSettingMovementMapper.data(), 0, this, 0);
213
214 m_hoveredShapeHighlightRect = QPainterPath();
215
217}
218
220{
221 return nullptr;
222}
223
224QVariant SvgTextTool::inputMethodQuery(Qt::InputMethodQuery query) const
225{
226 if (canvas()) {
227 return m_textCursor.inputMethodQuery(query);
228 } else {
229 return KoToolBase::inputMethodQuery(query);
230 }
231}
232
233void SvgTextTool::inputMethodEvent(QInputMethodEvent *event)
234{
236}
237
239{
240 KisQQuickWidget *optionWidget = new KisQQuickWidget();
241 optionWidget->setMinimumWidth(100);
242 optionWidget->setMinimumHeight(100);
243
244 optionWidget->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding);
245 optionWidget->setSource(QUrl("qrc:/SvgTextToolOptions.qml"));
246
247 m_optionManager->optionsModel()->setConfigName(this->toolId());
248 m_optionManager->setShowDebug(debugEnabled());
249 if (optionWidget->errors().isEmpty()) {
250 optionWidget->rootObject()->setProperty("manager", QVariant::fromValue(m_optionManager.data()));
251 optionWidget->connectMinimumHeightToRootObject();
252 } else {
253 qWarning() << optionWidget->errors();
254 }
255
256
257 connect(m_optionManager.data(), SIGNAL(openTextEditor()), SLOT(showEditor()));
258 connect(m_optionManager.data(), SIGNAL(openGlyphPalette()), SLOT(showGlyphPalette()));
259
260 connect(m_optionManager.data(), SIGNAL(convertTextType(int)), SLOT(slotConvertType(int)));
261 connect(m_optionManager.data(), SIGNAL(typeSettingModeChanged()), SLOT(slotUpdateTypeSettingMode()));
262 connect(m_optionManager->optionsModel(), SIGNAL(useVisualBidiCursorChanged(bool)), this, SLOT(slotUpdateVisualCursor()));
263 connect(m_optionManager->optionsModel(), SIGNAL(pasteRichtTextByDefaultChanged(bool)), this, SLOT(slotUpdateTextPasteBehaviour()));
264 const KisCanvas2 *canvas2 = qobject_cast<const KisCanvas2 *>(this->canvas());
265 if (canvas2 && canvas2->viewManager()->mainWindow()) {
266 QDockWidget *docker = canvas2->viewManager()->mainWindow()->dockWidget("TextProperties");
267 m_optionManager->setShowTextPropertyButton((docker));
268 if (docker) {
269 optionWidget->setPalette(docker->palette());
270 m_optionManager->setTextPropertiesOpen(docker->isVisible());
272 docker->setVisible(!docker->isVisible());
273 });
274 // Once we have docker toggling actions, we should revisit this.
275 }
276 }
280
281
282 return optionWidget;
283}
284
292
294{
296 KIS_SAFE_ASSERT_RECOVER_RETURN_VALUE(canvas()->selectedShapesProxy(), 0);
297
299 if (shapes.isEmpty()) return 0;
300
301 KoSvgTextShape *textShape = dynamic_cast<KoSvgTextShape*>(shapes.first());
302
303 return textShape;
304}
305
307{
308 KoSvgTextShape *shape = selectedShape();
309 if (!shape) return;
310
311 if (!m_editor) {
312 m_editor = new SvgTextEditor(QApplication::activeWindow());
313 m_editor->setWindowTitle(i18nc("@title:window", "Krita - Edit Text"));
314 m_editor->setWindowModality(Qt::ApplicationModal);
315 m_editor->setAttribute( Qt::WA_QuitOnClose, false );
316
317 connect(m_editor, SIGNAL(textUpdated(KoSvgTextShape*,QString,QString)), SLOT(textUpdated(KoSvgTextShape*,QString,QString)));
318
319 m_editor->activateWindow(); // raise on creation only
320 }
321 if (!m_editor->isVisible()) {
322 m_editor->setInitialShape(shape);
323#ifdef Q_OS_ANDROID
324 // for window manager
325 m_editor->setWindowFlags(Qt::Dialog);
326 m_editor->menuBar()->setNativeMenuBar(false);
327#endif
328 m_editor->show();
329 }
330}
331
332void SvgTextTool::textUpdated(KoSvgTextShape *shape, const QString &svg, const QString &defs)
333{
334 SvgTextChangeCommand *cmd = new SvgTextChangeCommand(shape, svg, defs);
335 canvas()->addCommand(cmd);
336}
337
339{
340 if (!m_glyphPalette) {
341 m_glyphPalette = new GlyphPaletteDialog(QApplication::activeWindow());
342 m_glyphPalette->setAttribute( Qt::WA_QuitOnClose, false );
343
344 connect(&m_textCursor, SIGNAL(selectionChanged()), this, SLOT(updateGlyphPalette()));
345 connect(m_glyphPalette, SIGNAL(signalInsertRichText(KoSvgTextShape*, bool)), this, SLOT(insertRichText(KoSvgTextShape*, bool)));
346
347 m_glyphPalette->activateWindow();
348 }
349 if (!m_glyphPalette->isVisible()) {
350 m_glyphPalette->show();
352 }
353}
354
356{
357 if (m_glyphPalette && m_glyphPalette->isVisible()) {
358 QString grapheme = QString();
359 if (m_textCursor.shape()) {
360 int pos = m_textCursor.getPos();
361 int pos2 = pos > 0? m_textCursor.shape()->posLeft(pos, false): m_textCursor.shape()->posRight(pos, false);
362 int start = m_textCursor.shape()->indexForPos(qMin(pos, pos2));
363 int end = m_textCursor.shape()->indexForPos(qMax(pos, pos2));
364 grapheme = m_textCursor.shape()->plainText().mid(start, end-start);
365 }
366 m_glyphPalette->setGlyphModelFromProperties(m_textCursor.currentTextProperties(), grapheme);
367 }
368}
369
374
375void SvgTextTool::insertRichText(KoSvgTextShape *richText, bool replaceLastGlyph)
376{
377 if (replaceLastGlyph) {
380 }
381 m_textCursor.insertRichText(richText, true);
382}
383
385{
386 QStringList propStrings;
387 QMap<QString, QString> paraProps = properties.convertParagraphProperties();
388 for (auto it = paraProps.constBegin(); it != paraProps.constEnd(); it++) {
389 propStrings.append(QString("%1: %2;").arg(it.key()).arg(it.value()));
390 }
391 paraProps = properties.convertToSvgTextAttributes();
392 for (auto it = paraProps.constBegin(); it != paraProps.constEnd(); it++) {
393 propStrings.append(QString("%1: %2;").arg(it.key()).arg(it.value()));
394 }
395
396 return QString("<defs>\n <style>\n text {\n %1\n }\n </style>\n</defs>").arg(propStrings.join("\n "));
397}
398
400{
401 const bool useCurrent = m_optionManager->optionsModel()->useCurrentTextProperties();
402 const QString presetName = m_optionManager->optionsModel()->cssStylePresetName();
403
405 if (useCurrent || presetName.isEmpty()) {
407 props = textData.commonProperties;
408 } else {
410 QVector<KoResourceSP> res = model->resourcesForName(presetName);
411 if (res.first()) {
412 KoCssStylePresetSP style = res.first().staticCast<KoCssStylePreset>();
413 qreal dpi = 72;
414 KisCanvas2 *canvas2 = qobject_cast<KisCanvas2 *>(this->canvas());
415 if (canvas2) {
416 dpi = canvas2->image()->xRes() * 72.0;
417 }
418 if (style) {
419 props = style->properties(dpi, true);
420 }
421 }
422 }
423
424 QColor fontColor = (canvas()->resourceManager()->isUsingOtherColor()
425 ? canvas()->resourceManager()->backgroundColor()
426 : canvas()->resourceManager()->foregroundColor()).toQColor();
428 bg->setColor(fontColor);
430 props.setProperty(KoSvgTextProperties::FillId, QVariant::fromValue(bgProp));
431 return props;
432}
433
435{
437 if (shapes.size() == 1) {
438 KoSvgTextShape *textShape = selectedShape();
439 if (!textShape) {
441 return;
442 }
443 } else if (shapes.size() > 1) {
444 KoSvgTextShape *foundTextShape = nullptr;
445
446 Q_FOREACH (KoShape *shape, shapes) {
447 KoSvgTextShape *textShape = dynamic_cast<KoSvgTextShape*>(shape);
448 if (textShape) {
449 foundTextShape = textShape;
450 break;
451 }
452 }
453
455 if (foundTextShape) {
456 koSelection()->select(foundTextShape);
457 }
458 return;
459 }
460 KoSvgTextShape *const shape = selectedShape();
461 if (shape != m_textCursor.shape()) {
462 m_textCursor.setShape(shape);
464 if (shape) {
465 setTextMode(true);
466 } else {
467 setTextMode(false);
468 }
469 }
471}
472
474{
476}
477
482
484{
485 return m_textCursor.paste();
486}
487
492
499
504
509
511{
512 if (!isActivated()) return;
516 m_interactionStrategy->cancelInteraction();
517 m_interactionStrategy = nullptr;
518 useCursor(Qt::ArrowCursor);
520 }
521 }
522}
523
532
534{
535 if (canvas()) {
536 canvas()->updateCanvas(updateRect);
537 }
538}
539
541 KoSvgTextShape *shape = selectedShape();
542 if (shape) {
543 if (index == shape->textType()) return;
545 KUndo2Command *parentCommand = new KUndo2Command();
548 KoSvgConvertTextTypeCommand *cmd = new KoSvgConvertTextTypeCommand(shape, type, m_textCursor.getPos(), parentCommand);
549 parentCommand->setText(cmd->text());
553 canvas()->addCommand(parentCommand);
555 }
556}
557
559{
560 m_textCursor.setVisualMode(m_optionManager->optionsModel()->useVisualBidiCursor());
561}
562
564{
565 m_textCursor.setPasteRichTextByDefault(m_optionManager->optionsModel()->pasteRichtTextByDefault());
566}
567
569{
570 KoSvgTextShape *shape = selectedShape();
571 QActionGroup *typeConvertGroup = action("text_type_preformatted")->actionGroup();
572 if (typeConvertGroup) {
573 typeConvertGroup->setExclusive(true);
574 Q_FOREACH (QAction *a, typeConvertGroup->actions()) {
575 a->setCheckable(true);
576 }
577 }
578 if (m_optionManager) {
579 if (shape) {
580 m_optionManager->convertToTextType(int(shape->textType()));
581 if (typeConvertGroup) {
582 typeConvertGroup->setEnabled(true);
583 }
584 action("text_type_preformatted")->setChecked(shape->textType() == KoSvgTextShape::PreformattedText);
585 action("text_type_pre_positioned")->setChecked(shape->textType() == KoSvgTextShape::PrePositionedText);
586 action("text_type_inline_wrap")->setChecked(shape->textType() == KoSvgTextShape::InlineWrap);
587
588 } else {
589 m_optionManager->convertToTextType(-1);
590 if (typeConvertGroup) {
591 typeConvertGroup->setEnabled(false);
592 }
593 }
594 const bool enableTypeSetting = (m_optionManager->typeSettingMode() && shape && (shape->textType() == KoSvgTextShape::PreformattedText ||shape->textType() == KoSvgTextShape::PrePositionedText));
595 QActionGroup *svgTypeSettingGroup = action("svg_type_setting_move_selection_start_down_1_px")->actionGroup();
596 if (svgTypeSettingGroup) {
597 svgTypeSettingGroup->setEnabled(enableTypeSetting);
598 }
600 }
601}
602
604{
605 KoSvgTextShape *shape = selectedShape();
606 if (!shape) return;
607 QPointF offset;
608 // test type setting mode.
609 if (index == Qt::Key_Down) {
610 offset = QPointF(0, 1);
611 } else if (index == Qt::Key_Up) {
612 offset = QPointF(0, -1);
613 } else if (index == Qt::Key_Right) {
614 offset = QPointF(-1, 0);
615 } else if (index == Qt::Key_Left) {
616 offset = QPointF(1, 0);
617 } else {
618 return;
619 }
620 const KisCanvas2 *canvas2 = qobject_cast<const KisCanvas2 *>(this->canvas());
621 if (canvas2) {
622 offset = canvas2->coordinatesConverter()->imageToDocumentTransform().map(offset);
623 }
624 KUndo2Command *parentCommand = new KUndo2Command();
628 parentCommand->setText(cmd->text());
629 canvas()->addCommand(parentCommand);
630}
631
637
639{
641 if (!node->isEditable(true)) {
642 KisCanvas2 * kiscanvas = static_cast<KisCanvas2*>(canvas());
643 if (kiscanvas) {
644 QString message = KisToolUtils::nodeEditableMessage(node);
645 kiscanvas->viewManager()->showFloatingMessage(message, KisIconUtils::loadIcon("object-locked"));
646 }
647 return false;
648 }
649 return true;
650}
651
653{
654 QRectF rect;
655 KoSvgTextShape *const shape = selectedShape();
656 if (shape) {
657 rect |= shape->boundingRect();
658
659 const QPointF anchor = shape->absoluteTransformation().map(QPointF());
660 rect |= kisGrowRect(QRectF(anchor, anchor), handleRadius());
661
662 qreal pxlToPt = canvas()->viewConverter()->viewToDocumentX(1.0);
664
665 if (std::optional<InlineSizeInfo> info = InlineSizeInfo::fromShape(shape, length * pxlToPt)) {
666 rect |= kisGrowRect(info->boundingRect(), handleRadius() * 2);
667 }
668
669 if (canvas()->snapGuide()->isSnapping()) {
671 }
672 }
673
674 rect |= m_hoveredShapeHighlightRect.boundingRect();
675
676 rect |= m_textOutlineHelper->decorationRect();
677 rect |= m_textOnPathHelper.decorationRect(canvas()->viewConverter()->documentToView());
678
679 return rect;
680}
681
682void SvgTextTool::paint(QPainter &gc, const KoViewConverter &converter)
683{
684 if (!isActivated()) return;
685
687 m_interactionStrategy->paint(gc, converter);
688 }
689
690 KoSvgTextShape *shape = selectedShape();
691 if (shape) {
692 KisHandlePainterHelper handlePainter =
694
697 QPainterPath path;
698 path.addRect(shape->outlineRect());
699 handlePainter.drawPath(path);
700 }
701
702 qreal pxlToPt = canvas()->viewConverter()->viewToDocumentX(1.0);
704 if (std::optional<InlineSizeInfo> info = InlineSizeInfo::fromShape(shape, length * pxlToPt)) {
706 handlePainter.drawConnectionLine(info->baselineLineLocal());
707
711 }
713 handlePainter.drawHandleLine(info->startLineLocal());
714 handlePainter.drawHandleLine(info->startLineDashes(), INLINE_SIZE_HANDLE_THICKNESS, dashPattern, INLINE_SIZE_DASHES_PATTERN_A);
715
720 }
721 handlePainter.drawHandleLine(info->endLineLocal());
722 handlePainter.drawHandleLine(info->endLineDashes(), INLINE_SIZE_HANDLE_THICKNESS, dashPattern, INLINE_SIZE_DASHES_PATTERN_A);
723 }
724
727 } else {
729 }
730 handlePainter.drawHandleCircle(QPointF(), KoToolBase::handleRadius() * 0.75);
731 }
732
733 m_textOutlineHelper->setDecorationThickness(decorationThickness());
734 m_textOutlineHelper->setHandleRadius(handleRadius());
735 m_textOutlineHelper->paint(&gc, converter);
738 m_textOnPathHelper.paint(&gc, converter);
739 gc.setTransform(converter.documentToView(), true);
740 {
742 if (!m_hoveredShapeHighlightRect.isEmpty()) {
744 QPainterPath path;
745 path.addPath(m_hoveredShapeHighlightRect);
746 handlePainter.drawPath(path);
747 }
748 }
749 if (shape) {
750 m_textCursor.paintDecorations(gc, qApp->palette().color(QPalette::Highlight), decorationThickness(), handleRadius());
751 }
753 gc.save();
754 canvas()->snapGuide()->paint(gc, converter);
755 gc.restore();
756 }
757
758 // Paint debug outline
759 if (debugEnabled() && shape) {
760 gc.save();
761 using Element = KoSvgTextShape::DebugElement;
762 KoSvgTextShape::DebugElements el{};
763 if (m_optionManager->showCharacterDebug()) {
764 el |= Element::CharBbox;
765 }
766 if (m_optionManager->showLineDebug()) {
767 el |= Element::LineBox;
768 }
769
770 gc.setTransform(shape->absoluteTransformation(), true);
771 shape->paintDebug(gc, el);
772 gc.restore();
773 }
774}
775
777{
778 // When using touch drawing, we only ever receive move events after the
779 // finger has pressed down. We have to issue an artificial move here so that
780 // the tool's state is updated properly to handle the press.
781 if (event->isTouchEvent()) {
782 mouseMoveEvent(event);
783 }
784
785 if (!nodeEditable()) {
786 event->accept();
787 return;
788 }
789
791
792 if (selectedShape) {
793 if (m_textOutlineHelper->contourModeButtonHovered(event->point)) {
794 m_textOutlineHelper->toggleTextContourMode(selectedShape);
795 event->accept();
796 KoToolManager::instance()->switchToolRequested("InteractionTool");
797 return;
798 }
799
802 if (handle != SvgTextCursor::NoHandle) {
807 }
808 event->accept();
809 return;
810 }
814 m_textOutlineHelper->setDrawTextWrappingArea(false);
815 event->accept();
816 return;
817 } else if (m_textOnPathHelper.hitTest(event->point, canvas()->viewConverter()->viewToDocument())) {
821 event->accept();
822 return;
826 event->accept();
827 return;
831 event->accept();
832 return;
836 event->accept();
837 return;
838 }
839 }
840
841 KoSvgTextShape *hoveredShape = dynamic_cast<KoSvgTextShape *>(canvas()->shapeManager()->shapeAt(event->point));
842 KoPathShape *hoveredFlowShape = dynamic_cast<KoPathShape *>(canvas()->shapeManager()->shapeAt(event->point));
843 QString shapeType;
844 QPainterPath hoverPath = KisToolUtils::shapeHoverInfoCrossLayer(canvas(), event->point, shapeType);
845 bool crossLayerPossible = !hoverPath.isEmpty() && shapeType == KoSvgTextShape_SHAPEID;
846
847 if (!selectedShape && !hoveredShape && !hoveredFlowShape && !crossLayerPossible) {
848 QPointF point = canvas()->snapGuide()->snap(event->point, event->modifiers());
849 m_interactionStrategy.reset(new SvgCreateTextStrategy(this, point));
851 event->accept();
852 } else if (hoveredShape) {
853 if (hoveredShape != selectedShape) {
855 canvas()->shapeManager()->selection()->select(hoveredShape);
856 m_hoveredShapeHighlightRect = QPainterPath();
857 }
858 m_interactionStrategy.reset(new SvgSelectTextStrategy(this, &m_textCursor, event->point, event->modifiers()));
860 event->accept();
861 } else if (hoveredFlowShape) {
862 QPointF point = canvas()->snapGuide()->snap(event->point, event->modifiers());
863 m_interactionStrategy.reset(new SvgCreateTextStrategy(this, point, hoveredFlowShape));
865 event->accept();
866 } else if (crossLayerPossible) {
868 m_interactionStrategy.reset(new SvgSelectTextStrategy(this, &m_textCursor, event->point, event->modifiers()));
870 m_hoveredShapeHighlightRect = QPainterPath();
871 } else {
873 }
874 event->accept();
875 } else { // if there's a selected shape but no hovered shape...
877 event->accept();
878 }
879
881}
882
883static inline Qt::CursorShape angleToCursor(const QVector2D unit)
884{
885 constexpr float SIN_PI_8 = 0.382683432;
886 if (unit.y() < SIN_PI_8 && unit.y() > -SIN_PI_8) {
887 return Qt::SizeHorCursor;
888 } else if (unit.x() < SIN_PI_8 && unit.x() > -SIN_PI_8) {
889 return Qt::SizeVerCursor;
890 } else if ((unit.x() > 0 && unit.y() > 0) || (unit.x() < 0 && unit.y() < 0)) {
891 return Qt::SizeFDiagCursor;
892 } else {
893 return Qt::SizeBDiagCursor;
894 }
895}
896
897static inline Qt::CursorShape lineToCursor(const QLineF line, const KoCanvasBase *const canvas)
898{
899 const KisCanvas2 *const canvas2 = qobject_cast<const KisCanvas2 *>(canvas);
900 KIS_ASSERT(canvas2);
901 const KisCoordinatesConverter *const converter = canvas2->coordinatesConverter();
902 QLineF wdgLine = converter->flakeToWidget(line);
903 return angleToCursor(QVector2D(wdgLine.p2() - wdgLine.p1()).normalized());
904}
905
907{
908 m_lastMousePos = event->point;
909 m_hoveredShapeHighlightRect = QPainterPath();
911
913 m_interactionStrategy->handleMouseMove(event->point, event->modifiers());
916 if (c && c->draggingInlineSize() && !c->hasWrappingShape()) {
917 if (this->writingMode() == KoSvgText::HorizontalTB) {
919 } else {
921 }
922 } else {
924 }
925 } else if (m_dragging == DragMode::Select && this->selectedShape()) {
927 // Todo: replace with something a little less hacky.
928 if (selectedShape->writingMode() == KoSvgText::HorizontalTB) {
930 } else {
932 }
933 } else if (m_dragging != DragMode::InShapeOffset) {
934 useCursor(Qt::ArrowCursor);
935 }
936 event->accept();
937 } else {
939
941 QCursor cursor = m_base_cursor;
942 if (selectedShape) {
944 const qreal sensitivity = grabSensitivityInPt();
945
948 if (handle != SvgTextCursor::NoHandle) {
951 }
952
954 if (std::optional<InlineSizeInfo> info = InlineSizeInfo::fromShape(selectedShape)) {
955 const QPolygonF zone = info->endLineGrabRect(sensitivity);
956 const QPolygonF startZone = info->startLineGrabRect(sensitivity);
957 if (zone.containsPoint(event->point, Qt::OddEvenFill)) {
959 cursor = lineToCursor(info->baselineLine(), canvas());
960 } else if (startZone.containsPoint(event->point, Qt::OddEvenFill)){
962 cursor = lineToCursor(info->baselineLine(), canvas());
963 }
964 }
965 }
966
968 const QPolygonF textOutline = selectedShape->absoluteTransformation().map(selectedShape->outlineRect());
969 const QPolygonF moveBorderRegion = selectedShape->absoluteTransformation().map(kisGrowRect(selectedShape->outlineRect(),
970 sensitivity * 2));
971 if (moveBorderRegion.containsPoint(event->point, Qt::OddEvenFill) && !textOutline.containsPoint(event->point, Qt::OddEvenFill)) {
973 cursor = Qt::SizeAllCursor;
974 }
975 }
976 }
977
978 QString shapeType;
979 bool isHorizontal = true;
980 const KoSvgTextShape *hoveredShape = dynamic_cast<KoSvgTextShape *>(canvas()->shapeManager()->shapeAt(event->point));
981 const KoPathShape *hoveredFlowShape = dynamic_cast<KoPathShape *>(canvas()->shapeManager()->shapeAt(event->point));
982 QPainterPath hoverPath = KisToolUtils::shapeHoverInfoCrossLayer(canvas(), event->point, shapeType, &isHorizontal);
983
984 bool textAreasHovered = false;
985 if (m_textOnPathHelper.hitTest(event->point, canvas()->viewConverter()->viewToDocument()) ) {
986 cursor = Qt::ArrowCursor;
987 } else if(std::optional<QPointF> offsetVector = SvgChangeTextPaddingMarginStrategy::hitTest(selectedShape, event->point, grabSensitivityInPt())) {
988 cursor = lineToCursor(QLineF(QPointF(0, 0), offsetVector.value()).normalVector(), canvas());
989 textAreasHovered = true;
990 } else if (selectedShape && selectedShape == hoveredShape && m_highlightItem == HighlightItem::None) {
993 } else {
995 }
996 } else if (hoveredShape && m_highlightItem == HighlightItem::None) {
997 if (!hoveredShape->textWrappingAreas().isEmpty()) {
998 Q_FOREACH(QPainterPath path, hoveredShape->textWrappingAreas()) {
999 m_hoveredShapeHighlightRect.addPath(hoveredShape->absoluteTransformation().map(path));
1000 }
1001 } else {
1002 m_hoveredShapeHighlightRect.addRect(hoveredShape->boundingRect());
1003 }
1004 if (hoveredShape->writingMode() == KoSvgText::HorizontalTB) {
1006 } else {
1008 }
1009 } else if (hoveredFlowShape) {
1010 m_hoveredShapeHighlightRect.addPath(hoveredFlowShape->absoluteTransformation().map(hoveredFlowShape->outline()));
1011 if (hoveredFlowShape->segmentAtPoint(event->point, handleGrabRect(event->point)).isValid()) {
1013 } else {
1015 }
1016 } else if (!hoverPath.isEmpty() && shapeType == KoSvgTextShape_SHAPEID && m_highlightItem == HighlightItem::None) {
1017 m_hoveredShapeHighlightRect = hoverPath;
1018 if (isHorizontal) {
1020 } else {
1022 }
1023 }
1024 m_textOutlineHelper->setTextAreasHovered(textAreasHovered);
1026 event->ignore();
1027 }
1028
1030}
1031
1033{
1035 m_interactionStrategy->finishInteraction(event->modifiers());
1036 KUndo2Command *const command = m_interactionStrategy->createCommand();
1037 if (command) {
1039 canvas()->addCommand(command);
1041 }
1042 m_interactionStrategy = nullptr;
1045 }
1047 m_textOutlineHelper->setDrawTextWrappingArea(true);
1050 event->accept();
1051 } else {
1053 }
1054 event->accept();
1055}
1056
1057void SvgTextTool::keyPressEvent(QKeyEvent *event)
1058{
1060 && (event->key() == Qt::Key_Control || event->key() == Qt::Key_Alt || event->key() == Qt::Key_Shift
1061 || event->key() == Qt::Key_Meta)) {
1062 m_interactionStrategy->handleMouseMove(m_lastMousePos, event->modifiers());
1063 event->accept();
1064 return;
1065 } else if (event->key() == Qt::Key_Escape) {
1067 } else if (selectedShape()) {
1069 }
1070
1071 event->ignore();
1072}
1073
1074void SvgTextTool::keyReleaseEvent(QKeyEvent *event)
1075{
1076 m_textCursor.updateModifiers(event->modifiers());
1078 && (event->key() == Qt::Key_Control || event->key() == Qt::Key_Alt || event->key() == Qt::Key_Shift
1079 || event->key() == Qt::Key_Meta)) {
1080 m_interactionStrategy->handleMouseMove(m_lastMousePos, event->modifiers());
1081 event->accept();
1082 } else {
1083 event->ignore();
1084 }
1085}
1086
1087void SvgTextTool::focusInEvent(QFocusEvent *event)
1088{
1090 event->accept();
1091}
1092
1093void SvgTextTool::focusOutEvent(QFocusEvent *event)
1094{
1096 event->accept();
1097}
1098
1100{
1101 if (canvas()->shapeManager()->shapeAt(event->point) != selectedShape()) {
1102 event->ignore(); // allow the event to be used by another
1103 return;
1104 } else {
1105 m_textCursor.setPosToPoint(event->point, true);
1108 }
1109 const QRectF updateRect = std::exchange(m_hoveredShapeHighlightRect, QPainterPath()).boundingRect();
1110 canvas()->updateCanvas(kisGrowRect(updateRect, 100));
1111 event->accept();
1112}
1113
1115{
1116 if (canvas()->shapeManager()->shapeAt(event->point) == selectedShape()) {
1117 // TODO: Consider whether we want to use sentence based selection instead:
1118 // QTextBoundaryFinder allows us to find sentences if necessary.
1121 event->accept();
1122 }
1123}
1124
1126{
1127 const int sensitivity = grabSensitivity();
1128 return canvas()->viewConverter()->viewToDocumentX(sensitivity);
1129}
1130
1136
1137void SvgTextTool::addMappedAction(KisSignalMapper *mapper, const QString &actionName, const int value, QActionGroup *group)
1138{
1139 QAction *a = action(actionName);
1140 if (a) {
1141 connect(a, SIGNAL(triggered()), mapper, SLOT(map()));
1142 mapper->setMapping(a, value);
1143 m_textCursor.registerPropertyAction(a, actionName);
1144 if (group && !a->actionGroup()) {
1145 group->addAction(a);
1146 }
1147 }
1148}
1149
qreal length(const QPointF &vec)
Definition Ellipse.cc:82
float value(const T *src, size_t ch)
#define KoSvgTextShape_SHAPEID
constexpr double INLINE_SIZE_DASHES_PATTERN_A
static Qt::CursorShape lineToCursor(const QLineF line, const KoCanvasBase *const canvas)
constexpr int INLINE_SIZE_DASHES_PATTERN_LENGTH
Size of the hidden part of the inline-size handle dashes.
constexpr double INLINE_SIZE_HANDLE_THICKNESS
Total amount of trailing dashes on inline-size handles.
constexpr double INLINE_SIZE_DASHES_PATTERN_B
Size of the visible part of the inline-size handle dashes.
static Qt::CursorShape angleToCursor(const QVector2D unit)
static bool debugEnabled()
Linethickness.
The GlyphPaletteDialog class.
void setText(const KUndo2MagicString &text)
The KisAllresourcesModel class provides access to the cache database for a particular resource type....
QVector< KoResourceSP > resourcesForName(const QString &name) const
KisCoordinatesConverter * coordinatesConverter
void setCurrentShapeManagerOwnerShape(KoShape *source) override
sets the group shape that is supposed to be "entered"
KisImageWSP image() const
KisViewManager * viewManager() const
_Private::Traits< T >::Result flakeToWidget(const T &obj) const
The KisHandlePainterHelper class is a special helper for painting handles around objects....
void drawPath(const QPainterPath &path)
void drawConnectionLine(const QLineF &line)
void setHandleStyle(const KisHandleStyle &style)
void drawHandleLine(const QLineF &line, qreal width=1.0, QVector< qreal > dashPattern={}, qreal dashOffset=0.0)
void drawHandleCircle(const QPointF &center, qreal radius)
static KisHandleStyle & highlightedPrimaryHandlesWithSolidOutline()
static KisHandleStyle & highlightedPrimaryHandles()
static KisHandleStyle & partiallyHighlightedPrimaryHandles()
static KisHandleStyle & secondarySelection()
static KisHandleStyle & primarySelection()
double xRes() const
QDockWidget * dockWidget(const QString &id)
The PopupWidgetInterface abstract class defines the basic interface that will be used by all popup wi...
The KisQQuickWidget class.
void connectMinimumHeightToRootObject()
connectMinimumHeightToRootObject By default we scale rootObject to widget, but in some situations we ...
static KisAllResourcesModel * resourceModel(const QString &resourceType)
void addConnection(Sender sender, Signal signal, Receiver receiver, Method method, Qt::ConnectionType type=Qt::AutoConnection)
The KisSignalMapper class bundles signals from identifiable senders.
void setMapping(QObject *sender, int id)
void setTextPropertiesInterface(KoSvgTextPropertiesInterface *interface)
setTextPropertiesInterface set the text properties interface. This should be done on tool activation....
KisMainWindow * mainWindow() const
KisTextPropertiesManager * textPropertyManager() const
void showFloatingMessage(const QString &message, const QIcon &icon, int timeout=4500, KisFloatingMessage::Priority priority=KisFloatingMessage::Medium, int alignment=Qt::AlignCenter|Qt::TextWordWrap)
shows a floating message in the top right corner of the canvas
KoSnapGuide * snapGuide
virtual KoShapeManager * shapeManager() const =0
virtual const KoViewConverter * viewConverter() const =0
virtual void updateCanvas(const QRectF &rc)=0
virtual void addCommand(KUndo2Command *command)=0
QPointer< KoCanvasResourceProvider > resourceManager
virtual KoSelectedShapesProxy * selectedShapesProxy() const =0
selectedShapesProxy() is a special interface for keeping a persistent connections to selectionChanged...
A simple solid color shape background.
The KoCssStylePreset class.
bool isValid() const
Returns if segment is valid, e.g. has two valid points.
The position of a path point within a path shape.
Definition KoPathShape.h:63
KoPathSegment segmentAtPoint(const QPointF &point, const QRectF &grabRoi) const
QPainterPath outline() const override
reimplemented
bool isTouchEvent() const
Qt::KeyboardModifiers modifiers() const
QPointF point
The point in document coordinates.
virtual KoSelection * selection()=0
void deselectAll()
clear the selections list
void select(KoShape *shape)
const QList< KoShape * > selectedEditableShapes() const
KoShape * shapeAt(const QPointF &position, KoFlake::ShapeSelection selection=KoFlake::ShapeOnTop, bool omitHiddenShapes=true)
KoSelection * selection
QTransform absoluteTransformation() const
Definition KoShape.cpp:330
static KisHandlePainterHelper createHandlePainterHelperView(QPainter *painter, KoShape *shape, const KoViewConverter &converter, qreal handleRadius=0.0, int decorationThickness=1)
Definition KoShape.cpp:977
void paint(QPainter &painter, const KoViewConverter &converter)
paints the guide
QPointF snap(const QPointF &mousePosition, Qt::KeyboardModifiers modifiers)
snaps the mouse position, returns if mouse was snapped
QRectF boundingRect()
returns the bounding rect of the guide
The SvgConvertTextTypeCommand class This command allows textshapes to be converted between preformatt...
@ FillId
KoSvgText::BackgroundProperty.
@ WritingModeId
KoSvgText::WritingMode.
QMap< QString, QString > convertToSvgTextAttributes() const
QMap< QString, QString > convertParagraphProperties() const
convertParagraphProperties some properties only apply to the root shape, so we write those separately...
void setProperty(PropertyId id, const QVariant &value)
QVariant propertyOrDefault(PropertyId id) const
static void removeContourShapesFromFlow(KoSvgTextShape *textShape, KUndo2Command *parent, bool textInShape, bool textPaths)
removeContourShapesFromFlow Create a command to remove all contour shapes of a certain type from the ...
The KoSvgTextShapeOutlineHelper class helper class that draws the text outlines and contour mode butt...
int posLeft(int pos, bool visual=false)
QRectF boundingRect() const override
Get the bounding box of the shape.
QList< QPainterPath > textWrappingAreas() const
textWrappingAreas The text wrapping areas are computed from shapesInside() and shapesSubtract(),...
int indexForPos(int pos) const
indexForPos get the string index for a given cursor position.
@ PreformattedText
Text-on-Path falls under this or PrePositionedText depending on collapse of lines.
@ TextInShape
Uses shape-inside to wrap and preserves spaces.
@ InlineWrap
Uses inline size to wrap and preserves spaces.
TextType textType() const
textType This enum gives an indication of what kind of text this shape is. The different text types a...
int posRight(int pos, bool visual=false)
void paintDebug(QPainter &painter, DebugElements elements) const
KoSvgText::WritingMode writingMode() const
writingMode There's a number of places we need to check the writing mode to provide proper controls.
QRectF outlineRect() const override
KoCanvasBase * canvas() const
Returns the canvas the tool is working on.
void selectionChanged(bool hasSelection)
Q_INVOKABLE QString toolId() const
QCursor cursor() const
return the last emitted cursor
int grabSensitivity() const
Convenience function to get the current grab sensitivity.
void setTextMode(bool value)
virtual void repaintDecorations()
int handleRadius() const
Convenience function to get the current handle radius.
void useCursor(const QCursor &cursor)
virtual void activate(const QSet< KoShape * > &shapes)
QRectF handleGrabRect(const QPointF &position) const
virtual void deactivate()
QAction * action(const QString &name) const
bool isActivated() const
virtual QVariant inputMethodQuery(Qt::InputMethodQuery query) const
int decorationThickness() const
decorationThickness The minimum thickness for tool decoration lines, this is derived from the screen ...
void switchToolRequested(const QString &id)
static KoToolManager * instance()
Return the toolmanager singleton.
virtual qreal viewToDocumentX(qreal viewX) const
virtual QPointF documentToView(const QPointF &documentPoint) const
static std::optional< QPointF > hitTest(KoSvgTextShape *shape, const QPointF &mousePos, const qreal grabSensitivityInPts)
hitTest Tests whether the current mouse position is over a text wrapping area, and if so,...
QRectF decorationRect(const QTransform documentToView) const
decorationRect
void setShape(KoSvgTextShape *shape)
setShape Set the shape for which to draw the text path.
void paint(QPainter *painter, const KoViewConverter &converter)
paint Paint the handles for the text path.
bool hitTest(QPointF mouseInPts, const QTransform viewToDocument)
hitTest
void setPos(int pos)
setPos the the position of the cursor, where the text path is sought. A single text shape can have mu...
static QStringList possibleActions()
The SvgTextToolOptionsManager class.
void openTextPropertiesDocker(bool open)
void activate(const QSet< KoShape * > &shapes) override
reimplemented from KoToolBase
void mouseTripleClickEvent(KoPointerEvent *event) override
reimplemented from KoToolBase
void copy() const override
reimplemented from superclass
bool selectAll() override
selectAll select all data the tool can select.
KisSignalAutoConnectionsStore m_canvasConnections
~SvgTextTool() override
void requestStrokeCancellation() override
void inputMethodEvent(QInputMethodEvent *event) override
QScopedPointer< KisSignalMapper > m_textTypeSignalsMapper
void mouseMoveEvent(KoPointerEvent *event) override
reimplemented from KoToolBase
std::unique_ptr< KoInteractionStrategy > m_interactionStrategy
void keyPressEvent(QKeyEvent *event) override
void requestStrokeEnd() override
void slotTextTypeUpdated()
slotTextTypeUpdated Update the text type in the tool options.
QPointer< GlyphPaletteDialog > m_glyphPalette
QScopedPointer< SvgTextToolOptionsManager > m_optionManager
bool nodeEditable()
nodeEditable
QCursor m_base_cursor
KoSelection * koSelection() const
DragMode m_dragging
void mouseReleaseEvent(KoPointerEvent *event) override
reimplemented from KoToolBase
void slotUpdateVisualCursor()
slotUpdateVisualCursor update the visual cursor mode on the text cursor.
QString generateDefs(const KoSvgTextProperties &properties=KoSvgTextProperties())
generateDefs This generates a defs section with the appropriate css and css strings assigned.
qreal grabSensitivityInPt() const
void deleteSelection() override
reimplemented from superclass
QCursor m_text_inline_horizontal
QCursor m_ibeam_horizontal
KoSvgTextShape * selectedShape() const
QPointF m_lastMousePos
QCursor m_ibeam_horizontal_done
SvgTextTool(KoCanvasBase *canvas)
QVariant inputMethodQuery(Qt::InputMethodQuery query) const override
void slotShapeSelectionChanged()
selectionChanged called when the canvas selection is changed.
void showGlyphPalette()
showGlyphPalette Shows the glyph palette dialog.
QCursor m_text_inline_vertical
QPainterPath m_hoveredShapeHighlightRect
void focusInEvent(QFocusEvent *event) override
bool hasSelection() override
reimplemented from superclass
SvgTextOnPathDecorationHelper m_textOnPathHelper
KoSvgTextProperties propertiesForNewText() const
propertiesForNewText get the text properties that should be used for new text.
void updateGlyphPalette()
updateGlyphPalette update the glyph palette dialog from the current selection.
void mouseDoubleClickEvent(KoPointerEvent *event) override
reimplemented from superclass
bool m_strategyAddingCommand
KisPopupWidgetInterface * popupWidget() override
HighlightItem m_highlightItem
void focusOutEvent(QFocusEvent *event) override
void updateTextPathHelper()
KoToolSelection * selection() override
reimplemented from superclass
void slotUpdateTextPasteBehaviour()
slotUpdateTextPasteBehaviour update the default text paste behaviour.
void deselect() override
deselect the tool should clear the selection if it has one.
QCursor m_ibeam_vertical
virtual QWidget * createOptionWidget() override
reimplemented from KoToolBase
void insertRichText(KoSvgTextShape *richText, bool replaceLastGlyph=false)
insertRichText Insert a rich text shape, used by the glyph palette..
QCursor m_text_in_shape
void textUpdated(KoSvgTextShape *shape, const QString &svg, const QString &defs)
void deactivate() override
reimplemented from KoToolBase
void mousePressEvent(KoPointerEvent *event) override
reimplemented from KoToolBase
void slotUpdateCursorDecoration(QRectF updateRect)
updateCursor update the canvas decorations in a particular update rect for the text cursor.
QCursor m_text_on_path
void showEditor()
friend class SvgChangeTextPathInfoStrategy
Definition SvgTextTool.h:40
friend class SvgCreateTextStrategy
Definition SvgTextTool.h:39
QScopedPointer< KisSignalMapper > m_typeSettingMovementMapper
void slotMoveTextSelection(int index)
slotMoveTextSelection Move the start of the selection in typesetting mode by image 1 pix.
void paint(QPainter &gc, const KoViewConverter &converter) override
reimplemented from KoToolBase
SvgTextCursor m_textCursor
KoSvgText::WritingMode writingMode() const
QScopedPointer< KoSvgTextShapeOutlineHelper > m_textOutlineHelper
QRectF decorationsRect() const override
reimplemented from KoToolBase
bool paste() override
reimplemented from superclass
void slotUpdateTypeSettingMode()
slotUpdateTypeSettingMode Enable typesetting mode from the tool options.
void slotConvertType(int index)
slotConvertType
void addMappedAction(KisSignalMapper *mapper, const QString &actionName, const int value, QActionGroup *group=nullptr)
QPointer< SvgTextEditor > m_editor
void keyReleaseEvent(QKeyEvent *event) override
The SvgTextTypeSettingStrategy class This class encompasses the typesetting mode.
#define KIS_SAFE_ASSERT_RECOVER_RETURN_VALUE(cond, val)
Definition kis_assert.h:129
#define KIS_ASSERT(cond)
Definition kis_assert.h:33
#define dbgTools
Definition kis_debug.h:48
T kisGrowRect(const T &rect, U offset)
Definition kis_global.h:186
QIcon loadIcon(const QString &name)
bool selectShapeCrossLayer(KoCanvasBase *canvas, const QPointF &point, const QString &shapeType, bool skipCurrentShapes)
selectShapeCrossLayer Tries to select a shape under the cursor regardless of which layer it is on,...
QString nodeEditableMessage(KisNodeSP node, bool blockedNoIndirectPainting)
nodeEditableMessage
QPainterPath shapeHoverInfoCrossLayer(KoCanvasBase *canvas, const QPointF &point, QString &shapeType, bool *isHorizontal, bool skipCurrentShapes)
shapeHoverInfoCrossLayer get hover info of shapes on all layers.
@ SvgTextPropertyData
KoSvgTextPropertyDataStruct.
@ HorizontalTB
Definition KoSvgText.h:38
const QString CssStyles
bool isEditable(bool checkVisibility=true) const
The KoSvgTextPropertyData struct.
KoSvgTextProperties commonProperties
The properties common between all the selected text.
BackgroundProperty is a special wrapper around KoShapeBackground for managing it in KoSvgTextProperti...
Definition KoSvgText.h:714
void setTypeSettingHandleHovered(TypeSettingModeHandle hovered=TypeSettingModeHandle::NoHandle)
Set a given typesetting handle as hovered, so it will be drawn as such.
void setVisualMode(const bool visualMode=true)
setVisualMode set whether the navigation mode is visual or logical. This right now primarily affects ...
void keyPressEvent(QKeyEvent *event)
Handle the cursor-related key events.
KoSvgTextPropertiesInterface * textPropertyInterface()
int getAnchor()
Get the current selection anchor. This is the same as position, unless there's a selection.
QPair< KoSvgTextProperties, KoSvgTextProperties > currentTextProperties() const
currentTextProperties
void paintDecorations(QPainter &gc, QColor selectionColor, int decorationThickness=1, qreal handleRadius=5.0)
Paint all decorations and blinkingcursors.
void deselectText()
Deselect all text. This effectively makes anchor the same as pos.
bool hasSelection() override
return true if the tool currently has something selected that can be copied or deleted.
void setCaretSetting(int cursorWidth=1, int cursorFlash=1000, int cursorFlashLimit=5000, bool drawCursorInAdditionToSelection=false)
setCaretSetting Set the caret settings for the cursor. Qt has some standard functionality associated,...
void setPos(int pos, int anchor)
Set the pos and the anchor.
TypeSettingModeHandle
Handles used by type setting mode.
void inputMethodEvent(QInputMethodEvent *event)
Process an input method event. This is used by IME like virtual keyboards.
void setPosToPoint(QPointF point, bool moveAnchor=true)
Set the pos from a point. This currently does a search inside the text shape.
QCursor cursorTypeForTypeSetting() const
Return appropriate typeSetting cursor;.
void moveCursor(MoveMode mode, bool moveAnchor=true)
Move the cursor, and, if you don't want a selection, move the anchor.
void setPasteRichTextByDefault(const bool pasteRichText=true)
setPasteRichText
QVariant inputMethodQuery(Qt::InputMethodQuery query) const
Process an input method query and return the requested result.
void removeSelection()
removeSelection if there's a selection, creates a text-removal command.
void setTypeSettingModeActive(bool activate)
Set type setting mode active.
bool setDominantBaselineFromHandle(const TypeSettingModeHandle handle)
setDominantBaselineFromHandle Set the dominant baseline from a given handle.
int getPos()
Get the current position.
void focusOut()
Stops blinking cursor.
TypeSettingModeHandle typeSettingHandleAtPos(const QRectF regionOfInterest)
Get typeSettingMode handle for text;.
bool registerPropertyAction(QAction *action, const QString &name)
Register an action.
void focusIn()
Turns on blinking cursor.
void setDrawTypeSettingHandle(bool draw)
bool paste()
paste pastes plain text in the clipboard at pos. Uses pasteRichTextByDefault to determine whether to ...
void updateTypeSettingDecorFromShape()
Update the type setting decorations.
void updateModifiers(const Qt::KeyboardModifiers modifiers)
void setShape(KoSvgTextShape *textShape)
setShape
void insertRichText(KoSvgTextShape *insert, bool inheritPropertiesIfPossible=false)
Insert rich text at getPos();.
KoSvgTextShape * shape
void copy() const
copy copies plain text into the clipboard between anchor and pos.