[Github-comments] [geany/geany] Gi signals (#1038)

Thomas Martitz notifications at xxxxx
Mon May 16 22:24:14 UTC 2016


This are the changes to geany that allow plugin signals to be used by GI-based plugins (e.g. through peasy).

- signal params must be boxed or gobject (I used gboxed)
- the GType must be passed to g_signal_new()
- since glib 2.30 there is a generic marshaller which can be used. otherwise we'd need a lot of duplicated, new marshaller code. I chosed to use the generic marshaller (by passing NULL to g_signal_new's marshall func)
- geanyobject must be exposed to connect to. I chosed to implement a get_instance() function (singleton pattern)

Please review and comment
You can view, comment on, or merge this pull request online at:

  https://github.com/geany/geany/pull/1038

-- Commit Summary --

  * plugin api: convert GeanyDocument to GBoxed internally
  * plugin api: convert GeanyFiletype to GBoxed internally
  * plugin api: convert GeanyEditor to GBoxed internally
  * plugin api: rename document_new_file to _create_file
  * plugin api: export geanyobject

-- File Changes --

    M plugins/geanyplugin.h (1)
    M src/Makefile.am (1)
    M src/document.c (32)
    M src/document.h (4)
    M src/editor.c (11)
    M src/editor.h (4)
    M src/filetypes.c (11)
    M src/filetypes.h (3)
    M src/geanyobject.c (231)
    M src/geanyobject.h (3)

-- Patch Links --

https://github.com/geany/geany/pull/1038.patch
https://github.com/geany/geany/pull/1038.diff

---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/1038
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.geany.org/pipermail/github-comments/attachments/20160516/1de6c7bc/attachment.html>


More information about the Github-comments mailing list