chiark / gitweb /
set explicit colors instead of using rc file
[disorder] / disobedience / misc.c
... / ...
CommitLineData
1/*
2 * This file is part of DisOrder
3 * Copyright (C) 2006 Richard Kettlewell
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 * USA
19 */
20/** @file disobedience/misc.c
21 * @brief Miscellaneous GTK+ interfacing stuff
22 */
23
24#include "disobedience.h"
25#include "table.h"
26
27struct image {
28 const char *name;
29 const guint8 *data;
30};
31
32#include "images.h"
33
34/* Miscellaneous GTK+ stuff ------------------------------------------------ */
35
36WT(cached_image);
37
38/* Functions */
39
40/** @brief Put scrollbars around a widget
41 * @param child Widget to surround
42 * @return Scroll widget
43 */
44GtkWidget *scroll_widget(GtkWidget *child) {
45 GtkWidget *scroller = gtk_scrolled_window_new(0, 0);
46 GtkAdjustment *adj;
47
48 D(("scroll_widget"));
49 /* Why isn't _AUTOMATIC the default? */
50 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scroller),
51 GTK_POLICY_AUTOMATIC,
52 GTK_POLICY_AUTOMATIC);
53 if(GTK_IS_LAYOUT(child)) {
54 /* Child widget has native scroll support */
55 gtk_container_add(GTK_CONTAINER(scroller), child);
56 /* Fix up the step increments if they are 0 (seems like an odd default?) */
57 if(GTK_IS_LAYOUT(child)) {
58 adj = gtk_layout_get_hadjustment(GTK_LAYOUT(child));
59 if(!adj->step_increment) adj->step_increment = 16;
60 adj = gtk_layout_get_vadjustment(GTK_LAYOUT(child));
61 if(!adj->step_increment) adj->step_increment = 16;
62 }
63 } else {
64 /* Child widget requires a viewport */
65 gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(scroller),
66 child);
67 }
68 set_slider_colors(GTK_SCROLLED_WINDOW(scroller)->hscrollbar);
69 set_slider_colors(GTK_SCROLLED_WINDOW(scroller)->vscrollbar);
70 return scroller;
71}
72
73/** @brief Find an image
74 * @param name Relative path to image
75 * @return pixbuf containing image
76 *
77 * Images are cached so it's perfectly sensible to call this lots of times even
78 * for the same image.
79 *
80 * Images are searched for in @c pkgdatadir/static.
81 */
82GdkPixbuf *find_image(const char *name) {
83 static const struct cache_type image_cache_type = { INT_MAX };
84
85 GdkPixbuf *pb;
86 char *path;
87 GError *err = 0;
88 int n;
89
90 if(!(pb = (GdkPixbuf *)cache_get(&image_cache_type, name))) {
91 if((n = TABLE_FIND(images, struct image, name, name)) >= 0) {
92 /* Use the built-in copy */
93 if(!(pb = gdk_pixbuf_new_from_inline(-1, images[n].data, FALSE, &err))) {
94 error(0, "%s", err->message);
95 return 0;
96 }
97 } else {
98 /* See if there's a copy on disk */
99 byte_xasprintf(&path, "%s/static/%s", pkgdatadir, name);
100 if(!(pb = gdk_pixbuf_new_from_file(path, &err))) {
101 error(0, "%s", err->message);
102 return 0;
103 }
104 }
105 NW(cached_image);
106 cache_put(&image_cache_type, name, pb);
107 }
108 return pb;
109}
110
111/** @brief Pop up a message */
112void popup_msg(GtkMessageType mt, const char *msg) {
113 GtkWidget *w;
114
115 w = gtk_message_dialog_new(GTK_WINDOW(toplevel),
116 GTK_DIALOG_MODAL|GTK_DIALOG_DESTROY_WITH_PARENT,
117 mt,
118 GTK_BUTTONS_CLOSE,
119 "%s", msg);
120 gtk_dialog_run(GTK_DIALOG(w));
121 gtk_widget_destroy(w);
122}
123
124/** @brief Pop up an error message */
125void fpopup_msg(GtkMessageType mt, const char *fmt, ...) {
126 va_list ap;
127 char *msg;
128
129 va_start(ap, fmt);
130 byte_xvasprintf(&msg, fmt, ap);
131 va_end(ap);
132 popup_msg(mt, msg);
133}
134
135/** @brief Create a button with an icon in it
136 * @param path (relative) path to image
137 * @param tooltip Tooltip or NULL to not set one
138 * @return Button
139 */
140GtkWidget *iconbutton(const char *path, const char *tip) {
141 GtkWidget *button, *content;;
142 GdkPixbuf *pb;
143
144 NW(button);
145 button = gtk_button_new();
146 if((pb = find_image(path))) {
147 NW(image);
148 content = gtk_image_new_from_pixbuf(pb);
149 } else {
150 NW(label);
151 content = gtk_label_new(path);
152 }
153 gtk_container_add(GTK_CONTAINER(button), content);
154 if(tip)
155 gtk_tooltips_set_tip(tips, button, tip, "");
156 return button;
157}
158
159/** @brief Create buttons and pack them into an hbox */
160GtkWidget *create_buttons(const struct button *buttons,
161 size_t nbuttons) {
162 size_t n;
163 GtkWidget *const hbox = gtk_hbox_new(FALSE, 1);
164
165 for(n = 0; n < nbuttons; ++n) {
166 GtkWidget *const button = gtk_button_new_from_stock(buttons[n].stock);
167 g_signal_connect(G_OBJECT(button), "clicked",
168 G_CALLBACK(buttons[n].clicked), 0);
169 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 1);
170 gtk_tooltips_set_tip(tips, button, buttons[n].tip, "");
171 }
172 return hbox;
173}
174
175/*
176Local Variables:
177c-basic-offset:2
178comment-column:40
179fill-column:79
180indent-tabs-mode:nil
181End:
182*/