Struct main::page::ExamplePagePrivate

source ·
pub struct ExamplePagePrivate {
    text_view: RefCell<Option<TextView>>,
    _im_context: RefCell<Option<IMContext>>,
}

Fields§

§text_view: RefCell<Option<TextView>>§_im_context: RefCell<Option<IMContext>>

Implementations§

source§

impl ExamplePagePrivate

source

fn register_type()

Registers the type only once.

source§

impl ExamplePagePrivate

source

pub fn downgrade(&self) -> <Self as Downgrade>::Weak

Trait Implementations§

source§

impl Debug for ExamplePagePrivate

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for ExamplePagePrivate

source§

fn default() -> ExamplePagePrivate

Returns the “default value” for a type. Read more
source§

impl ObjectImpl for ExamplePagePrivate

source§

fn properties() -> &'static [ParamSpec]

Properties installed for this type.
source§

fn property(&self, _id: usize, pspec: &ParamSpec) -> Value

Property getter. Read more
source§

fn constructed(&self)

Constructed. Read more
source§

fn signals() -> &'static [Signal]

Signals installed for this type.
source§

fn set_property(&self, _id: usize, _value: &Value, _pspec: &ParamSpec)

Property setter. Read more
source§

fn dispose(&self)

Disposes of the object. Read more
source§

fn notify(&self, pspec: &ParamSpec)

Function to be called when property change is notified for with self.notify("property").
source§

fn dispatch_properties_changed(&self, pspecs: &[ParamSpec])

source§

impl ObjectSubclass for ExamplePagePrivate

§

type Interfaces = ()

List of interfaces implemented by this type.
§

type Class = ClassStruct<ExamplePagePrivate>

The C class struct. Read more
§

type Instance = InstanceStruct<ExamplePagePrivate>

The C instance struct. Read more
source§

fn new() -> Self

Constructor. Read more
source§

const NAME: &'static str = "ExamplePage"

GObject type name. Read more
§

type Type = ExamplePage

Wrapper around this subclass defined with wrapper!
§

type ParentType = Widget

Parent Rust type to inherit from.
source§

const ABSTRACT: bool = false

If this subclass is an abstract class or not. Read more
source§

const ALLOW_NAME_CONFLICT: bool = false

Allow name conflicts for this class. Read more
source§

fn type_init(_type_: &mut InitializingType<Self>)

Additional type initialization. Read more
source§

fn class_init(_klass: &mut Self::Class)

Class initialization. Read more
source§

fn with_class(_klass: &Self::Class) -> Self

Constructor. Read more
source§

fn instance_init(_obj: &InitializingObject<Self>)

Performs additional instance initialization. Read more
source§

impl ObjectSubclassType for ExamplePagePrivate

source§

fn type_data() -> NonNull<TypeData>

Storage for the type-specific data used during registration.
source§

fn type_() -> Type

Returns the glib::Type ID of the subclass. Read more
source§

impl PanelWidgetImpl for ExamplePagePrivate

source§

impl WidgetImpl for ExamplePagePrivate

source§

fn compute_expand(&self, hexpand: &mut bool, vexpand: &mut bool)

source§

fn contains(&self, x: f64, y: f64) -> bool

source§

fn direction_changed(&self, previous_direction: TextDirection)

source§

fn focus(&self, direction_type: DirectionType) -> bool

source§

fn request_mode(&self) -> SizeRequestMode

source§

fn grab_focus(&self) -> bool

source§

fn hide(&self)

source§

fn keynav_failed(&self, direction_type: DirectionType) -> bool

source§

fn map(&self)

source§

fn measure( &self, orientation: Orientation, for_size: i32, ) -> (i32, i32, i32, i32)

source§

fn mnemonic_activate(&self, group_cycling: bool) -> bool

source§

fn move_focus(&self, direction_type: DirectionType)

source§

fn query_tooltip( &self, x: i32, y: i32, keyboard_tooltip: bool, tooltip: &Tooltip, ) -> bool

source§

