gdbus-codegen-glibmm icon indicating copy to clipboard operation
gdbus-codegen-glibmm copied to clipboard

Code generator for C++ D-Bus stubs and proxies using Giomm/Glibmm

Results 20 gdbus-codegen-glibmm issues
Sort by recently updated
recently updated
newest added

When clang++ is converted to g++, compilation does not proceed. Can you tell me why? The glib library is not referenced.

we had a problem with signal when it doesn't need any argmuents

There is a problem with the generation of the following interface. ` ` Please consider applying the patch below. [support_signal_with_no_arg.txt](https://github.com/Pelagicore/gdbus-codegen-glibmm/files/8376678/support_signal_with_no_arg.txt) Thank you

The generated code will have stubs for setters which I don't think should be there; the properties are read-only and they should not need a setter. Example https://specifications.freedesktop.org/mpris-spec/latest/Player_Interface.html https://gitlab.freedesktop.org/mpris/mpris-spec/-/blob/master/spec/org.mpris.MediaPlayer2.Player.xml

The body of the `{{signal.name}}_emitter` in the stub.cpp.templ suggests that signals can't be simply broadcasted to be picked up by whoever client which has subscribed for signals via [AddMatch](http://www.manpagez.com/html/eggdbus/eggdbus-0.6/eggdbus-interface-org.freedesktop.DBus.php#eggdbus-method-org.freedesktop.DBus.AddMatch). The...

Hi, I saw this line at the bottom of the README: "Source code licensed under the LGPL 2.1 (please see source code headers for more.)" Is this applicable to the...

Currently, proxies can only choose between the system and the session bus. In order for them to be able to operate on a p2p connection, a factory method analog to...

In fact, it is not a generator bug or limitation. DBus signal is used by connecting xxx_emitter to sigc::signal, but sigc::signal can only use up to 7 arguments. So, if...

gdbus-codegen supports file descriptors as the following anntation and GUnixFDList. `` It would be nice if gdbus-codegen-glibmm also supports file descriptors with the same annotation and Gio::UnixFDList. I'm using glibmm's...

This allows, for example, the creation of a peer to peer D-Bus connection over a socket.