/**************************************************************************** ** ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the Qt Designer of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ /** Integration : QElectroTech Team Changelog: - 09/04/2013 : Start integration...Compilation and object creation are successful */ #include "richtexteditor_p.h" #include "ui_addlinkdialog.h" //#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #if (QT_VERSION >= QT_VERSION_CHECK(5, 10, 0)) #include #else #define QStringView QStringRef #endif QT_BEGIN_NAMESPACE //static const char RichTextDialogGroupC[] = "RichTextDialog"; //static const char GeometryKeyC[] = "Geometry"; //static const char TabKeyC[] = "Tab"; //const bool simplifyRichTextDefault = true; namespace qdesigner_internal { // Richtext simplification filter helpers: Elements to be discarded static inline bool filterElement(const QStringView &name) { return name != QLatin1String("meta") && name != QLatin1String("style"); } // Richtext simplification filter helpers: Filter attributes of elements static inline void filterAttributes( const QStringView &name, QXmlStreamAttributes *atts, bool *paragraphAlignmentFound) { typedef QXmlStreamAttributes::iterator AttributeIt; if (atts->isEmpty()) return; // No style attributes for if (name == QLatin1String("body")) { atts->clear(); return; } // Clean out everything except 'align' for 'p' if (name == QLatin1String("p")) { for (AttributeIt it = atts->begin(); it != atts->end(); ) { if (it->name() == QLatin1String("align")) { ++it; *paragraphAlignmentFound = true; } else { it = atts->erase(it); } } return; } } // Richtext simplification filter helpers: Check for blank QStringView. static inline bool isWhiteSpace(const QStringView &in) { const int count = in.size(); for (int i = 0; i < count; i++) if (!in.at(i).isSpace()) return false; return true; } // Richtext simplification filter: Remove hard-coded font settings, //