Changeset 561 for trunk/src/gui/text/qtextobject.cpp
- Timestamp:
- Feb 11, 2010, 11:19:06 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
-
Property svn:mergeinfo
set to (toggle deleted branches)
/branches/vendor/nokia/qt/4.6.1 merged eligible /branches/vendor/nokia/qt/current merged eligible /branches/vendor/trolltech/qt/current 3-149
-
Property svn:mergeinfo
set to (toggle deleted branches)
-
trunk/src/gui/text/qtextobject.cpp
r2 r561 2 2 ** 3 3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). 4 ** Contact: Qt Software Information (qt-info@nokia.com) 4 ** All rights reserved. 5 ** Contact: Nokia Corporation (qt-info@nokia.com) 5 6 ** 6 7 ** This file is part of the QtGui module of the Qt Toolkit. … … 21 22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 22 23 ** 23 ** In addition, as a special exception, Nokia gives you certain 24 ** additional rights. These rights are described in the Nokia Qt LGPL 25 ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this 26 ** package. 24 ** In addition, as a special exception, Nokia gives you certain additional 25 ** rights. These rights are described in the Nokia Qt LGPL Exception 26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 27 ** 28 28 ** GNU General Public License Usage … … 34 34 ** met: http://www.gnu.org/copyleft/gpl.html. 35 35 ** 36 ** If you are unsure which license is appropriate for your use, please37 ** contact the sales department at qt-sales@nokia.com.36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at qt-info@nokia.com. 38 38 ** $QT_END_LICENSE$ 39 39 ** … … 62 62 of objects that can group parts of a QTextDocument together. 63 63 64 \ingroup text64 \ingroup richtext-processing 65 65 66 66 The common grouping text objects are lists (QTextList), frames … … 77 77 which acts as a factory method for creating text objects. 78 78 79 \sa QTextDocument 79 \sa QTextDocument, {Text Object Example} 80 80 */ 81 81 … … 184 184 a QTextDocument. 185 185 186 \ingroup text186 \ingroup richtext-processing 187 187 188 188 Block groups can be used to organize blocks of text within a document. … … 306 306 \brief The QTextFrame class represents a frame in a QTextDocument. 307 307 308 \ingroup text308 \ingroup richtext-processing 309 309 310 310 Text frames provide structure for the text in a document. They are used … … 413 413 : QTextObject(*new QTextFramePrivate(doc), doc) 414 414 { 415 Q_D(QTextFrame);416 d->fragment_start = 0;417 d->fragment_end = 0;418 d->parentFrame = 0;419 d->layoutData = 0;420 415 } 421 416 … … 436 431 : QTextObject(p, doc) 437 432 { 438 Q_D(QTextFrame);439 d->fragment_start = 0;440 d->fragment_end = 0;441 d->parentFrame = 0;442 d->layoutData = 0;443 433 } 444 434 … … 610 600 the contents of a QTextFrame. 611 601 612 \ingroup text602 \ingroup richtext-processing 613 603 614 604 A frame consists of an arbitrary sequence of \l{QTextBlock}s and … … 810 800 \since 4.1 811 801 812 \ingroup text802 \ingroup richtext-processing 813 803 814 804 QTextBlockUserData provides an abstract interface for container classes that are used … … 840 830 QTextDocument. 841 831 842 \ingroup text832 \ingroup richtext-processing 843 833 844 834 A text block encapsulates a block or paragraph of text in a QTextDocument. … … 935 925 the contents of a QTextBlock. 936 926 937 \ingroup text927 \ingroup richtext-processing 938 928 939 929 A block consists of a sequence of text fragments. This class provides … … 1381 1371 Sets the line count to \a count. 1382 1372 1383 /sa lineCount()1373 \sa lineCount() 1384 1374 */ 1385 1375 void QTextBlock::setLineCount(int count) … … 1536 1526 QTextDocument with a single QTextCharFormat. 1537 1527 1538 \ingroup text1528 \ingroup richtext-processing 1539 1529 1540 1530 A text fragment describes a piece of text that is stored with a single
Note:
See TracChangeset
for help on using the changeset viewer.