00001 /* 00002 * gui - [gega user interface] the flexible solution for user interface problems 00003 * Copyright (C) 2002 Gergely Gati 00004 * 00005 * This program is free software; you can redistribute it and/or modify 00006 * it under the terms of the GNU General Public License as published by 00007 * the Free Software Foundation; version 2 of the License. 00008 * 00009 * This program is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00012 * GNU General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU General Public License 00015 * along with this program; if not, write to the Free Software 00016 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00017 * 00018 * Gergely Gati 00019 * email: g.gati@freemail.hu 00020 * AIM screenname: GatiGergely 00021 * ICQ number: 93131690 00022 * 00023 */ 00024 #ifndef __LOCALE_H 00025 #define __LOCALE_H 00026 00027 00028 #include "Gui.h" 00029 #include "Bases.h" 00030 00031 00032 #define TAG_LOCALE_LOCALE (TAG_USER+100) 00033 #define TAG_LOCALE_MSG ((TAG_USER+101)|TAGT_STRING) 00034 00035 00036 //Enum for calling BEGIN 00037 enum locale_functions 00038 { 00039 LOCALE_GETSTRING=LOCALE_FUNCBASE, 00040 LOCALE_FUNC_DONE 00041 }; 00042 //Enum for calling END 00043 00044 00045 u32 locale_CallTL(int function, tag *taglist); 00046 u32 locale_Call(int function, u32 firsttag, ...); 00047 00048 u32 locale_GetString(u32 firsttag, ...); 00049 u32 locale_GetStringTL(tag *taglist); 00050 00051 //system only 00052 Locale_t *locale_Init(gui_App_t *app, char **lang, char *default_lang); 00053 void locale_CleanUp(Locale_t *locale); 00054 00055 00056 00057 #endif
1.2.14 written by Dimitri van Heesch,
© 1997-2002