Qt:Документация 4.3.2/qmenubar-qt3

Материал из Wiki.crossplatform.ru

Перейти к: навигация, поиск
40px Внимание: Актуальная версия перевода документации находится здесь

__NOTOC__

Image:qt-logo.png

Главная · Все классы · Основные классы · Классы по группам · Модули · Функции

Image:trolltech-logo.png

Содержание

[править] Qt 3 Support Members for QMenuBar

Описанные ниже члены класса являются частью слоя поддержки Qt 3. Они введены для поддержки старого кода в Qt 4. Мы советуем не использовать их во вновь создаваемом коде.



[править] Открытые типы

[править] Открытые функции

  • 60 открытых функций, унаследованных от QWidget
  • 8 открытых функций, унаследованных от QObject
  • 8 открытых функций, унаследованных от QPaintDevice

[править] Сигналы

[править] Защищенные функции

  • 1 protected function inherited from QObject

[править] Описание типов

[править]
enum QMenuBar::Separator

Константа Значение
QMenuBar::Never 0
QMenuBar::InWindowsStyle 1

[править] Описание функций-членов

[править]
QMenuBar::QMenuBar ( QWidget * parent, const char * name )

Use one of the constructors that doesn't take the name argument and then use setObjectName() instead.

[править]
QKeySequence QMenuBar::accel ( int id ) const

Use shortcut() on the relevant QAction instead.

Смотрите также setAccel().

[править]
void QMenuBar::activateItemAt ( int index )

Use activate() on the relevant QAction instead.

[править]
void QMenuBar::activated ( int itemId ) [signal]

Use triggered() instead.

[править]
bool QMenuBar::autoGeometry () const

Returns true if the menu bar automatically resizes itself when its parent widget is resized; otherwise returns false.

This feature is provided to help porting to Qt 4. We recommend against using it in new code.

See also setAutoGeometry().

[править]
void QMenuBar::changeItem ( int id, const QString & text )

Use setText() on the relevant QAction instead.

[править]
void QMenuBar::changeItem ( int id, const QPixmap & pixmap )

Эта перегруженная функция предоставлена для удобства.

Use setText() on the relevant QAction instead.

[править]
void QMenuBar::changeItem ( int id, const QIcon & icon, const QString & text )

Эта перегруженная функция предоставлена для удобства.

Use setIcon() and setText() on the relevant QAction instead.

[править]
bool QMenuBar::connectItem ( int id, const QObject * receiver, const char * member )

Use connect() on the relevant QAction instead.

[править]
uint QMenuBar::count () const

Use actions().count() instead.

[править]
bool QMenuBar::disconnectItem ( int id, const QObject * receiver, const char * member )

Use disconnect() on the relevant QAction instead.

[править]
QMenuItem * QMenuBar::findItem ( int id ) const

Use actions instead.

[править]
int QMenuBar::frameWidth () const

Use style()->pixelMetric( QStyle::PM_MenuBarPanelWidth, this) instead.

[править]
void QMenuBar::highlighted ( int itemId ) [signal]

Use hovered() instead.

[править]
QIcon QMenuBar::iconSet ( int id ) const

Use icon() on the relevant QAction instead.

[править]
int QMenuBar::idAt ( int index ) const

Use actions instead.

[править]
int QMenuBar::indexOf ( int id ) const

Use actions().indexOf(action) on the relevant QAction instead.

[править]
int QMenuBar::insertItem ( const QString & text, const QObject * receiver, const char * member, const QKeySequence & shortcut = 0, int id = -1, int index = -1 )

Use one of the insertAction() or addAction() overloads instead.

[править]
int QMenuBar::insertItem ( const QIcon & icon, const QString & text, const QObject * receiver, const char * member, const QKeySequence & shortcut = 0, int id = -1, int index = -1 )

Эта перегруженная функция предоставлена для удобства.

Use one of the insertAction() or addAction() overloads instead.

[править]
int QMenuBar::insertItem ( const QPixmap & pixmap, const QObject * receiver, const char * member, const QKeySequence & shortcut = 0, int id = -1, int index = -1 )

Эта перегруженная функция предоставлена для удобства.

Use one of the insertAction(), addAction(), insertMenu(), or addMenu() overloads instead.

[править]
int QMenuBar::insertItem ( const QString & text, int id = -1, int index = -1 )

Эта перегруженная функция предоставлена для удобства.

Use one of the insertAction() or addAction() overloads instead.

[править]
int QMenuBar::insertItem ( const QIcon & icon, const QString & text, int id = -1, int index = -1 )

Эта перегруженная функция предоставлена для удобства.

