2001-12-20 Bradford Hovinen <hovinen@ximian.com> * capplets/Makefile.am (always_built_SUBDIRS): Add common, background, keyboard, mouse back in * configure.in (PKG_CHECK_MODULES): Remove lines pertaining to the archiver, add line for gnome settings daemon * background-properties-capplet.c (dialog_button_clicked_cb): Remove call to apply_settings (apply_settings): Remove (main): Remove apply_only support * default-application-properties.c (main): Call gtk_main, not capplet_gtk_main * interface.c: Don't #include capplet-widget.h * main.c: Don't #include capplet-widget.h or the archiver stuff (main): Call gtk_main rather than capplet_gtk_main Remove archiver stuff (setup_capplet_widget): Don't connect to state_changed_cb (state_changed_cb): Remove (main): Don't pass cap_options * gnome-settings-daemon/Makefile.am (gnome_settings_daemon_SOURCES): Add gnome-settings-{keyboard|background}.[ch] (INCLUDES): Add -I$(top_srcdir)/libbackground (gnome_settings_daemon_LDADD): Add $(top_builddir)/libbackground/libbackground.a * gnome-settings-daemon.c (main): Initialize keyboard and background subsystems * Added gnome-settings-{keyboard|background}.[ch], gnome-settings-daemon/ChangeLog
33 lines
1.1 KiB
C
33 lines
1.1 KiB
C
/* -*- mode: c; style: linux -*- */
|
|
|
|
/* gnome-settings-background.h
|
|
*
|
|
* Copyright © 2001 Ximian, Inc.
|
|
*
|
|
* Written by Bradford Hovinen <hovinen@ximian.com>
|
|
*
|
|
* This program 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, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program 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 __GNOME_SETTINGS_BACKGROUND_H
|
|
#define __GNOME_SETTINGS_BACKGROUND_H
|
|
|
|
#include <gconf/gconf.h>
|
|
|
|
void gnome_settings_background_init (GConfEngine *engine);
|
|
void gnome_settings_background_load (GConfEngine *engine);
|
|
|
|
#endif
|