00001 /* 00002 * PROPRIETARY INFORMATION. This software is proprietary to 00003 * Side Effects Software Inc., and is not to be reproduced, 00004 * transmitted, or disclosed in any way without written permission. 00005 * 00006 * Produced by: 00007 * Jeff Lait 00008 * Side Effects Software Inc 00009 * 477 Richmond Street West 00010 * Toronto, Ontario 00011 * Canada M5V 3E7 00012 * 416-504-9876 00013 * 00014 * NAME: UT_X11Tablet.h ( UT Library, C++) 00015 * 00016 * COMMENTS: This has the x11 specific interface to tablets such 00017 * as the Wacom Tablet. 00018 * Unlike Windows, we have no truly x specific stuff here as 00019 * that would cause havoc with linking. 00020 */ 00021 00022 #ifndef __UT_X11Tablet__ 00023 #define __UT_X11Tablet__ 00024 00025 #include "UT_API.h" 00026 // Toggles whether there is a tablet installed. 00027 UT_API void X11tabletSetInstalled(bool installed); 00028 // Overwrites the current state with the given one. 00029 UT_API void X11tabletSetTabletState(const UT_TabletState &state); 00030 00031 #endif
1.5.9