Lines Matching defs:slot
294 * Connects a slot to be notified of selection changes.
296 * This method connects the given slot such that it will
299 * @param slot the slot to connect
303 sigc::connection connectChanged(sigc::slot<void, Selection *> const &slot) {
304 return _changed_signal.connect(slot);
306 sigc::connection connectChangedFirst(sigc::slot<void, Selection *> const &slot)
308 return _changed_signal.slots().insert(_changed_signal.slots().begin(), slot);
312 * Connects a slot to be notified of selected object modifications.
314 * This method connects the given slot such that it will
318 * @param slot the slot to connect
323 sigc::connection connectModified(sigc::slot<void, Selection *, unsigned int> const &slot)
325 return _modified_signal.connect(slot);
327 sigc::connection connectModifiedFirst(sigc::slot<void, Selection *, unsigned int> const &slot)
329 return _modified_signal.slots().insert(_modified_signal.slots().begin(), slot);