1 /*
2  * Copyright (C) 2009 - 2011 Vivien Malerba <malerba@gnome-db.org>
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17  */
18 
19 #ifndef BROWSER_STOCK_ICONS_H
20 #define BROWSER_STOCK_ICONS_H
21 
22 G_BEGIN_DECLS
23 
24 #define BROWSER_STOCK_HISTORY         "history-view"
25 #define BROWSER_STOCK_BOOKMARKS       "bookmark-view"
26 #define BROWSER_STOCK_BEGIN           "transaction-begin"
27 #define BROWSER_STOCK_COMMIT          "transaction-commit"
28 #define BROWSER_STOCK_ROLLBACK        "transaction-rollback"
29 #define BROWSER_STOCK_BUILDER         "glade"
30 #define BROWSER_STOCK_LDAP_ENTRIES    "ldap-entries"
31 #define BROWSER_STOCK_TABLE_ADD       "table-add"
32 #define BROWSER_STOCK_GRID            "grid"
33 #define BROWSER_STOCK_FORM            "form"
34 
35 
36 /* Named icons defined in fd.o Icon Naming Spec */
37 #define STOCK_NEW_WINDOW           "window-new"
38 #define STOCK_ADD_BOOKMARK         "bookmark-new"
39 #define STOCK_PRINT_SETUP          "document-page-setup"
40 
41 #define STOCK_CONSOLE              "accessories-text-editor"
42 
43 void browser_stock_icons_init (void);
44 
45 G_END_DECLS
46 
47 #endif
48