1a73597f9Smrg/* 2ebac4eb7Smrg * Copyright (c) 2012, Oracle and/or its affiliates. 3a73597f9Smrg * 4a73597f9Smrg * Permission is hereby granted, free of charge, to any person obtaining a 5a73597f9Smrg * copy of this software and associated documentation files (the "Software"), 6a73597f9Smrg * to deal in the Software without restriction, including without limitation 7a73597f9Smrg * the rights to use, copy, modify, merge, publish, distribute, sublicense, 8a73597f9Smrg * and/or sell copies of the Software, and to permit persons to whom the 9a73597f9Smrg * Software is furnished to do so, subject to the following conditions: 10a73597f9Smrg * 11a73597f9Smrg * The above copyright notice and this permission notice (including the next 12a73597f9Smrg * paragraph) shall be included in all copies or substantial portions of the 13a73597f9Smrg * Software. 14a73597f9Smrg * 15a73597f9Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16a73597f9Smrg * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17a73597f9Smrg * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 18a73597f9Smrg * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19a73597f9Smrg * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 20a73597f9Smrg * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 21a73597f9Smrg * DEALINGS IN THE SOFTWARE. 22a73597f9Smrg */ 23a73597f9Smrg 24a73597f9Smrg#ifndef _XF86_MOUSE_PROPERTIES_H_ 25a73597f9Smrg#define _XF86_MOUSE_PROPERTIES_H_ 26a73597f9Smrg 27a73597f9Smrg/* Middle mouse button emulation */ 28a73597f9Smrg/* BOOL */ 29a73597f9Smrg#define MOUSE_PROP_MIDBUTTON "Mouse Middle Button Emulation" 30a73597f9Smrg/* CARD32 */ 31a73597f9Smrg#define MOUSE_PROP_MIDBUTTON_TIMEOUT "Mouse Middle Button Timeout" 32a73597f9Smrg 33a73597f9Smrg#endif /* _XF86_MOUSE_PROPERTIES_H_ */ 34