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

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

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

__NOTOC__

Image:qt-logo.png

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

Image:trolltech-logo.png

Содержание

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

The QSignalMapper class bundles signals from identifiable senders. Далее...

 #include <QSignalMapper>

Inherits QObject.

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

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

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

  • void map ()
  • void map ( QObject * sender )
  • 1 открытый слот, унаследованный от QObject

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

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

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

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

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

The QSignalMapper class bundles signals from identifiable senders.

This class collects a set of parameterless signals, and re-emits them with integer, string or widget parameters corresponding to the object that sent the signal.

The class supports the mapping of particular strings or integers with particular objects using setMapping(). The objects' signals can then be connected to the map() slot which will emit the mapped() signal with the string or integer associated with the original signalling object. Mappings can be removed later using removeMappings().

Example: Suppose we want to create a custom widget that contains a group of buttons (like a tool palette). One approach is to connect each button's clicked() signal to its own custom slot; but in this example we want to connect all the buttons to a single slot and parameterize the slot by the button that was clicked.

Here's the definition of a simple custom widget that has a single signal, clicked(), which is emitted with the text of the button that was clicked:

 class ButtonWidget : public QWidget
 {
     Q_OBJECT
 
 public:
     ButtonWidget(QStringList texts, QWidget *parent = 0);
 
 signals:
     void clicked(const QString &amp;text);
 
 private:
     QSignalMapper *signalMapper;
 };

The only function that we need to implement is the constructor:

 ButtonWidget::ButtonWidget(QStringList texts, QWidget *parent)
     : QWidget(parent)
 {
     signalMapper = new QSignalMapper(this);
 
     QGridLayout *gridLayout = new QGridLayout;
     for (int i = 0; i < texts.size(); ++i) {
         QPushButton *button = new QPushButton(texts[i]);
         connect(button, SIGNAL(clicked()), signalMapper, SLOT(map()));
         signalMapper->setMapping(button, texts[i]);
         gridLayout->addWidget(button, i / 3, i % 3);
     }
 
     connect(signalMapper, SIGNAL(mapped(const QString &amp;)),
             this, SIGNAL(clicked(const QString &amp;)));
 
     setLayout(gridLayout);
 }

A list of texts is passed to the constructor. A signal mapper is constructed and for each text in the list a QPushButton is created. We connect each button's clicked() signal to the signal mapper's map() slot, and create a mapping in the signal mapper from each button to the button's text. Finally we connect the signal mapper's mapped() signal to the custom widget's clicked() signal. When the user clicks a button, the custom widget will emit a single clicked() signal whose argument is the text of the button the user clicked.

See also QObject, QButtonGroup, and QActionGroup.


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

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

Constructs a QSignalMapper with parent parent.

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

Destroys the QSignalMapper.

[править]
void QSignalMapper::map () [slot]

This slot emits signals based on which object sends signals to it.

[править]
void QSignalMapper::map ( QObject * sender ) [slot]

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

This slot emits signals based on the sender object.

[править]
void QSignalMapper::mapped ( int i ) [signal]

This signal is emitted when map() is signalled from an object that has an integer mapping set. The object's mapped integer is passed in i.

See also setMapping().

[править]
void QSignalMapper::mapped ( const QString & text ) [signal]

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

This signal is emitted when map() is signalled from an object that has a string mapping set. The object's mapped string is passed in text.

See also setMapping().

[править]
void QSignalMapper::mapped ( QWidget * widget ) [signal]

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

This signal is emitted when map() is signalled from an object that has a widget mapping set. The object's mapped widget is passed in widget.

See also setMapping().

[править]
void QSignalMapper::mapped ( QObject * object ) [signal]

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

This signal is emitted when map() is signalled from an object that has an object mapping set. The object provided by the map is passed in object.

See also setMapping().

[править]
QObject * QSignalMapper::mapping ( int id ) const

Returns the sender QObject that is associated with the given id.

See also setMapping().

[править]
QObject * QSignalMapper::mapping ( const QString & id ) const

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

[править]
QObject * QSignalMapper::mapping ( QWidget * widget ) const

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

Returns the sender QObject that is associated with the given widget.

[править]
QObject * QSignalMapper::mapping ( QObject * object ) const

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

Returns the sender QObject that is associated with the given object.

[править]
void QSignalMapper::removeMappings ( QObject * sender )

Removes all mappings for sender.

This is done automatically when mapped objects are destroyed.

[править]
void QSignalMapper::setMapping ( QObject * sender, int id )

Adds a mapping so that when map() is signalled from the given sender, the signal mapped(id) is emitted.

There may be at most one integer ID for each sender.

See also mapping().

[править]
void QSignalMapper::setMapping ( QObject * sender, const QString & text )

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

Adds a mapping so that when map() is signalled from the given sender, the signal mapped(text ) is emitted.

There may be at most one text for each sender.

[править]
void QSignalMapper::setMapping ( QObject * sender, QWidget * widget )

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

Adds a mapping so that when map() is signalled from the given sender, the signal mapped(widget ) is emitted.

There may be at most one widget for each sender.

[править]
void QSignalMapper::setMapping ( QObject * sender, QObject * object )

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

Adds a mapping so that when map() is signalled from the given sender, the signal mapped(object ) is emitted.

There may be at most one object for each sender.



Copyright © 2007 Trolltech Trademarks
Qt 4.3.2