Mercurial > pidgin.yaz
annotate pidgin/pidgin.h @ 17800:6f54b1e84610
This started off as a patch from OpenSolaris to fix compiling with static
protocols outside of the source directory, but then I found I had to fix
static compilation of jabber & oscar too.
author | Stu Tomlinson <stu@nosnilmot.com> |
---|---|
date | Sat, 09 Jun 2007 14:10:21 +0000 |
parents | 816759ae9644 |
children | b2578b2d4bc4 |
rev | line source |
---|---|
15514 | 1 /** |
2 * @file pidgin.h UI definitions and includes | |
16193
247e421c4fa6
Rename the Doxygen group from gtkui to pidgin.
Richard Laager <rlaager@wiktel.com>
parents:
16064
diff
changeset
|
3 * @ingroup pidgin |
15514 | 4 * |
15871
66dff3dfdea6
Re-sed the copyright notices so they don't all talk about Purple.
Richard Laager <rlaager@wiktel.com>
parents:
15823
diff
changeset
|
5 * pidgin |
15514 | 6 * |
7 * Pidgin is the legal property of its developers, whose names are too numerous | |
8 * to list here. Please refer to the COPYRIGHT file distributed with this | |
9 * source distribution. | |
10 * | |
11 * This program is free software; you can redistribute it and/or modify | |
12 * it under the terms of the GNU General Public License as published by | |
13 * the Free Software Foundation; either version 2 of the License, or | |
14 * (at your option) any later version. | |
15 * | |
16 * This program is distributed in the hope that it will be useful, | |
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 * GNU General Public License for more details. | |
20 * | |
21 * You should have received a copy of the GNU General Public License | |
22 * along with this program; if not, write to the Free Software | |
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
24 */ | |
25 /* #warning ***pidgin*** */ | |
15632
a830f9756f23
Some more pidgininfication
Daniel Atallah <daniel.atallah@gmail.com>
parents:
15539
diff
changeset
|
26 #ifndef _PIDGIN_H_ |
a830f9756f23
Some more pidgininfication
Daniel Atallah <daniel.atallah@gmail.com>
parents:
15539
diff
changeset
|
27 #define _PIDGIN_H_ |
15514 | 28 |
29 #ifndef _WIN32 | |
30 # include <gdk/gdkx.h> | |
31 #endif | |
32 | |
33 #include <gtk/gtk.h> | |
34 | |
35 #ifdef _WIN32 | |
36 # include "gtkwin32dep.h" | |
37 #endif | |
38 | |
39 /** | |
40 * Our UI's identifier. | |
41 */ | |
16056
fccb6b33aba6
Revert to internal UI name of gtk-gaim to preserve UI prefs on upgrade
Stu Tomlinson <stu@nosnilmot.com>
parents:
15871
diff
changeset
|
42 /* leave this as gtk-gaim until we have a decent way to migrate UI-prefs */ |
fccb6b33aba6
Revert to internal UI name of gtk-gaim to preserve UI prefs on upgrade
Stu Tomlinson <stu@nosnilmot.com>
parents:
15871
diff
changeset
|
43 #define PIDGIN_UI "gtk-gaim" |
15514 | 44 |
16062
07554cc5d090
Rename /purple/gtk preferences back to /gaim/gtk to allow for smooth upgrades
Stu Tomlinson <stu@nosnilmot.com>
parents:
16056
diff
changeset
|
45 /* change this only when we have a sane upgrade path for old prefs */ |
16427
4999bbc52881
Works for me! Renames prefs: /core to /purple, /gaim/gtk to /pidgin, /gaim/gnt to /finch
Sean Egan <seanegan@gmail.com>
parents:
16193
diff
changeset
|
46 #define PIDGIN_PREFS_ROOT "/pidgin" |
16062
07554cc5d090
Rename /purple/gtk preferences back to /gaim/gtk to allow for smooth upgrades
Stu Tomlinson <stu@nosnilmot.com>
parents:
16056
diff
changeset
|
47 |
16954
816759ae9644
Clarify the comments on the names for translators.
Richard Laager <rlaager@wiktel.com>
parents:
16932
diff
changeset
|
48 /* Translators may want to transliterate the name. |
816759ae9644
Clarify the comments on the names for translators.
Richard Laager <rlaager@wiktel.com>
parents:
16932
diff
changeset
|
49 It is not to be translated. */ |
16932
b668951121d8
Change the PIDGIN_NAME stuff to allow translators to transliterate the
Richard Laager <rlaager@wiktel.com>
parents:
16427
diff
changeset
|
50 #define PIDGIN_NAME _("Pidgin") |
b668951121d8
Change the PIDGIN_NAME stuff to allow translators to transliterate the
Richard Laager <rlaager@wiktel.com>
parents:
16427
diff
changeset
|
51 |
15514 | 52 #ifndef _WIN32 |
15821 | 53 # define PIDGIN_ALERT_TITLE "" |
15514 | 54 #else |
15821 | 55 # define PIDGIN_ALERT_TITLE PIDGIN_NAME |
15514 | 56 #endif |
57 | |
58 /* | |
59 * This is backwards-compatibility code for older versions of GTK+ (< 2.4.x) | |
60 * It defines the new wrap behavior (unknown in earlier versions) | |
61 * as the old (slightly buggy) wrap behavior. | |
62 * It also includes our back-ported GtkExpander | |
63 */ | |
64 /** @cond */ | |
65 #if (!GTK_CHECK_VERSION(2,4,0)) | |
15539
7ae72b7c02b1
sf patch #1640011, from Celso Pinto
Mark Doliner <mark@kingant.net>
parents:
15514
diff
changeset
|
66 # define GTK_WRAP_WORD_CHAR GTK_WRAP_WORD |
7ae72b7c02b1
sf patch #1640011, from Celso Pinto
Mark Doliner <mark@kingant.net>
parents:
15514
diff
changeset
|
67 # include "gtkexpander.h" |
15514 | 68 #endif |
69 /** @endcond */ | |
70 | |
71 /* | |
72 * We include the sources for GtkComboBox and GtkCellView because | |
15539
7ae72b7c02b1
sf patch #1640011, from Celso Pinto
Mark Doliner <mark@kingant.net>
parents:
15514
diff
changeset
|
73 * they don't exist in older versions of GTK+, and we use them |
15514 | 74 * in a few places. |
75 */ | |
76 #if !GTK_CHECK_VERSION(2,6,0) | |
77 # include "gtkcellview.h" | |
78 # include "gtkcellviewmenuitem.h" | |
16052
605da11e8535
uvwarning noticed that this include was wrong
Daniel Atallah <daniel.atallah@gmail.com>
parents:
15871
diff
changeset
|
79 # include "pidgincombobox.h" |
15514 | 80 # if !GTK_CHECK_VERSION(2,4,0) |
81 # include "gtkcelllayout.h" | |
15539
7ae72b7c02b1
sf patch #1640011, from Celso Pinto
Mark Doliner <mark@kingant.net>
parents:
15514
diff
changeset
|
82 # endif /* Less than GTK+ 2.4 */ |
7ae72b7c02b1
sf patch #1640011, from Celso Pinto
Mark Doliner <mark@kingant.net>
parents:
15514
diff
changeset
|
83 #endif /* Less than GTK+ 2.6 */ |
15514 | 84 |
85 /* | |
86 * Spacings between components, as defined by the | |
87 * GNOME Human Interface Guidelines. | |
88 */ | |
15821 | 89 #define PIDGIN_HIG_CAT_SPACE 18 |
90 #define PIDGIN_HIG_BORDER 12 | |
91 #define PIDGIN_HIG_BOX_SPACE 6 | |
15514 | 92 |
93 /* | |
94 * See GNOME bug #307304 for some discussion about the invisible | |
95 * character. 0x25cf is a good choice, too. | |
96 */ | |
15821 | 97 #define PIDGIN_INVISIBLE_CHAR (gunichar)0x2022 |
15514 | 98 |
15632
a830f9756f23
Some more pidgininfication
Daniel Atallah <daniel.atallah@gmail.com>
parents:
15539
diff
changeset
|
99 #endif /* _PIDGIN_H_ */ |
15514 | 100 |