Documentation fixes.
Change-Id: I2e234ec4307bbe39359cdfa8b13e86661dad43b6 Reviewed-by: Gabriel de Dietrich <gabriel.dedietrich@digia.com>
This commit is contained in:
parent
eed5be6fcd
commit
1dc517abc6
@ -1119,7 +1119,7 @@ bool QHeaderView::sectionsMovable() const
|
|||||||
// ### Qt 6 - remove this obsolete function
|
// ### Qt 6 - remove this obsolete function
|
||||||
/*!
|
/*!
|
||||||
\obsolete
|
\obsolete
|
||||||
\fn bool QHeaderView::isMovable(bool movable) const
|
\fn bool QHeaderView::isMovable() const
|
||||||
|
|
||||||
Use sectionsMovable instead.
|
Use sectionsMovable instead.
|
||||||
|
|
||||||
|
@ -285,13 +285,6 @@ bool QLayout::setAlignment(QLayout *l, Qt::Alignment alignment)
|
|||||||
\sa QLayoutItem::setAlignment()
|
\sa QLayoutItem::setAlignment()
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*!
|
|
||||||
\fn bool QLayout::isTopLevel() const
|
|
||||||
|
|
||||||
Returns true if this layout is a top-level layout, i.e. not a
|
|
||||||
child of another layout; otherwise returns false.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
\property QLayout::margin
|
\property QLayout::margin
|
||||||
\brief the width of the outside border of the layout
|
\brief the width of the outside border of the layout
|
||||||
|
@ -145,19 +145,6 @@
|
|||||||
\sa setHorizontalStretch(), setVerticalStretch()
|
\sa setHorizontalStretch(), setVerticalStretch()
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*!
|
|
||||||
\fn QSizePolicy::QSizePolicy(Policy horizontal, Policy vertical)
|
|
||||||
|
|
||||||
Constructs a QSizePolicy object with the given \a horizontal and
|
|
||||||
\a vertical policies, and DefaultType as the control type.
|
|
||||||
|
|
||||||
Use setHeightForWidth() if the preferred height of the widget is
|
|
||||||
dependent on the width of the widget (for example, a QLabel with
|
|
||||||
line wrapping).
|
|
||||||
|
|
||||||
\sa setHorizontalStretch(), setVerticalStretch()
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
\fn QSizePolicy::QSizePolicy(Policy horizontal, Policy vertical, ControlType type)
|
\fn QSizePolicy::QSizePolicy(Policy horizontal, Policy vertical, ControlType type)
|
||||||
\since 4.3
|
\since 4.3
|
||||||
|
@ -10992,14 +10992,6 @@ QGraphicsProxyWidget *QWidget::graphicsProxyWidget() const
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/*!
|
|
||||||
\typedef QWidgetList
|
|
||||||
\relates QWidget
|
|
||||||
|
|
||||||
Synonym for QList<QWidget *>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef QT_NO_GESTURES
|
#ifndef QT_NO_GESTURES
|
||||||
/*!
|
/*!
|
||||||
Subscribes the widget to a given \a gesture with specific \a flags.
|
Subscribes the widget to a given \a gesture with specific \a flags.
|
||||||
@ -11030,13 +11022,6 @@ void QWidget::ungrabGesture(Qt::GestureType gesture)
|
|||||||
}
|
}
|
||||||
#endif // QT_NO_GESTURES
|
#endif // QT_NO_GESTURES
|
||||||
|
|
||||||
/*!
|
|
||||||
\typedef WId
|
|
||||||
\relates QWidget
|
|
||||||
|
|
||||||
Platform dependent window identifier.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
\fn void QWidget::destroy(bool destroyWindow, bool destroySubWindows)
|
\fn void QWidget::destroy(bool destroyWindow, bool destroySubWindows)
|
||||||
|
|
||||||
@ -11366,14 +11351,6 @@ void QWidget::clearMask()
|
|||||||
setMask(QRegion());
|
setMask(QRegion());
|
||||||
}
|
}
|
||||||
|
|
||||||
/*! \fn Qt::HANDLE QWidget::x11PictureHandle() const
|
|
||||||
Returns the X11 Picture handle of the widget for XRender
|
|
||||||
support. Use of this function is not portable. This function will
|
|
||||||
return 0 if XRender support is not compiled into Qt, if the
|
|
||||||
XRender extension is not supported on the X11 display, or if the
|
|
||||||
handle could not be created.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifdef Q_WS_MAC
|
#ifdef Q_WS_MAC
|
||||||
void QWidgetPrivate::syncUnifiedMode() {
|
void QWidgetPrivate::syncUnifiedMode() {
|
||||||
// The whole purpose of this method is to keep the unifiedToolbar in sync.
|
// The whole purpose of this method is to keep the unifiedToolbar in sync.
|
||||||
|
@ -122,14 +122,6 @@
|
|||||||
\sa size()
|
\sa size()
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \fn HPALETTE QColormap::hPal()
|
|
||||||
|
|
||||||
This function is only available on Windows.
|
|
||||||
|
|
||||||
Returns an handle to the HPALETTE used by this colormap. If no
|
|
||||||
HPALETTE is being used, this function returns zero.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*! \since 4.2
|
/*! \since 4.2
|
||||||
|
|
||||||
\fn QColormap &QColormap::operator=(const QColormap &colormap)
|
\fn QColormap &QColormap::operator=(const QColormap &colormap)
|
||||||
|
@ -266,7 +266,7 @@ QString QUndoCommand::actionText() const
|
|||||||
command does.
|
command does.
|
||||||
|
|
||||||
If you need to have two different strings for text() and actionText(), separate
|
If you need to have two different strings for text() and actionText(), separate
|
||||||
them with "\n" and pass into this function. Even if you do not use this feature
|
them with "\\n" and pass into this function. Even if you do not use this feature
|
||||||
for English strings during development, you can still let translators use two
|
for English strings during development, you can still let translators use two
|
||||||
different strings in order to match specific languages' needs.
|
different strings in order to match specific languages' needs.
|
||||||
The described feature and the function actionText() are available since Qt 4.8.
|
The described feature and the function actionText() are available since Qt 4.8.
|
||||||
|
@ -1155,19 +1155,6 @@ void QAbstractSpinBox::hideEvent(QHideEvent *event)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*!
|
|
||||||
\internal
|
|
||||||
|
|
||||||
Used when acceleration is turned on. We need to get the
|
|
||||||
keyboard auto repeat rate from OS. This value is used as
|
|
||||||
argument when starting acceleration related timers.
|
|
||||||
|
|
||||||
Every platform should, either, use native calls to obtain
|
|
||||||
the value or hard code some reasonable rate.
|
|
||||||
|
|
||||||
Remember that time value should be given in msecs.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
\reimp
|
\reimp
|
||||||
*/
|
*/
|
||||||
|
@ -2948,17 +2948,6 @@ void QCalendarWidget::updateCells()
|
|||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*!
|
|
||||||
\property QCalendarWidget::headerVisible
|
|
||||||
\brief whether the navigation bar is shown or not
|
|
||||||
|
|
||||||
\obsolete
|
|
||||||
|
|
||||||
Use navigationBarVisible() instead.
|
|
||||||
|
|
||||||
By default, this property is true.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
\property QCalendarWidget::navigationBarVisible
|
\property QCalendarWidget::navigationBarVisible
|
||||||
\brief whether the navigation bar is shown or not
|
\brief whether the navigation bar is shown or not
|
||||||
|
@ -85,7 +85,7 @@
|
|||||||
developer to provide the autorelease pool.
|
developer to provide the autorelease pool.
|
||||||
|
|
||||||
The following is a snippet of subclassing QMacCocoaViewContainer to wrap a NSSearchField.
|
The following is a snippet of subclassing QMacCocoaViewContainer to wrap a NSSearchField.
|
||||||
\snippet mainwindows/macmainwindow/macmainwindow.mm 0
|
\snippet widgets/mainwindows/macmainwindow/macmainwindow.mm 0
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -718,30 +718,6 @@ bool QPushButtonPrivate::hitButton(const QPoint &pos)
|
|||||||
#endif // Q_WS_MAC
|
#endif // Q_WS_MAC
|
||||||
|
|
||||||
|
|
||||||
/*!
|
|
||||||
\fn void QPushButton::openPopup()
|
|
||||||
|
|
||||||
Use showMenu() instead.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*!
|
|
||||||
\fn bool QPushButton::isMenuButton() const
|
|
||||||
|
|
||||||
Use menu() != 0 instead.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*!
|
|
||||||
\fn void QPushButton::setPopup(QMenu* popup)
|
|
||||||
|
|
||||||
Use setMenu() instead.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*!
|
|
||||||
\fn QMenu* QPushButton::popup() const
|
|
||||||
|
|
||||||
Use menu() instead.
|
|
||||||
*/
|
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|
||||||
#include "moc_qpushbutton.cpp"
|
#include "moc_qpushbutton.cpp"
|
||||||
|
@ -598,18 +598,6 @@ QString QStatusBar::currentMessage() const
|
|||||||
return d->tempItem;
|
return d->tempItem;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*!
|
|
||||||
\fn void QStatusBar::message(const QString &message, int timeout)
|
|
||||||
|
|
||||||
Use the showMessage() function instead.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*!
|
|
||||||
\fn void QStatusBar::clear()
|
|
||||||
|
|
||||||
Use the clearMessage() function instead.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
\fn QStatusBar::messageChanged(const QString &message)
|
\fn QStatusBar::messageChanged(const QString &message)
|
||||||
|
|
||||||
|
@ -1213,18 +1213,6 @@ bool QToolBar::event(QEvent *event)
|
|||||||
QAction *QToolBar::toggleViewAction() const
|
QAction *QToolBar::toggleViewAction() const
|
||||||
{ Q_D(const QToolBar); return d->toggleViewAction; }
|
{ Q_D(const QToolBar); return d->toggleViewAction; }
|
||||||
|
|
||||||
/*!
|
|
||||||
\fn void QToolBar::setLabel(const QString &label)
|
|
||||||
|
|
||||||
Use setWindowTitle() instead.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*!
|
|
||||||
\fn QString QToolBar::label() const
|
|
||||||
|
|
||||||
Use windowTitle() instead.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
\since 4.2
|
\since 4.2
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user