Gjsify LogoGjsify Logo

Hierarchy

Index

Constructors

Properties

Methods

Constructors

Properties

_grl_reserved: object[]
g_type_instance: TypeInstance
media_type: Grl.MediaType
parent: Grl.Data
$gtype: GType<Grl.Media>
name: string

Methods

  • add_artist(artist: string): void
  • add_author(author: string): void
  • add_binary(key: number, buf: number, size: number): void
  • Appends a new binary value for key in data.

    Parameters

    • key: number

      key to append

    • buf: number

      the buffer containing the new value

    • size: number

      size of buffer

    Returns void

  • add_boxed(key: number, boxed: object): void
  • add_director(director: string): void
  • add_external_player(player: string): void
  • Adds a new external player to media.

    Parameters

    • player: string

      an external player for media

    Returns void

  • add_external_url(url: string): void
  • add_float(key: number, floatvalue: number): void
  • add_for_id(key_name: string, value: any): boolean
  • Appends the value associated with key_name to data. This key_name is used to create a new #GParamSpec instance, which is further used to create and register a key using grl_registry_register_metadata_key().

    A property key_name consists of segments consisting of ASCII letters and digits, separated by either the '-' or '_' character. The first character of a property key_name must be a letter. Key_names which violate these rules lead to undefined behaviour.

    Parameters

    • key_name: string

      name of the key to change or add

    • value: any

      the new value

    Returns boolean

  • add_genre(genre: string): void
  • add_int(key: number, intvalue: number): void
  • add_int64(key: number, intvalue: number): void
  • add_keyword(keyword: string): void
  • Adds the keyword describing the media.

    Parameters

    • keyword: string

      a keyword describing the media

    Returns void

  • add_lyrics(lyrics: string): void
  • add_mb_artist_id(mb_artist_id: string): void
  • Adds a new MusicBrainz artist id to media.

    Parameters

    • mb_artist_id: string

      a MusicBrainz artist identifier

    Returns void

  • add_performer(performer: string): void
  • Adds the actor performing in the movie.

    Parameters

    • performer: string

      an actor performing in the movie

    Returns void

  • add_producer(producer: string): void
  • add_region_data(region: string, publication_date: GLib.DateTime, certificate: string): void
  • Adds regional publication and certification information for region.

    Parameters

    • region: string

      the region's ISO-3166-1 code

    • publication_date: GLib.DateTime

      the publication date

    • certificate: string

      the age certification

    Returns void

  • Adds a new set of values into data.

    All keys in prop must be related among them.

    data will take the ownership of relkeys, so do not modify it.

    Parameters

    • relkeys: Grl.RelatedKeys

      a set of related properties with their values

    Returns void

  • add_string(key: number, strvalue: string): void
  • add_thumbnail(thumbnail: string): void
  • add_thumbnail_binary(thumbnail: number, size: number): void
  • Adds a new thumbnail to media.

    Parameters

    • thumbnail: number

      a buffer containing the thumbnail for media

    • size: number

      size of buffer

    Returns void

  • add_url_data(url: string, mime: string, bitrate: number, framerate: number, width: number, height: number): void
  • Sets all the keys related with the URL of a media resource and adds it to media (useful for resources with more than one URL).

    Parameters

    • url: string

      a media's URL

    • mime: string

      th url mime type

    • bitrate: number

      the url bitrate, or -1 to ignore

    • framerate: number

      media framerate, or -1 to ignore

    • width: number

      media width, or -1 to ignore

    • height: number

      media height, or -1 to ignore

    Returns void

  • Creates a binding between source_property on source and target_property on target.

    Whenever the source_property is changed the target_property is updated using the same value. For instance:

      g_object_bind_property (action, "active", widget, "sensitive", 0);
    

    Will result in the "sensitive" property of the widget #GObject instance to be updated with the same value of the "active" property of the action #GObject instance.

    If flags contains %G_BINDING_BIDIRECTIONAL then the binding will be mutual: if target_property on target changes then the source_property on source will be updated as well.

    The binding will automatically be removed when either the source or the target instances are finalized. To remove the binding without affecting the source and the target you can just call g_object_unref() on the returned #GBinding instance.

    Removing the binding by calling g_object_unref() on it must only be done if the binding, source and target are only used from a single thread and it is clear that both source and target outlive the binding. Especially it is not safe to rely on this if the binding, source or target can be finalized from different threads. Keep another reference to the binding and use g_binding_unbind() instead to be on the safe side.

    A #GObject can have multiple bindings.

    Parameters

    • source_property: string

      the property on source to bind

    • target: GObject.Object

      the target #GObject

    • target_property: string

      the property on target to bind

    • flags: BindingFlags

      flags to pass to #GBinding

    Returns Binding

  • Creates a binding between source_property on source and target_property on target, allowing you to set the transformation functions to be used by the binding.

    This function is the language bindings friendly version of g_object_bind_property_full(), using #GClosures instead of function pointers.

    Parameters

    • source_property: string

      the property on source to bind

    • target: GObject.Object

      the target #GObject

    • target_property: string

      the property on target to bind

    • flags: BindingFlags

      flags to pass to #GBinding

    • transform_to: TClosure<any, any>

      a #GClosure wrapping the transformation function from the source to the target, or %NULL to use the default

    • transform_from: TClosure<any, any>

      a #GClosure wrapping the transformation function from the target to the source, or %NULL to use the default

    Returns Binding

  • connect(sigName: "notify::media-type", callback: (($obj: Grl.Media, pspec: ParamSpec) => void)): number
  • connect(sigName: string, callback: ((...args: any[]) => void)): number
  • connect_after(sigName: "notify::media-type", callback: (($obj: Grl.Media, pspec: ParamSpec) => void)): number
  • connect_after(sigName: string, callback: ((...args: any[]) => void)): number
  • disconnect(id: number): void
  • emit(sigName: "notify::media-type", ...args: any[]): void
  • emit(sigName: string, ...args: any[]): void
  • force_floating(): void
  • This function is intended for #GObject implementations to re-enforce a [floating][floating-ref] object reference. Doing this is seldom required: all #GInitiallyUnowneds are created with a floating reference which usually just needs to be sunken by calling g_object_ref_sink().

    Returns void

  • freeze_notify(): void
  • Increases the freeze count on object. If the freeze count is non-zero, the emission of "notify" signals on object is stopped. The signals are queued until the freeze count is decreased to zero. Duplicate notifications are squashed so that at most one #GObject::notify signal is emitted for each property modified while the object is frozen.

    This is necessary for accessors that modify multiple properties to prevent premature notification while the object is still being modified.

    Returns void

  • get(key: number): any
  • get_album(): string
  • get_album_artist(): string
  • get_album_disc_number(): number
  • get_artist(): string
  • get_artist_nth(index: number): string
  • get_author(): string
  • get_author_nth(index: number): string
  • get_binary(key: number): [number, number]
  • Returns the first binary value associated with key from data. If key has no first value, or value is not a gfloat, or key is not in data, then %NULL is returned.

    Parameters

    • key: number

      key to use

    Returns [number, number]

  • get_bitrate(): number
  • get_boolean(key: number): boolean
  • get_boxed(key: number): object
  • Returns the first boxed value associated with key from data. If key has no first value, that value is not of a boxed type, or key is not in data, then %NULL is returned.

    Parameters

    • key: number

      key to use

    Returns object

  • get_camera_model(): string
  • get_certificate(): string
  • Returns the media's first age certificate. This should usually be the media's most relevant age certificate. Use grl_media_get_region_data_nth() to get other age certificates.

    Returns string

  • get_childcount(): number
  • get_composer(): string
  • get_composer_nth(index: number): string
  • get_data(key?: string): object
  • Gets a named field from the objects table of associations (see g_object_set_data()).

    Parameters

    • Optional key: string

      name of the key for that association

    Returns object

  • get_description(): string
  • get_director(): string
  • get_director_nth(index: number): string
  • get_duration(): number
  • get_episode(): number
  • get_episode_title(): string
  • get_exposure_time(): number
  • get_external_url(): string
  • get_external_url_nth(index: number): string
  • get_favourite(): boolean
  • get_flash_used(): string
  • get_float(key: number): number
  • Returns the first float value associated with key from data. If key has no first value, or value is not a gfloat, or key is not in data, then 0 is returned.

    Parameters

    • key: number

      key to use

    Returns number

  • get_framerate(): number
  • get_genre(): string
  • get_genre_nth(index: number): string
  • get_height(): number
  • get_id(): string
  • get_int(key: number): number
  • Returns the first int value associated with key from data. If key has no first value, or value is not a gint, or key is not in data, then 0 is returned.

    Parameters

    • key: number

      key to use

    Returns number

  • get_int64(key: number): number
  • Returns the first int64 value associated with key from data. If key has no first value, or value is not a gint, or key is not in data, then 0 is returned.

    Parameters

    • key: number

      key to use

    Returns number

  • get_iso_speed(): number
  • get_keys(): number[]
  • get_keyword(): string
  • get_keyword_nth(index: number): string
  • get_last_position(): number
  • get_license(): string
  • get_lyrics(): string
  • get_lyrics_nth(index: number): string
  • get_mb_album_id(): string
  • get_mb_artist_id(): string
  • get_mb_artist_id_nth(index: number): string
  • get_mb_recording_id(): string
  • get_mb_release_group_id(): string
  • get_mb_release_id(): string
  • get_mb_track_id(): string
  • get_mime(): string
  • get_orientation(): number
  • get_original_title(): string
  • get_performer(): string
  • get_performer_nth(index: number): string
  • get_play_count(): number
  • get_player(): string
  • get_player_nth(index: number): string
  • get_producer(): string
  • get_producer_nth(index: number): string
  • get_property(property_name?: string, value?: any): void
  • Gets a property of an object.

    The value can be:

    • an empty #GValue initialized by %G_VALUE_INIT, which will be automatically initialized with the expected type of the property (since GLib 2.60)
    • a #GValue initialized with the expected type of the property
    • a #GValue initialized with a type to which the expected type of the property can be transformed

    In general, a copy is made of the property contents and the caller is responsible for freeing the memory by calling g_value_unset().

    Note that g_object_get_property() is really intended for language bindings, g_object_get() is much more convenient for C programming.

    Parameters

    • Optional property_name: string

      the name of the property to get

    • Optional value: any

      return location for the property value

    Returns void

  • get_qdata(quark: number): object
  • This function gets back user data pointers stored via g_object_set_qdata().

    Parameters

    • quark: number

      A #GQuark, naming the user data pointer

    Returns object

  • get_rating(): number
  • get_region(): string
  • Returns the media's age certificate and publication date for the first region. This should usually be the media's most relevant region. Use grl_media_get_region_data_nth() to get the age certificate and publication date for other regions.

    Returns [string, GLib.DateTime, string]

  • get_region_data_nth(index: number): [string, GLib.DateTime, string]
  • Returns the media's age certificate and publication date for one region. Use grl_data_length() with GRL_METADATA_KEY_REGION to discover how many regions are available. For instance:

    Parameters

    • index: number

      element to retrieve

    Returns [string, GLib.DateTime, string]

  • Returns a set containing the values for key and related keys at position index from data.

    If user changes any of the values in the related keys, the changes will become permanent.

    Parameters

    • key: number

      a metadata key

    • index: number

      element to retrieve, starting at 0

    Returns Grl.RelatedKeys

  • get_season(): number
  • get_show(): string
  • get_single_values_for_key(key: number): any[]
  • get_single_values_for_key_string(key: number): string[]
  • get_site(): string
  • get_size(): number
  • get_source(): string
  • get_start_time(): number
  • get_string(key: number): string
  • Returns the first string value associated with key from data. If key has no first value, or value is not string, or key is not in data, then %NULL is returned.

    Parameters

    • key: number

      key to use

    Returns string

  • get_studio(): string
  • get_thumbnail(): string
  • get_thumbnail_binary(size: number): number
  • get_thumbnail_binary_nth(size: number, index: number): number
  • get_thumbnail_nth(index: number): string
  • get_title(): string
  • get_track_number(): number
  • get_url(): string
  • get_url_data(framerate: number, width: number, height: number): [string, string, number]
  • get_url_data_nth(index: number, framerate: number, width: number, height: number): [string, string, number]
  • get_width(): number
  • getv(names: string[], values: any[]): void
  • Gets n_properties properties for an object. Obtained properties will be set to values. All properties must be valid. Warnings will be emitted and undefined behaviour may result if invalid properties are passed in.

    Parameters

    • names: string[]

      the names of each property to get

    • values: any[]

      the values of each property to get

    Returns void

  • has_key(key: number): boolean
  • is_audio(): boolean
  • is_container(): boolean
  • is_floating(): boolean
  • is_image(): boolean
  • is_video(): boolean
  • length(key: number): number
  • Returns how many values key or related keys have in data: if key has no value, but a related key has, then it is counted as positive.

    As example, let's think in three related keys, K1, K2 and K3, and then thinks we have added several values for those keys, as:

    (V10, V20, V30), (V11, NULL, V31), (V12, NULL, V32)

    Therefore, when invoking grl_data_length (data, K2) it will return 3: considering K2 and the related keys (K1 and K3), there are 3 values.

    Parameters

    • key: number

      a metadata key

    Returns number

  • notify(property_name: string): void
  • Emits a "notify" signal for the property property_name on object.

    When possible, eg. when signaling a property change from within the class that registered the property, you should use g_object_notify_by_pspec() instead.

    Note that emission of the notify signal may be blocked with g_object_freeze_notify(). In this case, the signal emissions are queued and will be emitted (in reverse order) when g_object_thaw_notify() is called.

    Parameters

    • property_name: string

      the name of a property installed on the class of object.

    Returns void

  • Emits a "notify" signal for the property specified by pspec on object.

    This function omits the property name lookup, hence it is faster than g_object_notify().

    One way to avoid using g_object_notify() from within the class that registered the properties, and using g_object_notify_by_pspec() instead, is to store the GParamSpec used with g_object_class_install_property() inside a static array, e.g.:

      enum
    {
    PROP_0,
    PROP_FOO,
    PROP_LAST
    };

    static GParamSpec *properties[PROP_LAST];

    static void
    my_object_class_init (MyObjectClass *klass)
    {
    properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
    0, 100,
    50,
    G_PARAM_READWRITE);
    g_object_class_install_property (gobject_class,
    PROP_FOO,
    properties[PROP_FOO]);
    }

    and then notify a change on the "foo" property with:

      g_object_notify_by_pspec (self, properties[PROP_FOO]);
    

    Parameters

    • pspec: ParamSpec

      the #GParamSpec of a property installed on the class of object.

    Returns void

  • Increases the reference count of object.

    Since GLib 2.56, if GLIB_VERSION_MAX_ALLOWED is 2.56 or greater, the type of object will be propagated to the return type (using the GCC typeof() extension), so any casting the caller needs to do on the return type must be explicit.

    Returns GObject.Object

  • Increase the reference count of object, and possibly remove the [floating][floating-ref] reference, if object has a floating reference.

    In other words, if the object is floating, then this call "assumes ownership" of the floating reference, converting it to a normal reference by clearing the floating flag while leaving the reference count unchanged. If the object is not floating, then this call adds a new normal reference increasing the reference count by one.

    Since GLib 2.56, the type of object will be propagated to the return type under the same conditions as for g_object_ref().

    Returns GObject.Object

  • remove(key: number): void
  • Removes the first value for key from data. If there are other keys related to key their values will also be removed from data.

    Parameters

    • key: number

      key to remove

    Returns void

  • remove_nth(key: number, index: number): void
  • Removes the value at position index for key from data. If there are other keys related to key, their values at position index will also be removed from data.

    Parameters

    • key: number

      a metadata key

    • index: number

      index of key to be removed, starting at 0

    Returns void

  • run_dispose(): void
  • Releases all references to other objects. This can be used to break reference cycles.

    This function should only be called from object system implementations.

    Returns void

  • serialize(): string
  • Serializes a GrlMedia into a string. It does a basic serialization.

    See grl_media_serialize_extended() to get more serialization approaches.

    Returns string

  • set(key: number, value: any): void
  • Sets the first value associated with key in data. If key already has a value old value is freed and the new one is set.

    Also, checks that value is compliant with key specification, modifying it accordingly. For instance, if key requires a number between 0 and 10, but value is outside this range, it will be adapted accordingly.

    Parameters

    • key: number

      key to change or add

    • value: any

      the new value

    Returns void

  • set_album(album: string): void
  • set_album_artist(album_artist: string): void
  • Set the main artist of the album of the media

    Parameters

    • album_artist: string

      the audio's album main artist

    Returns void

  • set_album_disc_number(disc_number: number): void
  • Set the disc number of the media for multi-disc album sets.

    Parameters

    • disc_number: number

      the disc number within an album

    Returns void

  • set_artist(artist: string): void
  • set_author(author: string): void
  • set_binary(key: number, buf: number, size: number): void
  • Sets the first binary value associated with key in data. If key already has a first value old value is replaced by the new one.

    Parameters

    • key: number

      key to change or add

    • buf: number

      buffer holding the data

    • size: number

      size of the buffer

    Returns void

  • set_bitrate(bitrate: number): void
  • set_boolean(key: number, boolvalue: boolean): void
  • Sets the first boolean value associated with key in data. If key already has a first value, old value is replaced by the new one.

    Parameters

    • key: number

      key to change or add

    • boolvalue: boolean

      the new value

    Returns void

  • set_boxed(key: number, boxed: object): void
  • Sets the first boxed value associated with key in data. If key already has a value, the old value is freed and the new one is set.

    Parameters

    • key: number

      key to change or add

    • boxed: object

      the new value

    Returns void

  • set_camera_model(camera_model: string): void
  • Set the camera_model of the media

    Parameters

    • camera_model: string

      model of camera used to take picture

    Returns void

  • set_certificate(certificate: string): void
  • Set the media's first age certification. This should usually be the media's most relevant age certificate. Use grl_media_set_region_data() to set other age certificates.

    Parameters

    • certificate: string

      The age certificate of the media

    Returns void

  • set_childcount(childcount: number): void
  • Sets the number of children of this container. Use #GRL_METADATA_KEY_CHILDCOUNT_UNKNOWN if it is unknown.

    Parameters

    • childcount: number

      number of children

    Returns void

  • set_composer(composer: string): void
  • set_data(key: string, data?: object): void
  • Each object carries around a table of associations from strings to pointers. This function lets you set an association.

    If the object already had an association with that name, the old association will be destroyed.

    Internally, the key is converted to a #GQuark using g_quark_from_string(). This means a copy of key is kept permanently (even after object has been finalized) — so it is recommended to only use a small, bounded set of values for key in your program, to avoid the #GQuark storage growing unbounded.

    Parameters

    • key: string

      name of the key

    • Optional data: object

      data to associate with that key

    Returns void

  • set_description(description: string): void
  • set_director(director: string): void
  • set_duration(duration: number): void
  • set_episode(episode: number): void
  • set_episode_title(episode_title: string): void
  • set_exposure_time(exposure_time: number): void
  • Set the exposure_time of the media

    Parameters

    • exposure_time: number

      picture's exposure time

    Returns void

  • set_external_player(player: string): void
  • Set the location of a player for the media (usually a flash player)

    Parameters

    • player: string

      location of an external player for this media

    Returns void

  • set_external_url(url: string): void
  • Set an external location where users can play the media

    Parameters

    • url: string

      external location where this media can be played.

    Returns void

  • set_favourite(favourite: boolean): void
  • Set if the media is favourite or not

    Parameters

    • favourite: boolean

      whether the item is favourite or not

    Returns void

  • set_flash_used(flash_used: string): void
  • set_float(key: number, floatvalue: number): void
  • Sets the first float value associated with key in data. If key already has a first value old value is replaced by the new one.

    Parameters

    • key: number

      key to change or add

    • floatvalue: number

      the new value

    Returns void

  • set_for_id(key_name: string, value: any): boolean
  • Sets the first value associated with key_name in data. This key_name is used to create a new #GParamSpec instance, which is further used to create and register a key using grl_registry_register_metadata_key(). If key_name already has a first value, old value is replaced by the new one.

    A property key_name consists of segments consisting of ASCII letters and digits, separated by either the '-' or '_' character. The first character of a property key_name must be a letter. Key_names which violate these rules lead to undefined behaviour.

    Parameters

    • key_name: string

      name of the key to change or add

    • value: any

      the new value

    Returns boolean

  • set_framerate(framerate: number): void
  • set_genre(genre: string): void
  • set_height(height: number): void
  • set_id(id: string): void
  • set_int(key: number, intvalue: number): void
  • Sets the first int value associated with key in data. If key already has a first value old value is replaced by the new one.

    Parameters

    • key: number

      key to change or add

    • intvalue: number

      the new value

    Returns void

  • set_int64(key: number, intvalue: number): void
  • Sets the first int64 value associated with key in data. If key already has a first value old value is replaced by the new one.

    Parameters

    • key: number

      key to change or add

    • intvalue: number

      the new value

    Returns void

  • set_iso_speed(iso_speed: number): void
  • set_keyword(keyword: string): void
  • Sets the keyword describing the media.

    Parameters

    • keyword: string

      a keyword describing the media

    Returns void

  • set_last_position(last_position: number): void
  • Set the media last played position

    Parameters

    • last_position: number

      second at which the media playback was interrupted

    Returns void

  • set_license(license: string): void
  • set_lyrics(lyrics: string): void
  • set_mb_album_id(mb_album_id: string): void
  • Set the MusicBrainz album identifier of the media

    Parameters

    • mb_album_id: string

      the MusicBrainz album identifier

    Returns void

  • set_mb_artist_id(mb_artist_id: string): void
  • Set the MusicBrainz artist identifier of the media

    Parameters

    • mb_artist_id: string

      the MusicBrainz artist identifier

    Returns void

  • set_mb_recording_id(mb_recording_id: string): void
  • Set the MusicBrainz recording identifier of the media

    Parameters

    • mb_recording_id: string

      the MusicBrainz recording identifier

    Returns void

  • set_mb_release_group_id(mb_release_group_id: string): void
  • Set the MusicBrainz Release Group identifier of the media

    Parameters

    • mb_release_group_id: string

      Album group release identifier in MusicBrainz

    Returns void

  • set_mb_release_id(mb_release_id: string): void
  • Set the MusicBrainz release identifier of the media

    Parameters

    • mb_release_id: string

      Album release identifier in MusicBrainz

    Returns void

  • set_mb_track_id(mb_track_id: string): void
  • Set the MusicBrainz track identifier of the media

    Parameters

    • mb_track_id: string

      the MusicBrainz track identifier

    Returns void

  • set_mime(mime: string): void
  • set_modification_date(modification_date: GLib.DateTime): void
  • set_orientation(orientation: number): void
  • Set the orientation of the media

    Parameters

    • orientation: number

      degrees clockwise orientation of the picture

    Returns void

  • set_original_title(original_title: string): void
  • Sets the original, untranslated title of the media.

    Parameters

    • original_title: string

      original, untranslated title of the movie

    Returns void

  • set_performer(performer: string): void
  • Sets the actor performing in the movie.

    Parameters

    • performer: string

      an actor performing in the movie

    Returns void

  • set_play_count(play_count: number): void
  • set_producer(producer: string): void
  • set_property(property_name: string, value?: any): void
  • set_rating(rating: number, max: number): void
  • This method receives a rating and its scale and normalizes it on a scale from 0...5 to match the usual five-star rating.

    Parameters

    • rating: number

      a rating value

    • max: number

      maximum rating value

    Returns void

  • set_region(region: string): void
  • Sets the region where media was published.

    Parameters

    • region: string

      the region's ISO-3166-1 code

    Returns void

  • set_region_data(region: string, publication_date: GLib.DateTime, certificate: string): void
  • Sets regional publication and certification information for region.

    Parameters

    • region: string

      the region's ISO-3166-1 code

    • publication_date: GLib.DateTime

      the publication date

    • certificate: string

      the age certification

    Returns void

  • Updates the values at position index in data with values in relkeys.

    data will take ownership of relkeys, so do not free it after invoking this function.

    Parameters

    • relkeys: Grl.RelatedKeys

      a set of related keys

    • index: number

      position to be updated, starting at 0

    Returns void

  • set_season(season: number): void
  • set_show(show: string): void
  • set_site(site: string): void
  • Set the media's site. A site is a website about the media such as a studio's promotional website for a movie.

    Parameters

    • site: string

      the site

    Returns void

  • set_size(size: number): void
  • set_source(source: string): void
  • set_string(key: number, strvalue: string): void
  • Sets the first string value associated with key in data. If key already has a value old value is freed and the new one is set.

    Parameters

    • key: number

      key to change or add

    • strvalue: string

      the new value

    Returns void

  • set_studio(studio: string): void
  • set_thumbnail(thumbnail: string): void
  • set_thumbnail_binary(thumbnail: number, size: number): void
  • Set the media's binary thumbnail

    Parameters

    • thumbnail: number

      thumbnail buffer

    • size: number

      thumbnail buffer size

    Returns void

  • set_title(title: string): void
  • set_track_number(track_number: number): void
  • Set the track number of the media

    Parameters

    • track_number: number

      the audio's track number

    Returns void

  • set_url(url: string): void
  • set_url_data(url: string, mime: string, bitrate: number, framerate: number, width: number, height: number): void
  • Sets all the keys related with the URL of a media resource in one go.

    Parameters

    • url: string

      the media's URL

    • mime: string

      the url mime type

    • bitrate: number

      the url bitrate, or -1 to ignore

    • framerate: number

      media framerate, or -1 to ignore

    • width: number

      media width, or -1 to ignore

    • height: number

      media height, or -1 to ignore

    Returns void

  • set_width(width: number): void
  • steal_data(key?: string): object
  • Remove a specified datum from the object's data associations, without invoking the association's destroy handler.

    Parameters

    • Optional key: string

      name of the key

    Returns object

  • steal_qdata(quark: number): object
  • This function gets back user data pointers stored via g_object_set_qdata() and removes the data from object without invoking its destroy() function (if any was set). Usually, calling this function is only required to update user data pointers with a destroy notifier, for example:

    void
    object_add_to_user_list (GObject *object,
    const gchar *new_string)
    {
    // the quark, naming the object data
    GQuark quark_string_list = g_quark_from_static_string ("my-string-list");
    // retrieve the old string list
    GList *list = g_object_steal_qdata (object, quark_string_list);

    // prepend new string
    list = g_list_prepend (list, g_strdup (new_string));
    // this changed 'list', so we need to set it again
    g_object_set_qdata_full (object, quark_string_list, list, free_string_list);
    }
    static void
    free_string_list (gpointer data)
    {
    GList *node, *list = data;

    for (node = list; node; node = node->next)
    g_free (node->data);
    g_list_free (list);
    }

    Using g_object_get_qdata() in the above example, instead of g_object_steal_qdata() would have left the destroy function set, and thus the partial string list would have been freed upon g_object_set_qdata_full().

    Parameters

    • quark: number

      A #GQuark, naming the user data pointer

    Returns object

  • thaw_notify(): void
  • Reverts the effect of a previous call to g_object_freeze_notify(). The freeze count is decreased on object and when it reaches zero, queued "notify" signals are emitted.

    Duplicate notifications for each property are squashed so that at most one #GObject::notify signal is emitted for each property, in the reverse order in which they have been queued.

    It is an error to call this function when the freeze count is zero.

    Returns void

  • unref(): void
  • Decreases the reference count of object. When its reference count drops to 0, the object is finalized (i.e. its memory is freed).

    If the pointer to the #GObject may be reused in future (for example, if it is an instance variable of another object), it is recommended to clear the pointer to %NULL rather than retain a dangling pointer to a potentially invalid #GObject instance. Use g_clear_object() for this.

    Returns void

  • vfunc_constructed(): void
  • vfunc_dispatch_properties_changed(n_pspecs: number, pspecs: ParamSpec): void
  • vfunc_dispose(): void
  • vfunc_finalize(): void
  • vfunc_get_property(property_id: number, value?: any, pspec?: ParamSpec): void
  • Emits a "notify" signal for the property property_name on object.

    When possible, eg. when signaling a property change from within the class that registered the property, you should use g_object_notify_by_pspec() instead.

    Note that emission of the notify signal may be blocked with g_object_freeze_notify(). In this case, the signal emissions are queued and will be emitted (in reverse order) when g_object_thaw_notify() is called.

    virtual

    Parameters

    Returns void

  • vfunc_set_property(property_id: number, value?: any, pspec?: ParamSpec): void
  • watch_closure(closure: TClosure<any, any>): void
  • This function essentially limits the life time of the closure to the life time of the object. That is, when the object is finalized, the closure is invalidated by calling g_closure_invalidate() on it, in order to prevent invocations of the closure with a finalized (nonexisting) object. Also, g_object_ref() and g_object_unref() are added as marshal guards to the closure, to ensure that an extra reference count is held on object during invocation of the closure. Usually, this function will be called on closures that use this object as closure data.

    Parameters

    • closure: TClosure<any, any>

      #GClosure to watch

    Returns void

  • compat_control(what: number, data: object): number
  • Find the #GParamSpec with the given name for an interface. Generally, the interface vtable passed in as g_iface will be the default vtable from g_type_default_interface_ref(), or, if you know the interface has already been loaded, g_type_default_interface_peek().

    Parameters

    • g_iface: TypeInterface

      any interface vtable for the interface, or the default vtable for the interface

    • property_name: string

      name of a property to look up.

    Returns ParamSpec

  • Add a property to an interface; this is only useful for interfaces that are added to GObject-derived types. Adding a property to an interface forces all objects classes with that interface to have a compatible property. The compatible property could be a newly created #GParamSpec, but normally g_object_class_override_property() will be used so that the object class only needs to provide an implementation and inherits the property description, default value, bounds, and so forth from the interface property.

    This function is meant to be called from the interface's default vtable initialization function (the class_init member of #GTypeInfo.) It must not be called after after class_init has been called for any object types implementing this interface.

    If pspec is a floating reference, it will be consumed.

    Parameters

    • g_iface: TypeInterface

      any interface vtable for the interface, or the default vtable for the interface.

    • pspec: ParamSpec

      the #GParamSpec for the new property

    Returns void

  • Lists the properties of an interface.Generally, the interface vtable passed in as g_iface will be the default vtable from g_type_default_interface_ref(), or, if you know the interface has already been loaded, g_type_default_interface_peek().

    Parameters

    • g_iface: TypeInterface

      any interface vtable for the interface, or the default vtable for the interface

    Returns ParamSpec[]

  • Creates a new instance of a #GObject subtype and sets its properties.

    Construction parameters (see %G_PARAM_CONSTRUCT, %G_PARAM_CONSTRUCT_ONLY) which are not explicitly specified are set to their default values.

    Parameters

    • object_type: GType<unknown>

      the type id of the #GObject subtype to instantiate

    • parameters: GObject.Parameter[]

      an array of #GParameter

    Returns GObject.Object

Legend

  • Module
  • Object literal
  • Variable
  • Function
  • Function with type parameter
  • Index signature
  • Type alias
  • Type alias with type parameter
  • Enumeration
  • Enumeration member
  • Property
  • Method
  • Interface
  • Interface with type parameter
  • Constructor
  • Property
  • Method
  • Index signature
  • Class
  • Class with type parameter
  • Constructor
  • Property
  • Method
  • Accessor
  • Index signature
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Protected property
  • Protected method
  • Protected accessor
  • Private property
  • Private method
  • Private accessor
  • Static property
  • Static method