00001 /** 00002 * @file scim_config_path.h 00003 * @brief This file defines some common used configuration keys. 00004 */ 00005 00006 /* 00007 * Smart Common Input Method 00008 * 00009 * Copyright (c) 2004 James Su <suzhe@turbolinux.com.cn> 00010 * Copyright (c) 2003 James Su <suzhe@turbolinux.com.cn> 00011 * Copyright (c) 2002 James Su <suzhe@turbolinux.com.cn> 00012 * 00013 * 00014 * This library is free software; you can redistribute it and/or 00015 * modify it under the terms of the GNU Lesser General Public 00016 * License as published by the Free Software Foundation; either 00017 * version 2 of the License, or (at your option) any later version. 00018 * 00019 * This library is distributed in the hope that it will be useful, 00020 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00021 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00022 * GNU Lesser General Public License for more details. 00023 * 00024 * You should have received a copy of the GNU Lesser General Public 00025 * License along with this program; if not, write to the 00026 * Free Software Foundation, Inc., 59 Temple Place, Suite 330, 00027 * Boston, MA 02111-1307 USA 00028 * 00029 * $Id: scim_config_path.h,v 1.16 2004/03/06 15:48:11 suzhe Exp $ 00030 */ 00031 00032 #ifndef __SCIM_CONFIG_PATH_H 00033 #define __SCIM_CONFIG_PATH_H 00034 00035 namespace scim { 00036 /** 00037 * @addtogroup Config 00038 * @{ 00039 */ 00040 #define SCIM_CONFIG_FRONTEND "/FrontEnd" 00041 #define SCIM_CONFIG_FRONTEND_KEYS "/FrontEnd/Keys" 00042 #define SCIM_CONFIG_FRONTEND_KEYS_TRIGGER "/FrontEnd/Keys/Trigger" 00043 #define SCIM_CONFIG_FRONTEND_KEYS_NEXT_SERVER "/FrontEnd/Keys/NextServer" 00044 #define SCIM_CONFIG_FRONTEND_KEYS_PREVIOUS_SERVER "/FrontEnd/Keys/PreviousServer" 00045 #define SCIM_CONFIG_FRONTEND_KEYS_VALID_KEY_MASK "/FrontEnd/Keys/ValidKeyMask" 00046 00047 #define SCIM_CONFIG_SUPPORTED_UNICODE_LOCALES "/SupportedUnicodeLocales" 00048 00049 #define SCIM_CONFIG_DEFAULT_SERVER_FACTORY "/DefaultServerFactory" 00050 00051 #define SCIM_CONFIG_DISABLED_SERVER_FACTORIES "/DisabledServerFactories" 00052 00053 /** @} */ 00054 00055 } // namespace scim 00056 00057 #endif //__SCIM_CONFIG_PATH_H 00058