Trait webview2_com::Microsoft::Web::WebView2::Win32::ICoreWebView2Controller_Impl
source · [−]pub trait ICoreWebView2Controller_Impl {
Show 23 methods
fn IsVisible(&self, isvisible: *mut BOOL) -> Result<(), Error>;
fn SetIsVisible(&self, isvisible: BOOL) -> Result<(), Error>;
fn Bounds(&self, bounds: *mut RECT) -> Result<(), Error>;
fn SetBounds(&self, bounds: &RECT) -> Result<(), Error>;
fn ZoomFactor(&self, zoomfactor: *mut f64) -> Result<(), Error>;
fn SetZoomFactor(&self, zoomfactor: f64) -> Result<(), Error>;
fn add_ZoomFactorChanged(
&self,
eventhandler: &Option<ICoreWebView2ZoomFactorChangedEventHandler>,
token: *mut EventRegistrationToken
) -> Result<(), Error>;
fn remove_ZoomFactorChanged(
&self,
token: &EventRegistrationToken
) -> Result<(), Error>;
fn SetBoundsAndZoomFactor(
&self,
bounds: &RECT,
zoomfactor: f64
) -> Result<(), Error>;
fn MoveFocus(
&self,
reason: COREWEBVIEW2_MOVE_FOCUS_REASON
) -> Result<(), Error>;
fn add_MoveFocusRequested(
&self,
eventhandler: &Option<ICoreWebView2MoveFocusRequestedEventHandler>,
token: *mut EventRegistrationToken
) -> Result<(), Error>;
fn remove_MoveFocusRequested(
&self,
token: &EventRegistrationToken
) -> Result<(), Error>;
fn add_GotFocus(
&self,
eventhandler: &Option<ICoreWebView2FocusChangedEventHandler>,
token: *mut EventRegistrationToken
) -> Result<(), Error>;
fn remove_GotFocus(
&self,
token: &EventRegistrationToken
) -> Result<(), Error>;
fn add_LostFocus(
&self,
eventhandler: &Option<ICoreWebView2FocusChangedEventHandler>,
token: *mut EventRegistrationToken
) -> Result<(), Error>;
fn remove_LostFocus(
&self,
token: &EventRegistrationToken
) -> Result<(), Error>;
fn add_AcceleratorKeyPressed(
&self,
eventhandler: &Option<ICoreWebView2AcceleratorKeyPressedEventHandler>,
token: *mut EventRegistrationToken
) -> Result<(), Error>;
fn remove_AcceleratorKeyPressed(
&self,
token: &EventRegistrationToken
) -> Result<(), Error>;
fn ParentWindow(&self, parentwindow: *mut HWND) -> Result<(), Error>;
fn SetParentWindow(&self, parentwindow: HWND) -> Result<(), Error>;
fn NotifyParentWindowPositionChanged(&self) -> Result<(), Error>;
fn Close(&self) -> Result<(), Error>;
fn CoreWebView2(&self) -> Result<ICoreWebView2, Error>;
}
Required Methods
sourcefn add_ZoomFactorChanged(
fn add_ZoomFactorChanged(
&self,
eventhandler: &Option<ICoreWebView2ZoomFactorChangedEventHandler>,
token: *mut EventRegistrationToken
) -> Result<(), Error>
sourcefn remove_ZoomFactorChanged(
fn remove_ZoomFactorChanged(
&self,
token: &EventRegistrationToken
) -> Result<(), Error>
sourcefn add_MoveFocusRequested(
fn add_MoveFocusRequested(
&self,
eventhandler: &Option<ICoreWebView2MoveFocusRequestedEventHandler>,
token: *mut EventRegistrationToken
) -> Result<(), Error>
sourcefn remove_MoveFocusRequested(
fn remove_MoveFocusRequested(
&self,
token: &EventRegistrationToken
) -> Result<(), Error>
sourcefn add_GotFocus(
fn add_GotFocus(
&self,
eventhandler: &Option<ICoreWebView2FocusChangedEventHandler>,
token: *mut EventRegistrationToken
) -> Result<(), Error>
source
fn remove_GotFocus(&self, token: &EventRegistrationToken) -> Result<(), Error>
sourcefn add_LostFocus(
fn add_LostFocus(
&self,
eventhandler: &Option<ICoreWebView2FocusChangedEventHandler>,
token: *mut EventRegistrationToken
) -> Result<(), Error>
source
fn remove_LostFocus(&self, token: &EventRegistrationToken) -> Result<(), Error>
sourcefn add_AcceleratorKeyPressed(
fn add_AcceleratorKeyPressed(
&self,
eventhandler: &Option<ICoreWebView2AcceleratorKeyPressedEventHandler>,
token: *mut EventRegistrationToken
) -> Result<(), Error>
sourcefn remove_AcceleratorKeyPressed(
fn remove_AcceleratorKeyPressed(
&self,
token: &EventRegistrationToken
) -> Result<(), Error>
source
fn NotifyParentWindowPositionChanged(&self) -> Result<(), Error>
source