Lines Matching full:hello
1162 G_TYPE_INT, 42, G_TYPE_STRING, "hello",
1227 strs_dynamic[0] = g_strdup ("hello");
1277 g_value_set_string (&val, "hello world");
2045 def hello(self):
2046 Hello from the HelloWorldObject'
2059 Notice the @ symbol on the line before the hello method. This is a new directive introduced in
2062 In this case we are telling the bindings that the hello method should be exported as a D-Bus method
2067 As you can see we exported the hello method as part of the org.freedesktop.HelloWorldIFace interface.
2077 print iface.hello()
2119 def hello(self):
2120 return 'Hello from the HelloWorldObject'
2130 object.hello_signal('I sent a hello signal')
2140 with the parameters you passed in as arguments. In the above example we send the message 'I sent a hello signal'
2149 Let's inherit from the HelloWorldObject example above and overide the hello method to say goodbye.
2156 def hello(self):
2170 print proxy_obj.hello(dbus_interface='org.freedesktop.HelloWorldIFace')
2171 print proxy_obj.hello(dbus_interface='org.freedesktop.HelloWorldGoodbyeIFace')
2175 This should print out 'Hello from the HelloWorldObject' followed by a 'Goodbye'.