Use one of the insertAction(), addAction(), insertMenu(), or addMenu() overloads instead.

[править]
int QMenuBar::insertItem ( const QString & text, QMenu * popup, int id = -1, int index = -1 )

Эта перегруженная функция предоставлена для удобства.

Use one of the insertMenu(), or addMenu() overloads instead.

[править]
int QMenuBar::insertItem ( const QIcon & icon, const QString & text, QMenu * popup, int id = -1, int index = -1 )

Эта перегруженная функция предоставлена для удобства.

Use one of the insertMenu(), or addMenu() overloads instead.

[править]
int QMenuBar::insertItem ( const QPixmap & pixmap, int id = -1, int index = -1 )

Эта перегруженная функция предоставлена для удобства.

Use one of the insertAction(), addAction(), insertMenu(), or addMenu() overloads instead.

[править]
int QMenuBar::insertItem ( const QPixmap & pixmap, QMenu * popup, int id = -1, int index = -1 )

Эта перегруженная функция предоставлена для удобства.

Use one of the insertMenu(), or addMenu() overloads instead.

[править]
int QMenuBar::insertSeparator ( int index = -1 )

Эта перегруженная функция предоставлена для удобства.

Use addSeparator() or insertAction() instead.

Например, если у вас есть код

 menuBar->insertSeparator();

вы можете записать его в виде

 menuBar->addSeparator();

Эта функция была введена в Qt 4.2.

[править]
bool QMenuBar::isItemActive ( int id ) const

Use activeAction() instead.

[править]
bool QMenuBar::isItemChecked ( int id ) const

Use isChecked() on the relevant QAction instead.

[править]
bool QMenuBar::isItemEnabled ( int id ) const

Use isEnabled() on the relevant QAction instead.

[править]
bool QMenuBar::isItemVisible ( int id ) const

Use isVisible() on the relevant QAction instead.

[править]
int QMenuBar::itemAtPos ( const QPoint & p ) [protected]

There is no equivalent way to achieve this in Qt 4.

[править]
int QMenuBar::itemParameter ( int id ) const

Use QAction::data() instead.

See also setItemParameter().

[править]
QRect QMenuBar::itemRect ( int index ) [protected]

Use actionGeometry() on the relevant QAction instead.

[править]
int QMenuBar::margin () const

Returns the with of the the margin around the contents of the widget.

Use QWidget::getContentsMargins() instead.

See also setMargin() and QWidget::getContentsMargins().

[править]
QPixmap QMenuBar::pixmap ( int id ) const

Use QPixmap( icon()) on the relevant QAction instead.

[править]
void QMenuBar::removeItem ( int id )

Use removeAction() instead.

[править]
void QMenuBar::removeItemAt ( int index )

Use removeAction() instead.

[править]
Separator QMenuBar::separator () const

This function is provided only to make old code compile.

See also setSeparator().

[править]
void QMenuBar::setAccel ( const QKeySequence & key, int id )

Use setShortcut() on the relevant QAction instead.

Смотрите также accel().

[править]
void QMenuBar::setAutoGeometry ( bool b )

Sets whether the menu bar should automatically resize itself when its parent widget is resized.

This feature is provided to help porting to Qt 4. We recommend against using it in new code.

See also autoGeometry().

[править]
void QMenuBar::setItemChecked ( int id, bool check )

Use setChecked() on the relevant QAction instead.

See also isItemChecked().

[править]
void QMenuBar::setItemEnabled ( int id, bool enable )

Use setEnabled() on the relevant QAction instead.

See also isItemEnabled().

[править]
bool QMenuBar::setItemParameter ( int id, int param )

Use QAction::setData() instead.

See also itemParameter().

[править]
void QMenuBar::setItemVisible ( int id, bool visible )

Use setVisible() on the relevant QAction instead.

See also isItemVisible().

[править]
void QMenuBar::setMargin ( int margin )

Sets the width of the margin around the contents of the widget to margin.

Use QWidget::setContentsMargins() instead.

See also margin() and QWidget::setContentsMargins().

[править]
void QMenuBar::setSeparator ( Separator sep )

This function is provided only to make old code compile.

See also separator().

[править]
void QMenuBar::setWhatsThis ( int id, const QString & w )

Use setWhatsThis() on the relevant QAction instead.

See also whatsThis().

[править]
QString QMenuBar::text ( int id ) const

Use text() on the relevant QAction instead.

[править]
QString QMenuBar::whatsThis ( int id ) const

Use whatsThis() on the relevant QAction instead.

See also setWhatsThis().



Copyright © 2007 Trolltech Trademarks
Qt 4.3.2