| The GtkHTML Library |
|---|
GtkWidget * gtk_html_embedded_new (char *classid, char *name, char *type, char *data, int width, int height); void gtk_html_embedded_set_parameter (GtkHTMLEmbedded *ge, char *param, char *value); char* gtk_html_embedded_get_parameter (GtkHTMLEmbedded *ge, char *param); void gtk_html_embedded_set_descent (GtkHTMLEmbedded *ge, int descent);
The GtkHTML Embedded widget is simple container designed to hold widgets embedded by using <object> elements.
GtkWidget * gtk_html_embedded_new (char *classid, char *name, char *type, char *data, int width, int height);
Create a new GtkHTMLEmbedded widget. Note that this function should never be called outside of gtkhtml.
| classid : | |
| name : | |
| type : | |
| data : | |
| width : | |
| height : | |
| Returns : | A new GtkHTMLEmbedded widget. |
void gtk_html_embedded_set_parameter (GtkHTMLEmbedded *ge, char *param, char *value);
The parameter named name to the value.
| ge : | The GtkHTMLEmbedded widget. |
| param : | the name of the parameter to set. |
| value : | the value of the parameter. |
char* gtk_html_embedded_get_parameter (GtkHTMLEmbedded *ge, char *param);
| ge : | the GtkHTMLEmbedded widget. |
| param : | the parameter to examine. |
| Returns : | the value of the parameter. |
void gtk_html_embedded_set_descent (GtkHTMLEmbedded *ge, int descent);
Set the descent of the widget beneath the baseline.
| ge : | the GtkHTMLEmbedded widget. |
| descent : | the value of the new descent. |
| <<< GtkHTML widget | GtkHTML stream >>> |