Ignore:
Timestamp:
Feb 11, 2010, 11:19:06 PM (15 years ago)
Author:
Dmitry A. Kuminov
Message:

trunk: Merged in qt 4.6.1 sources.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/src/gui/text/qtextobject.cpp

    r2 r561  
    22**
    33** 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)
    56**
    67** This file is part of the QtGui module of the Qt Toolkit.
     
    2122** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
    2223**
    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.
    2727**
    2828** GNU General Public License Usage
     
    3434** met: http://www.gnu.org/copyleft/gpl.html.
    3535**
    36 ** If you are unsure which license is appropriate for your use, please
    37 ** 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.
    3838** $QT_END_LICENSE$
    3939**
     
    6262    of objects that can group parts of a QTextDocument together.
    6363
    64     \ingroup text
     64    \ingroup richtext-processing
    6565
    6666    The common grouping text objects are lists (QTextList), frames
     
    7777    which acts as a factory method for creating text objects.
    7878
    79     \sa QTextDocument
     79    \sa QTextDocument, {Text Object Example}
    8080*/
    8181
     
    184184    a QTextDocument.
    185185
    186     \ingroup text
     186    \ingroup richtext-processing
    187187
    188188    Block groups can be used to organize blocks of text within a document.
     
    306306    \brief The QTextFrame class represents a frame in a QTextDocument.
    307307
    308     \ingroup text
     308    \ingroup richtext-processing
    309309
    310310    Text frames provide structure for the text in a document. They are used
     
    413413    : QTextObject(*new QTextFramePrivate(doc), doc)
    414414{
    415     Q_D(QTextFrame);
    416     d->fragment_start = 0;
    417     d->fragment_end = 0;
    418     d->parentFrame = 0;
    419     d->layoutData = 0;
    420415}
    421416
     
    436431    : QTextObject(p, doc)
    437432{
    438     Q_D(QTextFrame);
    439     d->fragment_start = 0;
    440     d->fragment_end = 0;
    441     d->parentFrame = 0;
    442     d->layoutData = 0;
    443433}
    444434
     
    610600    the contents of a QTextFrame.
    611601
    612     \ingroup text
     602    \ingroup richtext-processing
    613603
    614604    A frame consists of an arbitrary sequence of \l{QTextBlock}s and
     
    810800    \since 4.1
    811801
    812     \ingroup text
     802    \ingroup richtext-processing
    813803
    814804    QTextBlockUserData provides an abstract interface for container classes that are used
     
    840830    QTextDocument.
    841831
    842     \ingroup text
     832    \ingroup richtext-processing
    843833
    844834    A text block encapsulates a block or paragraph of text in a QTextDocument.
     
    935925    the contents of a QTextBlock.
    936926
    937     \ingroup text
     927    \ingroup richtext-processing
    938928
    939929    A block consists of a sequence of text fragments. This class provides
     
    13811371Sets the line count to \a count.
    13821372
    1383 /sa lineCount()
     1373\sa lineCount()
    13841374*/
    13851375void QTextBlock::setLineCount(int count)
     
    15361526    QTextDocument with a single QTextCharFormat.
    15371527
    1538     \ingroup text
     1528    \ingroup richtext-processing
    15391529
    15401530    A text fragment describes a piece of text that is stored with a single
Note: See TracChangeset for help on using the changeset viewer.