Stub volume control code
This commit is contained in:
@@ -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")
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
|
||||
@@ -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 <pygtk/pygtk.h>
|
||||
#include <glib.h>
|
||||
|
||||
+14
-12
@@ -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 \
|
||||
|
||||
@@ -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)
|
||||
{
|
||||
}
|
||||
@@ -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 <glib-object.h>
|
||||
|
||||
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__ */
|
||||
Reference in New Issue
Block a user