Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/lib/python/_sugar.defs
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2006-10-17 19:53:29 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2006-10-17 19:53:29 (GMT)
commit79c4bde2b473956bebe53c56c8d27d9dc70b5bce (patch)
treea01439c6bda59ec1a578237aab1a5c5356253533 /lib/python/_sugar.defs
parentf7a04ed3d3df5f82b6b3f69ba93a209dc3bfd2e1 (diff)
Some infrastructure for scrolling. Based on epiphany extension.
Diffstat (limited to 'lib/python/_sugar.defs')
-rw-r--r--lib/python/_sugar.defs32
1 files changed, 32 insertions, 0 deletions
diff --git a/lib/python/_sugar.defs b/lib/python/_sugar.defs
index 2829f2a..570d68b 100644
--- a/lib/python/_sugar.defs
+++ b/lib/python/_sugar.defs
@@ -28,6 +28,13 @@
(gtype-id "SUGAR_TYPE_TRAY_MANAGER")
)
+(define-object PushScroller
+ (in-module "Sugar")
+ (parent "GObject")
+ (c-name "SugarPushScroller")
+ (gtype-id "SUGAR_TYPE_PUSH_SCROLLER")
+)
+
;; Enumerations and flags ...
@@ -130,4 +137,29 @@
(return-type "GtkOrientation")
)
+;; From sugar-push-scroller.h
+
+(define-function push_scroller_get_type
+ (c-name "sugar_push_scroller_get_type")
+ (return-type "GType")
+)
+
+(define-method start
+ (of-object "SugarPushScroller")
+ (c-name "sugar_push_scroller_start")
+ (return-type "none")
+ (parameters
+ '("SugarBrowser*" "browser")
+ '("int" "x")
+ '("int" "y")
+ )
+)
+(define-method stop
+ (of-object "SugarPushScroller")
+ (c-name "sugar_push_scroller_stop")
+ (return-type "none")
+ (parameters
+ '("guint32" "timestamp")
+ )
+)