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

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

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

__NOTOC__

Image:qt-logo.png

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

Image:trolltech-logo.png

Содержание

[править] QGroupBox Class Reference
[модуль QtGui ]

The QGroupBox widget provides a group box frame with a title. Далее...

 #include <QGroupBox>

Наследует QWidget.

Inherited by Q3GroupBox.

[править] Свойства

  • 56 свойств, унаследованных от QWidget
  • 1 свойство, унаследованное от QObject

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

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

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

  • 19 открытых слотов, унаследованных от QWidget
  • 1 открытый слот, унаследованный от QObject

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

  • 1 сигнал, унаследованный от QWidget
  • 1 сигнал, унаследованный от QObject

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

  • 38 защищенных функций, унаследованных от QWidget
  • 7 защищенных функций, унаследованных от QObject
  • 1 защищенная функция, унаследованных от QPaintDevice

[править] Дополнительные унаследованные члены

  • 4 статических открытых члена, унаследованных от QWidget
  • 5 статических открытых членов, унаследованных от QObject
  • 1 защищенный слот, унаследованый от QWidget

[править] Подробное описание

The QGroupBox widget provides a group box frame with a title.

A group box provides a frame, a title and a keyboard shortcut, and displays various other widgets inside itself. The title is on top, the keyboard shortcut moves keyboard focus to one of the group box's child widgets.

QGroupBox also lets you set the title (normally set in the constructor) and the title's alignment. Group boxes can be checkable; child widgets in checkable group boxes are enabled or disabled depending on whether or not the group box is checked.

You can minimize the space consumption of a group box by enabling the flat property. In most styles, enabling this property results in the removal of the left, right and bottom edges of the frame.

QGroupBox doesn't automatically lay out the child widgets (which are often QCheckBoxes or QRadioButtons but can be any widgets). The following example shows how we can set up a QGroupBox with a layout:

     QGroupBox *groupBox = new QGroupBox(tr("Exclusive Radio Buttons"));
 
     QRadioButton *radio1 = new QRadioButton(tr("&amp;Radio button 1"));
     QRadioButton *radio2 = new QRadioButton(tr("R&amp;adio button 2"));
     QRadioButton *radio3 = new QRadioButton(tr("Ra&amp;dio button 3"));
 
     radio1->setChecked(true);
 
     QVBoxLayout *vbox = new QVBoxLayout;
     vbox->addWidget(radio1);
     vbox->addWidget(radio2);
     vbox->addWidget(radio3);
     vbox->addStretch(1);
     groupBox->setLayout(vbox);
center center Файл:Plastique-groupbox.png
A Windows XP style group box. A Macintosh style group box. A Plastique style group box.

See also QButtonGroup and Group Box Example.


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

[править]
alignment : Qt::Alignment

This property holds the alignment of the group box title.

Most styles place the title at the top of the frame. The horizontal alignment of the title can be specified using single values from the following list:

  • Qt::AlignLeft aligns the title text with the left-hand side of the group box.
  • Qt::AlignRight aligns the title text with the right-hand side of the group box.
  • Qt::AlignHCenter aligns the title text with the horizontal center of the group box.

The default alignment is Qt::AlignLeft.

Функции доступа:

  • Qt::Alignment alignment () const
  • void setAlignment ( int alignment )

Смотрите также Qt::Alignment.

[править]
checkable : bool

This property holds whether the group box has a checkbox in its title.

If this property is true, the group box displays its title using a checkbox in place of an ordinary label. If the checkbox is checked, the group box's children are enabled; otherwise they are disabled and inaccessible.

By default, group boxes are not checkable.

If this property is enabled for a group box, it will also be initially checked to ensure that its contents are enabled.

Функции доступа:

  • bool isCheckable () const
  • void setCheckable ( bool checkable )

Смотрите также checked.

[править]
checked : bool

This property holds whether the group box is checked.

If the group box is checkable, it is displayed with a check box. If the check box is checked, the group box's children are enabled; otherwise the children are disabled and are inaccessible to the user.

By default, checkable group boxes are also checked.

Функции доступа:

  • bool isChecked () const
  • void setChecked ( bool checked )

Смотрите также checkable.

[править]
flat : bool

This property holds whether the group box is painted flat or has a frame.

A group box usually consists of a surrounding frame with a title at the top. If this property is enabled, only the top part of the frame is drawn in most styles; otherwise the whole frame is drawn.

By default, this property is disabled; i.e. group boxes are not flat unless explicitly specified.

Note: In some styles, flat and non-flat group boxes have similar representations and may not be as distinguishable as they are in other styles.

Функции доступа:

  • bool isFlat () const
  • void setFlat ( bool flat )

See also title.

[править]
title : QString

This property holds the group box title text.

The group box title text will have a keyboard shortcut if the title contains an ampersand ('&') followed by a letter.

 g->setTitle("&amp;User information");

In the example above, Alt+U moves the keyboard focus to the group box. See the QShortcut documentation for details (to display an actual ampersand, use '&&').

There is no default title text.

Функции доступа:

  • QString title () const
  • void setTitle ( const QString & title )

See also alignment.


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

[править]
QGroupBox::QGroupBox ( QWidget * parent = 0 )

Constructs a group box widget with the given parent but with no title.

[править]
QGroupBox::QGroupBox ( const QString & title, QWidget * parent = 0 )

Constructs a group box with the given title and parent.

[править]
QGroupBox::~QGroupBox ()

Destroys the group box.

[править]
void QGroupBox::clicked ( bool checked = false ) [signal]

This signal is emitted when the check box is activated (i.e. pressed down then released while the mouse cursor is inside the button), or when the shortcut key is typed, Notably, this signal is not emitted if you call setChecked().

If the check box is checked checked is true; it is false if the check box is unchecked.

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

See also checkable, toggled(), and checked.

[править]
void QGroupBox::initStyleOption ( QStyleOptionGroupBox * option ) const [protected]

Initialize option with the values from this QGroupBox. This method is useful for subclasses when they need a QStyleOptionGroupBox, but don't want to fill in all the information themselves.

See also QStyleOption::initFrom().

[править]
void QGroupBox::toggled ( bool on ) [signal]

If the group box is checkable, this signal is emitted when the check box is toggled. on is true if the check box is checked; otherwise it is false.

Смотрите также checkable.



Copyright © 2007 Trolltech Trademarks
Qt 4.3.2