fn realize(&self)

source§

fn root(&self)

source§

fn set_focus_child(&self, child: Option<&Widget>)

source§

fn show(&self)

source§

fn size_allocate(&self, width: i32, height: i32, baseline: i32)

source§

fn snapshot(&self, snapshot: &Snapshot)

source§

fn state_flags_changed(&self, state_flags: &StateFlags)

source§

fn system_setting_changed(&self, settings: &SystemSetting)

source§

fn unmap(&self)

source§

fn unrealize(&self)

source§

fn unroot(&self)

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ObjectImplExt for T
where T: ObjectImpl,

source§

fn parent_constructed(&self)

Chain up to the parent class’ implementation of glib::Object::constructed().
source§

fn parent_notify(&self, pspec: &ParamSpec)

Chain up to the parent class’ implementation of glib::Object::notify().
source§

fn parent_dispatch_properties_changed(&self, pspecs: &[ParamSpec])

Chain up to the parent class’ implementation of glib::Object::dispatch_properties_changed().
source§

fn signal_chain_from_overridden( &self, token: &SignalClassHandlerToken, values: &[Value], ) -> Option<Value>

Chain up to parent class signal handler.
source§

impl<T> ObjectSubclassExt for T
where T: ObjectSubclass,

source§

fn instance(&self) -> BorrowedObject<'_, <T as ObjectSubclass>::Type>

👎Deprecated: Use obj() instead
Returns the corresponding object instance.
source§

fn from_instance(obj: &<T as ObjectSubclass>::Type) -> &T

👎Deprecated: Use from_obj() instead
Returns the implementation from an instance.
source§

fn obj(&self) -> BorrowedObject<'_, <T as ObjectSubclass>::Type>

Returns the corresponding object instance. Read more
source§

fn from_obj(obj: &<T as ObjectSubclass>::Type) -> &T

Returns the implementation from an instance. Read more
source§

fn ref_counted(&self) -> ObjectImplRef<T>

Returns a new reference-counted wrapper around self.
source§

fn instance_data<U>(&self, type_: Type) -> Option<&U>
where U: Any + Send + Sync + 'static,

Returns a pointer to the instance implementation specific data. Read more
source§

impl<T> PanelWidgetImplExt for T
where T: PanelWidgetImpl,

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WidgetImplExt for T
where T: WidgetImpl,

source§

fn parent_compute_expand(&self, hexpand: &mut bool, vexpand: &mut bool)

source§

fn parent_contains(&self, x: f64, y: f64) -> bool

source§

fn parent_direction_changed(&self, previous_direction: TextDirection)

source§

fn parent_focus(&self, direction_type: DirectionType) -> bool

source§

fn parent_request_mode(&self) -> SizeRequestMode

source§

fn parent_grab_focus(&self) -> bool

source§

fn parent_hide(&self)

source§

fn parent_keynav_failed(&self, direction_type: DirectionType) -> bool

source§

fn parent_map(&self)

source§

fn parent_measure( &self, orientation: Orientation, for_size: i32, ) -> (i32, i32, i32, i32)

source§

fn parent_mnemonic_activate(&self, group_cycling: bool) -> bool

source§

fn parent_move_focus(&self, direction_type: DirectionType)

source§

fn parent_query_tooltip( &self, x: i32, y: i32, keyboard_tooltip: bool, tooltip: &Tooltip, ) -> bool

source§

fn parent_realize(&self)

source§

fn parent_root(&self)

source§

fn parent_set_focus_child(&self, child: Option<&Widget>)

source§

fn parent_show(&self)

source§

fn parent_size_allocate(&self, width: i32, height: i32, baseline: i32)

source§

fn parent_snapshot(&self, snapshot: &Snapshot)

source§

fn parent_state_flags_changed(&self, state_flags: &StateFlags)

source§

fn parent_system_setting_changed(&self, settings: &SystemSetting)

source§

fn parent_unmap(&self)

source§

fn parent_unrealize(&self)

source§

fn parent_unroot(&self)