]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - libs/gtkutil/image.cpp
reformat code! now the code is only ugly on the *inside*
[xonotic/netradiant.git] / libs / gtkutil / image.cpp
1 /*
2    Copyright (C) 2001-2006, William Joseph.
3    All Rights Reserved.
4
5    This file is part of GtkRadiant.
6
7    GtkRadiant is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    GtkRadiant is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with GtkRadiant; if not, write to the Free Software
19    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20  */
21
22 #include "image.h"
23
24 #include <gtk/gtk.h>
25
26 #include "string/string.h"
27 #include "stream/stringstream.h"
28 #include "stream/textstream.h"
29
30
31 namespace {
32     CopiedString g_bitmapsPath;
33 }
34
35 void BitmapsPath_set(const char *path)
36 {
37     g_bitmapsPath = path;
38 }
39
40 GdkPixbuf *pixbuf_new_from_file_with_mask(const char *filename)
41 {
42     GdkPixbuf *rgb = gdk_pixbuf_new_from_file(filename, 0);
43     if (rgb == 0) {
44         return 0;
45     } else {
46         GdkPixbuf *rgba = gdk_pixbuf_add_alpha(rgb, FALSE, 255, 0, 255);
47         g_object_unref(rgb);
48         return rgba;
49     }
50 }
51
52 ui::Image image_new_from_file_with_mask(const char *filename)
53 {
54     GdkPixbuf *rgba = pixbuf_new_from_file_with_mask(filename);
55     if (rgba == 0) {
56         return ui::Image(ui::null);
57     } else {
58         auto image = ui::Image::from(gtk_image_new_from_pixbuf(rgba));
59         g_object_unref(rgba);
60         return image;
61     }
62 }
63
64 ui::Image image_new_missing()
65 {
66     return ui::Image::from(gtk_image_new_from_stock(GTK_STOCK_MISSING_IMAGE, GTK_ICON_SIZE_SMALL_TOOLBAR));
67 }
68
69 ui::Image new_image(const char *filename)
70 {
71     if (auto image = image_new_from_file_with_mask(filename)) {
72         return image;
73     }
74     return image_new_missing();
75 }
76
77 ui::Image new_local_image(const char *filename)
78 {
79     StringOutputStream fullPath(256);
80     fullPath << g_bitmapsPath.c_str() << filename;
81     return new_image(fullPath.c_str());
82 }