I'm trying to write a function similar to g_signal_connect_swapped
in gtk+.
macro_rules! connect_clicked_swap {
($widget: tt,$other_widget: expr,$function: ident) => {
$widget.connect_clicked(|widget| $function($other_widget))
};
}
ident
doesn't work here since I'd like to pass full path to the function.eg. gtk::ApplicationWindow::close. so I can do something like connect_clicked_swap!(button, &window, gtk::ApplicationWindow::close)
You can use
path
instead ofident
in order to specify a path. But the most flexible would be to useexpr
, which would accept paths but also expressions that return functions, including closures.