glibmm: Glib::SignalProxyDetailedBase Class Reference

The SignalProxy provides an API similar to sigc::signal that can be used to connect sigc::slots to glib signals. More...

#include <glibmm/signalproxy.h>

Inheritance diagram for Glib::SignalProxyDetailedBase:

Public Member Functions

 ~SignalProxyDetailedBase () noexcept
 
void emission_stop ()
 Stops the current signal emission (not in libsigc++) More...

 
- Public Member Functions inherited from Glib::SignalProxyBase
 SignalProxyBase (Glib::ObjectBase* obj)
 

Protected Member Functions

 SignalProxyDetailedBase (Glib::ObjectBase* obj, const SignalProxyInfo* info, const Glib::ustring& detail_name)
 Creates a proxy for a signal that can be emitted by obj. More...

 
sigc::slot_baseconnect_impl_ (bool notify, const sigc::slot_base& slot, bool after)
 Connects a signal handler to a signal. More...

 
sigc::slot_baseconnect_impl_ (bool notify, sigc::slot_base&& slot, bool after)
 Connects a signal handler to a signal. More...

 

Additional Inherited Members

- Protected Attributes inherited from Glib::SignalProxyBase
ObjectBaseobj_
 

Detailed Description

The SignalProxy provides an API similar to sigc::signal that can be used to connect sigc::slots to glib signals.

This holds the name of the glib signal, including the detail name if any, and the object which might emit it. Actually, proxies are controlled by the template derivatives, which serve as gatekeepers for the types allowed on a particular signal.

Constructor & Destructor Documentation

Glib::SignalProxyDetailedBase::~SignalProxyDetailedBase ( )
noexcept
Glib::SignalProxyDetailedBase::SignalProxyDetailedBase ( Glib::ObjectBase obj,
const SignalProxyInfo *  info,
const Glib::ustring detail_name 
)
protected

Creates a proxy for a signal that can be emitted by obj.

Parameters
objThe object that can emit the signal.
infoInformation about the signal, including its name and the C callbacks that should be called by glib.
detail_nameThe detail name, if any.

Member Function Documentation

sigc::slot_base& Glib::SignalProxyDetailedBase::connect_impl_ ( bool  notify,
const sigc::slot_base slot,
bool  after 
)
protected

Connects a signal handler to a signal.

This is called by connect() and connect_notify() in derived SignalProxyDetailed classes.

Parameters
notifyWhether this method is called by connect_notify() or by connect().
slotThe signal handler, usually created with sigc::mem_fun() or sigc::ptr_fun().
afterWhether this signal handler should be called before or after the default signal handler.
sigc::slot_base& Glib::SignalProxyDetailedBase::connect_impl_ ( bool  notify,
sigc::slot_base &&  slot,
bool  after 
)
protected
void Glib::SignalProxyDetailedBase::emission_stop ( )

Stops the current signal emission (not in libsigc++)