Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/hulahop.defs
blob: 811b6c5c6310177102f5b7e63bfbd69c9af3eb48 (plain)
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
(define-object WebView
  (in-module "Hulahop")
  (parent "GtkBin")
  (c-name "HulahopWebView")
  (gtype-id "HULAHOP_TYPE_WEB_VIEW")
)

(define-method get_browser
  (of-object "HulahopWebView")
  (c-name "hulahop_web_view_get_browser")
  (return-type "none")
)

(define-method get_window_root
  (of-object "HulahopWebView")
  (c-name "hulahop_web_view_get_window_root")
  (return-type "none")
)

(define-function startup
  (c-name "hulahop_startup")
  (return-type "gboolean")
)

(define-function shutdown
  (c-name "hulahop_shutdown")
  (return-type "none")
)

(define-function set_profile_path
  (c-name "hulahop_set_profile_path")
  (parameters
    '("gchar*" "path")
  )
  (return-type "none")
)

(define-function add_components_path
  (c-name "hulahop_add_components_path")
  (parameters
    '("gchar*" "path")
  )
  (return-type "none")
)