Tue Jan 8 15:50:59 2002 Jonathan Blandford <jrb@redhat.com> * Makefile.am: Add locate-pointer. * gnome-settings-keyboard.c: Initial attempt at locate-pointer. Don't understand XKB enough to figure it out. * gnome-settings-locate-pointer.[ch]: Draw the locate pointer box. Pretty snazzy for a useless (but fun) feature. * gnome-settings-mouse.c: Move locate pointer to it's own file. Tue Jan 8 15:49:15 2002 Jonathan Blandford <jrb@redhat.com> * .cvsignore: update * Makefile.am: Add gnome-keyboard-properties.c * gnome-keyboard-properties.c: New, much nicer capplet. * gnome-keyboard-properties.glade: glade file for above. * keyboard-bell.png: * keyboard-cursor.png: * keyboard-repeat.png: * keyboard-volume.png: Images for above. Note, keyboard-cursor.png is my pathetic attempt at artwork, and will prolly change in the future. Tue Jan 8 15:47:24 2002 Jonathan Blandford <jrb@redhat.com> * .cvsignore: New ignores. * gnome-mouse-properties.glade: Update of glade file for cursors * mouse-cursor-normal-large.png: New images * mouse-cursor-normal.png: * mouse-cursor-white-large.png: * mouse-cursor-white.png: * mouse-properties-capplet.c: (setup_dialog), (create_dialog), (main): Add support for new properties. Don't fully work yet, but we'll get it later. * mouse-properties.glade: not sure what changed -- need to remove this file.
25 lines
926 B
C
25 lines
926 B
C
/*
|
|
* Copyright © 2001 Jonathan Blandford <jrb@gnome.org>
|
|
*
|
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
|
* documentation for any purpose is hereby granted without fee, provided that
|
|
* the above copyright notice appear in all copies and that both that
|
|
* copyright notice and this permission notice appear in supporting
|
|
* documentation, and that the name of Red Hat not be used in advertising or
|
|
* publicity pertaining to distribution of the software without specific,
|
|
* written prior permission. Red Hat makes no representations about the
|
|
* suitability of this software for any purpose. It is provided "as is"
|
|
* without express or implied warranty.
|
|
*
|
|
* Authors: Jonathan Blandford
|
|
*/
|
|
|
|
#ifndef MOUSE_SETTINGS_H
|
|
#define MOUSE_SETTINGS_H
|
|
|
|
#include <gconf/gconf.h>
|
|
|
|
void gnome_settings_mouse_init (GConfClient *client);
|
|
void gnome_settings_mouse_load (GConfClient *client);
|
|
|
|
#endif
|