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

Shorthand to directly wrap functions on the inner Rust struct #1235

Open
LeonMatthesKDAB opened this issue Mar 20, 2025 · 0 comments
Open

Shorthand to directly wrap functions on the inner Rust struct #1235

LeonMatthesKDAB opened this issue Mar 20, 2025 · 0 comments
Labels
🤔 discussion Feedback welcome ⬆️ feature New feature or request

Comments

@LeonMatthesKDAB
Copy link
Collaborator

LeonMatthesKDAB commented Mar 20, 2025

Currently, if you want to expose a function on the inner Rust struct to C++/QML, you always have to write a wrapper function outside the bridge.

E.g.:

#[cxx_qt::bridge]
mod qobject {
extern "RustQt" {

#[qobject]
type MyObject = super::MyObjectRust;

fn my_fun(self: &MyObject) -> i32;

}
}

impl qobject::MyObject {
    fn my_fun(&self) -> i32 {
        self.rust().my_fun();
    }
}

We could consider automating this if you provide a given attribute to the declaration (e.g. #[inner]).

Example:

#[cxx_qt::bridge]
mod qobject {
extern "RustQt" {

#[qobject]
type MyObject = super::MyObjectRust;

#[inner] // auto-generates the wrapper outside the bridge
fn my_fun(self: &MyObject) -> i32;

}
}

Note that this may cause issues with Result<>, as the Error type wouldn't necessarily be known.

@LeonMatthesKDAB LeonMatthesKDAB added ⬆️ feature New feature or request 🤔 discussion Feedback welcome labels Mar 20, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🤔 discussion Feedback welcome ⬆️ feature New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant