1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4 
5 #ifndef GTKENUMS_WRAPPER_H
6 #define GTKENUMS_WRAPPER_H
7 
8 #include_next <gtk/gtkenums.h>
9 
10 #include <gtk/gtkversion.h>
11 
12 #if !GTK_CHECK_VERSION(3, 6, 0)
13 enum GtkInputPurpose {
14   GTK_INPUT_PURPOSE_FREE_FORM,
15   GTK_INPUT_PURPOSE_ALPHA,
16   GTK_INPUT_PURPOSE_DIGITS,
17   GTK_INPUT_PURPOSE_NUMBER,
18   GTK_INPUT_PURPOSE_PHONE,
19   GTK_INPUT_PURPOSE_URL,
20   GTK_INPUT_PURPOSE_EMAIL,
21   GTK_INPUT_PURPOSE_NAME,
22   GTK_INPUT_PURPOSE_PASSWORD,
23   GTK_INPUT_PURPOSE_PIN
24 };
25 #endif  // 3.6.0
26 
27 #endif /* GTKENUMS_WRAPPER_H */
28