Struct ApplicationView
pub struct ApplicationView(/* private fields */);
Implementations§
§impl ApplicationView
impl ApplicationView
pub fn Orientation(&self) -> Result<ApplicationViewOrientation>
pub fn AdjacentToLeftDisplayEdge(&self) -> Result<bool>
pub fn AdjacentToRightDisplayEdge(&self) -> Result<bool>
pub fn IsFullScreen(&self) -> Result<bool>
pub fn IsOnLockScreen(&self) -> Result<bool>
pub fn IsScreenCaptureEnabled(&self) -> Result<bool>
pub fn SetIsScreenCaptureEnabled(&self, value: bool) -> Result<()>
pub fn SetTitle(&self, value: &HSTRING) -> Result<()>
pub fn Title(&self) -> Result<HSTRING>
pub fn Id(&self) -> Result<i32>
pub fn Consolidated<P0>(&self, handler: P0) -> Result<i64>
pub fn RemoveConsolidated(&self, token: i64) -> Result<()>
pub fn SuppressSystemOverlays(&self) -> Result<bool>
pub fn SetSuppressSystemOverlays(&self, value: bool) -> Result<()>
pub fn VisibleBounds(&self) -> Result<Rect>
pub fn VisibleBoundsChanged<P0>(&self, handler: P0) -> Result<i64>where
P0: Param<TypedEventHandler<ApplicationView, IInspectable>>,
pub fn RemoveVisibleBoundsChanged(&self, token: i64) -> Result<()>
pub fn SetDesiredBoundsMode( &self, boundsmode: ApplicationViewBoundsMode, ) -> Result<bool>
pub fn DesiredBoundsMode(&self) -> Result<ApplicationViewBoundsMode>
pub fn TitleBar(&self) -> Result<ApplicationViewTitleBar>
pub fn FullScreenSystemOverlayMode(&self) -> Result<FullScreenSystemOverlayMode>
pub fn SetFullScreenSystemOverlayMode( &self, value: FullScreenSystemOverlayMode, ) -> Result<()>
pub fn IsFullScreenMode(&self) -> Result<bool>
pub fn TryEnterFullScreenMode(&self) -> Result<bool>
pub fn ExitFullScreenMode(&self) -> Result<()>
pub fn ShowStandardSystemOverlays(&self) -> Result<()>
pub fn TryResizeView(&self, value: Size) -> Result<bool>
pub fn SetPreferredMinSize(&self, minsize: Size) -> Result<()>
pub fn ViewMode(&self) -> Result<ApplicationViewMode>
pub fn IsViewModeSupported(&self, viewmode: ApplicationViewMode) -> Result<bool>
pub fn TryEnterViewModeAsync( &self, viewmode: ApplicationViewMode, ) -> Result<IAsyncOperation<bool>>
pub fn TryEnterViewModeWithPreferencesAsync<P1>(
&self,
viewmode: ApplicationViewMode,
viewmodepreferences: P1,
) -> Result<IAsyncOperation<bool>>where
P1: Param<ViewModePreferences>,
pub fn TryConsolidateAsync(&self) -> Result<IAsyncOperation<bool>>
pub fn PersistedStateId(&self) -> Result<HSTRING>
pub fn SetPersistedStateId(&self, value: &HSTRING) -> Result<()>
pub fn WindowingEnvironment(&self) -> Result<WindowingEnvironment>
pub fn GetDisplayRegions(&self) -> Result<IVectorView<DisplayRegion>>
pub fn TryUnsnapToFullscreen() -> Result<bool>
pub fn GetApplicationViewIdForWindow<P0>(window: P0) -> Result<i32>where
P0: Param<ICoreWindow>,
pub fn Value() -> Result<ApplicationViewState>
pub fn TryUnsnap() -> Result<bool>
pub fn GetForCurrentView() -> Result<ApplicationView>
pub fn TerminateAppOnFinalViewClose() -> Result<bool>
pub fn SetTerminateAppOnFinalViewClose(value: bool) -> Result<()>
pub fn PreferredLaunchWindowingMode() -> Result<ApplicationViewWindowingMode>
pub fn SetPreferredLaunchWindowingMode( value: ApplicationViewWindowingMode, ) -> Result<()>
pub fn PreferredLaunchViewSize() -> Result<Size>
pub fn SetPreferredLaunchViewSize(value: Size) -> Result<()>
pub fn ClearAllPersistedState() -> Result<()>
pub fn ClearPersistedState(key: &HSTRING) -> Result<()>
pub fn UIContext(&self) -> Result<UIContext>
Trait Implementations§
§impl CanInto<IInspectable> for ApplicationView
impl CanInto<IInspectable> for ApplicationView
§impl CanInto<IUnknown> for ApplicationView
impl CanInto<IUnknown> for ApplicationView
§impl Clone for ApplicationView
impl Clone for ApplicationView
§fn clone(&self) -> ApplicationView
fn clone(&self) -> ApplicationView
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for ApplicationView
impl Debug for ApplicationView
§impl From<&ApplicationView> for &IInspectable
impl From<&ApplicationView> for &IInspectable
§fn from(value: &ApplicationView) -> Self
fn from(value: &ApplicationView) -> Self
Converts to this type from the input type.
§impl From<&ApplicationView> for &IUnknown
impl From<&ApplicationView> for &IUnknown
§fn from(value: &ApplicationView) -> Self
fn from(value: &ApplicationView) -> Self
Converts to this type from the input type.
§impl From<ApplicationView> for IInspectable
impl From<ApplicationView> for IInspectable
§fn from(value: ApplicationView) -> Self
fn from(value: ApplicationView) -> Self
Converts to this type from the input type.
§impl From<ApplicationView> for IUnknown
impl From<ApplicationView> for IUnknown
§fn from(value: ApplicationView) -> Self
fn from(value: ApplicationView) -> Self
Converts to this type from the input type.
§impl Interface for ApplicationView
impl Interface for ApplicationView
§const IID: GUID = <IApplicationView as windows_core::Interface>::IID
const IID: GUID = <IApplicationView 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 PartialEq for ApplicationView
impl PartialEq for ApplicationView
impl Eq for ApplicationView
impl Send for ApplicationView
impl StructuralPartialEq for ApplicationView
impl Sync for ApplicationView
Auto Trait Implementations§
impl Freeze for ApplicationView
impl RefUnwindSafe for ApplicationView
impl Unpin for ApplicationView
impl UnwindSafe for ApplicationView
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