Mon, 24 Feb 2003 00:29:54 +0000
[gaim-migrate @ 4896]
just because an account signs off doesn't mean we can forget about it ;-)
| 4359 | 1 | /** |
| 2 | * @file stock.h GTK+ Stock resources | |
| 3 | * | |
| 4 | * gaim | |
| 5 | * | |
| 6 | * Copyright (C) 2002-2003, Christian Hammond <chipx86@gnupdate.org> | |
| 7 | * | |
| 8 | * This program is free software; you can redistribute it and/or modify | |
| 9 | * it under the terms of the GNU General Public License as published by | |
| 10 | * the Free Software Foundation; either version 2 of the License, or | |
| 11 | * (at your option) any later version. | |
| 12 | * | |
| 13 | * This program is distributed in the hope that it will be useful, | |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 16 | * GNU General Public License for more details. | |
| 17 | * | |
| 18 | * You should have received a copy of the GNU General Public License | |
| 19 | * along with this program; if not, write to the Free Software | |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 21 | * | |
| 22 | */ | |
| 23 | #ifndef _STOCK_H_ | |
| 24 | #define _STOCK_H_ | |
| 25 | ||
| 26 | /**************************************************************************/ | |
| 27 | /** @name Stock images */ | |
| 28 | /**************************************************************************/ | |
| 29 | /*@{*/ | |
| 30 | #define GAIM_STOCK_BGCOLOR "gaim-bgcolor" | |
| 31 | #define GAIM_STOCK_BLOCK "gaim-block" | |
|
4514
40e3588a280f
[gaim-migrate @ 4792]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
32 | #define GAIM_STOCK_DOWNLOAD "gaim-download" |
| 4359 | 33 | #define GAIM_STOCK_FGCOLOR "gaim-fgcolor" |
|
4514
40e3588a280f
[gaim-migrate @ 4792]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
34 | #define GAIM_STOCK_FILE_CANCELED "gaim-file-canceled" |
|
40e3588a280f
[gaim-migrate @ 4792]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
35 | #define GAIM_STOCK_FILE_DONE "gaim-file-done" |
| 4359 | 36 | #define GAIM_STOCK_IGNORE "gaim-ignore" |
| 37 | #define GAIM_STOCK_IMAGE "gaim-image" | |
| 38 | #define GAIM_STOCK_INFO "gaim-info" | |
| 39 | #define GAIM_STOCK_INVITE "gaim-invite" | |
| 40 | #define GAIM_STOCK_LINK "gaim-link" | |
| 41 | #define GAIM_STOCK_SEND "gaim-send" | |
| 42 | #define GAIM_STOCK_SMILEY "gaim-smiley" | |
| 43 | #define GAIM_STOCK_TEXT_BIGGER "gaim-text-bigger" | |
| 44 | #define GAIM_STOCK_TEXT_NORMAL "gaim-text-normal" | |
| 45 | #define GAIM_STOCK_TEXT_SMALLER "gaim-text-smaller" | |
|
4514
40e3588a280f
[gaim-migrate @ 4792]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
46 | #define GAIM_STOCK_UPLOAD "gaim-upload" |
| 4359 | 47 | #define GAIM_STOCK_WARN "gaim-warn" |
| 48 | /*@}*/ | |
| 49 | ||
| 50 | /** | |
| 51 | * Sets up the gaim stock repository. | |
| 52 | */ | |
| 53 | void setup_stock(void); | |
| 54 | ||
| 55 | #endif /* _STOCK_H_ */ |