Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/python/hulahop.defs
blob: 4f18c2d2740d7f04d943d6bc2a640c8f3d0a8eb2 (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
45
46
47
48
49
50
51
52
53
54
55
56
(define-object WebView
  (in-module "Hulahop")
  (parent "GtkBin")
  (c-name "HulahopWebView")
  (gtype-id "HULAHOP_TYPE_WEB_VIEW")
)

(define-method create_window
  (of-object "HulahopWebView")
  (c-name "hulahop_web_view_create_window")
  (return-type "none")
)

(define-method grab_focus
  (of-object "HulahopWebView")
  (c-name "hulahop_web_view_grab_focus")
  (return-type "none")
)

(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")
)