Evince
Evince is a document viewer capable of displaying multiple and single page document formats like PDF and Postscript.
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
ev-stock-icons.c
Go to the documentation of this file.
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /* Stock icons for Evince
3  *
4  * Copyright (C) 2003 Martin Kretzschmar
5  *
6  * Author:
7  * Martin Kretzschmar <Martin.Kretzschmar@inf.tu-dresden.de>
8  *
9  * Evince is free software; you can redistribute it and/or modify it
10  * 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  * Evince is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16  * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
17  * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22  */
23 
24 #include <config.h>
25 
26 #include <gtk/gtk.h>
27 
28 #include "ev-stock-icons.h"
29 
30 typedef struct {
31  char *stock_id;
32  char *icon;
33 } EvStockIcon;
34 
35 /* Evince stock icons */
36 static const EvStockIcon stock_icons [] = {
37  { EV_STOCK_ZOOM, "zoom" },
38  { EV_STOCK_ZOOM_PAGE, "zoom-fit-height" },
39  { EV_STOCK_ZOOM_WIDTH, "zoom-fit-width" },
40  { EV_STOCK_VIEW_DUAL, "view-page-facing" },
41  { EV_STOCK_VIEW_CONTINUOUS, "view-page-continuous" },
42  { EV_STOCK_ROTATE_LEFT, "object-rotate-left"},
43  { EV_STOCK_ROTATE_RIGHT, "object-rotate-right"},
44  { EV_STOCK_RUN_PRESENTATION, "x-office-presentation"},
45  { EV_STOCK_VISIBLE, "eye"},
46  { EV_STOCK_RESIZE_SE, "resize-se"},
47  { EV_STOCK_RESIZE_SW, "resize-sw"},
48  { EV_STOCK_CLOSE, "close"},
49  { EV_STOCK_INVERTED_COLORS, "stock_filters-invert"},
50  { EV_STOCK_ATTACHMENT, "mail-attachment"},
51  { EV_STOCK_SEND_TO, "document-send"},
52 };
53 
54 static gchar *ev_icons_path;
55 
56 static void
58 {
59  GtkIconTheme *icon_theme;
60 
61  g_return_if_fail (ev_icons_path != NULL);
62 
63  icon_theme = screen ? gtk_icon_theme_get_for_screen (screen) : gtk_icon_theme_get_default ();
64  if (icon_theme) {
65  gchar **path = NULL;
66  gint n_paths;
67  gint i;
68 
69  /* GtkIconTheme will then look in Evince custom hicolor dir
70  * for icons as well as the standard search paths
71  */
72  gtk_icon_theme_get_search_path (icon_theme, &path, &n_paths);
73  for (i = n_paths - 1; i >= 0; i--) {
74  if (g_ascii_strcasecmp (ev_icons_path, path[i]) == 0)
75  break;
76  }
77 
78  if (i < 0)
79  gtk_icon_theme_append_search_path (icon_theme,
81 
82  g_strfreev (path);
83  }
84 }
85 
91 void
93 {
94  GtkIconFactory *factory;
95  GtkIconSource *source;
96  gint i;
97 #ifdef G_OS_WIN32
98  gchar *dir;
99 
100  dir = g_win32_get_package_installation_directory_of_module (NULL);
101  ev_icons_path = g_build_filename (dir, "share", "evince", "icons", NULL);
102  g_free (dir);
103 #else
104  ev_icons_path = g_build_filename (EVINCEDATADIR, "icons", NULL);
105 #endif
106 
107  factory = gtk_icon_factory_new ();
108  gtk_icon_factory_add_default (factory);
109 
110  source = gtk_icon_source_new ();
111 
112  for (i = 0; i < G_N_ELEMENTS (stock_icons); i++) {
113  GtkIconSet *set;
114 
115  gtk_icon_source_set_icon_name (source, stock_icons [i].icon);
116 
117  set = gtk_icon_set_new ();
118  gtk_icon_set_add_source (set, source);
119 
120  gtk_icon_factory_add (factory, stock_icons [i].stock_id, set);
121  gtk_icon_set_unref (set);
122  }
123 
124  gtk_icon_source_free (source);
125 
126  g_object_unref (G_OBJECT (factory));
127 
128  ev_stock_icons_add_icons_path_for_screen (gdk_screen_get_default ());
129 }
130 
131 void
132 ev_stock_icons_set_screen (GdkScreen *screen)
133 {
134  g_return_if_fail (GDK_IS_SCREEN (screen));
135 
137 }
138 
139 void
141 {
142  g_free (ev_icons_path);
143 }
144