📄 test2.c
字号:
/* * $Header: /cvsroot/lesstif/lesstif/test/Xm-2.0/translations/test2.c,v 1.4 2001/05/08 08:58:16 amai Exp $ */ #include <stdlib.h>#include <stdio.h>#include <ctype.h>#include <Xm/XmP.h>#include <Xm/TransltnsP.h>#if XmVersion != 2000intmain(int argc, char *argv[]){ puts("This program requires Motif 2.0\n"); exit(1);}#elsestruct { const char *n; const char *t;} list[] = { { "_XmCSText_EventBindings1", _XmCSText_EventBindings1 }, { "_XmCSText_EventBindings2", _XmCSText_EventBindings2 }, { "_XmCSText_EventBindings3", _XmCSText_EventBindings3 }, { "_XmComboBox_defaultTranslations", _XmComboBox_defaultTranslations }, { "_XmComboBox_defaultAccelerators", _XmComboBox_defaultAccelerators }, { "_XmComboBox_dropDownComboBoxAccelerators", _XmComboBox_dropDownComboBoxAccelerators }, { "_XmComboBox_dropDownListTranslations", _XmComboBox_dropDownListTranslations }, { "_XmComboBox_textFocusTranslations", _XmComboBox_textFocusTranslations }, { "_XmContainer_defaultTranslations", _XmContainer_defaultTranslations }, { "_XmContainer_traversalTranslations", _XmContainer_traversalTranslations }, { "_XmGrabShell_translations", _XmGrabShell_translations }, { "_XmNotebook_manager_translations", _XmNotebook_manager_translations }, { "_XmNotebook_TabAccelerators", _XmNotebook_TabAccelerators }, { "_XmSpinB_defaultTranslations", _XmSpinB_defaultTranslations }, { "_XmSpinB_defaultAccelerators", _XmSpinB_defaultAccelerators }, { NULL, NULL }};const char *copyright = "/**\n"" *\n"" * Copyright (C) 1997 Free Software Foundation, Inc.\n"" *\n"" * This file is part of the GNU LessTif Library.\n"" *\n"" * This library is free software; you can redistribute it and/or\n"" * modify it under the terms of the GNU Library General Public\n"" * License as published by the Free Software Foundation; either\n"" * version 2 of the License, or (at your option) any later version.\n"" *\n"" * This library is distributed in the hope that it will be useful,\n"" * but WITHOUT ANY WARRANTY; without even the implied warranty of\n"" * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n"" * Library General Public License for more details.\n"" *\n"" * You should have received a copy of the GNU Library General Public\n"" * License along with this library; if not, write to the Free\n"" * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.\n"" *\n"" **/\n";intmain(int argc, char *argv[]){ int i; const char *p; printf(copyright); printf("\n"); printf("static char rcsid[] = \"$Id: test2.c,v 1.4 2001/05/08 08:58:16 amai Exp $\";\n"); printf("\n"); printf("#include <Xm/XmP.h>\n"); printf("#include <Xm/TransltnsP.h>\n"); printf("\n"); printf("/* Translation & accelerator tables */\n"); printf("\n"); for (i=0; list[i].n; i++) { printf("_XmConst char %s[] =\n %c", list[i].n, '"'); for (p = list[i].t; *p; p++) if (*p == '\n') { putchar('\\'); putchar('n'); putchar('"'); putchar('\n'); putchar(' '); putchar(' '); putchar(' '); putchar(' '); putchar('"'); } else if (*p == '"') { putchar('\\'); putchar('"'); } else if (!isprint(*p)&&*p!='\t') { printf("\\%o", (unsigned char)*p); } else putchar(*p); putchar('"'); putchar(';'); putchar('\n'); putchar('\n'); } exit(0);}#endif /* XmVersion != 2000 */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -