Giter Site home page Giter Site logo

multiple inheritance about gtk.jl HOT 9 CLOSED

juliagraphics avatar juliagraphics commented on July 20, 2024
multiple inheritance

from gtk.jl.

Comments (9)

tknopp avatar tknopp commented on July 20, 2024

What about using type unions for this purpose.

For the GtkTreeModel interface I have used a definition

GtkTreeModelI = Union(GtkListStore, GtkTreeStore)

It would be more convenient to somehow extend the @gtktype macro so that it accepts additional arguments (i.e. the implemented interfaces) and @gtktype collects all interfaces and its implementations. At some point it then has to define the type union. But I have no idea how to get the definition order right with this approach.

Alternative: Introduce multiple inheritance in Julia. I am not sure how likely it is that this will ever happen. You have a better feeling about that

from gtk.jl.

bfredl avatar bfredl commented on July 20, 2024

I have the same problem in GI.jl (gobject-introspection generated bindings). For instance in Clutter, Container is an abstract interface and not a base object like in Gtk. I'm also considering Union(...) but the problem with this is AFAIK there is no convenient way to add new concrete types to it afterwards, which can happen if you import an extension library that defines more widgets/actors. Right now i just prefix interface methods with the interface name, i e container_add_actor but I don't know the best way to then define the more convenient push!(ClutterContainer, ClutterActor) .

Multiple inheritance of abstract types would have been the simplest indeed.

from gtk.jl.

tknopp avatar tknopp commented on July 20, 2024

Yes, the Union method is limited and it will not allow to extend the type. It might be possible that extending Unions are easier to implement than MI in Julia. Will ask in the MI issue in the Julia bug tracker.

Although the Union method is limited, it allows to implement against interfaces and, in the case MI comes, one would only need to change the type definitions and the implemementations can stay.

from gtk.jl.

tknopp avatar tknopp commented on July 20, 2024

To be able to use the setter of interfaces using the aforementioned Union method, one has to write one conversion method, i.e.

GtkTreeModelI = Union(GtkListStore,GtkTreeStore)
convert(::Type{Ptr{None}},m::GtkTreeModelI) = convert(Ptr{None},m.handle)

But with that I am able to use the GtkTreeModel setter now (have not tested the getter though)

from gtk.jl.

tknopp avatar tknopp commented on July 20, 2024

Actually I have not tried to use a setter of TreeModel yet. But the conversion allows to use a setter of TreeView that has a TreeModel as argument

from gtk.jl.

tknopp avatar tknopp commented on July 20, 2024

Automatic getter/setter generation works when putting the interface to the code gen script. (yes I have clang+gtk@mac working now)

from gtk.jl.

vtjnash avatar vtjnash commented on July 20, 2024

@tknopp that error actually means that gtk_get_set_gen didn't know GtkTreeModelI is a GtkObject. The proper way to fix that error is to add it to the GtkTypeMap list (esp. now that you can successfully run the code gen script)

from gtk.jl.

tknopp avatar tknopp commented on July 20, 2024

I see.

from gtk.jl.

vtjnash avatar vtjnash commented on July 20, 2024

Prototype: https://github.com/JuliaLang/Gtk.jl/tree/jn/iface

from gtk.jl.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.