An example of how to use a ScopedConnection and ConnectionBlocker to manage when a Connection is disconnected or blocked.
Expected output:
Guard is connected: 1
Connection is not blocked: 3
Connection is not blocked: 5
#include <ios>
#include <iostream>
#include <string>
void displayLabelled(const std::string &label, int value)
{
std::cout << label << ": " << value << std::endl;
}
int main()
{
{
}
{
}
return 0;
}
A ConnectionBlocker is a convenient RAII-style mechanism for temporarily blocking a connection.
A ConnectionHandle represents the connection of a Signal to a slot (i.e. a function that is called wh...
A ScopedConnection is a RAII-style way to make sure a Connection is disconnected.
A Signal provides a mechanism for communication between objects.
void emit(Args... p) const
KDBINDINGS_WARN_UNUSED ConnectionHandle connect(std::function< void(Args...)> const &slot)
The main namespace of the KDBindings library.