|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.trolltech.qt.QSignalEmitter
com.trolltech.qt.QtJambiObject
com.trolltech.qt.core.QObject
com.trolltech.qt.core.QSignalMapper
public class QSignalMapper
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 extends QWidget { ... public ButtonWidget(List<String> texts) {...}; public Signal1<String> clicked = new Qignal1<String>(); private QSignalMapper signalMapper; }The only function that we need to implement is the constructor:
public buttonwidget(List<String> texts) { signalMapper = new QSignalMapper(this); QGridLayout gridLayout = new QGridLayout(); for (int i = 0; i < texts.size(); ++i) { QPushButton button = new QPushButton(texts.get(i)); button.clicked.connect(signalMapper, "map()"); signalMapper.setMapping(button, texts.get(i)); gridLayout.addWidget(button, i / 3, i % 3); } signalMapper.mappedString.connect( this, "clicked(String)"); 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. QObject
, QButtonGroup
, and QActionGroup
.
Nested Class Summary |
---|
Nested classes/interfaces inherited from class com.trolltech.qt.QSignalEmitter |
---|
QSignalEmitter.Signal0, QSignalEmitter.Signal1, QSignalEmitter.Signal2, QSignalEmitter.Signal3, QSignalEmitter.Signal4, QSignalEmitter.Signal5, QSignalEmitter.Signal6, QSignalEmitter.Signal7, QSignalEmitter.Signal8, QSignalEmitter.Signal9 |
Field Summary | |
---|---|
QSignalEmitter.Signal1 |
mappedInteger
This signal is emitted when map() is signalled from an object that has an integer mapping set. |
QSignalEmitter.Signal1 |
mappedQObject
This signal is emitted when map() is signalled from an object that has an integer mapping set. |
QSignalEmitter.Signal1 |
mappedString
This signal is emitted when map() is signalled from an object that has an integer mapping set. |
Constructor Summary | |
---|---|
QSignalMapper()
Constructs a QSignalMapper with parent parent. |
|
QSignalMapper(QObject parent)
Constructs a QSignalMapper with parent parent. |
Method Summary | |
---|---|
static QSignalMapper |
fromNativePointer(QNativePointer nativePointer)
|
void |
map()
This slot emits signals based on which object sends signals to it. |
void |
map(QObject sender)
This slot emits signals based on the sender object. |
QObject |
mapping(int id)
Returns the sender QObject that is associated with the given id. |
QObject |
mapping(QObject object)
Returns the sender QObject that is associated with the given object. |
QObject |
mapping(java.lang.String text)
Returns the signal sender associated with the string text. |
void |
removeMappings(QObject sender)
Removes all mappings for sender. |
void |
setMapping(QObject sender,
int id)
Adds a mapping so that when map() is signalled from the given sender, the signal mapped(id) is emitted. |
void |
setMapping(QObject sender,
QObject object)
Adds a mapping so that when map() is signalled from the given sender, the signal mapped(object ) is emitted. |
void |
setMapping(QObject sender,
java.lang.String text)
Adds a mapping so that when map() is signalled from the given sender, the signal mapped(text ) is emitted. |
Methods inherited from class com.trolltech.qt.core.QObject |
---|
childEvent, children, connectSlotsByName, customEvent, disposeLater, dumpObjectInfo, dumpObjectTree, dynamicPropertyNames, event, eventFilter, findChild, findChild, findChild, findChildren, findChildren, findChildren, findChildren, indexOfProperty, installEventFilter, isWidgetType, killTimer, moveToThread, objectName, parent, properties, property, removeEventFilter, setObjectName, setParent, setProperty, startTimer, timerEvent, toString, userProperty |
Methods inherited from class com.trolltech.qt.QtJambiObject |
---|
dispose, disposed, equals, finalize, reassignNativeResources, tr, tr, tr |
Methods inherited from class com.trolltech.qt.QSignalEmitter |
---|
blockSignals, disconnect, disconnect, signalsBlocked, signalSender, thread |
Methods inherited from class java.lang.Object |
---|
clone, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface com.trolltech.qt.QtJambiInterface |
---|
disableGarbageCollection, nativeId, nativePointer, reenableGarbageCollection, setJavaOwnership |
Field Detail |
---|
public final QSignalEmitter.Signal1 mappedQObject
map()
is signalled from an object that has an integer mapping set. The object's mapped integer is passed in i. setMapping()
.
public final QSignalEmitter.Signal1 mappedString
map()
is signalled from an object that has an integer mapping set. The object's mapped integer is passed in i. setMapping()
.
public final QSignalEmitter.Signal1 mappedInteger
map()
is signalled from an object that has an integer mapping set. The object's mapped integer is passed in i. setMapping()
.
Constructor Detail |
---|
public QSignalMapper()
QSignalMapper
with parent parent.
public QSignalMapper(QObject parent)
QSignalMapper
with parent parent.
Method Detail |
---|
public final void map()
public final void map(QObject sender)
public final QObject mapping(QObject object)
QObject
that is associated with the given object.
public final QObject mapping(java.lang.String text)
public final QObject mapping(int id)
QObject
that is associated with the given id. setMapping()
.
public final void removeMappings(QObject sender)
This is done automatically when mapped objects are destroyed.
public final void setMapping(QObject sender, QObject object)
map()
is signalled from the given sender, the signal mapped(object ) is emitted. There may be at most one object for each sender.
public final void setMapping(QObject sender, java.lang.String text)
map()
is signalled from the given sender, the signal mapped(text ) is emitted. There may be at most one text for each sender.
public final void setMapping(QObject sender, int id)
map()
is signalled from the given sender, the signal mapped(id) is emitted. There may be at most one integer ID for each sender.
mapping()
.
public static QSignalMapper fromNativePointer(QNativePointer nativePointer)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |