File: fallback.c

package info (click to toggle)
xconvers 0.4-5
  • links: PTS
  • area: main
  • in suites: slink
  • size: 180 kB
  • ctags: 99
  • sloc: ansic: 1,054; makefile: 32; sh: 2
file content (89 lines) | stat: -rw-r--r-- 3,113 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/* Copyright (C) 1994 Guido Vattrodt DL3BZN
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */

/* fallback.c	fallback resources for xconvers
 */

#include <stdio.h>
#include <Xm/Xm.h>

String fallbackResources[] = {
	"Xconvers*base.marginWidth: 5",
	"Xconvers*base.marginHeight: 5",
	"Xconvers*settings.marginWidth: 8",

	"Xconvers*background:gray",
	"Xconvers*highlightColor: brown",

	"Xconvers*commM1:",
	"Xconvers*commM1.command: /help",
	"Xconvers*commM1.labelString: Help ",

	"Xconvers*commM2:",
	"Xconvers*commM2.command: /quit",
	"Xconvers*commM2.labelString: Quit ",

	"Xconvers*text.fontList: 10x20",
	"Xconvers*text.traversalOn: False",
	"Xconvers*text.columns: 80",
	"Xconvers*text.rows: 10",
	"Xconvers*line.fontList: 10x20",

	"Xconvers*commands*fontList: 9x15",
	"Xconvers*commands*traversalOn: False",
	"Xconvers*commands.clear.labelString: clear area",
	"Xconvers*commands.connect.labelString: connect server",
	"Xconvers*commands.disconnect.labelString: disconnect server",

	"Xconvers*menuBar*fontList: 9x15",
	"Xconvers*menuBar.fileMenu.labelString: File",
	"Xconvers*menuBar.fileMenu.mnemonic: F",
	"Xconvers*menuBar.optionMenu.labelString: Options",
	"Xconvers*menuBar.optionMenu.mnemonic: O",
	"Xconvers*menuBar.commMenu.labelString: Commands",
	"Xconvers*menuBar.commMenu.mnemonic: C",
	"Xconvers*menuSettings.labelString: settings",
	"Xconvers*start_record.labelString: record...",
	"Xconvers*stop_record.labelString: stop recording",
	"Xconvers*quit.labelString: exit",

	"Xconvers*fileBox.dialogTitle: logfile selection",
	"Xconvers*insertionPointVisible: False",

	"Xconvers*settings.dialogTitle: xconvers settings",
	"Xconvers*settings.title.labelString: \nSettings\n",
	"Xconvers*settings.title.fontList: -adobe-new century schoolbook-bold-r-*-*-*-140-*-*-*-*-*-*",

	"Xconvers*settings.XmForm.XmLabel.fontList: 9x15",
	"Xconvers*settings.XmForm.XmText.fontList: 9x15",

	"Xconvers*pnoteLine*labelString:	 Personal Note:",
	"Xconvers*nameLine*labelString: 	 Name   :",
	"Xconvers*channelLine*labelString:Channel:",
	"Xconvers*portLine*labelString: 	 Port   :",
	"Xconvers*serverLine*labelString: Server :",

	"Xconvers*settings.buttons*fontList: 9x15",
	"Xconvers*settings.buttons.ok.labelString:  \\  Ok  ",
	"Xconvers*settings.buttons.apply.labelString: \\ Apply ",
	"Xconvers*settings.buttons.cancel.labelString: \\ Cancel ",

	"Xconvers*infoBox*fontList: -misc-*-bold-*-*-*-15-*-*-75-*-*-*-*",
	
	NULL
};