Mercurial > pidgin
annotate src/stock.h @ 7786:203a18e56dc6
[gaim-migrate @ 8431]
* Documentation is good. Not that I have any idea if any of my
documentation works, because I haven't checked... I totally made up
@note, but it sure seems reasonable to me.
* A couple of stringref utility functions which seem useful in any
case, like len and cmp.
* I'm going ahead and pushing a stringref creation function which
creates a zero-refcount stringref into CVS... Nothing uses it yet,
but I think that it is useful even in the absence of major stringref
conversion ... because it's garbage collected! If no one refs it
before the next iteration of the mainloop, it will be freed ... if
it is ref'd, of course, it will have to be freed normally by an
unref at some later point.
committer: Tailor Script <tailor@pidgin.im>
author | Ethan Blanton <elb@pidgin.im> |
---|---|
date | Sun, 07 Dec 2003 16:28:34 +0000 |
parents | 5cd7a10c6ade |
children | f9df510460d7 |
rev | line source |
---|---|
4359 | 1 /** |
2 * @file stock.h GTK+ Stock resources | |
5034
4691c5936c01
[gaim-migrate @ 5377]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
3 * @ingroup gtkui |
4359 | 4 * |
5 * gaim | |
6 * | |
7 * Copyright (C) 2002-2003, Christian Hammond <chipx86@gnupdate.org> | |
8 * | |
9 * This program is free software; you can redistribute it and/or modify | |
10 * it under the terms of the GNU General Public License as published by | |
11 * the Free Software Foundation; either version 2 of the License, or | |
12 * (at your option) any later version. | |
13 * | |
14 * This program is distributed in the hope that it will be useful, | |
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 * GNU General Public License for more details. | |
18 * | |
19 * You should have received a copy of the GNU General Public License | |
20 * along with this program; if not, write to the Free Software | |
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
22 */ | |
23 #ifndef _STOCK_H_ | |
24 #define _STOCK_H_ | |
25 | |
26 /**************************************************************************/ | |
27 /** @name Stock images */ | |
28 /**************************************************************************/ | |
29 /*@{*/ | |
5024 | 30 #define GAIM_STOCK_ABOUT "gaim-about" |
31 #define GAIM_STOCK_ACCOUNTS "gaim-accounts" | |
32 #define GAIM_STOCK_AWAY "gaim-away" | |
33 #define GAIM_STOCK_BGCOLOR "gaim-bgcolor" | |
34 #define GAIM_STOCK_BLOCK "gaim-block" | |
35 #define GAIM_STOCK_CHAT "gaim-chat" | |
36 #define GAIM_STOCK_DIALOG_AUTH "gaim-dialog-auth" | |
37 #define GAIM_STOCK_DIALOG_COOL "gaim-dialog-cool" | |
38 #define GAIM_STOCK_DIALOG_ERROR "gaim-dialog-error" | |
39 #define GAIM_STOCK_DIALOG_INFO "gaim-dialog-info" | |
40 #define GAIM_STOCK_DIALOG_QUESTION "gaim-dialog-question" | |
41 #define GAIM_STOCK_DIALOG_WARNING "gaim-dialog-warning" | |
42 #define GAIM_STOCK_DOWNLOAD "gaim-download" | |
43 #define GAIM_STOCK_EDIT "gaim-edit" | |
44 #define GAIM_STOCK_FGCOLOR "gaim-fgcolor" | |
45 #define GAIM_STOCK_FILE_CANCELED "gaim-file-canceled" | |
46 #define GAIM_STOCK_FILE_DONE "gaim-file-done" | |
47 #define GAIM_STOCK_FILE_TRANSFER "gaim-file-transfer" | |
48 #define GAIM_STOCK_ICON_AWAY "gaim-icon-away" | |
49 #define GAIM_STOCK_ICON_AWAY_MSG "gaim-icon-away-msg" | |
50 #define GAIM_STOCK_ICON_CONNECT "gaim-icon-away-connect" | |
51 #define GAIM_STOCK_ICON_OFFLINE "gaim-icon-offline" | |
52 #define GAIM_STOCK_ICON_ONLINE "gaim-icon-online" | |
53 #define GAIM_STOCK_ICON_ONLINE_MSG "gaim-icon-online-msg" | |
54 #define GAIM_STOCK_IGNORE "gaim-ignore" | |
55 #define GAIM_STOCK_IM "gaim-im" | |
56 #define GAIM_STOCK_IMAGE "gaim-image" | |
57 #define GAIM_STOCK_INFO "gaim-info" | |
58 #define GAIM_STOCK_INVITE "gaim-invite" | |
59 #define GAIM_STOCK_LINK "gaim-link" | |
60 #define GAIM_STOCK_LOGO "gaim-logo" | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5523
diff
changeset
|
61 #define GAIM_STOCK_MODIFY "gaim-modify" |
6009
5cd7a10c6ade
[gaim-migrate @ 6457]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
62 #define GAIM_STOCK_OPEN_MAIL "gaim-stock-open-mail" |
5cd7a10c6ade
[gaim-migrate @ 6457]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
63 #define GAIM_STOCK_PAUSE "gaim-pause" |
5024 | 64 #define GAIM_STOCK_PRIVACY "gaim-privacy" |
65 #define GAIM_STOCK_SEND "gaim-send" | |
66 #define GAIM_STOCK_SIGN_OFF "gaim-sign-off" | |
67 #define GAIM_STOCK_SIGN_ON "gaim-sign-on" | |
68 #define GAIM_STOCK_SMILEY "gaim-smiley" | |
69 #define GAIM_STOCK_TEXT_BIGGER "gaim-text-bigger" | |
70 #define GAIM_STOCK_TEXT_NORMAL "gaim-text-normal" | |
71 #define GAIM_STOCK_TEXT_SMALLER "gaim-text-smaller" | |
72 #define GAIM_STOCK_TYPED "gaim-typed" | |
73 #define GAIM_STOCK_TYPING "gaim-typing" | |
74 #define GAIM_STOCK_UPLOAD "gaim-upload" | |
75 #define GAIM_STOCK_WARN "gaim-warn" | |
4359 | 76 /*@}*/ |
77 | |
78 /** | |
5024 | 79 * For getting the icon size for the logo |
80 */ | |
81 #define GAIM_ICON_SIZE_LOGO "gaim-icon-size-logo" | |
82 | |
83 /** | |
4359 | 84 * Sets up the gaim stock repository. |
85 */ | |
6009
5cd7a10c6ade
[gaim-migrate @ 6457]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
86 void gaim_gtk_stock_init(void); |
4359 | 87 |
88 #endif /* _STOCK_H_ */ |