/usr/share/guile-gnome-2/gnome/defs/gtkhtml2.defs is in guile-gnome2-dev 2.16.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 | ;; -*- scheme -*-
; object definitions ...
(define-object HtmlContext
(in-module "Gtk")
(parent "GObject")
(c-name "GtkHtmlContext")
(gtype-id "GTK_HTML_CONTEXT_TYPE")
)
(define-object View
(in-module "Html")
(parent "GtkLayout")
(c-name "HtmlView")
(gtype-id "HTML_TYPE_VIEW")
(fields
'("HtmlDocumen*" "document")
)
)
;; Enumerations and flags ...
;; From /usr/include/gtkhtml-2.0/libgtkhtml/gtkhtmlcontext.h
(define-function gtk_html_context_get_type
(c-name "gtk_html_context_get_type")
(return-type "GType")
)
(define-function gtk_html_context_get
(c-name "gtk_html_context_get")
(return-type "GtkHtmlContext*")
)
;; From /usr/include/gtkhtml-2.0/libgtkhtml/view/htmlselection.h
(define-function html_selection_end
(c-name "html_selection_end")
(return-type "none")
(parameters
'("HtmlView*" "view")
'("GdkEventButton*" "event")
)
)
(define-function html_selection_update
(c-name "html_selection_update")
(return-type "none")
(parameters
'("HtmlView*" "view")
'("GdkEventMotion*" "event")
)
)
(define-function html_selection_clear
(c-name "html_selection_clear")
(return-type "none")
(parameters
'("HtmlView*" "view")
)
)
(define-function html_selection_set
(c-name "html_selection_set")
(return-type "none")
(parameters
'("HtmlView*" "view")
'("DomNode*" "start")
'("int" "offset")
'("int" "len")
)
)
;; From /usr/include/gtkhtml-2.0/libgtkhtml/view/htmlview.h
(define-function html_view_get_type
(c-name "html_view_get_type")
(return-type "GType")
)
(define-function html_view_new
(is-constructor-of HtmlView)
(c-name "html_view_new")
)
(define-method set_document
(of-object "HtmlView")
(c-name "html_view_set_document")
(return-type "none")
(parameters
'("HtmlDocument*" "document")
)
)
(define-method jump_to_anchor
(of-object "HtmlView")
(c-name "html_view_jump_to_anchor")
(return-type "none")
(parameters
'("const-gchar*" "anchor")
)
)
(define-method get_magnification
(of-object "HtmlView")
(c-name "html_view_get_magnification")
(return-type "gdouble")
)
(define-method set_magnification
(of-object "HtmlView")
(c-name "html_view_set_magnification")
(return-type "none")
(parameters
'("gdouble" "magnification")
)
)
(define-method zoom_in
(of-object "HtmlView")
(c-name "html_view_zoom_in")
(return-type "none")
)
(define-method zoom_out
(of-object "HtmlView")
(c-name "html_view_zoom_out")
(return-type "none")
)
(define-method zoom_reset
(of-object "HtmlView")
(c-name "html_view_zoom_reset")
(return-type "none")
)
(define-method find_layout_box
(of-object "HtmlView")
(c-name "html_view_find_layout_box")
(return-type "HtmlBox*")
(parameters
'("DomNode*" "node")
'("gboolean" "find_parent")
)
)
;; -*- scheme -*-
; object definitions ...
(define-object Document
(in-module "Html")
(parent "GObject")
(c-name "HtmlDocument")
(gtype-id "HTML_TYPE_DOCUMENT")
)
;; Enumerations and flags ...
(define-enum DocumentState
(in-module "Html")
(c-name "HtmlDocumentState")
(values
'("done" "HTML_DOCUMENT_STATE_DONE")
'("parsing" "HTML_DOCUMENT_STATE_PARSING")
)
)
;; From /usr/include/gtkhtml-2.0/libgtkhtml/document/htmldocument.h
(define-function html_document_get_type
(c-name "html_document_get_type")
(return-type "GType")
)
(define-function html_document_new
(is-constructor-of HtmlDocument)
(c-name "html_document_new")
)
(define-method open_stream
(of-object "HtmlDocument")
(c-name "html_document_open_stream")
(return-type "gboolean")
(parameters
'("const-gchar*" "mime_type")
)
)
(define-method write_stream
(of-object "HtmlDocument")
(c-name "html_document_write_stream")
(return-type "none")
(parameters
'("const-gchar*" "buffer")
'("gint" "len")
)
)
(define-method close_stream
(of-object "HtmlDocument")
(c-name "html_document_close_stream")
(return-type "none")
)
(define-method clear
(of-object "HtmlDocument")
(c-name "html_document_clear")
(return-type "none")
)
(define-method update_hover_node
(of-object "HtmlDocument")
(c-name "html_document_update_hover_node")
(return-type "none")
(parameters
'("DomNode*" "node")
)
)
(define-method update_active_node
(of-object "HtmlDocument")
(c-name "html_document_update_active_node")
(return-type "none")
(parameters
'("DomNode*" "node")
)
)
(define-method update_focus_element
(of-object "HtmlDocument")
(c-name "html_document_update_focus_element")
(return-type "none")
(parameters
'("DomElement*" "element")
)
)
(define-method find_anchor
(of-object "HtmlDocument")
(c-name "html_document_find_anchor")
(return-type "DomNode*")
(parameters
'("const-gchar*" "anchor")
)
)
;; -*- scheme -*-
; object definitions ...
(define-object Stream
(in-module "Html")
(parent "GObject")
(c-name "HtmlStream")
(gtype-id "HTML_TYPE_STREAM")
)
;; Enumerations and flags ...
;; From /usr/include/gtkhtml-2.0/libgtkhtml/util/htmlstream.h
(define-function html_stream_get_type
(c-name "html_stream_get_type")
(return-type "GType")
)
(define-function html_stream_new
(c-name "html_stream_new")
(is-constructor-of HtmlStream)
(parameters
'("HtmlStreamWriteFunc" "write_func")
'("HtmlStreamCloseFunc" "close_func")
'("gpointer" "user_data")
)
)
(define-method write
(of-object "HtmlStream")
(c-name "html_stream_write")
(return-type "none")
(parameters
'("const-gchar*" "buffer")
'("guint" "size")
)
)
(define-method close
(of-object "HtmlStream")
(c-name "html_stream_close")
(return-type "none")
)
(define-method destroy
(of-object "HtmlStream")
(c-name "html_stream_destroy")
(return-type "none")
)
(define-method get_written
(of-object "HtmlStream")
(c-name "html_stream_get_written")
(return-type "gint")
)
(define-method cancel
(of-object "HtmlStream")
(c-name "html_stream_cancel")
(return-type "none")
)
(define-method set_cancel_func
(of-object "HtmlStream")
(c-name "html_stream_set_cancel_func")
(return-type "none")
(parameters
'("HtmlStreamCancelFunc" "abort_func")
'("gpointer" "cancel_data")
)
)
(define-method get_mime_type
(of-object "HtmlStream")
(c-name "html_stream_get_mime_type")
(return-type "const-char*")
)
(define-method set_mime_type
(of-object "HtmlStream")
(c-name "html_stream_set_mime_type")
(return-type "none")
(parameters
'("const-char*" "mime_type")
)
)
|