pub struct MediaViewer {Show 14 fields
toolbar_view: TemplateChild<ToolbarView>,
header_bar: TemplateChild<HeaderBar>,
menu: TemplateChild<MenuButton>,
revealer: TemplateChild<ScaleRevealer>,
media: TemplateChild<MediaContentViewer>,
fullscreened: Cell<bool>,
room: WeakRef<Room>,
event_id: RefCell<Option<OwnedEventId>>,
message: RefCell<Option<VisualMediaMessage>>,
filename: RefCell<Option<String>>,
animation: OnceCell<TimedAnimation>,
swipe_tracker: OnceCell<SwipeTracker>,
swipe_progress: Cell<f64>,
actions_expression_watches: RefCell<HashMap<&'static str, ExpressionWatch>>,
}
Fields§
§toolbar_view: TemplateChild<ToolbarView>
§header_bar: TemplateChild<HeaderBar>
§revealer: TemplateChild<ScaleRevealer>
§media: TemplateChild<MediaContentViewer>
§fullscreened: Cell<bool>
Whether the viewer is fullscreened.
room: WeakRef<Room>
The room containing the media message.
event_id: RefCell<Option<OwnedEventId>>
The ID of the event containing the media message.
message: RefCell<Option<VisualMediaMessage>>
The media message to display.
filename: RefCell<Option<String>>
The filename of the media.
animation: OnceCell<TimedAnimation>
The API to keep track of the animation to fade the background.
swipe_tracker: OnceCell<SwipeTracker>
§swipe_progress: Cell<f64>
§actions_expression_watches: RefCell<HashMap<&'static str, ExpressionWatch>>
Implementations§
Source§impl MediaViewer
impl MediaViewer
Sourcefn register_type()
fn register_type()
Registers the type only once.
Source§impl MediaViewer
impl MediaViewer
Sourcefn set_fullscreened(&self, fullscreened: bool)
fn set_fullscreened(&self, fullscreened: bool)
Set whether the viewer is fullscreened.
Sourcepub(super) fn set_message(
&self,
room: &Room,
event_id: OwnedEventId,
message: VisualMediaMessage,
)
pub(super) fn set_message( &self, room: &Room, event_id: OwnedEventId, message: VisualMediaMessage, )
Set the media message to display.
Sourcefn set_filename(&self, filename: String)
fn set_filename(&self, filename: String)
Set the filename of the media.
Sourcefn animation(&self) -> &TimedAnimation
fn animation(&self) -> &TimedAnimation
The API to keep track of the animation to fade the background.
Sourcefn init_swipe_tracker(&self)
fn init_swipe_tracker(&self)
Initialize the swipe tracker.
Update the actions of the menu according to the current message.
Sourcepub(super) fn reveal(&self, source_widget: &Widget)
pub(super) fn reveal(&self, source_widget: &Widget)
Reveal this widget by transitioning from source_widget
.
Sourcefn reveal_headerbar(&self, reveal: bool)
fn reveal_headerbar(&self, reveal: bool)
Reveal or hide the headerbar.
Sourcefn toggle_headerbar(&self)
fn toggle_headerbar(&self)
Toggle whether the header bar is revealed.
Sourcefn handle_motion(&self, _x: f64, y: f64)
fn handle_motion(&self, _x: f64, y: f64)
Handle when motion was detected in the viewer.
Sourcefn handle_click(&self, n_pressed: i32)
fn handle_click(&self, n_pressed: i32)
Handle a click in the viewer.
Sourcefn copy_image(&self)
fn copy_image(&self)
Copy the current image to the clipboard.
Sourceasync fn copy_permalink(&self)
async fn copy_permalink(&self)
Copy the permalink of the event of the media message to the clipboard.
Trait Implementations§
Source§impl CompositeTemplate for MediaViewer
impl CompositeTemplate for MediaViewer
fn bind_template(klass: &mut Self::Class)
fn check_template_children(widget: &<Self as ObjectSubclass>::Type)
Source§impl CompositeTemplateCallbacks for MediaViewer
impl CompositeTemplateCallbacks for MediaViewer
const CALLBACKS: &'static [TemplateCallback] = _
Source§fn bind_template_callbacks<T>(klass: &mut T)where
T: WidgetClassExt,
fn bind_template_callbacks<T>(klass: &mut T)where
T: WidgetClassExt,
klass
.Source§fn bind_template_callbacks_prefixed<T>(klass: &mut T, prefix: &str)where
T: WidgetClassExt,
fn bind_template_callbacks_prefixed<T>(klass: &mut T, prefix: &str)where
T: WidgetClassExt,
klass
, prepending prefix
to each callback name.Source§fn add_callbacks_to_scope(scope: &BuilderRustScope)
fn add_callbacks_to_scope(scope: &BuilderRustScope)
scope
.Source§fn add_callbacks_to_scope_prefixed(scope: &BuilderRustScope, prefix: &str)
fn add_callbacks_to_scope_prefixed(scope: &BuilderRustScope, prefix: &str)
scope
, prepending
prefix
to each callback name.Source§impl Debug for MediaViewer
impl Debug for MediaViewer
Source§impl Default for MediaViewer
impl Default for MediaViewer
Source§fn default() -> MediaViewer
fn default() -> MediaViewer
Source§impl DerivedObjectProperties for MediaViewer
impl DerivedObjectProperties for MediaViewer
Source§fn derived_properties() -> &'static [ParamSpec]
fn derived_properties() -> &'static [ParamSpec]
Source§fn derived_property(&self, id: usize, pspec: &ParamSpec) -> Value
fn derived_property(&self, id: usize, pspec: &ParamSpec) -> Value
ObjectImpl
but auto-generated by the Properties
macro
to allow handling more complex use-cases.Source§fn derived_set_property(&self, id: usize, value: &Value, pspec: &ParamSpec)
fn derived_set_property(&self, id: usize, value: &Value, pspec: &ParamSpec)
ObjectImpl
but auto-generated by the Properties
macro
to allow handling more complex use-cases.Source§impl ObjectImpl for MediaViewer
impl ObjectImpl for MediaViewer
Source§fn constructed(&self)
fn constructed(&self)
Source§fn properties() -> &'static [ParamSpec]
fn properties() -> &'static [ParamSpec]
Source§fn set_property(&self, id: usize, value: &Value, pspec: &ParamSpec)
fn set_property(&self, id: usize, value: &Value, pspec: &ParamSpec)
Source§fn notify(&self, pspec: &ParamSpec)
fn notify(&self, pspec: &ParamSpec)
self.notify("property")
.fn dispatch_properties_changed(&self, pspecs: &[ParamSpec])
Source§impl ObjectSubclass for MediaViewer
impl ObjectSubclass for MediaViewer
Source§type Class = ClassStruct<MediaViewer>
type Class = ClassStruct<MediaViewer>
Source§type Instance = InstanceStruct<MediaViewer>
type Instance = InstanceStruct<MediaViewer>
Source§type Type = MediaViewer
type Type = MediaViewer
wrapper!
Source§type ParentType = Widget
type ParentType = Widget
Source§type Interfaces = (Swipeable,)
type Interfaces = (Swipeable,)
Source§fn class_init(klass: &mut Self::Class)
fn class_init(klass: &mut Self::Class)
Source§fn instance_init(obj: &InitializingObject<Self>)
fn instance_init(obj: &InitializingObject<Self>)
Source§const ALLOW_NAME_CONFLICT: bool = false
const ALLOW_NAME_CONFLICT: bool = false
Source§fn type_init(_type_: &mut InitializingType<Self>)
fn type_init(_type_: &mut InitializingType<Self>)
Source§fn with_class(_klass: &Self::Class) -> Self
fn with_class(_klass: &Self::Class) -> Self
Source§impl ObjectSubclassType for MediaViewer
impl ObjectSubclassType for MediaViewer
Source§impl SwipeableImpl for MediaViewer
impl SwipeableImpl for MediaViewer
Source§impl WidgetImpl for MediaViewer
impl WidgetImpl for MediaViewer
fn size_allocate(&self, width: i32, height: i32, baseline: i32)
fn snapshot(&self, snapshot: &Snapshot)
fn compute_expand(&self, hexpand: &mut bool, vexpand: &mut bool)
fn contains(&self, x: f64, y: f64) -> bool
fn direction_changed(&self, previous_direction: TextDirection)
fn focus(&self, direction_type: DirectionType) -> bool
fn request_mode(&self) -> SizeRequestMode
fn grab_focus(&self) -> bool
fn map(&self)
fn measure( &self, orientation: Orientation, for_size: i32, ) -> (i32, i32, i32, i32)
fn mnemonic_activate(&self, group_cycling: bool) -> bool
fn move_focus(&self, direction_type: DirectionType)
fn query_tooltip( &self, x: i32, y: i32, keyboard_tooltip: bool, tooltip: &Tooltip, ) -> bool
fn realize(&self)
fn root(&self)
fn set_focus_child(&self, child: Option<&Widget>)
fn state_flags_changed(&self, state_flags: &StateFlags)
fn system_setting_changed(&self, settings: &SystemSetting)
fn unmap(&self)
fn unrealize(&self)
fn unroot(&self)
Auto Trait Implementations§
impl !Freeze for MediaViewer
impl !RefUnwindSafe for MediaViewer
impl !Send for MediaViewer
impl !Sync for MediaViewer
impl Unpin for MediaViewer
impl !UnwindSafe for MediaViewer
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
Source§impl<T> CompositeTemplateDisposeExt for T
impl<T> CompositeTemplateDisposeExt for T
fn dispose_template(&self)
Source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
Source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> ObjectImplExt for Twhere
T: ObjectImpl,
impl<T> ObjectImplExt for Twhere
T: ObjectImpl,
Source§fn parent_constructed(&self)
fn parent_constructed(&self)
glib::Object::constructed()
.Source§fn parent_notify(&self, pspec: &ParamSpec)
fn parent_notify(&self, pspec: &ParamSpec)
glib::Object::notify()
.Source§fn parent_dispatch_properties_changed(&self, pspecs: &[ParamSpec])
fn parent_dispatch_properties_changed(&self, pspecs: &[ParamSpec])
glib::Object::dispatch_properties_changed()
.Source§fn signal_chain_from_overridden(
&self,
token: &SignalClassHandlerToken,
values: &[Value],
) -> Option<Value>
fn signal_chain_from_overridden( &self, token: &SignalClassHandlerToken, values: &[Value], ) -> Option<Value>
Source§impl<T> ObjectSubclassExt for Twhere
T: ObjectSubclass,
impl<T> ObjectSubclassExt for Twhere
T: ObjectSubclass,
Source§fn instance(&self) -> BorrowedObject<'_, <T as ObjectSubclass>::Type>
fn instance(&self) -> BorrowedObject<'_, <T as ObjectSubclass>::Type>
Source§fn from_instance(obj: &<T as ObjectSubclass>::Type) -> &T
fn from_instance(obj: &<T as ObjectSubclass>::Type) -> &T
Source§fn obj(&self) -> BorrowedObject<'_, <T as ObjectSubclass>::Type>
fn obj(&self) -> BorrowedObject<'_, <T as ObjectSubclass>::Type>
Source§fn from_obj(obj: &<T as ObjectSubclass>::Type) -> &T
fn from_obj(obj: &<T as ObjectSubclass>::Type) -> &T
Source§fn ref_counted(&self) -> ObjectImplRef<T>
fn ref_counted(&self) -> ObjectImplRef<T>
self
.