summaryrefslogtreecommitdiff
path: root/plugins/gtkui/namedicons.c
blob: 366333bee1f66d57ae3b86cac385156298a89b9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/*
    DeaDBeeF -- the music player
    Copyright (C) 2009-2013 Alexey Yakovenko and other contributors

    This software is provided 'as-is', without any express or implied
    warranty.  In no event will the authors be held liable for any damages
    arising from the use of this software.

    Permission is granted to anyone to use this software for any purpose,
    including commercial applications, and to alter it and redistribute it
    freely, subject to the following restrictions:

    1. The origin of this software must not be misrepresented; you must not
     claim that you wrote the original software. If you use this software
     in a product, an acknowledgment in the product documentation would be
     appreciated but is not required.

    2. Altered source versions must be plainly marked as such, and must not be
     misrepresented as being the original software.

    3. This notice may not be removed or altered from any source distribution.
*/
#include <gtk/gtk.h>

const char * GtkNamedIcons[] = {
    GTK_STOCK_DIALOG_AUTHENTICATION,
    GTK_STOCK_DIALOG_INFO,
    GTK_STOCK_DIALOG_WARNING,
    GTK_STOCK_DIALOG_ERROR,
    GTK_STOCK_DIALOG_QUESTION,
    GTK_STOCK_DND,
    GTK_STOCK_DND_MULTIPLE,
    GTK_STOCK_ABOUT,
    GTK_STOCK_ADD,
    GTK_STOCK_APPLY,
    GTK_STOCK_BOLD,
    GTK_STOCK_CANCEL,
    GTK_STOCK_CDROM,
    GTK_STOCK_CLEAR,
    GTK_STOCK_CLOSE,
    GTK_STOCK_COLOR_PICKER,
    GTK_STOCK_CONVERT,
    GTK_STOCK_CONNECT,
    GTK_STOCK_COPY,
    GTK_STOCK_CUT,
    GTK_STOCK_DELETE,
    GTK_STOCK_DIRECTORY,
    GTK_STOCK_DISCONNECT,
    GTK_STOCK_EDIT,
    GTK_STOCK_EXECUTE,
    GTK_STOCK_FILE,
    GTK_STOCK_FIND,
    GTK_STOCK_FIND_AND_REPLACE,
    GTK_STOCK_FLOPPY,
    GTK_STOCK_FULLSCREEN,
    GTK_STOCK_GOTO_BOTTOM,
    GTK_STOCK_GOTO_FIRST,
    GTK_STOCK_GOTO_LAST,
    GTK_STOCK_GOTO_TOP,
    GTK_STOCK_GO_BACK,
    GTK_STOCK_GO_DOWN,
    GTK_STOCK_GO_FORWARD,
    GTK_STOCK_GO_UP,
    GTK_STOCK_HARDDISK,
    GTK_STOCK_HELP,
    GTK_STOCK_HOME,
    GTK_STOCK_INDEX,
    GTK_STOCK_INDENT,
    GTK_STOCK_INFO,
    GTK_STOCK_UNINDENT,
    GTK_STOCK_ITALIC,
    GTK_STOCK_JUMP_TO,
    GTK_STOCK_JUSTIFY_CENTER,
    GTK_STOCK_JUSTIFY_FILL,
    GTK_STOCK_JUSTIFY_LEFT,
    GTK_STOCK_JUSTIFY_RIGHT,
    GTK_STOCK_LEAVE_FULLSCREEN,
    GTK_STOCK_MISSING_IMAGE,
    GTK_STOCK_MEDIA_FORWARD,
    GTK_STOCK_MEDIA_NEXT,
    GTK_STOCK_MEDIA_PAUSE,
    GTK_STOCK_MEDIA_PLAY,
    GTK_STOCK_MEDIA_PREVIOUS,
    GTK_STOCK_MEDIA_RECORD,
    GTK_STOCK_MEDIA_REWIND,
    GTK_STOCK_MEDIA_STOP,
    GTK_STOCK_NETWORK,
    GTK_STOCK_NEW,
    GTK_STOCK_NO,
    GTK_STOCK_OK,
    GTK_STOCK_OPEN,
    GTK_STOCK_PASTE,
    GTK_STOCK_PREFERENCES,
    GTK_STOCK_PRINT,
    GTK_STOCK_PRINT_PREVIEW,
    GTK_STOCK_PROPERTIES,
    GTK_STOCK_QUIT,
    GTK_STOCK_REDO,
    GTK_STOCK_REFRESH,
    GTK_STOCK_REMOVE,
    GTK_STOCK_REVERT_TO_SAVED,
    GTK_STOCK_SAVE,
    GTK_STOCK_SAVE_AS,
    GTK_STOCK_SELECT_COLOR,
    GTK_STOCK_SELECT_FONT,
    GTK_STOCK_SORT_ASCENDING,
    GTK_STOCK_SORT_DESCENDING,
    GTK_STOCK_SPELL_CHECK,
    GTK_STOCK_STOP,
    GTK_STOCK_STRIKETHROUGH,
    GTK_STOCK_UNDELETE,
    GTK_STOCK_UNDERLINE,
    GTK_STOCK_UNDO,
    GTK_STOCK_YES,
    GTK_STOCK_ZOOM_100,
    GTK_STOCK_ZOOM_FIT,
    GTK_STOCK_ZOOM_IN,
    GTK_STOCK_ZOOM_OUT,
    NULL
};