|
| Connection (Object *source, const std::string &sig_name) |
| Connection constructor.
|
|
| ~Connection () override |
| Connection destructor.
|
|
bool | invoke (const ArgList &args, Any &ret_val) override |
| Invokes the target with an arguments list.
|
|
virtual bool | invoke_target (const ArgList &args, Any &ret_val)=0 |
| Directly invokes the target with an arguments list, without any argument translation.
|
|
Object * | source () const |
| Gets the source.
|
|
const std::string & | signal_name () const |
| Gets the signal name.
|
|
Connection * | add_arg (const std::string &name, const std::string &value) |
| Adds an argument.
|
|
Connection * | rename_arg (const std::string &name, const std::string &new_name) |
| Renames an argument.
|
|
Connection * | discard_arg (const std::string &name) |
| Discards an argument.
|
|
void | remove () |
| Removes this connection from the slot it is connected to.
|
|
| Callable () |
| Callable constructor.
|
|
| ~Callable () override |
| Callable destructor.
|
|
bool | invoke (const ArgList &args) |
| Invokes a method by method name and argument list.
|
|
bool | invoke () |
| Invokes a method by method name.
|
|
| Object (bool transient=false) |
| Object constructor.
|
|
| ~Object () override |
| Object destructor.
|
|
virtual MetaClass * | meta_class () const |
| Gets the meta class.
|
|
virtual void | set_meta_class (MetaClass *mclass) |
| Sets the meta class.
|
|
unsigned int | id () const |
| Gets the identifier of this object.
|
|
std::string | string_id () const |
| Gets the unique string identifier.
|
|
bool | has_method (const std::string &method_name) const |
| Tests whether a method is defined.
|
|
virtual bool | invoke_method (const std::string &method_name, const ArgList &args, Any &ret_val) |
| Invokes a method by method name and argument list, and gets the return value.
|
|
bool | invoke_method (const std::string &method_name, const ArgList &args) |
| Invokes a method by method name and argument list.
|
|
bool | invoke_method (const std::string &method_name) |
| Invokes a method by method name.
|
|
bool | has_property (const std::string &prop_name) const |
| Tests whether a property is defined.
|
|
virtual bool | get_property (const std::string &prop_name, std::string &prop_value) const |
| Gets a property.
|
|
virtual Connection * | connect_signal_to_slot (const std::string &signal_name, Object *to, const std::string &slot_name) |
| Connects a signal with a slot of another object.
|
|
virtual void | add_connection (Connection *connection) |
| Adds a connection to this object.
|
|
virtual void | remove_connection (Connection *connection) |
| Removes a connection to this object.
|
|
virtual void | get_element (index_t i, Any &value) const |
| Gets an element by index.
|
|
virtual void | set_element (index_t i, const Any &value) |
| Sets an element by index.
|
|
void | get_element (index_t item, index_t component, Any &value) const |
| Gets an element by item and component.
|
|
void | set_element (index_t item, index_t component, const Any &value) |
| Sets an element by item and component.
|
|
virtual void | search (const std::string &needle, const std::string &path="") |
| Displays the names of all objects that contain a substring.
|
|
virtual index_t | get_dimension () const |
| Gets the number of elements per item.
|
|
bool | get_signals_enabled () const |
| Tests wheter signals are enabled.
|
|
void | set_signals_enabled (bool value) |
| Enables or disables signals.
|
|
bool | get_slots_enabled () const |
| Tests wheter slots are enabled.
|
|
void | set_slots_enabled (bool value) |
| Enables or disables slots.
|
|
MetaClass * | get_meta_class () const |
| Gets the meta class.
|
|
std::string | get_string_id () const |
| Gets the unique string identifier.
|
|
virtual std::string | get_doc () const |
| Gets the documentation.
|
|
virtual Sign | compare (const Object *other) const |
| Compares this object with another one.
|
|
virtual bool | is_a (const MetaType *type) const |
| Tests whether this object inherits a given type.
|
|
void | disconnect () |
| Removes all connections from signals of this objects.
|
|
void | enable_signals () |
| Enables signals.
|
|
void | disable_signals () |
| Disables signals.
|
|
void | enable_slots () |
| Enables slots.
|
|
void | disable_slots () |
| Disables slots.
|
|
void | set_properties (const ArgList &args) |
| Sets several properties in a single call.
|
|
virtual bool | set_property (const std::string &name, const std::string &value) |
| Sets an individual property.
|
|
void | help () const |
| Displays some help about this object.
|
|
virtual bool | set_property (const std::string &name, const Any &value) |
| Sets an individual property.
|
|
virtual bool | get_property (const std::string &prop_name, Any &prop_value) const |
| Gets a property.
|
|
void | ref () const |
| Increments the reference count.
|
|
void | unref () const |
| Decrements the reference count.
|
|
bool | is_shared () const |
| Check if the object is shared.
|
|
int | nb_refs () const |
| Gets the number of references that point to this object.
|
|
A connection connects a signal with a function. The arguments are matched between the signal and callable by their names. If argument names mismatch between the signal and the slot, a connection can rename/add/remove arguments before calling the target's slot. In addition, the target's slot can be invoked conditionally, depending of the value of some arguments.
Definition at line 66 of file connection.h.