Removed all files using cvs remove since setup is quite old and hasn't been
[geda-gaf/whiteaudio.git] / geda / graphman / msg.h
blob77f54582094ea2f496bcbf4bb1855ae0b6ab4069
1 /*******************************************************************************/
2 /* */
3 /* gEDA Suite Project Manager */
4 /* */
5 /* Copyright (C) 2002 Piotr Miarecki, sp9rve@radioam.net */
6 /* */
7 /* This program is free software; you can redistribute it and/or */
8 /* modify it under the terms of the GNU General Public License */
9 /* as published by the Free Software Foundation version 2. */
10 /* */
11 /* This program is distributed in the hope that it will be useful, */
12 /* but WITHOUT ANY WARRANTY; without even the implied warranty of */
13 /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
14 /* GNU General Public License for more details. */
15 /* */
16 /* You should have received a copy of the GNU General Public License */
17 /* along with this program; if not, email to the author */
18 /* */
19 /*******************************************************************************/
21 #ifndef __MSG_H_INCLUDED
22 #define __MSG_H_INCLUDED
26 /* error messages displayed in stderr */
27 #define MSG_TOO_MANY_PARAMETERS "Too many parameters"
28 #define MSG_WRONG_PARAMETER "Wrong parameter"
29 #define MSG_MISSING_PARAMETER "Missing parameter"
30 #define MSG_UNKNOWN_OPTION "Unknown option"
31 #define MSG_FILENAME_NOT_SPECIFIED "Graph filename not specified"
32 #define MSG_ACTION_NOT_SELECTED "Action not specified"
33 #define MSG_FILTER_NOT_SPECIFIED "Import/Export filter not specified"
34 #define MSG_CANNOT_CREATE_FILE "Cannot create file"
35 #define MSG_CANNOT_OPEN_FILE "Cannot open file"
36 #define MSG_WRONG_FILE "File is wrong"
38 /* color names */
39 #define MSG_WHITE "White"
40 #define MSG_BLACK "Black"
41 #define MSG_YELLOW "Yellow"
42 #define MSG_RED "Red"
43 #define MSG_BLUE "Blue"
44 #define MSG_GREEN "Green"
45 #define MSG_ORANGE "Orange"
46 #define MSG_MAGENTA "Magenta"
48 /* style names */
49 #define MSG_SOLID "Solid"
51 /* scale names */
52 #define MSG_LIN "Linear"
53 #define MSG_LOG "Logarithmic"
55 /* viewer names */
56 #define MSG_GWAVE "GNU GWave"
58 /* identifier of checked boxes */
59 #define MSG_CHECKED "Checked"
60 #define MSG_UNCHECKED "Unchecked"
64 #endif /* __MSG_H_INCLUDED */