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
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
|
#define __SP_DESKTOP_STYLE_C__
/** \file
* Desktop style management
*
* Authors:
* bulia byak
* verbalshadow
*
* Copyright (C) 2004, 2006 authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <string>
#include <cstring>
#include "desktop.h"
#include "color-rgba.h"
#include "svg/css-ostringstream.h"
#include "svg/svg.h"
#include "svg/svg-color.h"
#include "selection.h"
#include "inkscape.h"
#include "style.h"
#include "preferences.h"
#include "sp-use.h"
#include "filters/blend.h"
#include "sp-filter.h"
#include "sp-filter-reference.h"
#include "sp-gaussian-blur.h"
#include "sp-flowtext.h"
#include "sp-flowregion.h"
#include "sp-flowdiv.h"
#include "sp-linear-gradient.h"
#include "sp-pattern.h"
#include "sp-radial-gradient.h"
#include "sp-textpath.h"
#include "sp-tref.h"
#include "sp-tspan.h"
#include "xml/repr.h"
#include "libnrtype/font-style-to-pos.h"
#include "sp-path.h"
#include "desktop-style.h"
#include "svg/svg-icc-color.h"
#include "svg/svg-device-color.h"
#include "box3d-side.h"
/**
* Set color on selection on desktop.
*/
void
sp_desktop_set_color(SPDesktop *desktop, ColorRGBA const &color, bool is_relative, bool fill)
{
/// \todo relative color setting
if (is_relative) {
g_warning("FIXME: relative color setting not yet implemented");
return;
}
guint32 rgba = SP_RGBA32_F_COMPOSE(color[0], color[1], color[2], color[3]);
gchar b[64];
sp_svg_write_color(b, sizeof(b), rgba);
SPCSSAttr *css = sp_repr_css_attr_new();
if (fill) {
sp_repr_css_set_property(css, "fill", b);
Inkscape::CSSOStringStream osalpha;
osalpha << color[3];
sp_repr_css_set_property(css, "fill-opacity", osalpha.str().c_str());
} else {
sp_repr_css_set_property(css, "stroke", b);
Inkscape::CSSOStringStream osalpha;
osalpha << color[3];
sp_repr_css_set_property(css, "stroke-opacity", osalpha.str().c_str());
}
sp_desktop_set_style(desktop, css);
sp_repr_css_attr_unref(css);
}
/**
* Apply style on object and children, recursively.
*/
void
sp_desktop_apply_css_recursive(SPObject *o, SPCSSAttr *css, bool skip_lines)
{
// non-items should not have style
if (!SP_IS_ITEM(o))
return;
// 1. tspans with role=line are not regular objects in that they are not supposed to have style of their own,
// but must always inherit from the parent text. Same for textPath.
// However, if the line tspan or textPath contains some style (old file?), we reluctantly set our style to it too.
// 2. Generally we allow setting style on clones, but when it's inside flowRegion, do not touch
// it, be it clone or not; it's just styleless shape (because that's how Inkscape does
// flowtext).
if (!(skip_lines
&& ((SP_IS_TSPAN(o) && SP_TSPAN(o)->role == SP_TSPAN_ROLE_LINE)
|| SP_IS_FLOWDIV(o)
|| SP_IS_FLOWPARA(o)
|| SP_IS_TEXTPATH(o))
&& !SP_OBJECT_REPR(o)->attribute("style"))
&&
!(SP_IS_FLOWREGION(o) ||
SP_IS_FLOWREGIONEXCLUDE(o) ||
(SP_IS_USE(o) &&
SP_OBJECT_PARENT(o) &&
(SP_IS_FLOWREGION(SP_OBJECT_PARENT(o)) ||
SP_IS_FLOWREGIONEXCLUDE(SP_OBJECT_PARENT(o))
)
)
)
) {
SPCSSAttr *css_set = sp_repr_css_attr_new();
sp_repr_css_merge(css_set, css);
// Scale the style by the inverse of the accumulated parent transform in the paste context.
{
Geom::Matrix const local(sp_item_i2doc_affine(SP_ITEM(o)));
double const ex(local.descrim());
if ( ( ex != 0. )
&& ( ex != 1. ) ) {
sp_css_attr_scale(css_set, 1/ex);
}
}
sp_repr_css_change(SP_OBJECT_REPR(o), css_set, "style");
sp_repr_css_attr_unref(css_set);
}
// setting style on child of clone spills into the clone original (via shared repr), don't do it!
if (SP_IS_USE(o))
return;
for (SPObject *child = sp_object_first_child(SP_OBJECT(o)) ; child != NULL ; child = SP_OBJECT_NEXT(child) ) {
if (sp_repr_css_property(css, "opacity", NULL) != NULL) {
// Unset properties which are accumulating and thus should not be set recursively.
// For example, setting opacity 0.5 on a group recursively would result in the visible opacity of 0.25 for an item in the group.
SPCSSAttr *css_recurse = sp_repr_css_attr_new();
sp_repr_css_merge(css_recurse, css);
sp_repr_css_set_property(css_recurse, "opacity", NULL);
sp_desktop_apply_css_recursive(child, css_recurse, skip_lines);
sp_repr_css_attr_unref(css_recurse);
} else {
sp_desktop_apply_css_recursive(child, css, skip_lines);
}
}
}
/**
* Apply style on selection on desktop.
*/
void
sp_desktop_set_style(SPDesktop *desktop, SPCSSAttr *css, bool change, bool write_current)
{
if (write_current) {
Inkscape::Preferences *prefs = Inkscape::Preferences::get();
// 1. Set internal value
sp_repr_css_merge(desktop->current, css);
// 1a. Write to prefs; make a copy and unset any URIs first
SPCSSAttr *css_write = sp_repr_css_attr_new();
sp_repr_css_merge(css_write, css);
sp_css_attr_unset_uris(css_write);
prefs->mergeStyle("/desktop/style", css_write);
for (const GSList *i = desktop->selection->itemList(); i != NULL; i = i->next) {
/* last used styles for 3D box faces are stored separately */
if (SP_IS_BOX3D_SIDE (i->data)) {
const char * descr = box3d_side_axes_string(SP_BOX3D_SIDE(i->data));
if (descr != NULL) {
prefs->mergeStyle(Glib::ustring("/desktop/") + descr + "/style", css_write);
}
}
}
sp_repr_css_attr_unref(css_write);
}
if (!change)
return;
// 2. Emit signal
bool intercepted = desktop->_set_style_signal.emit(css);
/** \todo
* FIXME: in set_style, compensate pattern and gradient fills, stroke width,
* rect corners, font size for the object's own transform so that pasting
* fills does not depend on preserve/optimize.
*/
// 3. If nobody has intercepted the signal, apply the style to the selection
if (!intercepted) {
for (GSList const *i = desktop->selection->itemList(); i != NULL; i = i->next) {
/// \todo if the style is text-only, apply only to texts?
sp_desktop_apply_css_recursive(SP_OBJECT(i->data), css, true);
}
}
}
/**
* Return the desktop's current style.
*/
SPCSSAttr *
sp_desktop_get_style(SPDesktop *desktop, bool with_text)
{
SPCSSAttr *css = sp_repr_css_attr_new();
sp_repr_css_merge(css, desktop->current);
if (!css->attributeList()) {
sp_repr_css_attr_unref(css);
return NULL;
} else {
if (!with_text) {
css = sp_css_attr_unset_text(css);
}
return css;
}
}
/**
* Return the desktop's current color.
*/
guint32
sp_desktop_get_color(SPDesktop *desktop, bool is_fill)
{
guint32 r = 0; // if there's no color, return black
gchar const *property = sp_repr_css_property(desktop->current,
is_fill ? "fill" : "stroke",
"#000");
if (desktop->current && property) { // if there is style and the property in it,
if (strncmp(property, "url", 3)) { // and if it's not url,
// read it
r = sp_svg_read_color(property, r);
}
}
return r;
}
double
sp_desktop_get_master_opacity_tool(SPDesktop *desktop, Glib::ustring const &tool, bool *has_opacity)
{
Inkscape::Preferences *prefs = Inkscape::Preferences::get();
SPCSSAttr *css = NULL;
gfloat value = 1.0; // default if nothing else found
if (has_opacity)
*has_opacity = false;
if (prefs->getBool(tool + "/usecurrent")) {
css = sp_desktop_get_style(desktop, true);
} else {
css = prefs->getStyle(tool + "/style");
}
if (css) {
gchar const *property = css ? sp_repr_css_property(css, "opacity", "1.000") : 0;
if (desktop->current && property) { // if there is style and the property in it,
if ( !sp_svg_number_read_f(property, &value) ) {
value = 1.0; // things failed. set back to the default
} else {
if (has_opacity)
*has_opacity = false;
}
}
sp_repr_css_attr_unref(css);
}
return value;
}
double
sp_desktop_get_opacity_tool(SPDesktop *desktop, Glib::ustring const &tool, bool is_fill)
{
Inkscape::Preferences *prefs = Inkscape::Preferences::get();
SPCSSAttr *css = NULL;
gfloat value = 1.0; // default if nothing else found
if (prefs->getBool(tool + "/usecurrent")) {
css = sp_desktop_get_style(desktop, true);
} else {
css = prefs->getStyle(tool + "/style");
}
if (css) {
gchar const *property = css ? sp_repr_css_property(css, is_fill ? "fill-opacity": "stroke-opacity", "1.000") : 0;
if (desktop->current && property) { // if there is style and the property in it,
if ( !sp_svg_number_read_f(property, &value) ) {
value = 1.0; // things failed. set back to the default
}
}
sp_repr_css_attr_unref(css);
}
return value;
}
guint32
sp_desktop_get_color_tool(SPDesktop *desktop, Glib::ustring const &tool, bool is_fill, bool *has_color)
{
Inkscape::Preferences *prefs = Inkscape::Preferences::get();
SPCSSAttr *css = NULL;
guint32 r = 0; // if there's no color, return black
if (has_color)
*has_color = false;
if (prefs->getBool(tool + "/usecurrent")) {
css = sp_desktop_get_style(desktop, true);
} else {
css = prefs->getStyle(tool + "/style");
}
if (css) {
gchar const *property = sp_repr_css_property(css, is_fill ? "fill" : "stroke", "#000");
if (desktop->current && property) { // if there is style and the property in it,
if (strncmp(property, "url", 3) && strncmp(property, "none", 4)) { // and if it's not url or none,
// read it
r = sp_svg_read_color(property, r);
if (has_color)
*has_color = true;
}
}
sp_repr_css_attr_unref(css);
}
return r | 0xff;
}
/**
* Apply the desktop's current style or the tool style to repr.
*/
void
sp_desktop_apply_style_tool(SPDesktop *desktop, Inkscape::XML::Node *repr, Glib::ustring const &tool_path, bool with_text)
{
SPCSSAttr *css_current = sp_desktop_get_style(desktop, with_text);
Inkscape::Preferences *prefs = Inkscape::Preferences::get();
if (prefs->getBool(tool_path + "/usecurrent") && css_current) {
sp_repr_css_set(repr, css_current, "style");
} else {
SPCSSAttr *css = prefs->getInheritedStyle(tool_path + "/style");
sp_repr_css_set(repr, css, "style");
sp_repr_css_attr_unref(css);
}
if (css_current) {
sp_repr_css_attr_unref(css_current);
}
}
/**
* Returns the font size (in SVG pixels) of the text tool style (if text
* tool uses its own style) or desktop style (otherwise).
*/
double
sp_desktop_get_font_size_tool(SPDesktop *desktop)
{
(void)desktop; // TODO cleanup
Inkscape::Preferences *prefs = Inkscape::Preferences::get();
Glib::ustring desktop_style = prefs->getString("/desktop/style");
Glib::ustring style_str;
if ((prefs->getBool("/tools/text/usecurrent")) && !desktop_style.empty()) {
style_str = desktop_style;
} else {
style_str = prefs->getString("/tools/text/style");
}
double ret = 12;
if (!style_str.empty()) {
SPStyle *style = sp_style_new(SP_ACTIVE_DOCUMENT);
sp_style_merge_from_style_string(style, style_str.data());
ret = style->font_size.computed;
sp_style_unref(style);
}
return ret;
}
/** Determine average stroke width, simple method */
// see TODO in dialogs/stroke-style.cpp on how to get rid of this eventually
gdouble
stroke_average_width (GSList const *objects)
{
if (g_slist_length ((GSList *) objects) == 0)
return NR_HUGE;
gdouble avgwidth = 0.0;
bool notstroked = true;
int n_notstroked = 0;
for (GSList const *l = objects; l != NULL; l = l->next) {
if (!SP_IS_ITEM (l->data))
continue;
Geom::Matrix i2d = sp_item_i2d_affine (SP_ITEM(l->data));
SPObject *object = SP_OBJECT(l->data);
if ( object->style->stroke.isNone() ) {
++n_notstroked; // do not count nonstroked objects
continue;
} else {
notstroked = false;
}
avgwidth += SP_OBJECT_STYLE (object)->stroke_width.computed * i2d.descrim();
}
if (notstroked)
return NR_HUGE;
return avgwidth / (g_slist_length ((GSList *) objects) - n_notstroked);
}
/**
* Write to style_res the average fill or stroke of list of objects, if applicable.
*/
int
objects_query_fillstroke (GSList *objects, SPStyle *style_res, bool const isfill)
{
if (g_slist_length(objects) == 0) {
/* No objects, set empty */
return QUERY_STYLE_NOTHING;
}
SPIPaint *paint_res = isfill? &style_res->fill : &style_res->stroke;
bool paintImpossible = true;
paint_res->set = TRUE;
SVGICCColor* iccColor = 0;
SVGDeviceColor* devColor = 0;
bool iccSeen = false;
gfloat c[4];
c[0] = c[1] = c[2] = c[3] = 0.0;
gint num = 0;
gfloat prev[3];
prev[0] = prev[1] = prev[2] = 0.0;
bool same_color = true;
for (GSList const *i = objects; i != NULL; i = i->next) {
SPObject *obj = SP_OBJECT (i->data);
SPStyle *style = SP_OBJECT_STYLE (obj);
if (!style) continue;
SPIPaint *paint = isfill? &style->fill : &style->stroke;
// We consider paint "effectively set" for anything within text hierarchy
SPObject *parent = SP_OBJECT_PARENT (obj);
bool paint_effectively_set =
paint->set || (SP_IS_TEXT(parent) || SP_IS_TEXTPATH(parent) || SP_IS_TSPAN(parent)
|| SP_IS_FLOWTEXT(parent) || SP_IS_FLOWDIV(parent) || SP_IS_FLOWPARA(parent)
|| SP_IS_FLOWTSPAN(parent) || SP_IS_FLOWLINE(parent));
// 1. Bail out with QUERY_STYLE_MULTIPLE_DIFFERENT if necessary
if ((!paintImpossible) && (!paint->isSameType(*paint_res) || (paint_res->set != paint_effectively_set))) {
return QUERY_STYLE_MULTIPLE_DIFFERENT; // different types of paint
}
if (paint_res->set && paint->set && paint_res->isPaintserver()) {
// both previous paint and this paint were a server, see if the servers are compatible
SPPaintServer *server_res = isfill? SP_STYLE_FILL_SERVER (style_res) : SP_STYLE_STROKE_SERVER (style_res);
SPPaintServer *server = isfill? SP_STYLE_FILL_SERVER (style) : SP_STYLE_STROKE_SERVER (style);
if (SP_IS_LINEARGRADIENT (server_res)) {
if (!SP_IS_LINEARGRADIENT(server))
return QUERY_STYLE_MULTIPLE_DIFFERENT; // different kind of server
SPGradient *vector = sp_gradient_get_vector ( SP_GRADIENT (server), FALSE );
SPGradient *vector_res = sp_gradient_get_vector ( SP_GRADIENT (server_res), FALSE );
if (vector_res != vector)
return QUERY_STYLE_MULTIPLE_DIFFERENT; // different gradient vectors
} else if (SP_IS_RADIALGRADIENT (server_res)) {
if (!SP_IS_RADIALGRADIENT(server))
return QUERY_STYLE_MULTIPLE_DIFFERENT; // different kind of server
SPGradient *vector = sp_gradient_get_vector ( SP_GRADIENT (server), FALSE );
SPGradient *vector_res = sp_gradient_get_vector ( SP_GRADIENT (server_res), FALSE );
if (vector_res != vector)
return QUERY_STYLE_MULTIPLE_DIFFERENT; // different gradient vectors
} else if (SP_IS_PATTERN (server_res)) {
if (!SP_IS_PATTERN(server))
return QUERY_STYLE_MULTIPLE_DIFFERENT; // different kind of server
SPPattern *pat = pattern_getroot (SP_PATTERN (server));
SPPattern *pat_res = pattern_getroot (SP_PATTERN (server_res));
if (pat_res != pat)
return QUERY_STYLE_MULTIPLE_DIFFERENT; // different pattern roots
}
}
// 2. Sum color, copy server from paint to paint_res
if (paint_res->set && paint_effectively_set && paint->isColor()) {
gfloat d[3];
sp_color_get_rgb_floatv (&paint->value.color, d);
// Check if this color is the same as previous
if (paintImpossible) {
prev[0] = d[0];
prev[1] = d[1];
prev[2] = d[2];
paint_res->setColor(d[0], d[1], d[2]);
iccColor = paint->value.color.icc;
iccSeen = true;
} else {
if (same_color && (prev[0] != d[0] || prev[1] != d[1] || prev[2] != d[2]))
same_color = false;
if ( iccSeen ) {
if(paint->value.color.icc) {
// TODO fix this
iccColor = 0;
}
}
}
// average color
c[0] += d[0];
c[1] += d[1];
c[2] += d[2];
c[3] += SP_SCALE24_TO_FLOAT (isfill? style->fill_opacity.value : style->stroke_opacity.value);
// average device color
unsigned int it;
if (i==objects /*if this is the first object in the GList*/
&& paint->value.color.device){
devColor = new SVGDeviceColor(*paint->value.color.device);
for (it=0; it < paint->value.color.device->colors.size(); it++){
devColor->colors[it] = 0;
}
}
if (devColor && paint->value.color.device && paint->value.color.device->type == devColor->type){
for (it=0; it < paint->value.color.device->colors.size(); it++){
devColor->colors[it] += paint->value.color.device->colors[it];
}
}
num ++;
}
paintImpossible = false;
paint_res->colorSet = paint->colorSet;
paint_res->currentcolor = paint->currentcolor;
if (paint_res->set && paint_effectively_set && paint->isPaintserver()) { // copy the server
if (isfill) {
sp_style_set_to_uri_string (style_res, true, style->getFillURI());
} else {
sp_style_set_to_uri_string (style_res, false, style->getStrokeURI());
}
}
paint_res->set = paint_effectively_set;
style_res->fill_rule.computed = style->fill_rule.computed; // no averaging on this, just use the last one
}
// After all objects processed, divide the color if necessary and return
if (paint_res->set && paint_res->isColor()) { // set the color
g_assert (num >= 1);
c[0] /= num;
c[1] /= num;
c[2] /= num;
c[3] /= num;
paint_res->setColor(c[0], c[1], c[2]);
if (isfill) {
style_res->fill_opacity.value = SP_SCALE24_FROM_FLOAT (c[3]);
} else {
style_res->stroke_opacity.value = SP_SCALE24_FROM_FLOAT (c[3]);
}
if ( iccSeen && iccColor ) {
// TODO check for existing
SVGICCColor* tmp = new SVGICCColor(*iccColor);
paint_res->value.color.icc = tmp;
}
// divide and store the device-color
if (devColor){
for (unsigned int it=0; it < devColor->colors.size(); it++){
devColor->colors[it] /= num;
}
paint_res->value.color.device = devColor;
}
if (num > 1) {
if (same_color)
return QUERY_STYLE_MULTIPLE_SAME;
else
return QUERY_STYLE_MULTIPLE_AVERAGED;
} else {
return QUERY_STYLE_SINGLE;
}
}
// Not color
if (g_slist_length(objects) > 1) {
return QUERY_STYLE_MULTIPLE_SAME;
} else {
return QUERY_STYLE_SINGLE;
}
}
/**
* Write to style_res the average opacity of a list of objects.
*/
int
objects_query_opacity (GSList *objects, SPStyle *style_res)
{
if (g_slist_length(objects) == 0) {
/* No objects, set empty */
return QUERY_STYLE_NOTHING;
}
gdouble opacity_sum = 0;
gdouble opacity_prev = -1;
bool same_opacity = true;
guint opacity_items = 0;
for (GSList const *i = objects; i != NULL; i = i->next) {
SPObject *obj = SP_OBJECT (i->data);
SPStyle *style = SP_OBJECT_STYLE (obj);
if (!style) continue;
double opacity = SP_SCALE24_TO_FLOAT(style->opacity.value);
opacity_sum += opacity;
if (opacity_prev != -1 && opacity != opacity_prev)
same_opacity = false;
opacity_prev = opacity;
opacity_items ++;
}
if (opacity_items > 1)
opacity_sum /= opacity_items;
style_res->opacity.value = SP_SCALE24_FROM_FLOAT(opacity_sum);
if (opacity_items == 0) {
return QUERY_STYLE_NOTHING;
} else if (opacity_items == 1) {
return QUERY_STYLE_SINGLE;
} else {
if (same_opacity)
return QUERY_STYLE_MULTIPLE_SAME;
else
return QUERY_STYLE_MULTIPLE_AVERAGED;
}
}
/**
* Write to style_res the average stroke width of a list of objects.
*/
int
objects_query_strokewidth (GSList *objects, SPStyle *style_res)
{
if (g_slist_length(objects) == 0) {
/* No objects, set empty */
return QUERY_STYLE_NOTHING;
}
gdouble avgwidth = 0.0;
gdouble prev_sw = -1;
bool same_sw = true;
bool noneSet = true; // is stroke set to none?
int n_stroked = 0;
for (GSList const *i = objects; i != NULL; i = i->next) {
SPObject *obj = SP_OBJECT (i->data);
if (!SP_IS_ITEM(obj)) continue;
SPStyle *style = SP_OBJECT_STYLE (obj);
if (!style) continue;
if ( style->stroke.isNone() && !(
style->marker[SP_MARKER_LOC].set || // stroke width affects markers, so if there's no stroke but only markers then we should
style->marker[SP_MARKER_LOC_START].set || // still calculate the stroke width
style->marker[SP_MARKER_LOC_MID].set ||
style->marker[SP_MARKER_LOC_END].set))
{
continue;
}
n_stroked ++;
noneSet &= style->stroke.isNone();
Geom::Matrix i2d = sp_item_i2d_affine (SP_ITEM(obj));
double sw = style->stroke_width.computed * i2d.descrim();
if (prev_sw != -1 && fabs(sw - prev_sw) > 1e-3)
same_sw = false;
prev_sw = sw;
avgwidth += sw;
}
if (n_stroked > 1)
avgwidth /= (n_stroked);
style_res->stroke_width.computed = avgwidth;
style_res->stroke_width.set = true;
style_res->stroke.noneSet = noneSet; // Will only be true if none of the selected objects has it's stroke set.
if (n_stroked == 0) {
return QUERY_STYLE_NOTHING;
} else if (n_stroked == 1) {
return QUERY_STYLE_SINGLE;
} else {
if (same_sw)
return QUERY_STYLE_MULTIPLE_SAME;
else
return QUERY_STYLE_MULTIPLE_AVERAGED;
}
}
/**
* Write to style_res the average miter limit of a list of objects.
*/
int
objects_query_miterlimit (GSList *objects, SPStyle *style_res)
{
if (g_slist_length(objects) == 0) {
/* No objects, set empty */
return QUERY_STYLE_NOTHING;
}
gdouble avgml = 0.0;
int n_stroked = 0;
gdouble prev_ml = -1;
bool same_ml = true;
for (GSList const *i = objects; i != NULL; i = i->next) {
SPObject *obj = SP_OBJECT (i->data);
if (!SP_IS_ITEM(obj)) continue;
SPStyle *style = SP_OBJECT_STYLE (obj);
if (!style) continue;
if ( style->stroke.isNone() ) {
continue;
}
n_stroked ++;
if (prev_ml != -1 && fabs(style->stroke_miterlimit.value - prev_ml) > 1e-3)
same_ml = false;
prev_ml = style->stroke_miterlimit.value;
avgml += style->stroke_miterlimit.value;
}
if (n_stroked > 1)
avgml /= (n_stroked);
style_res->stroke_miterlimit.value = avgml;
style_res->stroke_miterlimit.set = true;
if (n_stroked == 0) {
return QUERY_STYLE_NOTHING;
} else if (n_stroked == 1) {
return QUERY_STYLE_SINGLE;
} else {
if (same_ml)
return QUERY_STYLE_MULTIPLE_SAME;
else
return QUERY_STYLE_MULTIPLE_AVERAGED;
}
}
/**
* Write to style_res the stroke cap of a list of objects.
*/
int
objects_query_strokecap (GSList *objects, SPStyle *style_res)
{
if (g_slist_length(objects) == 0) {
/* No objects, set empty */
return QUERY_STYLE_NOTHING;
}
int cap = -1;
gdouble prev_cap = -1;
bool same_cap = true;
int n_stroked = 0;
for (GSList const *i = objects; i != NULL; i = i->next) {
SPObject *obj = SP_OBJECT (i->data);
if (!SP_IS_ITEM(obj)) continue;
SPStyle *style = SP_OBJECT_STYLE (obj);
if (!style) continue;
if ( style->stroke.isNone() ) {
continue;
}
n_stroked ++;
if (prev_cap != -1 && style->stroke_linecap.value != prev_cap)
same_cap = false;
prev_cap = style->stroke_linecap.value;
cap = style->stroke_linecap.value;
}
style_res->stroke_linecap.value = cap;
style_res->stroke_linecap.set = true;
if (n_stroked == 0) {
return QUERY_STYLE_NOTHING;
} else if (n_stroked == 1) {
return QUERY_STYLE_SINGLE;
} else {
if (same_cap)
return QUERY_STYLE_MULTIPLE_SAME;
else
return QUERY_STYLE_MULTIPLE_DIFFERENT;
}
}
/**
* Write to style_res the stroke join of a list of objects.
*/
int
objects_query_strokejoin (GSList *objects, SPStyle *style_res)
{
if (g_slist_length(objects) == 0) {
/* No objects, set empty */
return QUERY_STYLE_NOTHING;
}
int join = -1;
gdouble prev_join = -1;
bool same_join = true;
int n_stroked = 0;
for (GSList const *i = objects; i != NULL; i = i->next) {
SPObject *obj = SP_OBJECT (i->data);
if (!SP_IS_ITEM(obj)) continue;
SPStyle *style = SP_OBJECT_STYLE (obj);
if (!style) continue;
if ( style->stroke.isNone() ) {
continue;
}
n_stroked ++;
if (prev_join != -1 && style->stroke_linejoin.value != prev_join)
same_join = false;
prev_join = style->stroke_linejoin.value;
join = style->stroke_linejoin.value;
}
style_res->stroke_linejoin.value = join;
style_res->stroke_linejoin.set = true;
if (n_stroked == 0) {
return QUERY_STYLE_NOTHING;
} else if (n_stroked == 1) {
return QUERY_STYLE_SINGLE;
} else {
if (same_join)
return QUERY_STYLE_MULTIPLE_SAME;
else
return QUERY_STYLE_MULTIPLE_DIFFERENT;
}
}
/**
* Write to style_res the average font size and spacing of objects.
*/
int
objects_query_fontnumbers (GSList *objects, SPStyle *style_res)
{
bool different = false;
double size = 0;
double letterspacing = 0;
double linespacing = 0;
bool linespacing_normal = false;
bool letterspacing_normal = false;
double size_prev = 0;
double letterspacing_prev = 0;
double linespacing_prev = 0;
/// \todo FIXME: add word spacing, kerns? rotates?
int texts = 0;
for (GSList const *i = objects; i != NULL; i = i->next) {
SPObject *obj = SP_OBJECT (i->data);
if (!SP_IS_TEXT(obj) && !SP_IS_FLOWTEXT(obj)
&& !SP_IS_TSPAN(obj) && !SP_IS_TREF(obj) && !SP_IS_TEXTPATH(obj)
&& !SP_IS_FLOWDIV(obj) && !SP_IS_FLOWPARA(obj) && !SP_IS_FLOWTSPAN(obj))
continue;
SPStyle *style = SP_OBJECT_STYLE (obj);
if (!style) continue;
texts ++;
size += style->font_size.computed * Geom::Matrix(sp_item_i2d_affine(SP_ITEM(obj))).descrim(); /// \todo FIXME: we assume non-% units here
if (style->letter_spacing.normal) {
if (!different && (letterspacing_prev == 0 || letterspacing_prev == letterspacing))
letterspacing_normal = true;
} else {
letterspacing += style->letter_spacing.computed; /// \todo FIXME: we assume non-% units here
letterspacing_normal = false;
}
double linespacing_current;
if (style->line_height.normal) {
linespacing_current = Inkscape::Text::Layout::LINE_HEIGHT_NORMAL;
if (!different && (linespacing_prev == 0 || linespacing_prev == linespacing_current))
linespacing_normal = true;
} else if (style->line_height.unit == SP_CSS_UNIT_PERCENT || style->font_size.computed == 0) {
linespacing_current = style->line_height.value;
linespacing_normal = false;
} else { // we need % here
linespacing_current = style->line_height.computed / style->font_size.computed;
linespacing_normal = false;
}
linespacing += linespacing_current;
if ((size_prev != 0 && style->font_size.computed != size_prev) ||
(letterspacing_prev != 0 && style->letter_spacing.computed != letterspacing_prev) ||
(linespacing_prev != 0 && linespacing_current != linespacing_prev)) {
different = true;
}
size_prev = style->font_size.computed;
letterspacing_prev = style->letter_spacing.computed;
linespacing_prev = linespacing_current;
// FIXME: we must detect MULTIPLE_DIFFERENT for these too
style_res->text_anchor.computed = style->text_anchor.computed;
style_res->writing_mode.computed = style->writing_mode.computed;
}
if (texts == 0)
return QUERY_STYLE_NOTHING;
if (texts > 1) {
size /= texts;
letterspacing /= texts;
linespacing /= texts;
}
style_res->font_size.computed = size;
style_res->font_size.type = SP_FONT_SIZE_LENGTH;
style_res->letter_spacing.normal = letterspacing_normal;
style_res->letter_spacing.computed = letterspacing;
style_res->line_height.normal = linespacing_normal;
style_res->line_height.computed = linespacing;
style_res->line_height.value = linespacing;
style_res->line_height.unit = SP_CSS_UNIT_PERCENT;
if (texts > 1) {
if (different) {
return QUERY_STYLE_MULTIPLE_AVERAGED;
} else {
return QUERY_STYLE_MULTIPLE_SAME;
}
} else {
return QUERY_STYLE_SINGLE;
}
}
/**
* Write to style_res the average font style of objects.
*/
int
objects_query_fontstyle (GSList *objects, SPStyle *style_res)
{
bool different = false;
bool set = false;
int texts = 0;
for (GSList const *i = objects; i != NULL; i = i->next) {
SPObject *obj = SP_OBJECT (i->data);
if (!SP_IS_TEXT(obj) && !SP_IS_FLOWTEXT(obj)
&& !SP_IS_TSPAN(obj) && !SP_IS_TREF(obj) && !SP_IS_TEXTPATH(obj)
&& !SP_IS_FLOWDIV(obj) && !SP_IS_FLOWPARA(obj) && !SP_IS_FLOWTSPAN(obj))
continue;
SPStyle *style = SP_OBJECT_STYLE (obj);
if (!style) continue;
texts ++;
if (set &&
font_style_to_pos(*style_res).signature() != font_style_to_pos(*style).signature() ) {
different = true; // different styles
}
set = TRUE;
style_res->font_weight.value = style_res->font_weight.computed = style->font_weight.computed;
style_res->font_style.value = style_res->font_style.computed = style->font_style.computed;
style_res->font_stretch.value = style_res->font_stretch.computed = style->font_stretch.computed;
style_res->font_variant.value = style_res->font_variant.computed = style->font_variant.computed;
style_res->text_align.value = style_res->text_align.computed = style->text_align.computed;
}
if (texts == 0 || !set)
return QUERY_STYLE_NOTHING;
if (texts > 1) {
if (different) {
return QUERY_STYLE_MULTIPLE_DIFFERENT;
} else {
return QUERY_STYLE_MULTIPLE_SAME;
}
} else {
return QUERY_STYLE_SINGLE;
}
}
/**
* Write to style_res the average font family of objects.
*/
int
objects_query_fontfamily (GSList *objects, SPStyle *style_res)
{
bool different = false;
int texts = 0;
if (style_res->text->font_family.value) {
g_free(style_res->text->font_family.value);
style_res->text->font_family.value = NULL;
}
style_res->text->font_family.set = FALSE;
for (GSList const *i = objects; i != NULL; i = i->next) {
SPObject *obj = SP_OBJECT (i->data);
if (!SP_IS_TEXT(obj) && !SP_IS_FLOWTEXT(obj)
&& !SP_IS_TSPAN(obj) && !SP_IS_TREF(obj) && !SP_IS_TEXTPATH(obj)
&& !SP_IS_FLOWDIV(obj) && !SP_IS_FLOWPARA(obj) && !SP_IS_FLOWTSPAN(obj))
continue;
SPStyle *style = SP_OBJECT_STYLE (obj);
if (!style) continue;
texts ++;
if (style_res->text->font_family.value && style->text->font_family.value &&
strcmp (style_res->text->font_family.value, style->text->font_family.value)) {
different = true; // different fonts
}
if (style_res->text->font_family.value) {
g_free(style_res->text->font_family.value);
style_res->text->font_family.value = NULL;
}
style_res->text->font_family.set = TRUE;
style_res->text->font_family.value = g_strdup(style->text->font_family.value);
}
if (texts == 0 || !style_res->text->font_family.set)
return QUERY_STYLE_NOTHING;
if (texts > 1) {
if (different) {
return QUERY_STYLE_MULTIPLE_DIFFERENT;
} else {
return QUERY_STYLE_MULTIPLE_SAME;
}
} else {
return QUERY_STYLE_SINGLE;
}
}
int
objects_query_fontspecification (GSList *objects, SPStyle *style_res)
{
bool different = false;
int texts = 0;
if (style_res->text->font_specification.value) {
g_free(style_res->text->font_specification.value);
style_res->text->font_specification.value = NULL;
}
style_res->text->font_specification.set = FALSE;
for (GSList const *i = objects; i != NULL; i = i->next) {
SPObject *obj = SP_OBJECT (i->data);
if (!SP_IS_TEXT(obj) && !SP_IS_FLOWTEXT(obj)
&& !SP_IS_TSPAN(obj) && !SP_IS_TREF(obj) && !SP_IS_TEXTPATH(obj)
&& !SP_IS_FLOWDIV(obj) && !SP_IS_FLOWPARA(obj) && !SP_IS_FLOWTSPAN(obj))
continue;
SPStyle *style = SP_OBJECT_STYLE (obj);
if (!style) continue;
texts ++;
if (style_res->text->font_specification.value && style_res->text->font_specification.set &&
style->text->font_specification.value && style->text->font_specification.set &&
strcmp (style_res->text->font_specification.value, style->text->font_specification.value)) {
different = true; // different fonts
}
if (style->text->font_specification.set) {
if (style_res->text->font_specification.value) {
g_free(style_res->text->font_specification.value);
style_res->text->font_specification.value = NULL;
}
style_res->text->font_specification.set = TRUE;
style_res->text->font_specification.value = g_strdup(style->text->font_specification.value);
}
}
if (texts == 0)
return QUERY_STYLE_NOTHING;
if (texts > 1) {
if (different) {
return QUERY_STYLE_MULTIPLE_DIFFERENT;
} else {
return QUERY_STYLE_MULTIPLE_SAME;
}
} else {
return QUERY_STYLE_SINGLE;
}
}
int
objects_query_blend (GSList *objects, SPStyle *style_res)
{
const int empty_prev = -2;
const int complex_filter = 5;
int blend = 0;
float blend_prev = empty_prev;
bool same_blend = true;
guint items = 0;
for (GSList const *i = objects; i != NULL; i = i->next) {
SPObject *obj = SP_OBJECT (i->data);
SPStyle *style = SP_OBJECT_STYLE (obj);
if(!style || !SP_IS_ITEM(obj)) continue;
items++;
//if object has a filter
if (style->filter.set && style->getFilter()) {
int blurcount = 0;
int blendcount = 0;
// determine whether filter is simple (blend and/or blur) or complex
for(SPObject *primitive_obj = style->getFilter()->children;
primitive_obj && SP_IS_FILTER_PRIMITIVE(primitive_obj);
primitive_obj = primitive_obj->next) {
SPFilterPrimitive *primitive = SP_FILTER_PRIMITIVE(primitive_obj);
if(SP_IS_FEBLEND(primitive))
++blendcount;
else if(SP_IS_GAUSSIANBLUR(primitive))
++blurcount;
else {
blurcount = complex_filter;
break;
}
}
// simple filter
if(blurcount == 1 || blendcount == 1) {
for(SPObject *primitive_obj = style->getFilter()->children;
primitive_obj && SP_IS_FILTER_PRIMITIVE(primitive_obj);
primitive_obj = primitive_obj->next) {
if(SP_IS_FEBLEND(primitive_obj)) {
SPFeBlend *spblend = SP_FEBLEND(primitive_obj);
blend = spblend->blend_mode;
}
}
}
else {
blend = complex_filter;
}
}
// defaults to blend mode = "normal"
else {
blend = 0;
}
if(blend_prev != empty_prev && blend_prev != blend)
same_blend = false;
blend_prev = blend;
}
if (items > 0) {
style_res->filter_blend_mode.value = blend;
}
if (items == 0) {
return QUERY_STYLE_NOTHING;
} else if (items == 1) {
return QUERY_STYLE_SINGLE;
} else {
if(same_blend)
return QUERY_STYLE_MULTIPLE_SAME;
else
return QUERY_STYLE_MULTIPLE_DIFFERENT;
}
}
/**
* Write to style_res the average blurring of a list of objects.
*/
int
objects_query_blur (GSList *objects, SPStyle *style_res)
{
if (g_slist_length(objects) == 0) {
/* No objects, set empty */
return QUERY_STYLE_NOTHING;
}
float blur_sum = 0;
float blur_prev = -1;
bool same_blur = true;
guint blur_items = 0;
guint items = 0;
for (GSList const *i = objects; i != NULL; i = i->next) {
SPObject *obj = SP_OBJECT (i->data);
SPStyle *style = SP_OBJECT_STYLE (obj);
if (!style) continue;
if (!SP_IS_ITEM(obj)) continue;
Geom::Matrix i2d = sp_item_i2d_affine (SP_ITEM(obj));
items ++;
//if object has a filter
if (style->filter.set && style->getFilter()) {
//cycle through filter primitives
SPObject *primitive_obj = style->getFilter()->children;
while (primitive_obj) {
if (SP_IS_FILTER_PRIMITIVE(primitive_obj)) {
SPFilterPrimitive *primitive = SP_FILTER_PRIMITIVE(primitive_obj);
//if primitive is gaussianblur
if(SP_IS_GAUSSIANBLUR(primitive)) {
SPGaussianBlur * spblur = SP_GAUSSIANBLUR(primitive);
float num = spblur->stdDeviation.getNumber();
blur_sum += num * i2d.descrim();
if (blur_prev != -1 && fabs (num - blur_prev) > 1e-2) // rather low tolerance because difference in blur radii is much harder to notice than e.g. difference in sizes
same_blur = false;
blur_prev = num;
//TODO: deal with opt number, for the moment it's not necessary to the ui.
blur_items ++;
}
}
primitive_obj = primitive_obj->next;
}
}
}
if (items > 0) {
if (blur_items > 0)
blur_sum /= blur_items;
style_res->filter_gaussianBlur_deviation.value = blur_sum;
}
if (items == 0) {
return QUERY_STYLE_NOTHING;
} else if (items == 1) {
return QUERY_STYLE_SINGLE;
} else {
if (same_blur)
return QUERY_STYLE_MULTIPLE_SAME;
else
return QUERY_STYLE_MULTIPLE_AVERAGED;
}
}
/**
* Query the given list of objects for the given property, write
* the result to style, return appropriate flag.
*/
int
sp_desktop_query_style_from_list (GSList *list, SPStyle *style, int property)
{
if (property == QUERY_STYLE_PROPERTY_FILL) {
return objects_query_fillstroke (list, style, true);
} else if (property == QUERY_STYLE_PROPERTY_STROKE) {
return objects_query_fillstroke (list, style, false);
} else if (property == QUERY_STYLE_PROPERTY_STROKEWIDTH) {
return objects_query_strokewidth (list, style);
} else if (property == QUERY_STYLE_PROPERTY_STROKEMITERLIMIT) {
return objects_query_miterlimit (list, style);
} else if (property == QUERY_STYLE_PROPERTY_STROKECAP) {
return objects_query_strokecap (list, style);
} else if (property == QUERY_STYLE_PROPERTY_STROKEJOIN) {
return objects_query_strokejoin (list, style);
} else if (property == QUERY_STYLE_PROPERTY_MASTEROPACITY) {
return objects_query_opacity (list, style);
} else if (property == QUERY_STYLE_PROPERTY_FONT_SPECIFICATION) {
return objects_query_fontspecification (list, style);
} else if (property == QUERY_STYLE_PROPERTY_FONTFAMILY) {
return objects_query_fontfamily (list, style);
} else if (property == QUERY_STYLE_PROPERTY_FONTSTYLE) {
return objects_query_fontstyle (list, style);
} else if (property == QUERY_STYLE_PROPERTY_FONTNUMBERS) {
return objects_query_fontnumbers (list, style);
} else if (property == QUERY_STYLE_PROPERTY_BLEND) {
return objects_query_blend (list, style);
} else if (property == QUERY_STYLE_PROPERTY_BLUR) {
return objects_query_blur (list, style);
}
return QUERY_STYLE_NOTHING;
}
/**
* Query the subselection (if any) or selection on the given desktop for the given property, write
* the result to style, return appropriate flag.
*/
int
sp_desktop_query_style(SPDesktop *desktop, SPStyle *style, int property)
{
int ret = desktop->_query_style_signal.emit(style, property);
if (ret != QUERY_STYLE_NOTHING)
return ret; // subselection returned a style, pass it on
// otherwise, do querying and averaging over selection
if (desktop->selection != NULL) {
return sp_desktop_query_style_from_list ((GSList *) desktop->selection->itemList(), style, property);
}
return QUERY_STYLE_NOTHING;
}
/**
* Do the same as sp_desktop_query_style for all (defined) style properties, return true if at
* least one of the properties did not return QUERY_STYLE_NOTHING.
*/
bool
sp_desktop_query_style_all (SPDesktop *desktop, SPStyle *query)
{
int result_family = sp_desktop_query_style (desktop, query, QUERY_STYLE_PROPERTY_FONTFAMILY);
int result_fstyle = sp_desktop_query_style (desktop, query, QUERY_STYLE_PROPERTY_FONTSTYLE);
int result_fnumbers = sp_desktop_query_style (desktop, query, QUERY_STYLE_PROPERTY_FONTNUMBERS);
int result_fill = sp_desktop_query_style (desktop, query, QUERY_STYLE_PROPERTY_FILL);
int result_stroke = sp_desktop_query_style (desktop, query, QUERY_STYLE_PROPERTY_STROKE);
int result_strokewidth = sp_desktop_query_style (desktop, query, QUERY_STYLE_PROPERTY_STROKEWIDTH);
int result_strokemiterlimit = sp_desktop_query_style (desktop, query, QUERY_STYLE_PROPERTY_STROKEMITERLIMIT);
int result_strokecap = sp_desktop_query_style (desktop, query, QUERY_STYLE_PROPERTY_STROKECAP);
int result_strokejoin = sp_desktop_query_style (desktop, query, QUERY_STYLE_PROPERTY_STROKEJOIN);
int result_opacity = sp_desktop_query_style (desktop, query, QUERY_STYLE_PROPERTY_MASTEROPACITY);
int result_blur = sp_desktop_query_style (desktop, query, QUERY_STYLE_PROPERTY_BLUR);
return (result_family != QUERY_STYLE_NOTHING ||
result_fstyle != QUERY_STYLE_NOTHING ||
result_fnumbers != QUERY_STYLE_NOTHING ||
result_fill != QUERY_STYLE_NOTHING ||
result_stroke != QUERY_STYLE_NOTHING ||
result_opacity != QUERY_STYLE_NOTHING ||
result_strokewidth != QUERY_STYLE_NOTHING ||
result_strokemiterlimit != QUERY_STYLE_NOTHING ||
result_strokecap != QUERY_STYLE_NOTHING ||
result_strokejoin != QUERY_STYLE_NOTHING ||
result_blur != QUERY_STYLE_NOTHING);
}
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :
|