Struct AppWindow
pub struct AppWindow(/* private fields */);
Implementations§
§impl AppWindow
impl AppWindow
pub fn Content(&self) -> Result<UIContentRoot>
pub fn DispatcherQueue(&self) -> Result<DispatcherQueue>
pub fn Frame(&self) -> Result<AppWindowFrame>
pub fn IsVisible(&self) -> Result<bool>
pub fn PersistedStateId(&self) -> Result<HSTRING>
pub fn SetPersistedStateId(&self, value: &HSTRING) -> Result<()>
pub fn Presenter(&self) -> Result<AppWindowPresenter>
pub fn Title(&self) -> Result<HSTRING>
pub fn SetTitle(&self, value: &HSTRING) -> Result<()>
pub fn TitleBar(&self) -> Result<AppWindowTitleBar>
pub fn UIContext(&self) -> Result<UIContext>
pub fn WindowingEnvironment(&self) -> Result<WindowingEnvironment>
pub fn CloseAsync(&self) -> Result<IAsyncAction>
pub fn GetPlacement(&self) -> Result<AppWindowPlacement>
pub fn GetDisplayRegions(&self) -> Result<IVectorView<DisplayRegion>>
pub fn RequestMoveToDisplayRegion<P0>(&self, displayregion: P0) -> Result<()>where
P0: Param<DisplayRegion>,
pub fn RequestMoveAdjacentToCurrentView(&self) -> Result<()>
pub fn RequestMoveAdjacentToWindow<P0>(&self, anchorwindow: P0) -> Result<()>where
P0: Param<AppWindow>,
pub fn RequestMoveRelativeToWindowContent<P0>(
&self,
anchorwindow: P0,
contentoffset: Point,
) -> Result<()>where
P0: Param<AppWindow>,
pub fn RequestMoveRelativeToCurrentViewContent( &self, contentoffset: Point, ) -> Result<()>
pub fn RequestMoveRelativeToDisplayRegion<P0>(
&self,
displayregion: P0,
displayregionoffset: Point,
) -> Result<()>where
P0: Param<DisplayRegion>,
pub fn RequestSize(&self, framesize: Size) -> Result<()>
pub fn TryShowAsync(&self) -> Result<IAsyncOperation<bool>>
pub fn Changed<P0>(&self, handler: P0) -> Result<i64>
pub fn RemoveChanged(&self, token: i64) -> Result<()>
pub fn Closed<P0>(&self, handler: P0) -> Result<i64>
pub fn RemoveClosed(&self, token: i64) -> Result<()>
pub fn CloseRequested<P0>(&self, handler: P0) -> Result<i64>
pub fn RemoveCloseRequested(&self, token: i64) -> Result<()>
pub fn TryCreateAsync() -> Result<IAsyncOperation<AppWindow>>
pub fn ClearAllPersistedState() -> Result<()>
pub fn ClearPersistedState(key: &HSTRING) -> Result<()>
Trait Implementations§
§impl Interface for AppWindow
impl Interface for AppWindow
§const IID: GUID = <IAppWindow as windows_core::Interface>::IID
const IID: GUID = <IAppWindow as windows_core::Interface>::IID
The
GUID
associated with the interface.§fn as_raw(&self) -> *mut c_void
fn as_raw(&self) -> *mut c_void
Returns the raw COM interface pointer. The resulting pointer continues to be owned by the
Interface
implementation.§fn into_raw(self) -> *mut c_void
fn into_raw(self) -> *mut c_void
Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
§unsafe fn from_raw_borrowed(raw: &*mut c_void) -> Option<&Self>
unsafe fn from_raw_borrowed(raw: &*mut c_void) -> Option<&Self>
§fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
Attempts to cast the current interface to another interface using
QueryInterface
. Read more§fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. Read more§fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
§fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. &MyApp_Impl
, not the inner &MyApp
object. Read more§fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. MyApp_Impl
, not the inner MyApp
object. Read more§fn downgrade(&self) -> Result<Weak<Self>, Error>
fn downgrade(&self) -> Result<Weak<Self>, Error>
Attempts to create a [
Weak
] reference to this object.impl Eq for AppWindow
impl Send for AppWindow
impl StructuralPartialEq for AppWindow
impl Sync for AppWindow
Auto Trait Implementations§
impl Freeze for AppWindow
impl RefUnwindSafe for AppWindow
impl Unpin for AppWindow
impl UnwindSafe for AppWindow
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more