-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Verdigris makes trait classes possibles ; would trait objects be possible too ? #29
Comments
The QObject runtime expects only single inheritance, so the trait can't themself have QMetaObject. However this would not work for signals. The signal implementation need to know in which metaobject it relates to, as well as its id within that metaobject.
The W_INTERFACE would then pull the signals and proiperties from the Trait class inside the ActualObject, and it would also declare a But then, since we would anyway need to use CRTP, there is not so much advantages over normal inheritence as you describe. |
hmmm.. how would this be implementable without having something that is able to list the bases ? eg given
how can W_INTERFACE(Trait3) know that |
@jcelerier because W_INTERFACE(Trait3) is after W_INTERFACE(Trait2) which add some state to the class, and let it know the offset. |
This is not an issue but rather a discussion about what is possible to reach with the power of constexprified moc :p
Thanks to templated QObject support, it is now possible to do :
which can make some designs simpler and more efficient instead of the usual way which is marking the signals as virtual in a trait class which does not inherit from QObject. However it can also in my experience quickly turn into the 6th circle of template hell.
My question is: is it in the realm of possibilities to construct a similar behaviour but either with direct inheritance or composition ?
e.g. something which would look like:
or
in both cases the point being the reduction of the amount of QObject / QObjectPrivate / QMetaObject in the system.
The text was updated successfully, but these errors were encountered: