summaryrefslogtreecommitdiff
path: root/devilspie/error_strings.h
blob: 278e41b812fc0673b2e6512e05eac4cf4e87b1b5 (plain)
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

/**
 *	This file is part of devilspie2
 *	Copyright (C) 2012-2017 Andreas Rönnquist
 *
 *	devilspie2 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 3 of the License, or
 *	(at your option) any later version.
 *
 *	devilspie2 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 devilspie2.
 *	If not, see <http://www.gnu.org/licenses/>.
 */
#ifndef __HEADER_ERROR_STRINGS_
#define __HEADER_ERROR_STRINGS_

/**
 *
 */
extern const int max_indata_expected;
extern gchar *num_indata_expected_errors[];

extern gchar *n_or_m_indata_expected_error;
extern gchar *n_to_m_indata_expected_error;

extern gchar *at_least_four_indata_expected_error;

extern gchar *number_expected_as_indata_error;
extern gchar *boolean_expected_as_indata_error;
extern gchar *string_expected_as_indata_error;

extern gchar *number_or_string_expected_as_indata_error;
extern gchar *number_or_string_or_boolean_expected_as_indata_error;

extern gchar *integer_greater_than_zero_expected_error;
extern gchar *could_not_find_current_viewport_error;

extern gchar *setting_viewport_failed_error;

extern gchar *failed_string;

/**
 *
 */
int init_script_error_messages();
void done_script_error_messages();


#endif /*__HEADER_ERROR_STRINGS_*/