From dda100fca6bd68ba01a43134f6e3a422bda77908 Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Fri, 05 Jan 2007 01:19:52 +0000 Subject: Stub volume control code --- (limited to 'lib') diff --git a/lib/python/_sugar.defs b/lib/python/_sugar.defs index bf40d1c..bead7b4 100644 --- a/lib/python/_sugar.defs +++ b/lib/python/_sugar.defs @@ -49,6 +49,14 @@ (gtype-id "SUGAR_TYPE_DOWNLOAD") ) +(define-object AudioManager + (in-module "Sugar") + (parent "GObject") + (c-name "SugarAudioManager") + (gtype-id "SUGAR_TYPE_AUDIO_MANAGER") +) + + ;; Enumerations and flags ... @@ -239,3 +247,23 @@ '("GdkPixbuf*" "pixbuf") ) ) +;; Enumerations and flags ... + + +;; From sugar-audio-manager.h + +(define-function audio_manager_get_type + (c-name "sugar_audio_manager_get_type") + (return-type "GType") +) + +(define-method set_volume + (of-object "SugarAudioManager") + (c-name "sugar_audio_manager_set_volume") + (return-type "none") + (parameters + '("int" "level") + ) +) + + diff --git a/lib/python/_sugar.override b/lib/python/_sugar.override index ae106da..6e0fe72 100644 --- a/lib/python/_sugar.override +++ b/lib/python/_sugar.override @@ -11,6 +11,7 @@ headers #include "sugar-push-scroller.h" #include "sugar-download-manager.h" #include "sugar-download.h" +#include "sugar-audio-manager.h" #include #include diff --git a/lib/src/Makefile.am b/lib/src/Makefile.am index 3b51f1c..ce4ec78 100644 --- a/lib/src/Makefile.am +++ b/lib/src/Makefile.am @@ -11,24 +11,26 @@ noinst_LTLIBRARIES = libsugarprivate.la libsugarprivate_la_LIBADD = $(GECKO_LIBS) -libsugarprivate_la_SOURCES = \ - $(BUILT_SOURCES) \ - eggaccelerators.h \ - eggaccelerators.c \ +libsugarprivate_la_SOURCES = \ + $(BUILT_SOURCES) \ + eggaccelerators.h \ + eggaccelerators.c \ GeckoContentHandler.h \ GeckoContentHandler.cpp \ - GeckoDownload.h \ - GeckoDownload.cpp \ + GeckoDownload.h \ + GeckoDownload.cpp \ sugar-address-entry.h \ sugar-address-entry.c \ - sugar-browser.h \ - sugar-browser.cpp \ - sugar-download.h \ - sugar-download.c \ + sugar-audio-manager.c \ + sugar-audio-manager.h \ + sugar-browser.h \ + sugar-browser.cpp \ + sugar-download.h \ + sugar-download.c \ sugar-download-manager.h \ sugar-download-manager.c \ - sugar-key-grabber.h \ - sugar-key-grabber.c \ + sugar-key-grabber.h \ + sugar-key-grabber.c \ sugar-push-scroller.c \ sugar-push-scroller.h \ sugar-tray-manager.c \ diff --git a/lib/src/sugar-audio-manager.c b/lib/src/sugar-audio-manager.c new file mode 100644 index 0000000..6444f11 --- /dev/null +++ b/lib/src/sugar-audio-manager.c @@ -0,0 +1,38 @@ +/* + * Copyright (C) 2006 Red Hat, Inc + * + * Sugar is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * Sugar 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 + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. + */ + +#include "sugar-audio-manager.h" + +G_DEFINE_TYPE(SugarAudioManager, sugar_audio_manager, G_TYPE_OBJECT) + +static void +sugar_audio_manager_class_init(SugarAudioManagerClass *grabber_class) +{ + GObjectClass *g_object_class = G_OBJECT_CLASS (grabber_class); +} + +static void +sugar_audio_manager_init(SugarAudioManager *grabber) +{ +} + +void +sugar_audio_manager_set_volume (SugarAudioManager *manager, + int level) +{ +} diff --git a/lib/src/sugar-audio-manager.h b/lib/src/sugar-audio-manager.h new file mode 100644 index 0000000..3df8cef --- /dev/null +++ b/lib/src/sugar-audio-manager.h @@ -0,0 +1,51 @@ +/* + * Copyright (C) 2006 Red Hat, Inc + * + * Sugar is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * Sugar 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 + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef __SUGAR_AUDIO_MANAGER_H__ +#define __SUGAR_AUDIO_MANAGER_H__ + +#include + +G_BEGIN_DECLS + +typedef struct _SugarAudioManager SugarAudioManager; +typedef struct _SugarAudioManagerClass SugarAudioManagerClass; +typedef struct _SugarAudioManagerPrivate SugarAudioManagerPrivate; + +#define SUGAR_TYPE_AUDIO_MANAGER (sugar_audio_manager_get_type()) +#define SUGAR_AUDIO_MANAGER(object) (G_TYPE_CHECK_INSTANCE_CAST((object), SUGAR_TYPE_AUDIO_MANAGER, SugarAudioManager)) +#define SUGAR_AUDIO_MANAGER_CLASS(klass) (G_TYPE_CHACK_CLASS_CAST((klass), SUGAR_TYPE_AUDIO_MANAGER, SugarAudioManagerClass)) +#define SUGAR_IS_AUDIO_MANAGER(object) (G_TYPE_CHECK_INSTANCE_TYPE((object), SUGAR_TYPE_AUDIO_MANAGER)) +#define SUGAR_IS_AUDIO_MANAGER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), SUGAR_TYPE_AUDIO_MANAGER)) +#define SUGAR_AUDIO_MANAGER_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS((object), SUGAR_TYPE_AUDIO_MANAGER, SugarAudioManagerClass)) + +struct _SugarAudioManager { + GObject base_instance; +}; + +struct _SugarAudioManagerClass { + GObjectClass base_class; +}; + +GType sugar_audio_manager_get_type (void); +void sugar_audio_manager_set_volume (SugarAudioManager *manager, + int level); + +G_END_DECLS + +#endif /* __SUGAR_AUDIO_MANAGER_H__ */ -- cgit v0.9.1