-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
1690 lines (1374 loc) · 68.2 KB
/
ChangeLog
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
2010-05-27 Rick L. Vinyard, Jr. <[email protected]>
* demos/papyrus-demo/Makefile.am, demos/papyrus-demo/demos.h,
demos/papyrus-demo/example_flasher.cpp: Added a demo of the new
Flasher animator.
* papyrus/Makefile.am, papyrus/enums.h:
* papyrus/flasher.cpp, papyrus/flasher.h: Added Flasher which
derives from Animator. Causes an object to change it's visibility
status with each frame.
* papyrus/drawable.cpp: Add a RENDER_FORCE option to the cairo
flags.
Fixed a bug in Drawable that prevented the show()/hide() methods
from effecting the visibility of objects.
* papyrus/affineanimator.cpp:
2010-04-16 Rick L. Vinyard, Jr. <[email protected]>
* ChangeLog, Makefile.am, configure.ac, papyrus.kdevelop,
papyrus.spec.m4: ===== 0.13.2 =====
* papyrus/object.h: Bugfix in Drawable destructor now allows Object
to properly
inherit from sigc::trackable again.
* papyrus/group.cpp: Improve performance of Group::clear() method
by changing from individual remove() calls to a more streamlined
process that operates directly on the signal containers to
disconnect them and then operates directly on the layers.
This should significantly improve performance as the previous
method performed several tree lookups for each removal and was
probably had a run time of 3 * O(n lg(n)) + O(n) and the new
method is approximately 4 * O(n)
* papyrus/drawable.cpp: Bugfix: Remove code in destructor to remove
a child from a parent
This was legacy from an older version and isn't needed now that
parents own thier children in the scenegraph hierarcy, and the
only way for an owned child to be destroyed is to be removed from
the parent container; example using Group's remove() method.
* doc/release-notes,
doc/release-notes/papyrus-0.12.0-release-notes.txt,
doc/release-notes/papyrus-0.12.1-release-notes.txt,
doc/release-notes/papyrus-0.13.0-release-notes.txt,
doc/release-notes/papyrus-0.13.1-release-notes.txt:
2010-04-01 Rick L. Vinyard, Jr. <[email protected]>
* papyrus/controller.h: Add default parameter to Controller
constructor so derived classes can implicitly construct without
an explicit string parameter
2010-03-30 Rick L. Vinyard, Jr. <[email protected]>
* papyrus/group.h: Add default parameter to Group constructor so
derived classes can implicitly construct without an explicit
string parameter
2009-12-09 Rick L. Vinyard, Jr. <[email protected]>
* ChangeLog: ===== 0.13.1 =====
* ChangeLog, Makefile.am, papyrus-extras/deltille.h,
papyrus-extras/face.h, papyrus-extras/hextille.h,
papyrus-extras/hilbert.h, papyrus-extras/kochcurve.h,
papyrus-extras/kochsnowflake.h, papyrus-extras/quadrille.h,
papyrus-extras/sierpinski.h, papyrus-extras/tiling.h,
papyrus.kdevelop, papyrus.spec.m4, papyrus/annulus.h,
papyrus/arc.h, papyrus/beziergon.h, papyrus/bezierline.h,
papyrus/boxed.h, papyrus/canvas.h, papyrus/circle.h,
papyrus/color.h, papyrus/drawable.h, papyrus/fill.h,
papyrus/grid.h, papyrus/group.h, papyrus/handlebox.h,
papyrus/image.h, papyrus/lineargradient.h, papyrus/marker.h,
papyrus/path.h, papyrus/path_element.h, papyrus/polygon.h,
papyrus/polyline.h, papyrus/radialgradient.h,
papyrus/rectangle.h, papyrus/reference.h,
papyrus/regularpolygon.h, papyrus/renderable.h, papyrus/shape.h,
papyrus/stroke.h, papyrus/svg.h, papyrus/text.h,
papyrus/utility.h: Fix an overload resolution scope issue by
introducing the PAPYRUS_RENDERABLE() and PAPYRUS_DRAWABLE()
macros to include a using directive.
* examples/shapes/shapes.cpp: Reorder the set stroke width call to
be after a stroke has been created to prevent a segfault.
* examples/simple.cpp:
2009-11-17 Rick L. Vinyard, Jr. <[email protected]>
* ChangeLog, configure.ac, papyrus.h, papyrus.kdevelop:
* demos/papyrus-demo/Makefile.am, demos/papyrus-demo/demos.h,
demos/papyrus-demo/example_LinearGradient.cpp,
demos/papyrus-demo/example_RadialGradient.cpp,
demos/papyrus-gtkmm-demo/Makefile.am,
demos/papyrus-gtkmm-demo/demos.h,
demos/papyrus-gtkmm-demo/example_lineargradient.cpp:
* papyrus-gtkmm/Makefile.am, papyrus-gtkmm/gradientstopwidget.cpp,
papyrus-gtkmm/gradientstopwidget.h, papyrus-gtkmm/viewport.h:
* papyrus-gtkmm/scrolledviewport.cpp: Fix bug in ScrolledViewport
that prevented redraws from occurring properly
* papyrus-extras/deltille.cpp, papyrus-extras/deltille.h,
papyrus-extras/face.cpp, papyrus-extras/face.h,
papyrus-extras/factory.cpp, papyrus-extras/hextille.cpp,
papyrus-extras/hextille.h, papyrus-extras/quadrille.cpp,
papyrus-extras/quadrille.h, papyrus-extras/tiling.cpp,
papyrus-extras/tiling.h:
* papyrus/svg.cpp:
* papyrus/text.cpp, papyrus/text.h:
* papyrus/shape.cpp, papyrus/shape.h, papyrus/stroke.cpp,
papyrus/stroke.h:
* papyrus/rgba.cpp:
* papyrus/renderable.h: Added cairo context wrapper to include
rendering state
* papyrus/rectangle.cpp, papyrus/rectangle.h,
papyrus/reference.cpp, papyrus/reference.h:
* papyrus/radialgradient.cpp, papyrus/radialgradient.h: Radial
gradient paint
* papyrus/primitives.h:
* papyrus/path_element.cpp, papyrus/path_element.h,
papyrus/polygon.cpp, papyrus/polygon.h:
* papyrus/polyline.cpp, papyrus/polyline.h: Restructured Vertex as
a struct based on the Point primitive
* papyrus/path.cpp, papyrus/path.h:
* papyrus/paint.cpp, papyrus/paint.h: Restructured as a hierarchy
parent for all paints and moved solid color paints in Color
* papyrus/marker.cpp, papyrus/marker.h:
* papyrus/image.cpp, papyrus/image.h:
* papyrus/lineargradient.cpp, papyrus/lineargradient.h: Linear
gradient paint
* papyrus/group.cpp, papyrus/group.h:
* papyrus/grid.cpp, papyrus/grid.h:
* papyrus/gradient.cpp, papyrus/gradient.h: Base class for gradient
paints
* papyrus/fill.cpp, papyrus/fill.h:
* papyrus/enums.h: Added enums for gradient support and context
wrapper states
* papyrus/drawable.cpp, papyrus/drawable.h:
* papyrus/color.cpp, papyrus/color.h: Added class for solid color
paints
* papyrus/boxed.cpp, papyrus/boxed.h, papyrus/canvas.cpp,
papyrus/canvas.h, papyrus/circle.cpp, papyrus/circle.h:
* papyrus/Makefile.am:
* papyrus/annulus.cpp, papyrus/annulus.h, papyrus/arc.cpp,
papyrus/arc.h, papyrus/beziergon.cpp, papyrus/beziergon.h,
papyrus/bezierline.cpp, papyrus/bezierline.h:
2009-09-01 Rick L. Vinyard, Jr. <[email protected]>
* ChangeLog, papyrus.kdevelop: ===== 0.12.1 =====
* papyrus.spec.m4:
* papyrus.kdevelop:
* papyrus-extras.h:
* configure.ac:
* Makefile.am:
* papyrus/shape.cpp, papyrus/shape.h:
* papyrus-extras/Makefile.am, papyrus-extras/face.cpp,
papyrus-extras/face.h, papyrus-extras/factory.cpp,
papyrus-extras/factory.h:
* papyrus-extras/deltille.cpp, papyrus-extras/deltille.h,
papyrus-extras/hextille.cpp, papyrus-extras/hextille.h,
papyrus-extras/quadrille.cpp, papyrus-extras/quadrille.h,
papyrus-extras/tiling.cpp, papyrus-extras/tiling.h:
* papyrus-gtkmm/scrolledviewport.cpp,
papyrus-gtkmm/scrolledviewport.h:
* demos/papyrus-demo/example_drawables.cpp:
* demos/Makefile.am:
2009-08-05 Rick L. Vinyard, Jr. <[email protected]>
* ChangeLog, configure.ac: ===== 0.12.0 =====
* ., ChangeLog, Makefile.am, autogen.sh, demos, demos/papyrus-demo,
demos/papyrus-extras-demo, demos/papyrus-gtkmm-demo, doc,
doc/Makefile.am, examples, examples/button,
examples/color_schemes, examples/pick, examples/shapes,
examples/simple_zoom, examples/viewbox, m4, papyrus-extras,
papyrus-gtkmm, papyrus-gtkmm.h, papyrus.h, papyrus.kdevelop,
papyrus.spec.m4:
* acinclude.m4[DEL]:
* m4/ac_cxx_compile_stdcxx_0x.m4, m4/ax_prefix_config_h.m4:
* m4:
* configure.ac[CPY], configure.in[DEL]:
* papyrus-gtkmm, papyrus-gtkmm/Makefile.am:
* papyrus-gtkmm/viewport.cpp, papyrus-gtkmm/viewport.h: Added a
signal to be emitted when the canvas is replaced
* papyrus-gtkmm/scrolledviewport.cpp,
papyrus-gtkmm/scrolledviewport.h: Added ScrolledViewport widget
* papyrus-extras:
* papyrus-extras/Makefile.am:
* papyrus/Makefile.am, papyrus/drawablecontainer.h,
papyrus/selector.cpp:
* papyrus/canvas.cpp, papyrus/canvas.h: Extended and fixed
scrolling support
* papyrus/drawable.cpp, papyrus/drawable.h: Added an alpha drawing
mode
Added a signal emitted when the extents are changed
Reviewed const methods and added const to several that should
have been const
* papyrus/drawableset.cpp, papyrus/drawableset.h: Renamed insert()
method to add() to make syntax consistent with Group's syntax
* papyrus/event.h: Added button id and combination enumerations
* papyrus/group.cpp, papyrus/group.h: Added intermediate drawing
mode to allow for more advanced compositing
* papyrus/rectangle.cpp, papyrus/rectangle.h: Added corner radius
parameter to rectangles to allow for rounded rectangles
* papyrus/region.cpp, papyrus/region.h: Added a set_lrtb()
convenience method
* papyrus/zoomer.cpp, papyrus/zoomer.h: Added Zoomer controller
* papyrus-venn, papyrus-venn/Makefile.am:
* demos, demos/Makefile.am, demos/papyrus-demo,
demos/papyrus-demo/example_affine_controller.cpp,
demos/papyrus-demo/example_operators.cpp,
demos/papyrus-demo/example_rotator.cpp,
demos/papyrus-demo/example_scaler.cpp,
demos/papyrus-demo/example_translator.cpp,
demos/papyrus-extras-demo,
demos/papyrus-extras-demo/example_affine_controller.cpp,
demos/papyrus-extras-demo/example_rotator.cpp,
demos/papyrus-extras-demo/example_scaler.cpp,
demos/papyrus-extras-demo/example_translator.cpp,
demos/papyrus-gtkmm-demo, demos/papyrus-gtkmm-demo/Makefile.am,
demos/papyrus-gtkmm-demo/example_drawabletreeview.cpp,
demos/papyrus-venn-demo, demos/papyrus-venn-demo/Makefile.am:
* demos/papyrus-gtkmm-demo/demos.h,
demos/papyrus-gtkmm-demo/example_scrolledviewport.cpp: Added
ScrolledViewport example
* demos/papyrus-demo/Makefile.am, demos/papyrus-demo/demos.h,
demos/papyrus-demo/example_zoomer.cpp: Added Zoomer controller
example
2009-05-14 Rick L. Vinyard, Jr. <[email protected]>
* ChangeLog, papyrus.kdevelop: 0.11.1
* .:
* svn2cl.authors:
* ., .folder.png, ChangeLog, ChangeLog.old, configure.in:
* papyrus:
* papyrus.spec.m4: Added doc subpackage
* unit-tests:
* papyrus/reference.cpp, papyrus/reference.h: Fixed the composed
matrix and extents calculations
Added a clear_referenced() method to remove the referenced object
from the reference.
* papyrus/drawable.cpp, papyrus/drawable.h: Moved two the
apply_external_matrices and calculate_composed_matrix methods to
public in Drawable so they can be accessed by Reference.
Also added a signal that is emitted with the composed matrix is
invalidated so that Reference can watch the referenced drawable's
signal and invalidate its matrix as well.
* papyrus/canvas.h: Added ohloh buttons to documentation
* examples/Makefile.am, examples/reference.cpp: Added new example
of references provided by Julius Ziegler
* doc/Makefile.am:
2009-03-18 Rick L. Vinyard, Jr. <[email protected]>
* ChangeLog, configure.in, papyrus.kdevelop: ===== 0.11.0 =====
* demos/papyrus-demo/Makefile.am, demos/papyrus-demo/demos.h,
demos/papyrus-demo/example_freeze_thaw.cpp: Added demo to test
freezing/thawing
* papyrus/group.cpp: Fixed bug that unfroze children of frozen
groups
* papyrus/drawable.cpp, papyrus/drawable.h, papyrus/enums.h,
papyrus/group.cpp, papyrus/group.h, papyrus/image.cpp,
papyrus/rectangle.cpp: Added freeze/thaw methods to Drawable that
includes the ability of a group to freeze its current drawables.
This resulted in the removal of the boolean redraw parameter on
many functions since the same effect can be achieved by enclosing
the respective calls with a freeze/thaw pair.
2009-03-17 Rick L. Vinyard, Jr. <[email protected]>
* papyrus/canvas.cpp, papyrus/canvas.h: Bug fix: Fixes a missing
const declaration at the end of the draw() method that kept the
Canvas reimplementation of draw() from being called, thus causing
the background to not be rendered. Thanks again to Tim Niemueller
for catching and fixing this one.
* demos/papyrus-demo/example_SVG.cpp:
* unit-tests/papyrus_unit_tests.cpp:
* unit-tests/Makefile.am:
* papyrus/drawable.cpp, papyrus/drawable.h,
unit-tests/drawablematrixtests.cpp,
unit-tests/drawablematrixtests.h: This changes how external
matrix changed signals are handled and fixes a bug that didn't
disconnect the changed signal when a matrix was removed.
This should improve the performance when multiple instances of
the same external matrix are applied as well.
Additionally, there is a unit test added to check the reference
counting of external matrices.
* papyrus/drawable.cpp: Bug: Fix invalid list iterators when
removing matrices. Thanks to Tim Niemueller for catching these.
2009-03-06 Rick L. Vinyard, Jr. <[email protected]>
* ChangeLog, configure.in, papyrus.kdevelop, papyrus.spec.m4: =====
0.10.2 =====
* papyrus/matrix.cpp, papyrus/matrix.h: Added three methods for
working with inverse matrices to Matrix.
Matrix::inverse() returns an inverted matrix as opposed to the
current invert() which acts upon the matrix.
Matrix::transform_distance_inverse() is like
Matrix::transform_distance() except it transforms using the
inverse matrix
Matrix::transform_point_inverse() is like
Matrix::transform_point() except it transforms using the inverse
matrix
* papyrus/group.cpp: Fixed bug in Group::inside() that was
transforming test point with matrix instead of inverted matrix
* papyrus/canvas.cpp, papyrus/canvas.h: Changed select() return
type to Selection typedef
* examples/pick/pick_simple.cpp: Changed the example to include an
intermediary group and apply translation/rotation transforms to
the rectangle.
2009-03-05 Rick L. Vinyard, Jr. <[email protected]>
* ChangeLog, Makefile.am, configure.in, papyrus.kdevelop,
papyrus.spec.m4: ===== 0.10.1 =====
* examples/pick/Makefile.am, examples/pick/pick_main.cc,
examples/pick/pick_simple.cpp, examples/pick/pick_simple.h:
Cleaned up pick example to remove clutter.
Prefixed files with pick_ to differentiate from other example
files.
* examples/pick/main.cc[DEL],
examples/pick/new_mexico_sacramentos_october_b_sm.png[DEL],
examples/pick/simple.cpp[DEL], examples/pick/simple.h[DEL]:
* examples/shapes/shapes.cpp:
* papyrus/selector.h:
* papyrus/object.h:
* papyrus/group.cpp, papyrus/group.h: Added a typedef to a drawable
vector named Selection
* papyrus/event.h: Added InterruptMarshaller to interrupt sigc
signals and limit propagation to end when the first slot returns
true.
Added a typedef for an event signal that uses the
InterruptMarshaller in Papyrus::Event::signal
* papyrus/controller.cpp, papyrus/controller.h: Added a
handle_event(Event) method that is an alias for handle(Event) to
more easily allow a signal to be connected with typecasting.
* doc/Makefile.am:
* papyrus-gtkmm/viewport.cpp, papyrus-gtkmm/viewport.h: Changed
event signal handling adding a signal emitted for all events.
Added a marshaller to limit signal emission to the first
connected item to return true.
Controllers added to the viewport now connect to the event
signal.
2009-02-25 Rick L. Vinyard, Jr. <[email protected]>
* ChangeLog, Makefile.am, papyrus.kdevelop, papyrus.spec.m4: =====
0.10.0 =====
* papyrus-gtkmm/linecapbuttonbox.cpp,
papyrus-gtkmm/linejoinbuttonbox.cpp,
papyrus/affinecontroller.cpp, papyrus/bezierline.cpp,
papyrus/circle.cpp, papyrus/controller.cpp, papyrus/drawable.cpp,
papyrus/fill.cpp, papyrus/handlebox.cpp, papyrus/matrix.cpp,
papyrus/polyline.cpp, papyrus/region.cpp, papyrus/region.h,
papyrus/regularpolygon.cpp, papyrus/rotator.cpp,
papyrus/selector.cpp, papyrus/stroke.cpp, papyrus/svg.cpp:
Cleanup misc compile time warnings
* papyrus/drawablewatcher.h, papyrus/utility.cpp,
papyrus/utility.h: Fix issue with weak pointers in sets and maps
for compilers that don't have a < operator defined for weak
pointers.
2009-02-23 Rick L. Vinyard, Jr. <[email protected]>
* papyrus/svg.cpp, papyrus/svg.h: Replaced expat parser with
libxml++ based parser.
Added initial support for linear gradients.
* papyrus/shape.cpp, papyrus/shape.h: Replaced std::string with
Glib::ustring
Changed FillStyle to Fill
Added support for Paint
Added support for setting attributes via SVG style
attribute-value pairs
* papyrus/matrix.cpp, papyrus/matrix.h: Replaced std::string with
Glib::ustring
Added support for rotation methods to accept parameters in
radians or degrees
Replaced yacc/lex string parser with glibmm regular expression
* papyrus/group.cpp, papyrus/group.h: Replaced std::string with
Glib::ustring
Changed FillStyle to Fill
Added support for Paint
Added support for setting attributes via SVG style
attribute-value pairs
Added support for titles and descriptions on groups
Added method to access children by name including a templatized
method that will cast the child to a requested type if possible
Added support for Paint dictionaries similar to SVG paint servers
Added support for Drawable dictionaries that are not owned but
not rendered similar to SVG defs sections
* papyrus/drawable.cpp, papyrus/drawable.h: Replaced std::string
with Glib::ustring
Changed FillStyle to Fill
Added documentation on affine transformation methods
Changed get/set_position to get/set_xy
Added support for setting attributes via SVG style
attribute-value pairs
Fixed hack on redraw to use floor/ceiling of doubles when
redrawing pixels
* papyrus/canvas.cpp, papyrus/canvas.h: Replaced std::string with
Glib::ustring
Changed background method to accept/return Paint
* papyrus/circle.cpp, papyrus/circle.h: Replaced std::string with
Glib::ustring
Changed FillStyle to Fill
Added support for setting attributes via SVG style
attribute-value pairs
Reimplemented Drawable's extent calculcation to provide a quicker
extent calculation that doesn't depend on drawing to a sidebuffer
* papyrus/rectangle.cpp, papyrus/rectangle.h: Replaced std::string
with Glib::ustring
Changed FillStyle to Fill
Added support for setting attributes via SVG style
attribute-value pairs
Reimplemented Drawable's extent calculcation to provide a quicker
extent calculation that doesn't depend on drawing to a sidebuffer
* papyrus/rgba.cpp, papyrus/rgba.h: Replaced std::string with
Glib::ustring
Changed FillStyle to Fill
Added support for Paint
* papyrus/reference.cpp, papyrus/reference.h, papyrus/renderable.h:
Replaced std::string with Glib::ustring
* papyrus/object.h: Replaced std::string with Glib::ustring
Added top-level virtual method to set attributes using
Attribute-Value pairs
* papyrus/paint.cpp, papyrus/paint.h: Added Paint to encapsulate
Cairo::Pattern to support SVG style paint servers in the Group
class
* papyrus/fill.cpp, papyrus/fill.h, papyrus/fillstyle.cpp[DEL],
papyrus/fillstyle.h[DEL]: Changed from FillStyle to Fill
Added support for Paint encapsulation of Cairo::Pattern
* papyrus/Makefile.am:
* papyrus/affineanimator.cpp, papyrus/affineanimator.h,
papyrus/affinecontroller.cpp, papyrus/affinecontroller.h,
papyrus/animator.cpp, papyrus/animator.h, papyrus/annulus.cpp,
papyrus/annulus.h, papyrus/arc.cpp, papyrus/arc.h,
papyrus/beziergon.cpp, papyrus/beziergon.h,
papyrus/bezierline.cpp, papyrus/bezierline.h, papyrus/boxed.cpp,
papyrus/boxed.h, papyrus/controller.cpp, papyrus/controller.h,
papyrus/drawablecontroller.cpp, papyrus/drawablecontroller.h,
papyrus/freehandsketcher.cpp, papyrus/freehandsketcher.h,
papyrus/grid.cpp, papyrus/grid.h, papyrus/handlebox.cpp,
papyrus/handlebox.h, papyrus/hexgrid.h, papyrus/image.cpp,
papyrus/image.h, papyrus/marker.cpp, papyrus/marker.h,
papyrus/path.cpp, papyrus/path.h, papyrus/path_element.cpp,
papyrus/path_element.h, papyrus/polygon.cpp, papyrus/polygon.h,
papyrus/polyline.cpp, papyrus/polyline.h,
papyrus/regularpolygon.cpp, papyrus/regularpolygon.h,
papyrus/text.cpp, papyrus/text.h: Changed to reflect renaming of
FillStyle to Fill
Replaced std::string with Glib::ustring
* papyrus/rotator.cpp, papyrus/rotator.h, papyrus/scaler.cpp,
papyrus/scaler.h, papyrus/selector.cpp, papyrus/selector.h:
Replaced std::string with Glib::ustring
* papyrus/stroke.cpp, papyrus/stroke.h: Added concept of Paint to
encapsulate Cairo::Pattern
Replaced std::string with Glib::ustring
Added 'changed' name to signals
* papyrus/translator.cpp, papyrus/translator.h,
papyrus/utility.cpp, papyrus/utility.h: Replaced std::string with
Glib::ustring
* papyrus/svg_transform_lexer.ll[DEL],
papyrus/svg_transform_parser.yy[DEL]: Removed svg transform
lexer/parser and replaced with glibmm regular expressions
* papyrus/x11_color.cpp, papyrus/x11_color.h: Replaced std::string
with Glib::ustring
* papyrus-extras/face.cpp, papyrus-extras/face.h,
papyrus-extras/factory.cpp, papyrus-extras/factory.h,
papyrus-extras/hilbert.cpp, papyrus-extras/hilbert.h,
papyrus-extras/kochcurve.cpp, papyrus-extras/kochcurve.h,
papyrus-extras/kochsnowflake.cpp, papyrus-extras/kochsnowflake.h,
papyrus-extras/sierpinski.cpp, papyrus-extras/sierpinski.h:
Replaced std::string with Glib::ustring
* papyrus-gtkmm/linewidthcombobox.cpp,
papyrus-gtkmm/markerwidget.cpp, papyrus-gtkmm/strokewidget.cpp:
* examples/button/button.cpp,
examples/color_schemes/color_schemes.cpp,
examples/pick/simple.cpp, examples/shapes/shapes.cpp,
examples/simple_zoom/simple.cpp, examples/viewbox/viewbox.cpp:
Replaced std::string with Glib::ustring
* demos/papyrus-demo/Makefile.am,
demos/papyrus-demo/demo-common.cc,
demos/papyrus-demo/demo-common.h, demos/papyrus-demo/demos.h,
demos/papyrus-demo/demowindow.cc,
demos/papyrus-demo/demowindow.h,
demos/papyrus-demo/example_boxed.cpp,
demos/papyrus-demo/example_freehandsketcher.cpp,
demos/papyrus-demo/example_handlebox_scaler.cpp,
demos/papyrus-demo/example_selector.cpp,
demos/papyrus-extras-demo/Makefile.am,
demos/papyrus-extras-demo/demo-common.cc,
demos/papyrus-extras-demo/demo-common.h,
demos/papyrus-extras-demo/demowindow.cc,
demos/papyrus-extras-demo/demowindow.h,
demos/papyrus-extras-demo/example_freehandsketcher.cpp,
demos/papyrus-extras-demo/example_handlebox_scaler.cpp,
demos/papyrus-extras-demo/example_selector.cpp,
demos/papyrus-gtkmm-demo/demo-common.cc,
demos/papyrus-gtkmm-demo/demo-common.h,
demos/papyrus-gtkmm-demo/demowindow.cc,
demos/papyrus-gtkmm-demo/demowindow.h: Replaced std::string with
Glib::ustring
* doc/Doxyfile, doc/Makefile.am, doc/doxygen_to_devhelp.xsl.m4:
* doc/doxygen.css: Fixed doxygen colors
* papyrus.h, papyrus.kdevelop, papyrus.spec.m4:
* Doxyfile[DEL]:
* configure.in: Added doc builds and dependencies on both glibmm
and libxml++ for SVG support
* Makefile.am, acinclude.m4, aminclude.am[DEL]: Removed autoconf
doxygen-doc options and build docs directly
* unit-tests/Makefile.am, unit-tests/papyrus_unit_tests.cpp:
* unit-tests/matrixparsertest.cpp, unit-tests/matrixparsertest.h:
Added matrix string parsing unit tests
* unit-tests/simple_circle.svg, unit-tests/simple_groups.svg,
unit-tests/simple_linear_gradient.svg,
unit-tests/simple_path_triangle.svg,
unit-tests/simple_reference.svg,
unit-tests/simple_standalone.svg: Added SVG images to compare
generated SVG unit test images to
* unit-tests/svgparsertest.cpp, unit-tests/svgparsertest.h: Added
SVG parsing unit tests
* unit-tests/rectangleextentstest.cpp: Took out hacks on unit test
values
* unit-tests/helper.cpp:
* unit-tests/helper.h: changed region comparison method to allow a
small delta for doubles
* unit-tests/circleextentstest.cpp, unit-tests/circleextentstest.h:
Added a new set of circle extent unit tests
2009-02-06 Rick L. Vinyard, Jr. <[email protected]>
* ChangeLog, Makefile.am, configure.in, papyrus.spec.m4: 0.9.0
* papyrus-extras-1.0.pc.in, papyrus-gtkmm-1.0.pc.in: Removed CFLAGS
line since these packages don't need their own CFLAGS
and instead rely on the CFLAGS in papyrus-1.0.pc which is pulled
in
though the Requires line.
* papyrus/canvas.h: Fix HTML line breaks in docs that Doxygen was
complaining about
* doc/doxygen.css, doc/doxygen_footer.html,
doc/doxygen_header.html:
* doc/images, doc/images/arc.png, doc/images/beziergon.png,
doc/images/bezierline.png, doc/images/boxed.png,
doc/images/bug-small.png, doc/images/bugs-small.png,
doc/images/cairo-logo.png, doc/images/circle.png,
doc/images/documents-small.png, doc/images/download-small.png,
doc/images/envelope-small.png, doc/images/favicon.ico,
doc/images/fedora-logo-small.png,
doc/images/fedora-logo-tiny.png, doc/images/group.png,
doc/images/gtk-logo-small.png, doc/images/gtkmm-logo.png,
doc/images/guide_arc.png, doc/images/guide_beziergon.png,
doc/images/guide_bezierline.png, doc/images/guide_boxed.png,
doc/images/guide_circle.png, doc/images/guide_group.png,
doc/images/guide_kochsnowflake.png,
doc/images/guide_polygon_star.png,
doc/images/guide_polygon_u.png, doc/images/guide_polyline.png,
doc/images/guide_polyline_filled.png,
doc/images/guide_rectangle.png,
doc/images/guide_regularpolygon_apothem.png,
doc/images/guide_regularpolygon_radius.png,
doc/images/guide_text.png, doc/images/kochsnowflake.png,
doc/images/lgplv3.png, doc/images/papyrus-icon3232.png,
doc/images/papyrus-logo.png, doc/images/papyrus-tiled.png,
doc/images/polygon_star.png, doc/images/polygon_u.png,
doc/images/polyline.png, doc/images/polyline_filled.png,
doc/images/rectangle.png, doc/images/regularpolygon_apothem.png,
doc/images/regularpolygon_radius.png,
doc/images/sourcecode-small.png, doc/images/text.png:
* papyrus.kdevelop:
* demos/papyrus-demo/demos.h,
demos/papyrus-demo/example_affine_controller.cpp,
demos/papyrus-demo/example_affineanimator.cpp,
demos/papyrus-demo/example_drawables.cpp,
demos/papyrus-demo/example_freehandsketcher.cpp,
demos/papyrus-demo/example_handlebox_scaler.cpp,
demos/papyrus-demo/example_markers.cpp,
demos/papyrus-demo/example_operators.cpp,
demos/papyrus-demo/example_rotator.cpp,
demos/papyrus-demo/example_scaler.cpp,
demos/papyrus-demo/example_selector.cpp,
demos/papyrus-demo/example_translator.cpp,
demos/papyrus-demo/example_viewbox.cpp:
* demos/papyrus-demo/example_boxed.cpp:
* demos/papyrus-demo/Makefile.am:
* demos/papyrus-extras-demo/Makefile.am,
demos/papyrus-extras-demo/demos.h,
demos/papyrus-extras-demo/example_affine_controller.cpp,
demos/papyrus-extras-demo/example_affineanimator.cpp,
demos/papyrus-extras-demo/example_drawables.cpp,
demos/papyrus-extras-demo/example_freehandsketcher.cpp,
demos/papyrus-extras-demo/example_handlebox_scaler.cpp,
demos/papyrus-extras-demo/example_markers.cpp,
demos/papyrus-extras-demo/example_operators.cpp,
demos/papyrus-extras-demo/example_rotator.cpp,
demos/papyrus-extras-demo/example_scaler.cpp,
demos/papyrus-extras-demo/example_selector.cpp,
demos/papyrus-extras-demo/example_translator.cpp,
demos/papyrus-extras-demo/example_viewbox.cpp:
* demos/papyrus-gtkmm-demo/Makefile.am,
demos/papyrus-gtkmm-demo/demos.h,
demos/papyrus-gtkmm-demo/example_animatorbouncewidget.cpp,
demos/papyrus-gtkmm-demo/example_animatorframeintervalwidget.cpp,
demos/papyrus-gtkmm-demo/example_animatorframeratewidget.cpp,
demos/papyrus-gtkmm-demo/example_linecapbuttonbox.cpp,
demos/papyrus-gtkmm-demo/example_linecapcombobox.cpp,
demos/papyrus-gtkmm-demo/example_linejoinbuttonbox.cpp,
demos/papyrus-gtkmm-demo/example_linejoincombobox.cpp,
demos/papyrus-gtkmm-demo/example_linewidthcombobox.cpp,
demos/papyrus-gtkmm-demo/example_markercombobox.cpp,
demos/papyrus-gtkmm-demo/example_markerwidget.cpp,
demos/papyrus-gtkmm-demo/example_pixbuf.cpp,
demos/papyrus-gtkmm-demo/example_strokewidget.cpp,
demos/papyrus-gtkmm-demo/example_viewport.cpp:
* demos/Makefile.am: Added support for autoconf --enable-demos
* examples/Makefile.am, examples/button/button.cpp,
examples/button/button.h,
examples/color_schemes/color_schemes.cpp,
examples/pick/simple.cpp, examples/pick/simple.h,
examples/shapes/shapes.cpp, examples/simple.cpp,
examples/simple_zoom/simple.cpp, examples/simple_zoom/simple.h,
examples/viewbox/viewbox.cpp:
* papyrus/image.cpp, papyrus/image.h: Updated to reflect changes in
extents
* papyrus/Makefile.am:
* papyrus/boxed.cpp, papyrus/boxed.h: Now inherits from Group
rather than Drawable and created a base class
DrawableSingleContainer so Boxed only holds a single item.
* papyrus/canvas.cpp: Updated to reflect changes to extents
* papyrus/canvas.h: Added documentation to serve as papyrus home
page
* papyrus/circle.cpp, papyrus/circle.h: Circle no longer inherits
from Arc so it shouldn't include header
Get rid of unnecessary cairo->begin_path() at beginning of draw
* papyrus/color_scheme.cpp:
* papyrus/drawable.cpp, papyrus/drawable.h: Modified the way
extents were being calculated that caused some problems with
display in viewboxes
* papyrus/enums.h:
* papyrus/group.cpp, papyrus/group.h: Removed the concept of
drawing layers.
Added a has(Drawable::pointer) method
Updated to reflect changes in extents
* papyrus/handlebox.cpp, papyrus/handlebox.h:
* papyrus.spec.m4: Fix unowned directories
* COPYING: Updated license from GPL to LGPLv3
* configure.in: Added autoconf options to enable/disable building
of papyrus-gtkmm, papyrus-extras, demos, examples and unit-tests.
* unit-tests, unit-tests/Makefile.am,
unit-tests/canvasextentstest.cpp, unit-tests/canvasextentstest.h,
unit-tests/groupextentstest.cpp, unit-tests/groupextentstest.h,
unit-tests/helper.h, unit-tests/papyrus_unit_tests.cpp,
unit-tests/rectangleextentstest.cpp,
unit-tests/rectangleextentstest.h: Added unit tests based on
cppunit
* Makefile.am:
* papyrus/marker.cpp:
* papyrus/matrix.cpp, papyrus/matrix.h: Added a static member
Matrix::Identity
* papyrus/object.h: Changed signal methods to return references
rather than values
Added documentation
* papyrus-gtkmm/utility.cpp, papyrus-gtkmm/utility.h: Added
cairo_image_to_pixbuf() to convert cairo image surfaces to
pixbufs
* papyrus-gtkmm/Makefile.am, papyrus-gtkmm/enums.h,
papyrus-gtkmm/linecapbuttonbox.cpp,
papyrus-gtkmm/linecapbuttonbox.h,
papyrus-gtkmm/linecapcombobox.cpp,
papyrus-gtkmm/linecapcombobox.h,
papyrus-gtkmm/linejoinbuttonbox.cpp,
papyrus-gtkmm/linejoinbuttonbox.h,
papyrus-gtkmm/linejoincombobox.cpp,
papyrus-gtkmm/linejoincombobox.h,
papyrus-gtkmm/linewidthcombobox.cpp,
papyrus-gtkmm/linewidthcombobox.h,
papyrus-gtkmm/markercombobox.cpp, papyrus-gtkmm/markercombobox.h,
papyrus-gtkmm/markerwidget.cpp, papyrus-gtkmm/markerwidget.h,
papyrus-gtkmm/strokedialog.cpp, papyrus-gtkmm/strokedialog.h,
papyrus-gtkmm/strokewidget.cpp, papyrus-gtkmm/strokewidget.h,
papyrus-gtkmm/viewport.cpp, papyrus-gtkmm/viewport.h:
* papyrus-gtkmm/scrolleddrawabletreeview.cpp,
papyrus-gtkmm/scrolleddrawabletreeview.h:
* papyrus-gtkmm/animatorbouncewidget.cpp,
papyrus-gtkmm/animatorbouncewidget.h,
papyrus-gtkmm/animatorframeintervalwidget.cpp,
papyrus-gtkmm/animatorframeintervalwidget.h,
papyrus-gtkmm/animatorframeratewidget.cpp,
papyrus-gtkmm/animatorframeratewidget.h: Animators now have a
private constructor and smart pointer create methods
* papyrus-gtkmm/drawabletreeview.cpp,
papyrus-gtkmm/drawabletreeview.h:
* papyrus.h:
* papyrus-gtkmm-1.0.pc.in:
* papyrus-extras-1.0.pc.in:
* papyrus-1.0.pc.in:
* papyrus-gtkmm.h: Added DrawableTreeView
* papyrus-extras.h:
2009-02-05 Rick L. Vinyard, Jr. <[email protected]>
* Doxyfile: Ran doxygen -u
* templates/cpp, templates/h:
* papyrus-extras/factory.cpp:
* papyrus-extras/factory.h: Added annulus drawable to factory
* papyrus-extras/face.cpp: Drawables need to use
invalidate_extents() now since they can't directly access the
extents invalid flag
* papyrus-extras/Makefile.am: Added support for configure
--with-extras option
* papyrus-extras/example_image.h, papyrus-extras/face.h,
papyrus-extras/hilbert.cpp, papyrus-extras/hilbert.h,
papyrus-extras/kochcurve.cpp, papyrus-extras/kochcurve.h,
papyrus-extras/kochsnowflake.cpp, papyrus-extras/kochsnowflake.h,
papyrus-extras/sierpinski.cpp, papyrus-extras/sierpinski.h:
* papyrus/path_element.h: Added weak pointer typedef
* papyrus/polyline.cpp, papyrus/polyline.h: Changed extents() to
reflect changes in ancestor's virtual method
* papyrus/reference.cpp, papyrus/reference.h: Changed extents() to
reflect changes in ancestor's virtual method
* papyrus/region.cpp, papyrus/region.h: Removed inheritance from
Object to make leaner without string id
* papyrus/renderable.h:
* papyrus/affineanimator.cpp, papyrus/affineanimator.h,
papyrus/affinecontroller.cpp, papyrus/affinecontroller.h,
papyrus/animator.cpp, papyrus/animator.h, papyrus/controller.cpp,
papyrus/controller.h, papyrus/drawablecontainer.cpp[DEL],
papyrus/drawablecontainer.h,
papyrus/drawablecontainerinterface.h[DEL],
papyrus/drawablecontroller.cpp, papyrus/drawablecontroller.h,
papyrus/drawableset.cpp, papyrus/drawableset.h,
papyrus/drawablesinglecontainer.cpp,
papyrus/drawablesinglecontainer.h, papyrus/drawablewatcher.cpp,
papyrus/drawablewatcher.h, papyrus/freehandsketcher.cpp,
papyrus/freehandsketcher.h, papyrus/rotator.cpp,
papyrus/rotator.h, papyrus/scaler.cpp, papyrus/scaler.h,
papyrus/selector.cpp, papyrus/selector.h, papyrus/translator.cpp,
papyrus/translator.h: Completely restructured controller
hierarchy
* papyrus/arc.cpp: Added checks to internal lines to prevent lines
being drawn if arc is a complete circle.
Added redraw when angles change.
* papyrus/arc.h:
* papyrus/bezierline.cpp: Removed extents invalidation
* papyrus/annulus.cpp, papyrus/annulus.h: New shape
* papyrus/beziergon.cpp, papyrus/beziergon.h, papyrus/bezierline.h,
papyrus/color_scheme.h, papyrus/color_utility.h, papyrus/event.h,
papyrus/fillstyle.cpp, papyrus/fillstyle.h, papyrus/grid.cpp,
papyrus/grid.h, papyrus/hexgrid.cpp, papyrus/hexgrid.h,
papyrus/hsba.cpp, papyrus/hsba.h, papyrus/hsla.cpp,
papyrus/hsla.h, papyrus/marker.h, papyrus/path.cpp,
papyrus/path.h, papyrus/path_data_lexer.ll,
papyrus/path_data_parser.yy, papyrus/path_element.cpp,
papyrus/pointer.h, papyrus/polygon.cpp, papyrus/polygon.h,
papyrus/rectangle.cpp, papyrus/rectangle.h,
papyrus/regularpolygon.cpp, papyrus/regularpolygon.h,
papyrus/rgba.cpp, papyrus/rgba.h:
* papyrus/shape.cpp: Invalidate extents when stroke changes
* papyrus/svg.h: Bugfix: Added missing SVG class name macro
* papyrus/shape.h, papyrus/stroke.cpp, papyrus/stroke.h,
papyrus/svg.cpp, papyrus/svg_transform_lexer.ll,
papyrus/svg_transform_parser.yy, papyrus/text.cpp,
papyrus/text.h:
* papyrus/utility2.cpp, papyrus/utility2.h: Added a second utility
set for utilities that must be included after drawable.h
* papyrus/utility.cpp, papyrus/utility.h, papyrus/viewbox.cpp,
papyrus/viewbox.h:
* papyrus/x11_color.cpp, papyrus/x11_color.h,
papyrus/x11_color1.cpp, papyrus/x11_color2.cpp,
papyrus/x11_color3.cpp, papyrus/x11_color4.cpp:
* papyrus/yuva.cpp, papyrus/yuva.h:
2009-01-15 Rick L. Vinyard, Jr. <[email protected]>
* configure.in, papyrus.spec.m4: 0.8.1
* ChangeLog, Makefile.am: 0.8.1
* papyrus-extras-1.0.pc.in, papyrus-gtkmm-1.0.pc.in: Fix autoconf
pkgconfig version variable
2009-01-14 Rick L. Vinyard, Jr. <[email protected]>
* ChangeLog, Doxyfile, Makefile.am, configure.in, papyrus.kdevelop,
papyrus.spec.m4: 0.8.0
2009-01-13 Rick L. Vinyard, Jr. <[email protected]>
* papyrus/svg_transform_parser.yy: Changed svg_transform_parser()
to return Matrix::pointer rather than Matrix object.
* papyrus/svg.cpp: Fixed old code to set SVG transform attribute
into SVG drawable via new add_matrix() method.
* papyrus/matrix.cpp, papyrus/matrix.h: Added operator= overload
for Matrix::pointer and changed svg_transform_parser() to return
Matrix::pointer rather than Matrix object.
* papyrus/drawable.cpp, papyrus/drawable.h: Cleanup
* TODO: Updated for 0.8.0
* papyrus-extras/factory.cpp: Removed translation of SVG factory
demo
* demos/papyrus-demo/demos.h: Commented out demos that aren't
working now
* papyrus/drawable.cpp: Get rid of debugging statement
* papyrus/matrix.cpp, papyrus/matrix.h: Removed first parameter
from parameterized constructor to avoid issues with identity
constructor.
Added overloads of * and *= operators for smart pointer matrices.
* papyrus/drawable.cpp, papyrus/drawable.h: Added external matrices
primarily for controllers.
* papyrus/canvas.cpp: Added external matrix composition to
calculate_matrix()
* papyrus/affinecontroller.cpp, papyrus/affinecontroller.h:
Adjusted for Drawable's external matrix model
2009-01-05 Rick L. Vinyard, Jr. <[email protected]>
* ChangeLog, Makefile.am: 0.7.91
* Makefile.am, configure.in: Preparing for 0.7.91 release
* doc/reference[DEL]:
* demos/papyrus-demo/example_freehandsketcher.cpp: Fixed freehand
sketcher example that didn't set the stroke so drawing didn't
occur
* papyrus/grid.cpp:
* papyrus/grid.cpp: Fixed segfault when borders are enabled and
stroke style isn't set
* papyrus/papyrus-config.h[DEL]:
* papyrus-extras/hilbert.h, papyrus-extras/kochcurve.h,
papyrus-extras/kochsnowflake.h, papyrus-extras/sierpinski.h,
papyrus/arc.h, papyrus/beziergon.h, papyrus/bezierline.h,
papyrus/boxed.h, papyrus/circle.h, papyrus/grid.h,
papyrus/image.h, papyrus/marker.h, papyrus/polygon.h,
papyrus/polyline.h, papyrus/rectangle.h, papyrus/region.h,
papyrus/regularpolygon.h, papyrus/rotator.h, papyrus/scaler.h,
papyrus/stroke.h, papyrus/text.h, papyrus/translator.h,
papyrus/viewbox.h: Fix virtual destructors
* papyrus.spec.m4:
* Makefile.am:
2008-12-31 Rick L. Vinyard, Jr. <[email protected]>
* Makefile.am, acinclude.m4, aminclude.am, configure.in,
papyrus.kdevelop:
* Doxyfile:
* papyrus/handlebox.cpp, papyrus/handlebox.h, papyrus/marker.h:
* demos/papyrus-extras-demo, demos/papyrus-extras-demo/Makefile.am,
demos/papyrus-extras-demo/demo-common.cc,
demos/papyrus-extras-demo/demo-common.h,
demos/papyrus-extras-demo/demos.h,
demos/papyrus-extras-demo/demowindow.cc,
demos/papyrus-extras-demo/demowindow.h,
demos/papyrus-extras-demo/example_affine_controller.cpp,
demos/papyrus-extras-demo/example_affineanimator.cpp,
demos/papyrus-extras-demo/example_drawables.cpp,
demos/papyrus-extras-demo/example_freehandsketcher.cpp,
demos/papyrus-extras-demo/example_handlebox_scaler.cpp,
demos/papyrus-extras-demo/example_markers.cpp,
demos/papyrus-extras-demo/example_operators.cpp,
demos/papyrus-extras-demo/example_rotator.cpp,
demos/papyrus-extras-demo/example_scaler.cpp,
demos/papyrus-extras-demo/example_selector.cpp,
demos/papyrus-extras-demo/example_translator.cpp,
demos/papyrus-extras-demo/example_viewbox.cpp,
demos/papyrus-extras-demo/main.cc,
demos/papyrus-extras-demo/papyrus-icon.png,
demos/papyrus-extras-demo/textwidget.cc,
demos/papyrus-extras-demo/textwidget.h:
* demos/Makefile.am:
2008-12-24 Rick L. Vinyard, Jr. <[email protected]>
* papyrus/stroke.cpp: Fix of invalid use of assign operator for
valarray --- thanks to Tim Niemueller for catching it
* papyrus/group.cpp:
* papyrus/canvas.cpp, papyrus/circle.cpp, papyrus/drawable.cpp,
papyrus/drawable.h, papyrus/image.cpp, papyrus/rectangle.cpp,
papyrus/rectangle.h: Affine elements are now private with
protected accessors to ensure that the matrix is marked for
recalculation when an element s changed.
* papyrus/boxed.cpp, papyrus/boxed.h:
2008-11-10 Rick L. Vinyard, Jr. <[email protected]>
* papyrus.kdevelop:
* doc/reference:
* Doxyfile, configure.in:
* papyrus/Makefile.am:
* examples/Makefile.am:
* configure.in:
* Makefile.am:
* doc:
* demos, demos/Makefile.am, demos/papyrus-demo,
demos/papyrus-demo/Makefile.am,
demos/papyrus-demo/demo-common.cc,
demos/papyrus-demo/demo-common.h, demos/papyrus-demo/demos.h,
demos/papyrus-demo/demowindow.cc,
demos/papyrus-demo/demowindow.h,
demos/papyrus-demo/example_affine_controller.cpp,
demos/papyrus-demo/example_affineanimator.cpp,
demos/papyrus-demo/example_drawables.cpp,
demos/papyrus-demo/example_freehandsketcher.cpp,
demos/papyrus-demo/example_handlebox_scaler.cpp,
demos/papyrus-demo/example_markers.cpp,
demos/papyrus-demo/example_operators.cpp,
demos/papyrus-demo/example_rotator.cpp,
demos/papyrus-demo/example_scaler.cpp,
demos/papyrus-demo/example_selector.cpp,
demos/papyrus-demo/example_translator.cpp,
demos/papyrus-demo/example_viewbox.cpp,
demos/papyrus-demo/main.cc, demos/papyrus-demo/papyrus-icon.png,
demos/papyrus-demo/textwidget.cc,
demos/papyrus-demo/textwidget.h, demos/papyrus-gtkmm-demo,
demos/papyrus-gtkmm-demo/Makefile.am,
demos/papyrus-gtkmm-demo/demo-common.cc,
demos/papyrus-gtkmm-demo/demo-common.h,
demos/papyrus-gtkmm-demo/demos.h,
demos/papyrus-gtkmm-demo/demowindow.cc,
demos/papyrus-gtkmm-demo/demowindow.h,
demos/papyrus-gtkmm-demo/example_animatorbouncewidget.cpp,
demos/papyrus-gtkmm-demo/example_animatorframeintervalwidget.cpp,
demos/papyrus-gtkmm-demo/example_animatorframeratewidget.cpp,
demos/papyrus-gtkmm-demo/example_linecapbuttonbox.cpp,
demos/papyrus-gtkmm-demo/example_linecapcombobox.cpp,
demos/papyrus-gtkmm-demo/example_linejoinbuttonbox.cpp,
demos/papyrus-gtkmm-demo/example_linejoincombobox.cpp,
demos/papyrus-gtkmm-demo/example_linewidthcombobox.cpp,
demos/papyrus-gtkmm-demo/example_markercombobox.cpp,
demos/papyrus-gtkmm-demo/example_markerwidget.cpp,
demos/papyrus-gtkmm-demo/example_pixbuf.cpp,
demos/papyrus-gtkmm-demo/example_strokewidget.cpp,
demos/papyrus-gtkmm-demo/example_viewport.cpp,
demos/papyrus-gtkmm-demo/main.cc,
demos/papyrus-gtkmm-demo/papyrus-icon.png,
demos/papyrus-gtkmm-demo/textwidget.cc,
demos/papyrus-gtkmm-demo/textwidget.h:
* examples/button/Makefile.am, examples/button/button.cpp,
examples/button/button.h, examples/button/main.cc,
examples/color_schemes/Makefile.am,
examples/color_schemes/color_schemes.cpp,
examples/drawable_test[DEL]:
* examples, examples/button, examples/color_schemes,
examples/drawable_test, examples/pick, examples/pick/Makefile.am,
examples/pick/main.cc,
examples/pick/new_mexico_sacramentos_october_b_sm.png,
examples/pick/simple.cpp, examples/pick/simple.h,
examples/shapes, examples/shapes/Makefile.am,
examples/shapes/shapes.cpp, examples/simple.cpp,
examples/simple_zoom, examples/simple_zoom/Makefile.am,
examples/simple_zoom/new_mexico_desert_spring_sm.png,
examples/simple_zoom/simple.cpp, examples/simple_zoom/simple.h,
examples/viewbox, examples/viewbox/Makefile.am,
examples/viewbox/viewbox.cpp:
* templates, templates/cpp, templates/h:
* papyrus-gtkmm, papyrus-gtkmm/Makefile.am,
papyrus-gtkmm/animatorbouncewidget.cpp,
papyrus-gtkmm/animatorbouncewidget.h,
papyrus-gtkmm/animatorframeintervalwidget.cpp,
papyrus-gtkmm/animatorframeintervalwidget.h,
papyrus-gtkmm/animatorframeratewidget.cpp,
papyrus-gtkmm/animatorframeratewidget.h, papyrus-gtkmm/enums.h,
papyrus-gtkmm/linecapbuttonbox.cpp,
papyrus-gtkmm/linecapbuttonbox.h,
papyrus-gtkmm/linecapcombobox.cpp,
papyrus-gtkmm/linecapcombobox.h,
papyrus-gtkmm/linejoinbuttonbox.cpp,
papyrus-gtkmm/linejoinbuttonbox.h,
papyrus-gtkmm/linejoincombobox.cpp,
papyrus-gtkmm/linejoincombobox.h,
papyrus-gtkmm/linewidthcombobox.cpp,
papyrus-gtkmm/linewidthcombobox.h,
papyrus-gtkmm/markercombobox.cpp, papyrus-gtkmm/markercombobox.h,
papyrus-gtkmm/markerwidget.cpp, papyrus-gtkmm/markerwidget.h,
papyrus-gtkmm/strokedialog.cpp, papyrus-gtkmm/strokedialog.h,
papyrus-gtkmm/strokewidget.cpp, papyrus-gtkmm/strokewidget.h,
papyrus-gtkmm/utility.cpp, papyrus-gtkmm/utility.h,
papyrus-gtkmm/viewport.cpp, papyrus-gtkmm/viewport.h:
* papyrus-extras, papyrus-extras/Makefile.am,
papyrus-extras/example_image.h, papyrus-extras/face.cpp,
papyrus-extras/face.h, papyrus-extras/factory.cpp,
papyrus-extras/factory.h, papyrus-extras/hilbert.cpp,
papyrus-extras/hilbert.h, papyrus-extras/kochcurve.cpp,
papyrus-extras/kochcurve.h, papyrus-extras/kochsnowflake.cpp,
papyrus-extras/kochsnowflake.h, papyrus-extras/sierpinski.cpp,
papyrus-extras/sierpinski.h:
* papyrus, papyrus/Makefile.am, papyrus/affineanimator.cpp,
papyrus/affineanimator.h, papyrus/affinecontroller.cpp,
papyrus/affinecontroller.h, papyrus/animator.cpp,