Name

struct _EMFormatHTMLPObject — Pending object.

Synopsis

struct _EMFormatHTMLPObject {
  struct _EMFormatHTMLPObject * next;
  struct _EMFormatHTMLPObject * prev;
  void (* free (struct _EMFormatHTMLPObject *);
  struct _EMFormatHTML * format;
  char * classid;
  EMFormatHTMLPObjectFunc func;
  struct _CamelMimePart * part;
};  

Members

next

Double linked list header.

prev

Double linked list header.

free

Invoked when the object is no longer needed.

format

The parent formatter.

classid

The assigned class id as passed to add_pobject.

func

Callback function.

part

The part as passed to add_pobject.

Description

This structure is used to track OBJECT tags which have been inserted into the HTML stream. When GtkHTML requests them the func will be invoked to create the embedded widget.

This object is struct-subclassable. Only em_format_html_add_pobject may be used to allocate these.

Description

This structure is used to track OBJECT tags which have been inserted into the HTML stream. When GtkHTML requests them the func will be invoked to create the embedded widget.

This object is struct-subclassable. Only em_format_html_add_pobject may be used to allocate these.