Mon, 20 Jan 2003 21:54:46 +0000
[gaim-migrate @ 4634]
Should prevent a segfault and the Add button tooltip issue.
| 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" | |
| 32 | #define GAIM_STOCK_FGCOLOR "gaim-fgcolor" | |
| 33 | #define GAIM_STOCK_IGNORE "gaim-ignore" | |
| 34 | #define GAIM_STOCK_IMAGE "gaim-image" | |
| 35 | #define GAIM_STOCK_INFO "gaim-info" | |
| 36 | #define GAIM_STOCK_INVITE "gaim-invite" | |
| 37 | #define GAIM_STOCK_LINK "gaim-link" | |
| 38 | #define GAIM_STOCK_SEND "gaim-send" | |
| 39 | #define GAIM_STOCK_SMILEY "gaim-smiley" | |
| 40 | #define GAIM_STOCK_TEXT_BIGGER "gaim-text-bigger" | |
| 41 | #define GAIM_STOCK_TEXT_NORMAL "gaim-text-normal" | |
| 42 | #define GAIM_STOCK_TEXT_SMALLER "gaim-text-smaller" | |
| 43 | #define GAIM_STOCK_WARN "gaim-warn" | |
| 44 | /*@}*/ | |
| 45 | ||
| 46 | /** | |
| 47 | * Sets up the gaim stock repository. | |
| 48 | */ | |
| 49 | void setup_stock(void); | |
| 50 | ||
| 51 | #endif /* _STOCK_H_ */ |