Searched defs:connection (Results 1 - 9 of 9) sorted by relevance
/inkscape/src/ |
H A D | object-hierarchy.h | 16 #include <sigc++/connection.h> 49 sigc::connection connectAdded(const sigc::slot<void, SPObject *> &slot) { 52 sigc::connection connectRemoved(const sigc::slot<void, SPObject *> &slot) { 55 sigc::connection connectChanged(const sigc::slot<void, SPObject *, SPObject *> &slot) 85 Record(SPObject *o, sigc::connection c) 86 : object(o), connection(c) {} 89 sigc::connection connection; member in struct:Inkscape::ObjectHierarchy::Record
|
H A D | object-hierarchy.cpp | 162 sigc::connection connection local 166 return Record(object, connection); 170 rec.connection.disconnect();
|
H A D | event-log.cpp | 67 void addBlocker(std::vector<boost::shared_ptr<SignalBlocker> > &blockers, sigc::connection *connection) argument 69 blockers.push_back(boost::make_shared<SignalBlocker>(connection));
|
H A D | layer-manager.cpp | 38 LayerWatcher(LayerManager* mgr, SPObject* obj, sigc::connection c) : 60 sigc::connection _connection; 329 sigc::connection connection = layer->connectModified(sigc::mem_fun(*this, &LayerManager::_objectModified)); local 331 LayerWatcher *eye = new LayerWatcher(this, layer, connection);
|
/inkscape/src/extension/dbus/ |
H A D | dbus-init.cpp | 52 /* PRIVATE get a connection to the session bus */ 56 DBusGConnection *connection = dbus_g_bus_get (DBUS_BUS_SESSION, &error); local 58 fprintf(stderr, "Failed to get connection"); 62 return connection; 67 dbus_get_proxy(DBusGConnection *connection) { argument 68 return dbus_g_proxy_new_for_name (connection, 76 dbus_register_object (DBusGConnection *connection, argument 84 dbus_g_connection_register_g_object (connection, path, object); 108 DBusGConnection *connection = dbus_get_connection(); local 109 DBusGProxy *proxy = dbus_get_proxy(connection); 137 DBusGConnection *connection; local 178 DBusGConnection *connection; local [all...] |
/inkscape/src/widgets/ |
H A D | spiral-toolbar.cpp | 294 sigc::connection *connection = new sigc::connection( local 297 g_signal_connect( holder, "destroy", G_CALLBACK(delete_connection), connection );
|
H A D | toolbox.cpp | 746 void delete_connection(GObject * /*obj*/, sigc::connection *connection) argument 748 connection->disconnect(); 749 delete connection; 1006 sigc::connection* conn = new sigc::connection; 1141 sigc::connection *conn = static_cast<sigc::connection*>(g_object_get_data(G_OBJECT(toolbox),
|
/inkscape/src/ui/tools/ |
H A D | connector-tool.cpp | 27 * same connection point, and drawing of connectors attaching 310 // Hide the connection points if they exist. 398 connection points on connectors. (yet?) 495 // Test whether we clicked on a connection point 676 // Test whether we clicked on a connection point 755 // Test whether we clicked on a connection point 761 this->clickeditem->setAttribute("inkscape:connection-start", shape_label, NULL); 764 this->clickeditem->setAttribute("inkscape:connection-end", shape_label, NULL); 888 bool connection = false; local 895 this->newconn->setAttribute( "inkscape:connection [all...] |
/inkscape/src/extension/dbus/wrapper/ |
H A D | inkscape-dbus-wrapper.c | 15 /* PRIVATE get a connection to the session bus */ 19 DBusGConnection *connection = dbus_g_bus_get (DBUS_BUS_SESSION, &error); local 21 fprintf(stderr, "Failed to get connection"); 25 return connection; 30 dbus_get_proxy(DBusGConnection *connection) { argument 31 return dbus_g_proxy_new_for_name (connection, 40 dbus_register_object (DBusGConnection *connection, 48 dbus_g_connection_register_g_object (connection, path, object); 95 DBusGConnection *connection; local 104 connection [all...] |
Completed in 32 milliseconds