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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
|
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*-
nautilus-background.c: Object for the background of a widget.
Copyright (C) 2000 Eazel, Inc.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public
License along with this program; if not, write to the
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
Author: Darin Adler <darin@eazel.com>
*/
#include <config.h>
#include "nautilus-background.h"
#include <gtk/gtksignal.h>
#include "nautilus-gdk-extensions.h"
#include "nautilus-gdk-pixbuf-extensions.h"
#include "nautilus-gnome-extensions.h"
#include "nautilus-background-canvas-group.h"
#include "nautilus-lib-self-check-functions.h"
#include "nautilus-gtk-macros.h"
#include "nautilus-string.h"
#include <libgnomeui/gnome-canvas.h>
#include <libgnomeui/gnome-canvas-util.h>
#include <libart_lgpl/art_rgb_affine.h>
#include <libart_lgpl/art_rgb_rgba_affine.h>
#include <libart_lgpl/art_svp_vpath.h>
static void nautilus_background_initialize_class (gpointer klass);
static void nautilus_background_initialize (gpointer object,
gpointer klass);
static void nautilus_background_destroy (GtkObject *object);
static void nautilus_background_draw_flat_box (GtkStyle *style,
GdkWindow *window,
GtkStateType state_type,
GtkShadowType shadow_type,
GdkRectangle *area,
GtkWidget *widget,
char *detail,
int x,
int y,
int width,
int height);
static void nautilus_background_real_reset (NautilusBackground *background);
NAUTILUS_DEFINE_CLASS_BOILERPLATE (NautilusBackground, nautilus_background, GTK_TYPE_OBJECT)
enum {
APPEARANCE_CHANGED,
SETTINGS_CHANGED,
RESET,
LAST_SIGNAL
};
#define RESET_BACKGROUND_MAGIC_IMAGE_NAME "reset.png"
static guint signals[LAST_SIGNAL];
struct NautilusBackgroundDetails {
char *color;
char *tile_image_uri;
GdkPixmap *tile_pixmap;
GdkPixbuf *tile_image;
NautilusPixbufLoadHandle *load_tile_image_handle;
gboolean combine_mode;
};
static void
nautilus_background_initialize_class (gpointer klass)
{
GtkObjectClass *object_class;
NautilusBackgroundClass *background_class;
object_class = GTK_OBJECT_CLASS (klass);
background_class = NAUTILUS_BACKGROUND_CLASS (klass);
signals[APPEARANCE_CHANGED] =
gtk_signal_new ("appearance_changed",
GTK_RUN_FIRST | GTK_RUN_NO_RECURSE,
object_class->type,
GTK_SIGNAL_OFFSET (NautilusBackgroundClass,
appearance_changed),
gtk_marshal_NONE__NONE,
GTK_TYPE_NONE,
0);
signals[SETTINGS_CHANGED] =
gtk_signal_new ("settings_changed",
GTK_RUN_FIRST | GTK_RUN_NO_RECURSE,
object_class->type,
GTK_SIGNAL_OFFSET (NautilusBackgroundClass,
settings_changed),
gtk_marshal_NONE__NONE,
GTK_TYPE_NONE,
0);
signals[RESET] =
gtk_signal_new ("reset",
GTK_RUN_FIRST | GTK_RUN_NO_RECURSE,
object_class->type,
GTK_SIGNAL_OFFSET (NautilusBackgroundClass,
reset),
gtk_marshal_NONE__NONE,
GTK_TYPE_NONE,
0);
gtk_object_class_add_signals (object_class, signals, LAST_SIGNAL);
object_class->destroy = nautilus_background_destroy;
background_class->reset = nautilus_background_real_reset;
}
static void
nautilus_background_initialize (gpointer object, gpointer klass)
{
NautilusBackground *background;
background = NAUTILUS_BACKGROUND(object);
background->details = g_new0 (NautilusBackgroundDetails, 1);
}
static void
nautilus_background_destroy (GtkObject *object)
{
NautilusBackground *background;
background = NAUTILUS_BACKGROUND (object);
nautilus_cancel_gdk_pixbuf_load (background->details->load_tile_image_handle);
g_free (background->details->color);
g_free (background->details->tile_image_uri);
if (background->details->tile_image != NULL) {
gdk_pixbuf_unref (background->details->tile_image);
}
g_free (background->details);
NAUTILUS_CALL_PARENT_CLASS (GTK_OBJECT_CLASS, destroy, (object));
}
/* handle the combine mode getting and setting */
gboolean
nautilus_background_get_combine_mode (NautilusBackground *background)
{
return background->details->combine_mode;
}
void
nautilus_background_set_combine_mode (NautilusBackground *background, gboolean new_combine_mode)
{
if (new_combine_mode != background->details->combine_mode) {
background->details->combine_mode = new_combine_mode;
gtk_signal_emit (GTK_OBJECT (background),
signals[SETTINGS_CHANGED]);
gtk_signal_emit (GTK_OBJECT (background),
signals[APPEARANCE_CHANGED]);
}
}
NautilusBackground *
nautilus_background_new (void)
{
return NAUTILUS_BACKGROUND (gtk_type_new (NAUTILUS_TYPE_BACKGROUND));
}
/* this routine is for gdk style rendering, which doesn't naturally support transparency, so we
draw into a pixbuf offscreen if necessary (coming soon */
void
nautilus_background_draw (NautilusBackground *background,
GdkDrawable *drawable,
GdkGC *gc,
const GdkRectangle *rectangle,
int origin_x,
int origin_y)
{
GdkPixbuf *pixbuf;
GnomeCanvasBuf buffer;
char *start_color_spec, *end_color_spec;
guint32 start_rgb, end_rgb;
gboolean horizontal_gradient;
if (background->details->combine_mode) {
/* allocate a pixbuf the size of the rectangle */
pixbuf = gdk_pixbuf_new (GDK_COLORSPACE_RGB, FALSE, 8, rectangle->width, rectangle->height);
/* contrive a CanvasBuf structure to point to it */
buffer.buf = gdk_pixbuf_get_pixels (pixbuf);
buffer.buf_rowstride = gdk_pixbuf_get_rowstride (pixbuf);
buffer.rect.x0 = rectangle->x;
buffer.rect.y0 = rectangle->y;
buffer.rect.x1 = rectangle->x + rectangle->width;
buffer.rect.y1 = rectangle->y + rectangle->height;
buffer.bg_color = 0xFFFFFFFF;
buffer.is_buf = FALSE;
buffer.is_bg = FALSE;
/* invoke the anti-aliased code to do the work */
nautilus_background_draw_aa (background, &buffer, rectangle->width, rectangle->height);
/* blit the pixbuf to the drawable */
gdk_pixbuf_render_to_drawable (pixbuf, drawable, gc,
0, 0,
rectangle->x, rectangle->y, rectangle->width, rectangle->height,
GDK_RGB_DITHER_NORMAL, origin_x, origin_y);
/* free things up and we're done */
gdk_pixbuf_unref (pixbuf);
return;
}
if (background->details->tile_image != NULL) {
nautilus_gdk_pixbuf_render_to_drawable_tiled (background->details->tile_image,
drawable,
gc,
rectangle,
GDK_RGB_DITHER_NORMAL,
origin_x, origin_y);
} else {
start_color_spec = nautilus_gradient_get_start_color_spec (background->details->color);
end_color_spec = nautilus_gradient_get_end_color_spec (background->details->color);
horizontal_gradient = nautilus_gradient_is_horizontal (background->details->color);
start_rgb = nautilus_parse_rgb_with_white_default (start_color_spec);
end_rgb = nautilus_parse_rgb_with_white_default (end_color_spec);
g_free (start_color_spec);
g_free (end_color_spec);
nautilus_fill_rectangle_with_gradient (drawable,
gc,
rectangle,
start_rgb,
end_rgb,
horizontal_gradient);
}
}
static void
draw_pixbuf_aa (GdkPixbuf *pixbuf, GnomeCanvasBuf *buf, double affine[6], int x_offset, int y_offset)
{
void (* affine_function)
(art_u8 *dst, int x0, int y0, int x1, int y1, int dst_rowstride,
const art_u8 *src, int src_width, int src_height, int src_rowstride,
const double affine[6],
ArtFilterLevel level,
ArtAlphaGamma *alpha_gamma);
affine[4] += x_offset;
affine[5] += y_offset;
affine_function = gdk_pixbuf_get_has_alpha (pixbuf)
? art_rgb_rgba_affine
: art_rgb_affine;
(* affine_function)
(buf->buf,
buf->rect.x0, buf->rect.y0,
buf->rect.x1, buf->rect.y1,
buf->buf_rowstride,
gdk_pixbuf_get_pixels (pixbuf),
gdk_pixbuf_get_width (pixbuf),
gdk_pixbuf_get_height (pixbuf),
gdk_pixbuf_get_rowstride (pixbuf),
affine,
ART_FILTER_NEAREST,
NULL);
affine[4] -= x_offset;
affine[5] -= y_offset;
}
/* fill the canvas buffer with a tiled pixmap */
static void
draw_pixbuf_tiled_aa(GdkPixbuf *pixbuf, GnomeCanvasBuf *buffer)
{
int x, y;
int start_x, start_y;
int end_x, end_y;
int tile_x, tile_y;
int blit_x, blit_y;
int tile_width, tile_height;
int blit_width, blit_height;
int tile_offset_x, tile_offset_y;
double affine[6];
art_affine_identity(affine);
tile_width = gdk_pixbuf_get_width (pixbuf);
tile_height = gdk_pixbuf_get_height (pixbuf);
tile_offset_x = buffer->rect.x0 % tile_width;
tile_offset_y = buffer->rect.y0 % tile_height;
start_x = buffer->rect.x0 - tile_offset_x;
start_y = buffer->rect.y0 - tile_offset_y;
end_x = buffer->rect.x1;
end_y = buffer->rect.y1;
for (x = start_x; x < end_x; x += tile_width) {
blit_x = MAX (x, buffer->rect.x0);
tile_x = blit_x - x;
blit_width = MIN (tile_width, end_x - x) - tile_x;
for (y = start_y; y < end_y; y += tile_height) {
blit_y = MAX (y, buffer->rect.y0);
tile_y = blit_y - y;
blit_height = MIN (tile_height, end_y - y) - tile_y;
draw_pixbuf_aa(pixbuf, buffer, affine, x, y);
}
}
}
/* draw the background on the anti-aliased canvas */
void nautilus_background_draw_aa (NautilusBackground *background,
GnomeCanvasBuf *buffer,
int entire_width,
int entire_height)
{
char *start_color_spec, *end_color_spec;
guint32 start_rgb, end_rgb;
gboolean horizontal_gradient;
if (!buffer->is_buf) {
if (background->details->combine_mode || (background->details->tile_image == NULL)) {
start_color_spec = nautilus_gradient_get_start_color_spec (background->details->color);
end_color_spec = nautilus_gradient_get_end_color_spec (background->details->color);
horizontal_gradient = nautilus_gradient_is_horizontal (background->details->color);
start_rgb = nautilus_parse_rgb_with_white_default (start_color_spec);
end_rgb = nautilus_parse_rgb_with_white_default (end_color_spec);
g_free (start_color_spec);
g_free (end_color_spec);
if (start_rgb != end_rgb) {
nautilus_gnome_canvas_fill_with_gradient
(buffer, entire_width, entire_height,
start_rgb, end_rgb,
horizontal_gradient);
} else
gnome_canvas_buf_ensure_buf(buffer);
}
if (background->details->tile_image) {
draw_pixbuf_tiled_aa (background->details->tile_image, buffer);
}
buffer->is_buf = TRUE;
}
}
char *
nautilus_background_get_color (NautilusBackground *background)
{
g_return_val_if_fail (NAUTILUS_IS_BACKGROUND (background), NULL);
return g_strdup (background->details->color);
}
char *
nautilus_background_get_tile_image_uri (NautilusBackground *background)
{
g_return_val_if_fail (NAUTILUS_IS_BACKGROUND (background), NULL);
return g_strdup (background->details->tile_image_uri);
}
void
nautilus_background_set_color (NautilusBackground *background,
const char *color)
{
g_return_if_fail (NAUTILUS_IS_BACKGROUND (background));
if (nautilus_strcmp (background->details->color, color) == 0) {
return;
}
g_free (background->details->color);
background->details->color = g_strdup (color);
gtk_signal_emit (GTK_OBJECT (background),
signals[SETTINGS_CHANGED]);
gtk_signal_emit (GTK_OBJECT (background),
signals[APPEARANCE_CHANGED]);
}
static void
load_image_callback (GnomeVFSResult error,
GdkPixbuf *pixbuf,
gpointer callback_data)
{
NautilusBackground *background;
background = NAUTILUS_BACKGROUND (callback_data);
g_assert (background->details->tile_image == NULL);
g_assert (background->details->load_tile_image_handle != NULL);
background->details->load_tile_image_handle = NULL;
/* Just ignore errors. */
if (pixbuf == NULL) {
return;
}
gdk_pixbuf_ref (pixbuf);
background->details->tile_image = pixbuf;
gtk_signal_emit (GTK_OBJECT (background),
signals[APPEARANCE_CHANGED]);
}
static void
start_loading_tile_image (NautilusBackground *background)
{
if (background->details->tile_image_uri == NULL) {
return;
}
background->details->load_tile_image_handle =
nautilus_gdk_pixbuf_load_async (background->details->tile_image_uri,
load_image_callback,
background);
}
void
nautilus_background_receive_dropped_background_image (NautilusBackground *background,
const char *image_uri)
{
/* Special case the reset-background image by file name. */
if (nautilus_str_has_suffix (image_uri, "/" RESET_BACKGROUND_MAGIC_IMAGE_NAME)) {
nautilus_background_reset (background);
} else {
nautilus_background_set_tile_image_uri (background, image_uri);
}
}
void
nautilus_background_set_tile_image_uri (NautilusBackground *background,
const char *image_uri)
{
g_return_if_fail (NAUTILUS_IS_BACKGROUND (background));
if (nautilus_strcmp (background->details->tile_image_uri, image_uri) == 0) {
return;
}
nautilus_cancel_gdk_pixbuf_load (background->details->load_tile_image_handle);
background->details->load_tile_image_handle = NULL;
g_free (background->details->tile_image_uri);
if (background->details->tile_image != NULL) {
gdk_pixbuf_unref (background->details->tile_image);
background->details->tile_image = NULL;
}
background->details->tile_image_uri = g_strdup (image_uri);
start_loading_tile_image (background);
gtk_signal_emit (GTK_OBJECT (background),
signals[SETTINGS_CHANGED]);
gtk_signal_emit (GTK_OBJECT (background),
signals[APPEARANCE_CHANGED]);
}
static GtkStyleClass *
nautilus_gtk_style_get_default_class (void)
{
static GtkStyleClass *default_class;
GtkStyle *style;
if (default_class == NULL) {
style = gtk_style_new ();
default_class = style->klass;
gtk_style_unref (style);
}
return default_class;
}
static void
nautilus_gdk_window_update_sizes (GdkWindow *window, int *width, int *height)
{
g_return_if_fail (window != NULL);
g_return_if_fail (width != NULL);
g_return_if_fail (height != NULL);
if (*width == -1 && *height == -1) {
gdk_window_get_size (window, width, height);
} else if (*width == -1) {
gdk_window_get_size (window, width, NULL);
} else if (*height == -1) {
gdk_window_get_size (window, NULL, height);
}
}
static void
nautilus_background_draw_flat_box (GtkStyle *style,
GdkWindow *window,
GtkStateType state_type,
GtkShadowType shadow_type,
GdkRectangle *area,
GtkWidget *widget,
char *detail,
int x,
int y,
int width,
int height)
{
gboolean call_parent;
NautilusBackground *background;
GdkGC *gc;
GdkRectangle rectangle;
call_parent = TRUE;
background = NULL;
if (state_type == GTK_STATE_NORMAL) {
background = nautilus_get_widget_background (widget);
if (background != NULL) {
if (nautilus_gradient_is_gradient (background->details->color) ||
(background->details->tile_image != NULL)) {
call_parent = FALSE;
}
}
}
if (call_parent) {
(* nautilus_gtk_style_get_default_class()->draw_flat_box)
(style, window, state_type, shadow_type, area, widget,
detail, x, y, width, height);
return;
}
gc = style->bg_gc[state_type];
if (area)
gdk_gc_set_clip_rectangle (gc, area);
nautilus_gdk_window_update_sizes (window, &width, &height);
rectangle.x = x;
rectangle.y = y;
rectangle.width = width;
rectangle.height = height;
nautilus_background_draw (background, window, gc,
&rectangle, 0, 0);
}
static GtkStyleClass *
nautilus_background_get_gtk_style_class (void)
{
static GtkStyleClass *klass;
if (klass == NULL) {
static GtkStyleClass klass_storage;
klass = &klass_storage;
*klass = *nautilus_gtk_style_get_default_class ();
klass->draw_flat_box = nautilus_background_draw_flat_box;
}
return klass;
}
static void
nautilus_background_set_widget_style (NautilusBackground *background,
GtkWidget *widget)
{
GtkStyle *style;
char *start_color_spec;
GdkColor color;
g_return_if_fail (NAUTILUS_IS_BACKGROUND (background));
g_return_if_fail (GTK_IS_WIDGET (widget));
style = gtk_widget_get_style (widget);
/* Make a copy of the style. */
style = gtk_style_copy (style);
/* Give it the special class that allows it to draw gradients. */
style->klass = nautilus_background_get_gtk_style_class ();
/* Set up the colors in the style. */
start_color_spec = nautilus_gradient_get_start_color_spec (background->details->color);
nautilus_gdk_color_parse_with_white_default (start_color_spec, &color);
g_free (start_color_spec);
style->bg[GTK_STATE_NORMAL] = color;
style->base[GTK_STATE_NORMAL] = color;
style->bg[GTK_STATE_ACTIVE] = color;
style->base[GTK_STATE_ACTIVE] = color;
/* Put the style in the widget. */
gtk_widget_set_style (widget, style);
gtk_style_unref (style);
}
/**
* nautilus_background_is_set:
*
* Check whether the background's color or image has been set.
*/
gboolean
nautilus_background_is_set (NautilusBackground *background)
{
return background->details->color != NULL ||
background->details->tile_image_uri != NULL;
}
/**
* nautilus_background_reset:
*
* Emit the reset signal to forget any color or image that has been
* set previously.
*/
void
nautilus_background_reset (NautilusBackground *background)
{
gtk_signal_emit (GTK_OBJECT (background),
signals[RESET]);
}
static void
nautilus_background_real_reset (NautilusBackground *background)
{
nautilus_background_set_color (background, NULL);
nautilus_background_set_tile_image_uri (background, NULL);
}
static void
nautilus_background_set_up_canvas (GtkWidget *widget)
{
g_return_if_fail (GTK_IS_WIDGET (widget));
/* Attach ourselves to a canvas in a way that will work.
Changing the style is not sufficient.
Since there's no signal to override in GnomeCanvas to control
drawing the background, we change the class of the canvas root.
This gives us a chance to draw the background before any of the
objects draw themselves, and has no effect on the bounds or
anything related to scrolling.
We settled on this after less-than-thrilling results using a
canvas item as the background. The canvas item contributed to
the bounds of the canvas and had to constantly be resized.
*/
if (GNOME_IS_CANVAS (widget)) {
g_assert (GTK_OBJECT (GNOME_CANVAS (widget)->root)->klass
== gtk_type_class (GNOME_TYPE_CANVAS_GROUP)
|| GTK_OBJECT (GNOME_CANVAS (widget)->root)->klass
== gtk_type_class (NAUTILUS_TYPE_BACKGROUND_CANVAS_GROUP));
GTK_OBJECT (GNOME_CANVAS (widget)->root)->klass =
gtk_type_class (NAUTILUS_TYPE_BACKGROUND_CANVAS_GROUP);
}
}
static void
nautilus_widget_background_changed (GtkWidget *widget, NautilusBackground *background)
{
nautilus_background_set_widget_style (background, widget);
nautilus_background_set_up_canvas (widget);
gtk_widget_queue_clear (widget);
}
/* Gets the background attached to a widget.
If the widget doesn't already have a NautilusBackground object,
this will create one. To change the widget's background, you can
just call nautilus_background methods on the widget.
Later, we might want a call to find out if we already have a background,
or a way to share the same background among multiple widgets; both would
be straightforward.
*/
NautilusBackground *
nautilus_get_widget_background (GtkWidget *widget)
{
gpointer data;
NautilusBackground *background;
g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
/* Check for an existing background. */
data = gtk_object_get_data (GTK_OBJECT (widget), "nautilus_background");
if (data != NULL) {
g_assert (NAUTILUS_IS_BACKGROUND (data));
return data;
}
/* Store the background in the widget's data. */
background = nautilus_background_new ();
gtk_object_set_data_full (GTK_OBJECT (widget), "nautilus_background",
background, (GtkDestroyNotify) gtk_object_unref);
gtk_object_ref (GTK_OBJECT (background));
gtk_object_sink (GTK_OBJECT (background));
/* Arrange to get the signal whenever the background changes. */
gtk_signal_connect_object_while_alive (GTK_OBJECT (background),
"appearance_changed",
nautilus_widget_background_changed,
GTK_OBJECT (widget));
nautilus_widget_background_changed (widget, background);
return background;
}
gboolean
nautilus_background_is_too_complex_for_gtk_style (NautilusBackground *background)
{
if (background == NULL) {
return FALSE;
}
g_return_val_if_fail (NAUTILUS_IS_BACKGROUND (background), FALSE);
if (background->details->tile_image != NULL) {
return TRUE;
}
if (nautilus_gradient_is_gradient (background->details->color)) {
return TRUE;
}
return FALSE;
}
void
nautilus_background_receive_dropped_color (NautilusBackground *background,
GtkWidget *widget,
int drop_location_x,
int drop_location_y,
const GtkSelectionData *selection_data)
{
guint16 *channels;
char *color_spec;
char *new_gradient_spec;
int left_border, right_border, top_border, bottom_border;
g_return_if_fail (NAUTILUS_IS_BACKGROUND (background));
g_return_if_fail (GTK_IS_WIDGET (widget));
g_return_if_fail (selection_data != NULL);
/* Convert the selection data into a color spec. */
if (selection_data->length != 8 || selection_data->format != 16) {
g_warning ("received invalid color data");
return;
}
channels = (guint16 *) selection_data->data;
color_spec = g_strdup_printf ("rgb:%04hX/%04hX/%04hX", channels[0], channels[1], channels[2]);
/* Figure out if the color was dropped close enough to an edge to create a gradient.
For the moment, this is hard-wired, but later the widget will have to have some
say in where the borders are.
*/
left_border = 32;
right_border = widget->allocation.width - 32;
top_border = 32;
bottom_border = widget->allocation.height - 32;
if (drop_location_x < left_border && drop_location_x <= right_border) {
new_gradient_spec = nautilus_gradient_set_left_color_spec (background->details->color, color_spec);
} else if (drop_location_x >= left_border && drop_location_x > right_border) {
new_gradient_spec = nautilus_gradient_set_right_color_spec (background->details->color, color_spec);
} else if (drop_location_y < top_border && drop_location_y <= bottom_border) {
new_gradient_spec = nautilus_gradient_set_top_color_spec (background->details->color, color_spec);
} else if (drop_location_y >= top_border && drop_location_y > bottom_border) {
new_gradient_spec = nautilus_gradient_set_bottom_color_spec (background->details->color, color_spec);
} else {
new_gradient_spec = g_strdup (color_spec);
}
g_free (color_spec);
nautilus_background_set_color (background, new_gradient_spec);
nautilus_background_set_tile_image_uri (background, NULL);
g_free (new_gradient_spec);
}
/* self check code */
#if !defined (NAUTILUS_OMIT_SELF_CHECK)
void
nautilus_self_check_background (void)
{
NautilusBackground *background;
background = nautilus_background_new ();
nautilus_background_set_color (background, NULL);
nautilus_background_set_color (background, "");
nautilus_background_set_color (background, "red");
nautilus_background_set_color (background, "red-blue");
nautilus_background_set_color (background, "red-blue:h");
gtk_object_unref (GTK_OBJECT (background));
}
#endif /* !NAUTILUS_OMIT_SELF_CHECK */
|