1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
// qtextdocument.sip generated by MetaSIP on Sat Jul 15 18:43:36 2006
//
// This file is part of the QtGui Python extension module.
//
// Copyright (c) 2006
// Riverbank Computing Limited <info@riverbankcomputing.co.uk>
//
// This file is part of PyQt.
//
// This copy of PyQt is free software; you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by the Free
// Software Foundation; either version 2, or (at your option) any later
// version.
//
// PyQt is supplied 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 General Public License for more
// details.
//
// You should have received a copy of the GNU General Public License along with
// PyQt; see the file LICENSE. If not, write to the Free Software Foundation,
// Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
%ModuleHeaderCode
#include <qtextdocument.h>
%End
namespace Qt
{
%TypeHeaderCode
#include <qtextdocument.h>
%End
enum HitTestAccuracy
{
ExactHit,
FuzzyHit,
};
enum WhiteSpaceMode
{
WhiteSpaceNormal,
WhiteSpacePre,
WhiteSpaceNoWrap,
WhiteSpaceModeUndefined,
};
bool mightBeRichText(const QString &);
QString escape(const QString &plain);
QString convertFromPlainText(const QString &plain, Qt::WhiteSpaceMode mode = Qt::WhiteSpacePre);
};
class QTextDocument : QObject
{
%TypeHeaderCode
#include <qtextdocument.h>
%End
public:
explicit QTextDocument(QObject *parent /TransferThis/ = 0);
QTextDocument(const QString &text, QObject *parent /TransferThis/ = 0);
virtual ~QTextDocument();
QTextDocument *clone(QObject *parent /TransferThis/ = 0) const /Factory/;
bool isEmpty() const;
virtual void clear();
void setUndoRedoEnabled(bool enable);
bool isUndoRedoEnabled() const;
bool isUndoAvailable() const;
bool isRedoAvailable() const;
void setDocumentLayout(QAbstractTextDocumentLayout *layout /Transfer/);
QAbstractTextDocumentLayout *documentLayout() const;
enum MetaInformation
{
DocumentTitle,
};
void setMetaInformation(QTextDocument::MetaInformation info, const QString &);
QString metaInformation(QTextDocument::MetaInformation info) const;
QString toHtml(const QByteArray &encoding = QByteArray()) const;
void setHtml(const QString &html);
QString toPlainText() const;
void setPlainText(const QString &text);
enum FindFlag
{
FindBackward,
FindCaseSensitively,
FindWholeWords,
};
typedef QFlags<QTextDocument::FindFlag> FindFlags;
QTextCursor find(const QString &expr, int from = 0, QFlags<QTextDocument::FindFlag> options = 0) const;
QTextCursor find(const QString &expr, const QTextCursor &from, QFlags<QTextDocument::FindFlag> options = 0) const;
QTextFrame *rootFrame() const;
QTextObject *object(int objectIndex) const;
QTextObject *objectForFormat(const QTextFormat &) const;
QTextBlock findBlock(int pos) const;
QTextBlock begin() const;
QTextBlock end() const;
void setPageSize(const QSizeF &size);
QSizeF pageSize() const;
void setDefaultFont(const QFont &font);
QFont defaultFont() const;
int pageCount() const;
bool isModified() const;
void print(QPrinter *printer) const /PyName=print_/;
enum ResourceType
{
HtmlResource,
ImageResource,
UserResource,
};
QVariant resource(int type, const QUrl &name) const;
void addResource(int type, const QUrl &name, const QVariant &resource);
QVector<QTextFormat> allFormats() const;
void markContentsDirty(int from, int length);
void setUseDesignMetrics(bool b);
bool useDesignMetrics() const;
signals:
void contentsChange(int from, int charsRemoves, int charsAdded);
void contentsChanged();
void undoAvailable(bool);
void redoAvailable(bool);
void modificationChanged(bool m);
void cursorPositionChanged(const QTextCursor &cursor);
public slots:
void undo();
void redo();
void setModified(bool m = true);
protected:
virtual QTextObject *createObject(const QTextFormat &f) /Factory/;
virtual QVariant loadResource(int type, const QUrl &name);
private:
QTextDocument(const QTextDocument &);
};
QFlags<QTextDocument::FindFlag> operator|(QTextDocument::FindFlag f1, QFlags<QTextDocument::FindFlag> f2);
QFlags<QTextDocument::FindFlag> operator|(QTextDocument::FindFlag f1, QTextDocument::FindFlag f2);
|