1 /*
2  *  Copyright (C) 2005 Hiroyuki Ikezoe
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 2, or (at your option)
7  *  any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with this program; if not, write to the Free Software
16  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17  */
18 
19 #ifndef __G_SYNAPTICS_CONF_H__
20 #define __G_SYNAPTICS_CONF_H__
21 
22 #include <glib.h>
23 
24 G_BEGIN_DECLS
25 
26 #define DIRNAME		 	"/desktop/gnome/peripherals/touchpad"
27 #define SENSITIVITY_KEY 	"/desktop/gnome/peripherals/touchpad/sensitivity"
28 #define OFF_KEY 		"/desktop/gnome/peripherals/touchpad/off"
29 #define MAXTAPTIME_KEY 		"/desktop/gnome/peripherals/touchpad/max_tap_time"
30 #define HORIZSCROLLDELTA_KEY 	"/desktop/gnome/peripherals/touchpad/horiz_scroll_delta"
31 #define VERTSCROLLDELTA_KEY 	"/desktop/gnome/peripherals/touchpad/vert_scroll_delta"
32 #define EDGEMOTIONUSEALWAYS_KEY "/desktop/gnome/peripherals/touchpad/edge_motion_use_always"
33 #define COASTENABLE_KEY 	"/desktop/gnome/peripherals/touchpad/coast_enable"
34 #define CIRCULARSCROLLING_KEY 	"/desktop/gnome/peripherals/touchpad/circular_scrolling"
35 #define CIRCSCROLLDELTA_KEY 	"/desktop/gnome/peripherals/touchpad/circ_scroll_delta"
36 #define CIRCSCROLLTRIGGER_KEY 	"/desktop/gnome/peripherals/touchpad/circ_scroll_trigger"
37 #define FASTTAPS_KEY		"/desktop/gnome/peripherals/touchpad/fast_taps"
38 #define BUTTONFORTAP_KEY 	"/desktop/gnome/peripherals/touchpad/button_for_tap"
39 #define ABSCOORDX_KEY 		"/desktop/gnome/peripherals/touchpad/abs_coord_x"
40 #define ABSCOORDY_KEY 		"/desktop/gnome/peripherals/touchpad/abs_coord_y"
41 
42 #define MINSPEED_KEY 		"/desktop/gnome/peripherals/touchpad/min_speed"
43 #define MAXSPEED_KEY 		"/desktop/gnome/peripherals/touchpad/max_speed"
44 #define ACCELFACTOR_KEY 	"/desktop/gnome/peripherals/touchpad/accel_factor"
45 
46 
47 G_END_DECLS
48 
49 #endif /* __G_SYNAPTICS_CONF_H__ */
50