Class

PhoshThumbnail

Description [src]

class Phosh.Thumbnail : GObject.Object {
  parent_instance: GObject
}

An abstract class representing thumbnail image.

Ancestors

Instance methods

phosh_thumbnail_get_image
No description available.

phosh_thumbnail_get_size
No description available.

phosh_thumbnail_is_ready
No description available.

Methods inherited from GObject (43)

Please see GObject for a full list of methods.

Properties

Phosh.Thumbnail:ready
No description available.

Signals

Signals inherited from GObject (1)
GObject::notify

The notify signal is emitted on an object when one of its properties has its value set through g_object_set_property(), g_object_set(), et al.

Class structure

struct PhoshThumbnailClass {
  GObjectClass parent_class;
  void* (* get_image) (
    PhoshThumbnail* self
  );
  void (* get_size) (
    PhoshThumbnail* self,
    guint* width,
    guint* height,
    guint* stride
  );
  gboolean (* is_ready) (
    PhoshThumbnail* self
  );
  void (* set_ready) (
    PhoshThumbnail* self,
    gboolean ready
  );
  
}
No description available.
Class members
parent_class: GObjectClass

The parent class.

get_image: void* (* get_image) ( PhoshThumbnail* self )
No description available.
get_size: void (* get_size) ( PhoshThumbnail* self, guint* width, guint* height, guint* stride )
No description available.
is_ready: gboolean (* is_ready) ( PhoshThumbnail* self )
No description available.
set_ready: void (* set_ready) ( PhoshThumbnail* self, gboolean ready )
No description available.

Virtual methods

Phosh.ThumbnailClass.get_image
No description available.

Phosh.ThumbnailClass.get_size
No description available.

Phosh.ThumbnailClass.is_ready
No description available.

Phosh.ThumbnailClass.set_ready
No description available.