| 40 * Our UI's identifier. |
40 * Our UI's identifier. |
| 41 */ |
41 */ |
| 42 #define PIDGIN_UI "pidgin" |
42 #define PIDGIN_UI "pidgin" |
| 43 |
43 |
| 44 #ifndef _WIN32 |
44 #ifndef _WIN32 |
| 45 # define GAIM_ALERT_TITLE "" |
45 # define PIDGIN_ALERT_TITLE "" |
| 46 #else |
46 #else |
| 47 # define GAIM_ALERT_TITLE PIDGIN_NAME |
47 # define PIDGIN_ALERT_TITLE PIDGIN_NAME |
| 48 #endif |
48 #endif |
| 49 |
49 |
| 50 /* |
50 /* |
| 51 * This is backwards-compatibility code for older versions of GTK+ (< 2.4.x) |
51 * This is backwards-compatibility code for older versions of GTK+ (< 2.4.x) |
| 52 * It defines the new wrap behavior (unknown in earlier versions) |
52 * It defines the new wrap behavior (unknown in earlier versions) |
| 76 |
76 |
| 77 /* |
77 /* |
| 78 * Spacings between components, as defined by the |
78 * Spacings between components, as defined by the |
| 79 * GNOME Human Interface Guidelines. |
79 * GNOME Human Interface Guidelines. |
| 80 */ |
80 */ |
| 81 #define GAIM_HIG_CAT_SPACE 18 |
81 #define PIDGIN_HIG_CAT_SPACE 18 |
| 82 #define GAIM_HIG_BORDER 12 |
82 #define PIDGIN_HIG_BORDER 12 |
| 83 #define GAIM_HIG_BOX_SPACE 6 |
83 #define PIDGIN_HIG_BOX_SPACE 6 |
| 84 |
84 |
| 85 /* |
85 /* |
| 86 * See GNOME bug #307304 for some discussion about the invisible |
86 * See GNOME bug #307304 for some discussion about the invisible |
| 87 * character. 0x25cf is a good choice, too. |
87 * character. 0x25cf is a good choice, too. |
| 88 */ |
88 */ |
| 89 #define GAIM_INVISIBLE_CHAR (gunichar)0x2022 |
89 #define PIDGIN_INVISIBLE_CHAR (gunichar)0x2022 |
| 90 |
90 |
| 91 #endif /* _PIDGIN_H_ */ |
91 #endif /* _PIDGIN_H_ */ |
| 92 |
92 |