use crate::WebView;
use glib::{
prelude::*,
signal::{connect_raw, SignalHandlerId},
translate::*,
};
use std::boxed::Box as Box_;
glib::wrapper! {
#[doc(alias = "WebKitFindController")]
pub struct FindController(Object<ffi::WebKitFindController, ffi::WebKitFindControllerClass>);
match fn {
type_ => || ffi::webkit_find_controller_get_type(),
}
}
impl FindController {
pub const NONE: Option<&'static FindController> = None;
pub fn builder() -> FindControllerBuilder {
FindControllerBuilder::new()
}
}
#[must_use = "The builder must be built to be used"]
pub struct FindControllerBuilder {
builder: glib::object::ObjectBuilder<'static, FindController>,
}
impl FindControllerBuilder {
fn new() -> Self {
Self {
builder: glib::object::Object::builder(),
}
}
pub fn web_view(self, web_view: &impl IsA<WebView>) -> Self {
Self {
builder: self.builder.property("web-view", web_view.clone().upcast()),
}
}
#[must_use = "Building the object from the builder is usually expensive and is not expected to have side effects"]
pub fn build(self) -> FindController {
self.builder.build()
}
}
mod sealed {
pub trait Sealed {}
impl<T: super::IsA<super::FindController>> Sealed for T {}
}
pub trait FindControllerExt: IsA<FindController> + sealed::Sealed + 'static {
#[doc(alias = "webkit_find_controller_count_matches")]
fn count_matches(&self, search_text: &str, find_options: u32, max_match_count: u32) {
unsafe {
ffi::webkit_find_controller_count_matches(
self.as_ref().to_glib_none().0,
search_text.to_glib_none().0,
find_options,
max_match_count,
);
}
}
#[doc(alias = "webkit_find_controller_get_max_match_count")]
#[doc(alias = "get_max_match_count")]
fn max_match_count(&self) -> u32 {
unsafe { ffi::webkit_find_controller_get_max_match_count(self.as_ref().to_glib_none().0) }
}
#[doc(alias = "webkit_find_controller_get_options")]
#[doc(alias = "get_options")]
fn options(&self) -> u32 {
unsafe { ffi::webkit_find_controller_get_options(self.as_ref().to_glib_none().0) }
}
#[doc(alias = "webkit_find_controller_get_search_text")]
#[doc(alias = "get_search_text")]
fn search_text(&self) -> Option<glib::GString> {
unsafe {
from_glib_none(ffi::webkit_find_controller_get_search_text(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "webkit_find_controller_get_web_view")]
#[doc(alias = "get_web_view")]
fn web_view(&self) -> Option<WebView> {
unsafe {
from_glib_none(ffi::webkit_find_controller_get_web_view(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "webkit_find_controller_search")]
fn search(&self, search_text: &str, find_options: u32, max_match_count: u32) {
unsafe {
ffi::webkit_find_controller_search(
self.as_ref().to_glib_none().0,
search_text.to_glib_none().0,
find_options,
max_match_count,
);
}
}
#[doc(alias = "webkit_find_controller_search_finish")]
fn search_finish(&self) {
unsafe {
ffi::webkit_find_controller_search_finish(self.as_ref().to_glib_none().0);
}
}
#[doc(alias = "webkit_find_controller_search_next")]
fn search_next(&self) {
unsafe {
ffi::webkit_find_controller_search_next(self.as_ref().to_glib_none().0);
}
}
#[doc(alias = "webkit_find_controller_search_previous")]
fn search_previous(&self) {
unsafe {
ffi::webkit_find_controller_search_previous(self.as_ref().to_glib_none().0);
}
}
fn text(&self) -> Option<glib::GString> {
ObjectExt::property(self.as_ref(), "text")
}
#[doc(alias = "counted-matches")]
fn connect_counted_matches<F: Fn(&Self, u32) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn counted_matches_trampoline<
P: IsA<FindController>,
F: Fn(&P, u32) + 'static,
>(
this: *mut ffi::WebKitFindController,
match_count: libc::c_uint,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(
FindController::from_glib_borrow(this).unsafe_cast_ref(),
match_count,
)
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"counted-matches\0".as_ptr() as *const _,
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
counted_matches_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "failed-to-find-text")]
fn connect_failed_to_find_text<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn failed_to_find_text_trampoline<
P: IsA<FindController>,
F: Fn(&P) + 'static,
>(
this: *mut ffi::WebKitFindController,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(FindController::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"failed-to-find-text\0".as_ptr() as *const _,
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
failed_to_find_text_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "found-text")]
fn connect_found_text<F: Fn(&Self, u32) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn found_text_trampoline<P: IsA<FindController>, F: Fn(&P, u32) + 'static>(
this: *mut ffi::WebKitFindController,
match_count: libc::c_uint,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(
FindController::from_glib_borrow(this).unsafe_cast_ref(),
match_count,
)
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"found-text\0".as_ptr() as *const _,
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
found_text_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "max-match-count")]
fn connect_max_match_count_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_max_match_count_trampoline<
P: IsA<FindController>,
F: Fn(&P) + 'static,
>(
this: *mut ffi::WebKitFindController,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(FindController::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::max-match-count\0".as_ptr() as *const _,
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
notify_max_match_count_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "options")]
fn connect_options_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_options_trampoline<P: IsA<FindController>, F: Fn(&P) + 'static>(
this: *mut ffi::WebKitFindController,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(FindController::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::options\0".as_ptr() as *const _,
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
notify_options_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "text")]
fn connect_text_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_text_trampoline<P: IsA<FindController>, F: Fn(&P) + 'static>(
this: *mut ffi::WebKitFindController,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(FindController::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::text\0".as_ptr() as *const _,
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
notify_text_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
}
impl<O: IsA<FindController>> FindControllerExt for O {}