Switch sugarext to be an introspectable library
This makes sugarext accessible through introspection. It is used from the shell (key grabber, sound volume management) and the shell session management. Making the sugarext introspectable was done following the descriptions at: http://live.gnome.org/GObjectIntrospection#Using_GI Signed-off-by: Simon Schampijer <simon@schampijer.de>
This commit is contained in:
parent
820efa56b9
commit
10d7f7d3f9
2
.gitignore
vendored
2
.gitignore
vendored
@ -2,6 +2,8 @@
|
|||||||
*.lo
|
*.lo
|
||||||
*.pyc
|
*.pyc
|
||||||
*~
|
*~
|
||||||
|
*.gir
|
||||||
|
*.typelib
|
||||||
.deps
|
.deps
|
||||||
.libs
|
.libs
|
||||||
|
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
ACLOCAL_AMFLAGS = -I m4
|
ACLOCAL_AMFLAGS = -I m4
|
||||||
|
DISTCHECK_CONFIGURE_FLAGS = --enable-introspection
|
||||||
|
|
||||||
DISTCLEANFILES = \
|
DISTCLEANFILES = \
|
||||||
intltool-extract \
|
intltool-extract \
|
||||||
|
@ -35,6 +35,8 @@ AC_SUBST(GETTEXT_PACKAGE)
|
|||||||
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Gettext package])
|
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Gettext package])
|
||||||
AM_GLIB_GNU_GETTEXT
|
AM_GLIB_GNU_GETTEXT
|
||||||
|
|
||||||
|
GOBJECT_INTROSPECTION_CHECK([1.30.0])
|
||||||
|
|
||||||
AC_OUTPUT([
|
AC_OUTPUT([
|
||||||
Makefile
|
Makefile
|
||||||
src/Makefile
|
src/Makefile
|
||||||
|
@ -9,68 +9,51 @@ sugar_PYTHON = \
|
|||||||
util.py \
|
util.py \
|
||||||
wm.py
|
wm.py
|
||||||
|
|
||||||
pkgpyexecdir = $(pythondir)/sugar3
|
lib_LTLIBRARIES = libsugarext.la
|
||||||
|
|
||||||
pkgpyexec_LTLIBRARIES = _sugarext.la
|
libsugarext_la_CFLAGS = \
|
||||||
|
|
||||||
_sugarext_la_CFLAGS = \
|
|
||||||
-DHAVE_ALSA \
|
-DHAVE_ALSA \
|
||||||
$(WARN_CFLAGS) \
|
|
||||||
$(EXT_CFLAGS) \
|
$(EXT_CFLAGS) \
|
||||||
$(PYTHON_INCLUDES)
|
$(WARN_CFLAGS)
|
||||||
|
|
||||||
_sugarext_la_LDFLAGS = -module -avoid-version
|
libsugarext_la_LDFLAGS = $(LDADD)
|
||||||
_sugarext_la_LIBADD = $(EXT_LIBS) -lSM -lICE
|
libsugarext_la_LIBADD = $(EXT_LIBS) -lSM -lICE -lasound
|
||||||
|
|
||||||
_sugarext_la_SOURCES = \
|
libsugarext_la_SOURCES = \
|
||||||
$(BUILT_SOURCES) \
|
$(BUILT_SOURCES) \
|
||||||
_sugarextmodule.c \
|
|
||||||
acme-volume.h \
|
|
||||||
acme-volume.c \
|
|
||||||
acme-volume-alsa.h \
|
|
||||||
acme-volume-alsa.c \
|
acme-volume-alsa.c \
|
||||||
gsm-app.h \
|
acme-volume-alsa.h \
|
||||||
gsm-app.c \
|
acme-volume.c \
|
||||||
gsm-client.h \
|
acme-volume.h \
|
||||||
gsm-client.c \
|
|
||||||
gsm-client-xsmp.h \
|
|
||||||
gsm-client-xsmp.c \
|
|
||||||
gsm-xsmp.h \
|
|
||||||
gsm-xsmp.c \
|
|
||||||
gsm-session.h \
|
|
||||||
gsm-session.c \
|
|
||||||
eggaccelerators.c \
|
eggaccelerators.c \
|
||||||
eggaccelerators.h \
|
eggaccelerators.h \
|
||||||
eggdesktopfile.h \
|
|
||||||
eggdesktopfile.c \
|
eggdesktopfile.c \
|
||||||
eggsmclient.h \
|
eggdesktopfile.h \
|
||||||
eggsmclient.c \
|
eggsmclient.c \
|
||||||
|
eggsmclient.h \
|
||||||
eggsmclient-private.h \
|
eggsmclient-private.h \
|
||||||
eggsmclient-xsmp.c \
|
eggsmclient-xsmp.c \
|
||||||
|
gsm-app.c \
|
||||||
|
gsm-app.h \
|
||||||
|
gsm-client.c \
|
||||||
|
gsm-client.h \
|
||||||
|
gsm-client-xsmp.c \
|
||||||
|
gsm-client-xsmp.h \
|
||||||
|
gsm-session.c \
|
||||||
|
gsm-session.h \
|
||||||
|
gsm-xsmp.c \
|
||||||
|
gsm-xsmp.h \
|
||||||
sugar-grid.c \
|
sugar-grid.c \
|
||||||
sugar-grid.h \
|
sugar-grid.h \
|
||||||
sugar-key-grabber.c \
|
sugar-key-grabber.c \
|
||||||
sugar-key-grabber.h \
|
sugar-key-grabber.h \
|
||||||
sugar-menu.h \
|
sugar-menu.c \
|
||||||
sugar-menu.c
|
sugar-menu.h
|
||||||
|
|
||||||
BUILT_SOURCES = \
|
BUILT_SOURCES = \
|
||||||
_sugarext.c \
|
|
||||||
sugar-marshal.c \
|
sugar-marshal.c \
|
||||||
sugar-marshal.h
|
sugar-marshal.h
|
||||||
|
|
||||||
_sugarext.c: _sugarext.defs _sugarext.override
|
|
||||||
|
|
||||||
.defs.c:
|
|
||||||
(cd $(srcdir)\
|
|
||||||
&& $(PYGTK_CODEGEN) \
|
|
||||||
--register $(PYGTK_DEFSDIR)/gdk-types.defs \
|
|
||||||
--register $(PYGTK_DEFSDIR)/gtk-types.defs \
|
|
||||||
--override $*.override \
|
|
||||||
--prefix py$* $*.defs) > gen-$*.c \
|
|
||||||
&& cp gen-$*.c $*.c \
|
|
||||||
&& rm -f gen-$*.c
|
|
||||||
|
|
||||||
sugar-marshal.c: sugar-marshal.list
|
sugar-marshal.c: sugar-marshal.list
|
||||||
$(GLIB_GENMARSHAL) --prefix=sugar_marshal \
|
$(GLIB_GENMARSHAL) --prefix=sugar_marshal \
|
||||||
$(srcdir)/sugar-marshal.list --header --body > sugar-marshal.c
|
$(srcdir)/sugar-marshal.list --header --body > sugar-marshal.c
|
||||||
@ -80,4 +63,36 @@ sugar-marshal.h: sugar-marshal.list
|
|||||||
$(srcdir)/sugar-marshal.list --header > sugar-marshal.h
|
$(srcdir)/sugar-marshal.list --header > sugar-marshal.h
|
||||||
|
|
||||||
CLEANFILES = $(BUILT_SOURCES)
|
CLEANFILES = $(BUILT_SOURCES)
|
||||||
EXTRA_DIST = sugar-marshal.list _sugarext.defs _sugarext.override
|
EXTRA_DIST = sugar-marshal.list
|
||||||
|
|
||||||
|
-include $(INTROSPECTION_MAKEFILE)
|
||||||
|
INTROSPECTION_GIRS = SugarExt-1.0.gir
|
||||||
|
INTROSPECTION_SCANNER_ARGS = --identifier-prefix=Sugar --symbol-prefix=sugar \
|
||||||
|
--identifier-prefix=EggSM --symbol-prefix=egg_sm \
|
||||||
|
--identifier-prefix=Gsm --symbol-prefix=gsm \
|
||||||
|
--identifier-prefix=Acme --symbol-prefix=acme
|
||||||
|
SugarExt_1_0_gir_LIBS = libsugarext.la
|
||||||
|
SugarExt_1_0_gir_FILES = \
|
||||||
|
acme-volume.c \
|
||||||
|
acme-volume.h \
|
||||||
|
acme-volume-alsa.c \
|
||||||
|
acme-volume-alsa.h \
|
||||||
|
eggsmclient.c \
|
||||||
|
eggsmclient.h \
|
||||||
|
gsm-session.c \
|
||||||
|
gsm-session.h \
|
||||||
|
gsm-xsmp.c \
|
||||||
|
gsm-xsmp.h \
|
||||||
|
sugar-key-grabber.c \
|
||||||
|
sugar-key-grabber.h
|
||||||
|
SugarExt_1_0_gir_INCLUDES = Gtk-3.0 Gdk-3.0
|
||||||
|
SugarExt_1_0_gir_PACKAGES = gtk+-3.0 gdk-3.0
|
||||||
|
SugarExt_1_0_gir_EXPORT_PACKAGES = SugarExt-1.0
|
||||||
|
|
||||||
|
girdir = $(datadir)/gir-1.0
|
||||||
|
gir_DATA = SugarExt-1.0.gir
|
||||||
|
|
||||||
|
typelibdir = $(libdir)/girepository-1.0
|
||||||
|
typelib_DATA = SugarExt-1.0.typelib
|
||||||
|
|
||||||
|
CLEANFILES += $(gir_DATA) $(typelib_DATA)
|
||||||
|
@ -1,339 +0,0 @@
|
|||||||
;; -*- scheme -*-
|
|
||||||
; object definitions
|
|
||||||
|
|
||||||
(define-object KeyGrabber
|
|
||||||
(in-module "Sugar")
|
|
||||||
(parent "GObject")
|
|
||||||
(c-name "SugarKeyGrabber")
|
|
||||||
(gtype-id "SUGAR_TYPE_KEY_GRABBER")
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-object Menu
|
|
||||||
(in-module "Sugar")
|
|
||||||
(parent "GtkMenu")
|
|
||||||
(c-name "SugarMenu")
|
|
||||||
(gtype-id "SUGAR_TYPE_MENU")
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-object Grid
|
|
||||||
(in-module "Sugar")
|
|
||||||
(parent "GObject")
|
|
||||||
(c-name "SugarGrid")
|
|
||||||
(gtype-id "SUGAR_TYPE_GRID")
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-object SMClientXSMP
|
|
||||||
(in-module "Egg")
|
|
||||||
(parent "EggSMClient")
|
|
||||||
(c-name "EggSMClientXSMP")
|
|
||||||
(gtype-id "EGG_TYPE_SM_CLIENT_XSMP")
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-object SMClient
|
|
||||||
(in-module "Egg")
|
|
||||||
(parent "GObject")
|
|
||||||
(c-name "EggSMClient")
|
|
||||||
(gtype-id "EGG_TYPE_SM_CLIENT")
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-object Session
|
|
||||||
(in-module "Gsm")
|
|
||||||
(parent "GObject")
|
|
||||||
(c-name "GsmSession")
|
|
||||||
(gtype-id "GSM_TYPE_SESSION")
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-object Volume
|
|
||||||
(in-module "Acme")
|
|
||||||
(parent "GObject")
|
|
||||||
(c-name "AcmeVolume")
|
|
||||||
(gtype-id "ACME_TYPE_VOLUME")
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-object VolumeAlsa
|
|
||||||
(in-module "Acme")
|
|
||||||
(parent "AcmeVolume")
|
|
||||||
(c-name "AcmeVolumeAlsa")
|
|
||||||
(gtype-id "ACME_TYPE_VOLUME_ALSA")
|
|
||||||
)
|
|
||||||
|
|
||||||
;; From sugar-menu.h
|
|
||||||
|
|
||||||
(define-method set_active
|
|
||||||
(of-object "SugarMenu")
|
|
||||||
(c-name "sugar_menu_set_active")
|
|
||||||
(return-type "none")
|
|
||||||
(parameters
|
|
||||||
'("gboolean" "active")
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-method embed
|
|
||||||
(of-object "SugarMenu")
|
|
||||||
(c-name "sugar_menu_embed")
|
|
||||||
(return-type "none")
|
|
||||||
(parameters
|
|
||||||
'("GtkContainer" "container")
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-method unembed
|
|
||||||
(of-object "SugarMenu")
|
|
||||||
(c-name "sugar_menu_unembed")
|
|
||||||
(return-type "none")
|
|
||||||
)
|
|
||||||
|
|
||||||
;; From sugar-grid.h
|
|
||||||
|
|
||||||
(define-method setup
|
|
||||||
(of-object "SugarGrid")
|
|
||||||
(c-name "sugar_grid_setup")
|
|
||||||
(return-type "none")
|
|
||||||
(parameters
|
|
||||||
'("gint" "width")
|
|
||||||
'("gint" "height")
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-method add_weight
|
|
||||||
(of-object "SugarGrid")
|
|
||||||
(c-name "sugar_grid_add_weight")
|
|
||||||
(return-type "none")
|
|
||||||
(parameters
|
|
||||||
'("GdkRectangle*" "rect")
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-method remove_weight
|
|
||||||
(of-object "SugarGrid")
|
|
||||||
(c-name "sugar_grid_remove_weight")
|
|
||||||
(return-type "none")
|
|
||||||
(parameters
|
|
||||||
'("GdkRectangle*" "rect")
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-method compute_weight
|
|
||||||
(of-object "SugarGrid")
|
|
||||||
(c-name "sugar_grid_compute_weight")
|
|
||||||
(return-type "guint")
|
|
||||||
(parameters
|
|
||||||
'("GdkRectangle*" "rect")
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
;; From sugar-key-grabber.h
|
|
||||||
|
|
||||||
(define-function sugar_key_grabber_get_type
|
|
||||||
(c-name "sugar_key_grabber_get_type")
|
|
||||||
(return-type "GType")
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-method grab_keys
|
|
||||||
(of-object "SugarKeyGrabber")
|
|
||||||
(c-name "sugar_key_grabber_grab_keys")
|
|
||||||
(return-type "none")
|
|
||||||
(parameters
|
|
||||||
'("const-char*[]" "keys")
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-method get_key
|
|
||||||
(of-object "SugarKeyGrabber")
|
|
||||||
(c-name "sugar_key_grabber_get_key")
|
|
||||||
(return-type "char*")
|
|
||||||
(parameters
|
|
||||||
'("guint" "keycode")
|
|
||||||
'("guint" "state")
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-method is_modifier
|
|
||||||
(of-object "SugarKeyGrabber")
|
|
||||||
(c-name "sugar_key_grabber_is_modifier")
|
|
||||||
(return-type "gboolean")
|
|
||||||
(parameters
|
|
||||||
'("guint" "keycode")
|
|
||||||
'("guint" "mask" (default "-1"))
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
;; From eggsmclient.h
|
|
||||||
|
|
||||||
(define-function egg_sm_client_get_type
|
|
||||||
(c-name "egg_sm_client_get_type")
|
|
||||||
(return-type "GType")
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-function egg_sm_client_get_option_group
|
|
||||||
(c-name "egg_sm_client_get_option_group")
|
|
||||||
(return-type "GOptionGroup*")
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-method is_resumed
|
|
||||||
(of-object "EggSMClient")
|
|
||||||
(c-name "egg_sm_client_is_resumed")
|
|
||||||
(return-type "gboolean")
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-method get_state_file
|
|
||||||
(of-object "EggSMClient")
|
|
||||||
(c-name "egg_sm_client_get_state_file")
|
|
||||||
(return-type "GKeyFile*")
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-method set_restart_command
|
|
||||||
(of-object "EggSMClient")
|
|
||||||
(c-name "egg_sm_client_set_restart_command")
|
|
||||||
(return-type "none")
|
|
||||||
(parameters
|
|
||||||
'("int" "argc")
|
|
||||||
'("const-char**" "argv")
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-method startup
|
|
||||||
(of-object "EggSMClient")
|
|
||||||
(c-name "egg_sm_client_startup")
|
|
||||||
(return-type "none")
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-method will_quit
|
|
||||||
(of-object "EggSMClient")
|
|
||||||
(c-name "egg_sm_client_will_quit")
|
|
||||||
(return-type "none")
|
|
||||||
(parameters
|
|
||||||
'("gboolean" "will_quit")
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-function egg_sm_client_end_session
|
|
||||||
(c-name "egg_sm_client_end_session")
|
|
||||||
(return-type "gboolean")
|
|
||||||
(parameters
|
|
||||||
'("EggSMClientEndStyle" "style")
|
|
||||||
'("gboolean" "request_confirmation")
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
;; From xsmp.h
|
|
||||||
|
|
||||||
(define-function xsmp_init
|
|
||||||
(c-name "gsm_xsmp_init")
|
|
||||||
(return-type "char*")
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-function xsmp_run
|
|
||||||
(c-name "gsm_xsmp_run")
|
|
||||||
(return-type "none")
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-function xsmp_shutdown
|
|
||||||
(c-name "gsm_xsmp_shutdown")
|
|
||||||
(return-type "none")
|
|
||||||
)
|
|
||||||
|
|
||||||
;; From session.h
|
|
||||||
|
|
||||||
(define-method set_name
|
|
||||||
(of-object "GsmSession")
|
|
||||||
(c-name "gsm_session_set_name")
|
|
||||||
(return-type "none")
|
|
||||||
(parameters
|
|
||||||
'("const-char*" "name")
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-method start
|
|
||||||
(of-object "GsmSession")
|
|
||||||
(c-name "gsm_session_start")
|
|
||||||
(return-type "none")
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-method get_phase
|
|
||||||
(of-object "GsmSession")
|
|
||||||
(c-name "gsm_session_get_phase")
|
|
||||||
(return-type "GsmSessionPhase")
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-method initiate_shutdown
|
|
||||||
(of-object "GsmSession")
|
|
||||||
(c-name "gsm_session_initiate_shutdown")
|
|
||||||
(return-type "none")
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-method cancel_shutdown
|
|
||||||
(of-object "GsmSession")
|
|
||||||
(c-name "gsm_session_cancel_shutdown")
|
|
||||||
(return-type "none")
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-method register_client
|
|
||||||
(of-object "GsmSession")
|
|
||||||
(c-name "gsm_session_register_client")
|
|
||||||
(return-type "char*")
|
|
||||||
(parameters
|
|
||||||
'("GsmClient*" "client")
|
|
||||||
'("const-char*" "previous_id")
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-function session_create_global
|
|
||||||
(c-name "gsm_session_create_global")
|
|
||||||
(return-type "GsmSession*")
|
|
||||||
)
|
|
||||||
|
|
||||||
;; From acme-volume.h
|
|
||||||
|
|
||||||
(define-function acme_volume_get_type
|
|
||||||
(c-name "acme_volume_get_type")
|
|
||||||
(return-type "GType")
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-method get_volume
|
|
||||||
(of-object "AcmeVolume")
|
|
||||||
(c-name "acme_volume_get_volume")
|
|
||||||
(return-type "int")
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-method set_volume
|
|
||||||
(of-object "AcmeVolume")
|
|
||||||
(c-name "acme_volume_set_volume")
|
|
||||||
(return-type "none")
|
|
||||||
(parameters
|
|
||||||
'("int" "val")
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-method get_mute
|
|
||||||
(of-object "AcmeVolume")
|
|
||||||
(c-name "acme_volume_get_mute")
|
|
||||||
(return-type "gboolean")
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-method set_mute
|
|
||||||
(of-object "AcmeVolume")
|
|
||||||
(c-name "acme_volume_set_mute")
|
|
||||||
(return-type "none")
|
|
||||||
(parameters
|
|
||||||
'("gboolean" "val")
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-method mute_toggle
|
|
||||||
(of-object "AcmeVolume")
|
|
||||||
(c-name "acme_volume_mute_toggle")
|
|
||||||
(return-type "none")
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-method get_threshold
|
|
||||||
(of-object "AcmeVolume")
|
|
||||||
(c-name "acme_volume_get_threshold")
|
|
||||||
(return-type "int")
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-function acme_volume_new
|
|
||||||
(c-name "acme_volume_new")
|
|
||||||
(is-constructor-of "AcmeVolume")
|
|
||||||
(return-type "AcmeVolume*")
|
|
||||||
)
|
|
@ -1,79 +0,0 @@
|
|||||||
/* -*- Mode: C; c-basic-offset: 4 -*- */
|
|
||||||
%%
|
|
||||||
headers
|
|
||||||
#include <Python.h>
|
|
||||||
|
|
||||||
#include "pygobject.h"
|
|
||||||
#include "sugar-grid.h"
|
|
||||||
#include "sugar-key-grabber.h"
|
|
||||||
#include "sugar-menu.h"
|
|
||||||
#include "gsm-session.h"
|
|
||||||
#include "gsm-xsmp.h"
|
|
||||||
#include "acme-volume-alsa.h"
|
|
||||||
|
|
||||||
#include "eggsmclient.h"
|
|
||||||
#include "eggsmclient-private.h"
|
|
||||||
|
|
||||||
#include <pygtk/pygtk.h>
|
|
||||||
#include <glib.h>
|
|
||||||
|
|
||||||
%%
|
|
||||||
modulename sugar._sugarext
|
|
||||||
%%
|
|
||||||
import gobject.GObject as PyGObject_Type
|
|
||||||
import gtk.Widget as PyGtkWidget_Type
|
|
||||||
import gtk.Entry as PyGtkEntry_Type
|
|
||||||
import gtk.Menu as PyGtkMenu_Type
|
|
||||||
import gtk.Container as PyGtkContainer_Type
|
|
||||||
import gtk.gdk.Window as PyGdkWindow_Type
|
|
||||||
import gtk.Image as PyGtkImage_Type
|
|
||||||
%%
|
|
||||||
ignore-glob
|
|
||||||
*_get_type
|
|
||||||
_*
|
|
||||||
%%
|
|
||||||
override sugar_key_grabber_grab_keys kwargs
|
|
||||||
static PyObject *
|
|
||||||
_wrap_sugar_key_grabber_grab_keys(PyGObject *self, PyObject *args, PyObject *kwargs)
|
|
||||||
{
|
|
||||||
static char *kwlist[] = { "key", NULL };
|
|
||||||
PyObject *py_keys;
|
|
||||||
char **keys;
|
|
||||||
int i, len;
|
|
||||||
|
|
||||||
if (!PyArg_ParseTupleAndKeywords(args,kwargs,
|
|
||||||
"O:SugarKeyGrabber.grab_keys",
|
|
||||||
kwlist, &py_keys))
|
|
||||||
return NULL;
|
|
||||||
|
|
||||||
if (!PySequence_Check(py_keys) || (len = PySequence_Size(py_keys)) < 0) {
|
|
||||||
PyErr_SetString(PyExc_ValueError,
|
|
||||||
"keys should be a sequence of strings");
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
keys = g_new(char*, len + 1);
|
|
||||||
for (i = 0; i < len; i++) {
|
|
||||||
PyObject *item = PySequence_GetItem(py_keys, i);
|
|
||||||
if (!item) {
|
|
||||||
g_free(keys);
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
if (!PyString_Check(item)) {
|
|
||||||
PyErr_SetString(PyExc_TypeError, "key must be a string");
|
|
||||||
g_free(keys);
|
|
||||||
Py_DECREF(item);
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
keys[i] = PyString_AsString(item);
|
|
||||||
Py_DECREF(item);
|
|
||||||
}
|
|
||||||
keys[len] = NULL;
|
|
||||||
|
|
||||||
sugar_key_grabber_grab_keys (SUGAR_KEY_GRABBER(self->obj), (const char**) keys);
|
|
||||||
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
return Py_None;
|
|
||||||
}
|
|
||||||
|
|
||||||
%%
|
|
@ -1,48 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2006-2007, Red Hat, Inc.
|
|
||||||
*
|
|
||||||
* This library is free software; you can redistribute it and/or
|
|
||||||
* modify it under the terms of the GNU Lesser General Public
|
|
||||||
* License as published by the Free Software Foundation; either
|
|
||||||
* version 2 of the License, or (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This library is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
|
||||||
* License along with this library; if not, write to the
|
|
||||||
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
||||||
* Boston, MA 02111-1307, USA.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifdef HAVE_CONFIG_H
|
|
||||||
#include "config.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* include this first, before NO_IMPORT_PYGOBJECT is defined */
|
|
||||||
#include <pygobject.h>
|
|
||||||
#include <pygtk/pygtk.h>
|
|
||||||
|
|
||||||
extern PyMethodDef py_sugarext_functions[];
|
|
||||||
|
|
||||||
void py_sugarext_register_classes (PyObject *d);
|
|
||||||
|
|
||||||
DL_EXPORT(void)
|
|
||||||
init_sugarext(void)
|
|
||||||
{
|
|
||||||
PyObject *m, *d;
|
|
||||||
|
|
||||||
init_pygobject();
|
|
||||||
init_pygtk();
|
|
||||||
|
|
||||||
m = Py_InitModule("_sugarext", py_sugarext_functions);
|
|
||||||
d = PyModule_GetDict(m);
|
|
||||||
|
|
||||||
py_sugarext_register_classes(d);
|
|
||||||
|
|
||||||
if (PyErr_Occurred ()) {
|
|
||||||
Py_FatalError ("can't initialise module _sugarext");
|
|
||||||
}
|
|
||||||
}
|
|
@ -21,7 +21,7 @@
|
|||||||
#ifndef __EGG_ACCELERATORS_H__
|
#ifndef __EGG_ACCELERATORS_H__
|
||||||
#define __EGG_ACCELERATORS_H__
|
#define __EGG_ACCELERATORS_H__
|
||||||
|
|
||||||
#include <gtk/gtkaccelgroup.h>
|
#include <gtk/gtk.h>
|
||||||
#include <gdk/gdk.h>
|
#include <gdk/gdk.h>
|
||||||
|
|
||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
@ -20,7 +20,6 @@
|
|||||||
#ifndef __EGG_SM_CLIENT_PRIVATE_H__
|
#ifndef __EGG_SM_CLIENT_PRIVATE_H__
|
||||||
#define __EGG_SM_CLIENT_PRIVATE_H__
|
#define __EGG_SM_CLIENT_PRIVATE_H__
|
||||||
|
|
||||||
#include <gdkconfig.h>
|
|
||||||
#include "eggsmclient.h"
|
#include "eggsmclient.h"
|
||||||
|
|
||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
@ -501,6 +501,14 @@ client_disconnected (GsmClient *client, gpointer data)
|
|||||||
g_object_unref (client);
|
g_object_unref (client);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gsm_session_create_global
|
||||||
|
*
|
||||||
|
* Creates a new GSM_SESSION
|
||||||
|
*
|
||||||
|
* Returns: (transfer full): returns GSM_SESSION
|
||||||
|
**/
|
||||||
|
|
||||||
GsmSession *
|
GsmSession *
|
||||||
gsm_session_create_global (void)
|
gsm_session_create_global (void)
|
||||||
{
|
{
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
#define __SUGAR_KEY_GRABBER_H__
|
#define __SUGAR_KEY_GRABBER_H__
|
||||||
|
|
||||||
#include <glib-object.h>
|
#include <glib-object.h>
|
||||||
#include <gdk/gdkwindow.h>
|
#include <gdk/gdk.h>
|
||||||
|
|
||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
#ifndef __SUGAR_MENU_H__
|
#ifndef __SUGAR_MENU_H__
|
||||||
#define __SUGAR_MENU_H__
|
#define __SUGAR_MENU_H__
|
||||||
|
|
||||||
#include <gtk/gtkmenu.h>
|
#include <gtk/gtk.h>
|
||||||
|
|
||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user