From 97b5b8009254004608feefb903cbf44abaa099f6 Mon Sep 17 00:00:00 2001 From: Casper van Donderen Date: Mon, 7 May 2012 18:49:48 +0200 Subject: Doc: Modularize QtWidgets documentation. This change moves the snippets and images to the modularized directories. Change-Id: Idec1afb9db7ea6add1ca4cf25ec4019d8bce0c4d Reviewed-by: Marius Storm-Olsen --- src/widgets/graphicsview/qgraphicsanchorlayout.cpp | 12 +++--- src/widgets/graphicsview/qgraphicsgridlayout.cpp | 2 +- src/widgets/graphicsview/qgraphicsitem.cpp | 48 +++++++++++----------- .../graphicsview/qgraphicsitemanimation.cpp | 2 +- src/widgets/graphicsview/qgraphicslinearlayout.cpp | 2 +- src/widgets/graphicsview/qgraphicsproxywidget.cpp | 6 +-- src/widgets/graphicsview/qgraphicsscene.cpp | 14 +++---- src/widgets/graphicsview/qgraphicssceneevent.cpp | 2 +- src/widgets/graphicsview/qgraphicsview.cpp | 16 ++++---- src/widgets/graphicsview/qgraphicswidget.cpp | 6 +-- 10 files changed, 55 insertions(+), 55 deletions(-) (limited to 'src/widgets/graphicsview') diff --git a/src/widgets/graphicsview/qgraphicsanchorlayout.cpp b/src/widgets/graphicsview/qgraphicsanchorlayout.cpp index 348d8f2d09..06db3826ea 100644 --- a/src/widgets/graphicsview/qgraphicsanchorlayout.cpp +++ b/src/widgets/graphicsview/qgraphicsanchorlayout.cpp @@ -64,7 +64,7 @@ Anchors are always set up between edges of an item, where the "center" is also considered to be an edge. Consider the following example: - \snippet examples/graphicsview/simpleanchorlayout/main.cpp adding anchors + \snippet graphicsview/simpleanchorlayout/main.cpp adding anchors Here, the right edge of item \c a is anchored to the left edge of item \c b and the bottom edge of item \c a is anchored to the top edge of item \c b, with the result that @@ -75,7 +75,7 @@ above. Here, we see how a widget can be anchored to the top-left corner of the enclosing layout: - \snippet examples/graphicsview/simpleanchorlayout/main.cpp adding a corner anchor + \snippet graphicsview/simpleanchorlayout/main.cpp adding a corner anchor In cases where anchors are used to match the widths or heights of widgets, it is convenient to use the addAnchors() function. As with the other functions for specifying @@ -299,11 +299,11 @@ QGraphicsAnchorLayout::anchor(QGraphicsLayoutItem *firstItem, Qt::AnchorPoint fi This is a convenience function, since anchoring corners can be expressed as anchoring two edges. For instance: - \snippet examples/graphicsview/simpleanchorlayout/main.cpp adding a corner anchor in two steps + \snippet graphicsview/simpleanchorlayout/main.cpp adding a corner anchor in two steps This can also be achieved with the following line of code: - \snippet examples/graphicsview/simpleanchorlayout/main.cpp adding a corner anchor + \snippet graphicsview/simpleanchorlayout/main.cpp adding a corner anchor If there is already an anchor between the edge pairs, it will be replaced by the anchors that this function specifies. @@ -341,11 +341,11 @@ void QGraphicsAnchorLayout::addCornerAnchors(QGraphicsLayoutItem *firstItem, For example, the following example anchors the left and right edges of two items to match their widths: - \snippet examples/graphicsview/simpleanchorlayout/main.cpp adding anchors to match sizes in two steps + \snippet graphicsview/simpleanchorlayout/main.cpp adding anchors to match sizes in two steps This can also be achieved using the following line of code: - \snippet examples/graphicsview/simpleanchorlayout/main.cpp adding anchors to match sizes + \snippet graphicsview/simpleanchorlayout/main.cpp adding anchors to match sizes \sa addAnchor(), addCornerAnchors() */ diff --git a/src/widgets/graphicsview/qgraphicsgridlayout.cpp b/src/widgets/graphicsview/qgraphicsgridlayout.cpp index c5e7e83cf4..53d7cbd4be 100644 --- a/src/widgets/graphicsview/qgraphicsgridlayout.cpp +++ b/src/widgets/graphicsview/qgraphicsgridlayout.cpp @@ -54,7 +54,7 @@ QGraphicsWidget::setLayout(). QGraphicsGridLayout automatically computes the dimensions of the grid as you add items. - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsgridlayout.cpp 0 + \snippet code/src_gui_graphicsview_qgraphicsgridlayout.cpp 0 The layout takes ownership of the items. In some cases when the layout item also inherits from QGraphicsItem (such as QGraphicsWidget) there will be a diff --git a/src/widgets/graphicsview/qgraphicsitem.cpp b/src/widgets/graphicsview/qgraphicsitem.cpp index dab1965da5..1ce914b219 100644 --- a/src/widgets/graphicsview/qgraphicsitem.cpp +++ b/src/widgets/graphicsview/qgraphicsitem.cpp @@ -90,7 +90,7 @@ by the item, and paint(), which implements the actual painting. For example: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp 0 + \snippet code/src_gui_graphicsview_qgraphicsitem.cpp 0 The boundingRect() function has many different purposes. QGraphicsScene bases its item index on boundingRect(), and @@ -277,7 +277,7 @@ classes in Qt are associated with a unique value for Type, e.g. the value returned by QGraphicsPathItem::type() is 2. - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp 18 + \snippet code/src_gui_graphicsview_qgraphicsitem.cpp 18 */ /*! @@ -288,7 +288,7 @@ used in conjunction with a reimplementation of QGraphicsItem::type() and declaring a Type enum value. Example: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp 1 + \snippet code/src_gui_graphicsview_qgraphicsitem.cpp 1 \note UserType = 65536 */ @@ -2133,7 +2133,7 @@ void QGraphicsItem::setToolTip(const QString &toolTip) An editor item might want to use an I-beam cursor: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp 2 + \snippet code/src_gui_graphicsview_qgraphicsitem.cpp 2 If no cursor has been set, the cursor of the item beneath is used. @@ -2153,7 +2153,7 @@ QCursor QGraphicsItem::cursor() const An editor item might want to use an I-beam cursor: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp 3 + \snippet code/src_gui_graphicsview_qgraphicsitem.cpp 3 If no cursor has been set, the cursor of the item beneath is used. @@ -4146,7 +4146,7 @@ QMatrix QGraphicsItem::sceneMatrix() const Example: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp 4 + \snippet code/src_gui_graphicsview_qgraphicsitem.cpp 4 Unlike transform(), which returns only an item's local transformation, this function includes the item's (and any parents') position, and all the transfomation properties. @@ -4171,7 +4171,7 @@ QTransform QGraphicsItem::sceneTransform() const Example: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp 5 + \snippet code/src_gui_graphicsview_qgraphicsitem.cpp 5 This function is the same as combining this item's scene transform with the view's viewport transform, but it also understands the @@ -4474,7 +4474,7 @@ void QGraphicsItem::resetTransform() Example: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp 6 + \snippet code/src_gui_graphicsview_qgraphicsitem.cpp 6 \sa setTransform(), transform(), scale(), shear(), translate() */ @@ -4500,7 +4500,7 @@ void QGraphicsItem::rotate(qreal angle) Example: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp 7 + \snippet code/src_gui_graphicsview_qgraphicsitem.cpp 7 \sa setTransform(), transform() */ @@ -4787,7 +4787,7 @@ QRectF QGraphicsItem::childrenBoundingRect() const Example: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp 8 + \snippet code/src_gui_graphicsview_qgraphicsitem.cpp 8 \sa boundingRegion(), shape(), contains(), {The Graphics View Coordinate System}, prepareGeometryChange() @@ -4835,7 +4835,7 @@ QRectF QGraphicsItem::sceneBoundingRect() const may choose to return an elliptic shape for better collision detection. For example: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp 9 + \snippet code/src_gui_graphicsview_qgraphicsitem.cpp 9 The outline of a shape can vary depending on the width and style of the pen used when drawing. If you want to include this outline in the item's @@ -5327,7 +5327,7 @@ void QGraphicsItem::setBoundingRegionGranularity(qreal granularity) provided, it points to the widget that is being painted on; otherwise, it is 0. For cached painting, \a widget is always 0. - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp 10 + \snippet code/src_gui_graphicsview_qgraphicsitem.cpp 10 The painter's pen is 0-width by default, and its pen is initialized to the QPalette::Text brush from the paint device's palette. The brush is @@ -5736,7 +5736,7 @@ void QGraphicsItem::update(const QRectF &rect) by other items, you can map the \a rect to viewport coordinates and scroll the viewport. - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp 19 + \snippet code/src_gui_graphicsview_qgraphicsitem.cpp 19 \sa boundingRect() */ @@ -6515,7 +6515,7 @@ bool QGraphicsItem::isUnderMouse() const Custom item data is useful for storing arbitrary properties in any item. Example: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp 11 + \snippet code/src_gui_graphicsview_qgraphicsitem.cpp 11 Qt does not use this feature for storing data; it is provided solely for the convenience of the user. @@ -6572,7 +6572,7 @@ void QGraphicsItem::setData(int key, const QVariant &value) For example: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp QGraphicsItem type + \snippet code/src_gui_graphicsview_qgraphicsitem.cpp QGraphicsItem type \sa UserType */ @@ -6589,7 +6589,7 @@ int QGraphicsItem::type() const To filter another item's events, install this item as an event filter for the other item. Example: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp 12 + \snippet code/src_gui_graphicsview_qgraphicsitem.cpp 12 An item can only filter events for other items in the same scene. Also, an item cannot filter its own events; instead, you @@ -6805,7 +6805,7 @@ bool QGraphicsItem::sceneEvent(QEvent *event) It's common to open a QMenu in response to receiving a context menu event. Example: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp 13 + \snippet code/src_gui_graphicsview_qgraphicsitem.cpp 13 The default implementation ignores the event. @@ -6830,7 +6830,7 @@ void QGraphicsItem::contextMenuEvent(QGraphicsSceneContextMenuEvent *event) A common implementation of dragEnterEvent accepts or ignores \a event depending on the associated mime data in \a event. Example: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp 14 + \snippet code/src_gui_graphicsview_qgraphicsitem.cpp 14 Items do not receive drag and drop events by default; to enable this feature, call \c setAcceptDrops(true). @@ -7424,7 +7424,7 @@ void QGraphicsItem::updateMicroFocus() Example: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp 15 + \snippet code/src_gui_graphicsview_qgraphicsitem.cpp 15 The default implementation does nothing, and returns \a value. @@ -7519,7 +7519,7 @@ void QGraphicsItem::removeFromIndex() Example: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp 16 + \snippet code/src_gui_graphicsview_qgraphicsitem.cpp 16 \sa boundingRect() */ @@ -10613,11 +10613,11 @@ Qt::TextInteractionFlags QGraphicsTextItem::textInteractionFlags() const /*! \since 4.5 - If \a b is true, the \gui Tab key will cause the widget to change focus; + If \a b is true, the \uicontrol Tab key will cause the widget to change focus; otherwise, the tab key will insert a tab into the document. In some occasions text edits should not allow the user to input tabulators - or change indentation using the \gui Tab key, as this breaks the focus + or change indentation using the \uicontrol Tab key, as this breaks the focus chain. The default is false. \sa tabChangesFocus(), ItemIsFocusable, textInteractionFlags() @@ -10630,7 +10630,7 @@ void QGraphicsTextItem::setTabChangesFocus(bool b) /*! \since 4.5 - Returns true if the \gui Tab key will cause the widget to change focus; + Returns true if the \uicontrol Tab key will cause the widget to change focus; otherwise, false is returned. By default, this behavior is disabled, and this function will return false. @@ -11010,7 +11010,7 @@ QVariant QGraphicsSimpleTextItem::extension(const QVariant &variant) const QGraphicsScene::destroyItemGroup(), or you can manually remove all items from the group by calling removeFromGroup(). - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp 17 + \snippet code/src_gui_graphicsview_qgraphicsitem.cpp 17 The operation of adding and removing items preserves the items' scene-relative position and transformation, as opposed to calling diff --git a/src/widgets/graphicsview/qgraphicsitemanimation.cpp b/src/widgets/graphicsview/qgraphicsitemanimation.cpp index f21220b3b1..bb90337c5e 100644 --- a/src/widgets/graphicsview/qgraphicsitemanimation.cpp +++ b/src/widgets/graphicsview/qgraphicsitemanimation.cpp @@ -70,7 +70,7 @@ An example animation with a timeline follows: - \snippet doc/src/snippets/timeline/main.cpp 0 + \snippet timeline/main.cpp 0 Note that steps lie between 0.0 and 1.0. It may be necessary to use \l{QTimeLine::}{setUpdateInterval()}. The default update interval diff --git a/src/widgets/graphicsview/qgraphicslinearlayout.cpp b/src/widgets/graphicsview/qgraphicslinearlayout.cpp index 535e2ddf59..f312e2e7ba 100644 --- a/src/widgets/graphicsview/qgraphicslinearlayout.cpp +++ b/src/widgets/graphicsview/qgraphicslinearlayout.cpp @@ -56,7 +56,7 @@ and finally assign the layout to a widget by calling QGraphicsWidget::setLayout(). - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicslinearlayout.cpp 0 + \snippet code/src_gui_graphicsview_qgraphicslinearlayout.cpp 0 You can add widgets, layouts, stretches (addStretch(), insertStretch() or setStretchFactor()), and spacings (setItemSpacing()) to a linear diff --git a/src/widgets/graphicsview/qgraphicsproxywidget.cpp b/src/widgets/graphicsview/qgraphicsproxywidget.cpp index 4cda3e51fb..b09ddbab41 100644 --- a/src/widgets/graphicsview/qgraphicsproxywidget.cpp +++ b/src/widgets/graphicsview/qgraphicsproxywidget.cpp @@ -84,7 +84,7 @@ QT_BEGIN_NAMESPACE Example: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsproxywidget.cpp 0 + \snippet code/src_gui_graphicsview_qgraphicsproxywidget.cpp 0 QGraphicsProxyWidget takes care of automatically embedding popup children of embedded widgets through creating a child proxy for each popup. This @@ -104,7 +104,7 @@ QT_BEGIN_NAMESPACE For example, in the code snippet below, we embed a group box into the proxy: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsproxywidget.cpp 1 + \snippet code/src_gui_graphicsview_qgraphicsproxywidget.cpp 1 The image below is the output obtained with its contents margin and contents rect labeled. @@ -131,7 +131,7 @@ QT_BEGIN_NAMESPACE Example: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsproxywidget.cpp 2 + \snippet code/src_gui_graphicsview_qgraphicsproxywidget.cpp 2 QGraphicsProxyWidget maintains symmetry for the following states: diff --git a/src/widgets/graphicsview/qgraphicsscene.cpp b/src/widgets/graphicsview/qgraphicsscene.cpp index 583e6da90a..282c6a2a2a 100644 --- a/src/widgets/graphicsview/qgraphicsscene.cpp +++ b/src/widgets/graphicsview/qgraphicsscene.cpp @@ -60,7 +60,7 @@ Example: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsscene.cpp 0 + \snippet code/src_gui_graphicsview_qgraphicsscene.cpp 0 Note that QGraphicsScene has no visual appearance of its own; it only manages the items. You need to create a QGraphicsView widget to visualize @@ -1715,7 +1715,7 @@ void QGraphicsScene::setSceneRect(const QRectF &rect) device, such as a QImage (e.g., to take a screenshot), or for printing with QPrinter. For example: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsscene.cpp 1 + \snippet code/src_gui_graphicsview_qgraphicsscene.cpp 1 If \a source is a null rect, this function will use sceneRect() to determine what to render. If \a target is a null rect, the dimensions of \a @@ -1866,7 +1866,7 @@ void QGraphicsScene::setItemIndexMethod(ItemIndexMethod method) granularity of the scene's partitioning. The size of each scene segment is determined by the following algorithm: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsscene.cpp 2 + \snippet code/src_gui_graphicsview_qgraphicsscene.cpp 2 The BSP tree has an optimal size when each segment contains between 0 and 10 items. @@ -3146,7 +3146,7 @@ QGraphicsItem *QGraphicsScene::mouseGrabberItem() const Example: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsscene.cpp 3 + \snippet code/src_gui_graphicsview_qgraphicsscene.cpp 3 QGraphicsScene::render() calls drawBackground() to draw the scene background. For more detailed control over how the background is drawn, @@ -3181,7 +3181,7 @@ void QGraphicsScene::setBackgroundBrush(const QBrush &brush) Example: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsscene.cpp 4 + \snippet code/src_gui_graphicsview_qgraphicsscene.cpp 4 QGraphicsScene::render() calls drawForeground() to draw the scene foreground. For more detailed control over how the foreground is @@ -3295,7 +3295,7 @@ void QGraphicsScene::update(const QRectF &rect) Example: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsscene.cpp 5 + \snippet code/src_gui_graphicsview_qgraphicsscene.cpp 5 Note that QGraphicsView currently supports background caching only (see QGraphicsView::CacheBackground). This function is equivalent to calling @@ -5340,7 +5340,7 @@ void QGraphicsScenePrivate::processDirtyItemsRecursive(QGraphicsItem *item, bool Example: - \snippet doc/src/snippets/graphicssceneadditemsnippet.cpp 0 + \snippet graphicssceneadditemsnippet.cpp 0 Since Qt 4.6, this function is not called anymore unless the QGraphicsView::IndirectPainting flag is given as an Optimization diff --git a/src/widgets/graphicsview/qgraphicssceneevent.cpp b/src/widgets/graphicsview/qgraphicssceneevent.cpp index 91b6fb08da..580380e19a 100644 --- a/src/widgets/graphicsview/qgraphicssceneevent.cpp +++ b/src/widgets/graphicsview/qgraphicssceneevent.cpp @@ -1461,7 +1461,7 @@ void QGraphicsSceneDragDropEvent::setProposedAction(Qt::DropAction action) Sets the proposed action as accepted, i.e, the drop action is set to the proposed action. This is equal to: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicssceneevent.cpp 0 + \snippet code/src_gui_graphicsview_qgraphicssceneevent.cpp 0 When using this function, one should not call \c accept(). diff --git a/src/widgets/graphicsview/qgraphicsview.cpp b/src/widgets/graphicsview/qgraphicsview.cpp index cabf2eb5a5..3629341d9e 100644 --- a/src/widgets/graphicsview/qgraphicsview.cpp +++ b/src/widgets/graphicsview/qgraphicsview.cpp @@ -62,7 +62,7 @@ static const int QGRAPHICSVIEW_PREALLOC_STYLE_OPTIONS = 503; // largest prime < center of the scene and display any items that are visible at this point. For example: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsview.cpp 0 + \snippet code/src_gui_graphicsview_qgraphicsview.cpp 0 You can explicitly scroll to any position on the scene by using the scroll bars, or by calling centerOn(). By passing a point to centerOn(), @@ -1189,7 +1189,7 @@ QSize QGraphicsView::sizeHint() const Example: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsview.cpp 1 + \snippet code/src_gui_graphicsview_qgraphicsview.cpp 1 */ QPainter::RenderHints QGraphicsView::renderHints() const { @@ -1472,7 +1472,7 @@ void QGraphicsView::setRubberBandSelectionMode(Qt::ItemSelectionMode mode) especially with a transformed view. The CacheBackground flag enables caching of the view's background. For example: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsview.cpp 2 + \snippet code/src_gui_graphicsview_qgraphicsview.cpp 2 The cache is invalidated every time the view is transformed. However, when scrolling, only partial invalidation is required. @@ -1727,7 +1727,7 @@ QMatrix QGraphicsView::matrix() const Example: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsview.cpp 3 + \snippet code/src_gui_graphicsview_qgraphicsview.cpp 3 To simplify interation with items using a transformed view, QGraphicsView provides mapTo... and mapFrom... functions that can translate between @@ -2030,7 +2030,7 @@ void QGraphicsView::fitInView(const QGraphicsItem *item, Qt::AspectRatioMode asp onto a paint device, such as a QImage (e.g., to take a screenshot), or for printing to QPrinter. For example: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsview.cpp 4 + \snippet code/src_gui_graphicsview_qgraphicsview.cpp 4 If \a source is a null rect, this function will use viewport()->rect() to determine what to draw. If \a target is a null rect, the full dimensions @@ -2155,7 +2155,7 @@ QList QGraphicsView::items() const a subclass in QGraphicsView. \a pos is in untransformed viewport coordinates, just like QMouseEvent::pos(). - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsview.cpp 5 + \snippet code/src_gui_graphicsview_qgraphicsview.cpp 5 \sa QGraphicsScene::items(), {QGraphicsItem#Sorting}{Sorting} */ @@ -2270,7 +2270,7 @@ QList QGraphicsView::items(const QPainterPath &path, Qt::ItemSe Example: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsview.cpp 6 + \snippet code/src_gui_graphicsview_qgraphicsview.cpp 6 \sa items(), {QGraphicsItem#Sorting}{Sorting} */ @@ -3792,7 +3792,7 @@ bool QGraphicsView::isTransformed() const Example: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicsview.cpp 7 + \snippet code/src_gui_graphicsview_qgraphicsview.cpp 7 To simplify interation with items using a transformed view, QGraphicsView provides mapTo... and mapFrom... functions that can translate between diff --git a/src/widgets/graphicsview/qgraphicswidget.cpp b/src/widgets/graphicsview/qgraphicswidget.cpp index 1f45582442..267d70104d 100644 --- a/src/widgets/graphicsview/qgraphicswidget.cpp +++ b/src/widgets/graphicsview/qgraphicswidget.cpp @@ -677,7 +677,7 @@ QRectF QGraphicsWidget::windowFrameRect() const For example: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicswidget.cpp 0 + \snippet code/src_gui_graphicsview_qgraphicswidget.cpp 0 \sa QStyleOption::initFrom() */ @@ -2098,11 +2098,11 @@ QList QGraphicsWidget::actions() const Note that since the tab order of the \a second widget is changed, you should order a chain like this: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicswidget.cpp 1 + \snippet code/src_gui_graphicsview_qgraphicswidget.cpp 1 \e not like this: - \snippet doc/src/snippets/code/src_gui_graphicsview_qgraphicswidget.cpp 2 + \snippet code/src_gui_graphicsview_qgraphicswidget.cpp 2 If \a first is 0, this indicates that \a second should be the first widget to receive input focus should the scene gain Tab focus (i.e., the user -- cgit v1.2.3