Skip to content
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

Support for shortand &self in bridge #1245

Open
LeonMatthesKDAB opened this issue Mar 31, 2025 · 0 comments · May be fixed by #1249
Open

Support for shortand &self in bridge #1245

LeonMatthesKDAB opened this issue Mar 31, 2025 · 0 comments · May be fixed by #1249
Labels
⬆️ feature New feature or request

Comments

@LeonMatthesKDAB
Copy link
Collaborator

CXX supports using &self and self: Pin<&mut Self> instead of the longer: self: &T as long as there is only a single type in a given block.

This is very handy and we should support the same in CXX-Qt:

extern "C++Qt" {
    #[qobject]
    type MyObject = super::MyObjectRust;

    // No need to specify the type explicitly here, MyObject is the only type defined in this `extern` block, so `Self` refers to `MyObject` implicitly.
    fn my_function(&self) -> i32;
    fn my_other_function(self: Pin<&mut Self>) -> i32;
}

The open question we currently have is how this would deal with name resolution in the structuring phase...
So we may need to refactor our parser to return which objects/methods were defined in which block, instead of adding them all into a single structure like we currently do.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
⬆️ feature New feature or request
Projects
Status: Todo
Development

Successfully merging a pull request may close this issue.

1 participant