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
|
2004-07-21 Pino Toscano <toscano.pino@tiscali.it>
* Make a text label not "pasted" to its point by adding a
"padding" ( 2 pixels every side ).
* Now the code editor in the Script Wizard uses KDE global fixed
font.
2004-07-20 Pino Toscano <toscano.pino@tiscali.it>
* Implement arc-line intersection in KSeg filter.
* Add support in KGeo filter for constrained points and info
about the presence of grid and axes.
* Little fix in Cabri filter.
* Fixed a crash in the Types dialog.
2004-07-18 Dominique Devriese <devriese@kde.org>
* Introduce the concept of a CompatibilityVersion. Kig now saves
its files with a compatibility version of 0.7.0, indicating that
the file format has stayed more or less the same since 0.7, and
that an app able to open documents created by Kig 0.7 should
normally not have much problems with this version's files ( apart
from some new document types, but those are handled separately
anyway ). On loading, Kig now first checks the compatibility
version, and falls back to the real version only if the previous
is not available. The CompatibilityVersion will change only on
major file format changes, unlike the normal Version.
* Move the version back to 0.9, because Kig really isn't in a 1.0
state yet. Some problems need addressing first. It took me some
time to realise, but calling this release 1.0 would not do credit
to the program's long-term potential.
2004-07-13 Pino Toscano <toscano.pino@tiscali.it>
* Move AngleType from other_type.* into angle_type.*.
* Add a new HalfAngleType object, which returns only an angle
smaller than 180 degrees. This is useful for Dr. Geo angles,
which are always smaller than 180 degrees.
* Activate and improve Cabri filter.
* Some improvements in the Types dialog.
* A new magic file for application/x-cabri.
* Add CubicCartesianData and Cubic to Python Scripting API.
* Some fixes in Dr. Geo filter: implement Bordeaux colour; fix
intersection params; Kig shows the name of every point; ignore
Dr. Geo block to UI.
* Improved the generation of pot catalogs.
* Now it's possible to construct the tangent to a conic or an
arc.
* Add a select statement to show a message in the statusbar for
PropertyObjectConstructor, and use this to show an info text
while constructing an angle bisector.
* A new type to calc the difference between two vectors.
* ObjectFactory::sensiblePointCalcer can construct line-line
intersections.
* Fix a bug that occurs when Kig draw a line that has the same
coordinates in its LineData class.
* Activate Help button in the Script Wizard.
* Some little improvements.
2004-07-03 Dominique Devriese <devriese@kde.org>
* Make the type edit dialog appear when the edit button is
pressed, not when the user clicks on a type.
2004-06-29 Pino Toscano <toscano.pino@tiscali.it>
* Some fixes related to the Kig version change.
* Some fixes in the Dr. Geo filter.
* Fixed a small bug that leads to display "Select the point" when
I reset the name of an object after setting it.
* i18n fixes in kfile_kig.
2004-06-29 Dominique Devriese <devriese@kde.org>
* Change the version to 1.0
2004-06-26 Pino Toscano <toscano.pino@tiscali.it>
* A new property "Angle" for arcs.
* Many improvements in the Dr. Geo filter.
2004-06-15 Pino Toscano <toscano.pino@tiscali.it>
* Add info about whether grid and axes are shown to the kig kfile
thing.
* Now the coordinate system toggleaction is correctly updated
when the coordinate system is changed in another way.
* Disable the page selection in the print dialog.
2004-06-14 Dominique Devriese <devriese@kde.org>
* Change some more functions that still pass "bool valid&"s around
to using Coordinate::valid().
2004-06-14 Pino Toscano <toscano.pino@tiscali.it>
* Add "Tips Of Day" feature.
* A new tab in the Print dialog allow the user to choose whether
to print grid and/or axes.
* Add arc-line intersection type.
2004-06-13 Pino Toscano <toscano.pino@tiscali.it>
* Add the possibility to attach a label ( and a point, of
course :) ) to a vector. This because now VectorImp inherits
CurveImp.
* Make types modifiable through types dialog. The system is not
complete, because at the moment there is no way to update the UI.
* The user now can choose manually the zoom area.
* Get rid of the Invisible coordinate system; now there are two
actions ( Show Grid and Show Axes ) to show/hide grid and axes
separately. I think this is a better way: the Invisible coordinate
system did not allow to work with polar coordinates and no grid.
2004-06-11 Dominique Devriese <devriese@kde.org>
* Some improvements by me to Pino's object names code. Mostly,
this includes cleaning the design a bit, and adding support for
the names in some places.
2004-05-31 Dominique Devriese <devriese@kde.org>
* Fix some memory leaks found by valgrind.
2004-05-30 Dominique Devriese <devriese@kde.org>
* implement usetexts and select statements for builtin macro's
* Show a text in the statusbar describing what we want the user to
select, in ConstructMode.
* Add an example of a cubic constructed as a locus.
* Clean the status bar text on time in ConstructMode and
TestConstructMode.
* Make SetCoordinateSystemAction into a KSelectAction, so the user
can see what kind of coordinate system he's currently using.
* Some tuning of the UI: move Transformations and Tests menu into
the Objects menu because the menubar was getting too crowded.
2004-05-29 Dominique Devriese <devriese@kde.org>
* Fix a crash related to a locus containing some invalid points,
and added the offending test file in filters/tests.
* Fix some --enable-final problems in the filters/ directory.
2004-05-28 Dominique Devriese <devriese@kde.org>
* Add a test file "testalotofeverything.kig"
* Add a Similitude transformation.
* Add a VectorEqualityTestType.
2004-05-27 Dominique Devriese <devriese@kde.org>
* Fix so that Kig saves its window settings on exit.
2004-05-24 Pino Toscano <toscano.pino@tiscali.it>
* Add the possibility to give a name to every object. The name is
displayed when moving mouse over the object, like "Select this
line (AB)" or choosing the object which attach another object to.
For now there is no label with title displayed with the object.
* Make the Vector Sum of two vectors starting at an arbitrary
point.
2004-05-23 Dominique Devriese <devriese@kde.org>
* replace the custom configureShortcuts code with the standard KDE
one if the user is running HEAD.
2004-05-18 Pino Toscano <toscano.pino@tiscali.it>
* Move ArcBTPType from other_type.* into arc_type.*.
* Add two new types, ArcBCPA ( Arc By Center, starting Point and
Angle ) and CircleBCL ( Circle By Center and Line - via macro ).
* Now every submenu in the RMB menu can have an own icon.
* Add a menu icon for every ExportAction.
* Various little improvements
2004-05-18 Dominique Devriese <devriese@kde.org>
* Add a --convert-to-native command line option, which converts
the given file to the native Kig file format ( without a GUI ).
* Split up KigDocument into KigPart and KigDocument
2004-05-15 Dominique Devriese <devriese@kde.org>
* Intersecting with a segment only gives points that really are on
the segment, and an InvalidImp in other cases.
2004-05-12 Pino Toscano <toscano.pino@tiscali.it>
* Now circles can display their equation in the form
"( x - x0 )^2 + ( y - y0 )^2 = r^2".
* Add Doxygen comments for AngleImp, VectorImp and ArcImp
classes, to make them documented in scripting-api documentation.
* Add a Copy action to text labels to copy their text ( with
substitutions already made ) into the clipboard.
* Add two little kfile plugins: kfile_kig and kfile_drgeo.
* Various little improvements
2004-05-11 Dominique Devriese <devriese@kde.org>
* Rename the two Transformation::scaling functions to
scalingOverPoint and scalingOverLine, and export them to python.
* Fix a crash reported by Maurizio: when debugging is enabled, and
one attempts to move an object of a type that inherits
ObjectABType, and depends on a non-movable object.
2004-05-03 Dominique Devriese <devriese@kde.org>
* Add a DrGeo test file using a locus
2004-05-03 Pino Toscano <toscano.pino@tiscali.it>
* More work on Dr. Geo filter: now locuses should work, fix object
visibility.
2004-04-30 Pino Toscano <toscano.pino@tiscali.it>
* Add line and half-line by vector.
* More work on Dr. Geo filter to support some types of On_curve
points.
2004-04-30 Dominique Devriese <devriese@kde.org>
* properly generate python error output for compile errors.
* make touch screens work by placing a mouseMoved call aboove
every mouseClicked call.
2004-04-28 Dominique Devriese <devriese@kde.org>
* change the Qt CapStyle used for drawing locuses, conics and
lines to FlatCap, which gives better results with large line
widths.
* Add two line styles: DashDotLine and DashDotDotLine
* Remove the KigPainter::drawConic and KigPainter::drawCubic
functions. Conics and cubics are now drawn with the generic
KigPainter::drawCurve function. The performance penalty is not
noticable for me, and I haven't been able to quantify it in any
way, so I assume it negligible. Cubics and conics drawing now
correctly takes line styles into account.
2004-04-27 Pino Toscano <toscano.pino@tiscali.it>
* Implement styles and visibility for KSeg filter.
2004-04-27 Dominique Devriese <devriese@kde.org>
* Make locuses work with the line styles, by drawing them with
drawPolyline instead of drawing the individual segments ourselves.
Thanks to Maurizio for the ideas and the help.
* Fix a stupid bug in the last commit which caused Kig to crash on
older Kig files.
* Make it possible to switch the radical lines of a conic that are
shown.
2004-04-24 Dominique Devriese <devriese@kde.org>
* Add a vector sum object.
* Move VectorType from other_type.* into vector_type.*.
* Fix a bug where some objects were not preliminarily drawn
correctly.
2004-04-23 Dominique Devriese <devriese@kde.org>
* Add a segment-midpoint icon from Julien Narboux
<Julien.Narboux@inria.fr>.
* Implement a scheme that automatically instantiates the singleton
ObjectType's. Now, the ObjectType constructor now adds itself to
ObjectTypeFactory, so that we cannot forget to do it. This fixes
loading of files containing property test objects.
* Remove the old code that removed $appdata/kig-types/*.kigt on
exit, as it's not necessary anymore.
2004-04-22 Dominique Devriese <devriese@kde.org>
* Add a "opposite vector" property to VectorImp.
2004-04-21 Pino Toscano <toscano.pino@tiscali.it>
* Add a SameDistanceType, to check whether a point have the same
distance from a second point and from a third point.
2004-04-21 Dominique Devriese <devriese@kde.org>
* Fix tooltips to not contain "&&" instead of "&" ( closes: 78411 ).
2004-04-20 Dominique Devriese <devriese@kde.org>
* Various i18n'able string fixes.
* Add some documentation to the functions in misc/conic-common.h
* Rename "Cubic" to "Cubic Curve", as discussed with Maurizio
Paolini and Jaap Woldringh.
* Save and load line and point styles in the native format. Most
of the code comes from Pino.
2004-04-19 Pino Toscano <toscano.pino@tiscali.it>
* More work in Dr. Geo filter.
* A new cool (I hope :) ) icon for Python Script.
* Some various improvements.
2004-04-17 Dominique Devriese <devriese@kde.org>
* Fix the calculation of the rectangle containing the entire
document ( which is used for centering on the document ), to take
into account non-point objects. This is accomplished by adding a
surroundingRect function to ObjectImp, and by implementing it
properly for all objects that can have such a thing.
2004-04-15 Pino Toscano <toscano.pino@tiscali.it>
* More work in Dr. Geo filter: add a new object and simplifying a
bit his internal structure.
* Kig now ask the user what to do when he/she tries to save to
a file in another format than Kig's own.
* Improve Python scripting's API: add vectors, angles and arcs.
* Add i18n for TestConstructor's.
* Improved NewScriptAction class to support, without other
changes, other scripting languages.
* Some little here-and-there improvements
2004-04-11 Dominique Devriese <devriese@kde.org>
* Improve Kig embedded in Konqueror experience: make translations
and icons work by using the correct instanceName(), and using the
iconLoader we get from our KInstance instead of from KGlobal ( so
that the kig specific dirs are checked for icons as well ).
2004-04-10 Dominique Devriese <devriese@kde.org>
* Enable the DrGeo input filter.
2004-04-10 Pino Toscano <toscano.pino@tiscali.it>
* Improved angle size editing, making possible choosing between
degrees, radians and gradians.
* More work in Dr. Geo filter.
* Some improvements in Goniometry class
2004-04-08 Pino Toscano <toscano.pino@tiscali.it>
* More work on types dialog: a new dialog will allow to edit
types that now work in read-only mode.
* Add a 'cross' style for points.
* Some very minor work in Dr. Geo filter.
* Add a new simple class to easily work with goniometric
measures, and adapt Kig to use this class.
* Some #include fixes
2004-04-05 Pino Toscano <toscano.pino@tiscali.it>
* A new look for type list in the type dialog: a listview instead
of a listbox that should make easier editing a type.
2004-04-04 Pino Toscano <toscano.pino@tiscali.it>
* Now Kig can save icon information of every macro.
* Some work on types dialog: icon of every type is now visible,
and made a sort of skeleton to modify type's data.
* Made buttons of some dialogs like other KDE dialogs ones (with
icons and correct alignment).
* Kig now ask the user when exporting type(s) to an already
existant file.
* Some i18n fixes
2004-04-02 Dominique Devriese <devriese@kde.org>
* Implement the point-on-curve checking. The code should work,
but the objects using it cannot be built yet.
2004-03-28 Dominique Devriese <devriese@kde.org>
* Add some non-functional code for point-on-curve checking.
2004-03-28 Pino Toscano <toscano.pino@tiscali.it>
* Add point styles
* Some i18n fixes
* More work on the DrGeo import filter
2004-03-27 Dominique Devriese <devriese@kde.org>
* Apply a patch by Albert Astals Cid <tsdgeos@terra.es> that gives
focus to the text input on first opening the text dialog.
Closes:78409.
* Fix a translation issue with internal macro's.
* Make a TextImp transformable by simply transforming its
location, and showing the text label in that location again
(Closes: 78407 ).
2004-03-26 Pino Toscano <toscano.pino@tiscali.it>
* Implemented a popup menu submenu for changing the line style of
an object.
* Various i18n fixes
2004-03-15 Dominique Devriese <devriese@kde.org>
* misc/coordinate_system.cpp: add a simple "Invisible" Coordinate
system, showing no axes or grid at all.
2004-03-10 Dominique Devriese <devriese@kde.org>
* Don't mess up the order of given objects in a macro
construction.
2004-03-09 Dominique Devriese <devriese@kde.org>
* Fix the macro system to reject macro's where not all of the
given objects are used.
* Fix the macro system to properly check whether the final objects
depend on the given objects, and fix a problem with the wrong
object being selected as the final object in some rare cases.
2004-03-06 Dominique Devriese <devriese@kde.org>
* Incorporate a patch by Pino Toscano adding some unfinished work
on a Dr.Geo import filter. It's not finished yet, and also not
visible in the UI yet.
* Fix the ObjectHierarchy::resultDoesNotDependOnGiven() function
to do something much less stupid than before. It still only
checks if one of the result objects does not depend on the given
objects, it needs to be changed to properly check whether all the
result objects depend on the given objects.
* Fix the ObjectHierarchy class to generate a correct hierarchy
when a result object depends on another object that does not
depend on the given objects.
2004-02-24 Dominique Devriese <devriese@kde.org>
* Make the tests stuff generate a proper text label with
property calcers instead of a normal calcer as rest arguments.
* Make the configure.in.in stuff properly detect python on RH
-> many thanks to Maurizio for helping me with this.
* Fix some problems with the useText, that were introduced with
the new tests stuff.
2004-02-23 Dominique Devriese <devriese@kde.org>
* Add a ContainsTestType, testing whether a given point is on a
given curve.
2004-02-17 Dominique Devriese <devriese@kde.org>
* Add the possibility to give an item a custom color in the
popup dialog.
2004-02-16 Dominique Devriese <devriese@kde.org>
* make the usetext in TestConstructMode also appear for all other
arguments than the last one
2004-02-15 Dominique Devriese <devriese@kde.org>
* Add code by Maurizio Paolini, and some adaptations of his code
by me for supporting property tests like "are these two lines
parallel ?"
* update the aboutdata: Maurizio Paolini did not only help with
math intensive code, and Franco Pasquarelli did some very
important work in the locus code.
2004-02-14 Dominique Devriese <devriese@kde.org>
* Fix a bug waiting to pop up in construct_mode.cc, where you
select the same object twice.
* Add documentation about the locus and textlabel design to the
DESIGN document.
2004-02-10 Dominique Devriese <devriese@kde.org>
* Fix a bug which caused Kig to crash on moving a text label by
removing a wrong assertion in objects/object_calcer.cc
2004-02-09 Dominique Devriese <devriese@kde.org>
* Replace the line-line-intersection algorithm with a much simpler
one by Maurizio Paolini
* Add three new transformations by Maurizio Paolini
* Remove people-to-inform-about-kig-releases as no further
separate releases are planned.
2004-02-08 Dominique Devriese <devriese@kde.org>
* Fix a bug reported by Maurizio Paolini: don't crash on getting
the arguments for a locus in the wrong order.
2004-01-21 Dominique Devriese <devriese@kde.org>
* replace my own autoconf code in configure.in.in for checking for
boost.python and python by some macro's by Ben Burton which
additionally check whether the python and boost.python combination
found is sane. They're also generally cleaner and such.
* clean up configure.in.bot a bit
2004-01-20 Dominique Devriese <devriese@kde.org>
* Add a new internal "Segment Axis" type, implemented as a macro.
2004-01-18 Dominique Devriese <devriese@kde.org>
* bump the version number to 0.7.1
2003-12-16 Dominique Devriese <devriese@kde.org>
* Fix the scrolling for horizontal scrolling using the alt button
or a horizontal scroll wheel.
2003-12-15 Dominique Devriese <devriese@kde.org>
* Another try at fixing the ArgsParser parsing order. I think
I've tried most problematic cases, and they all seem to work
properly. Let's pray for the best ;)
2003-12-10 Dominique Devriese <devriese@kde.org>
* Fix a crash when using a macro having the moving point of a
locus as its argument, reported by Marco Zoso.
2003-11-14 Dominique Devriese <devriese@kde.org>
* Fix two crashes in TextLabelRedefineMode.
2003-11-10 Dominique Devriese <devriese@kde.org>
* bump the version number to 0.6.1
* Fix bugs #67671 and #67694
2003-10-22 Dominique Devriese <devriese@kde.org>
* Improve the errors given by the "New Script Wizard", by making
it get a proper error description from the python interpreter.
* fix the ArgsParser parsing order, properly this time..
2003-10-20 Dominique Devriese <devriese@kde.org>
* Work on the Cabri import filter, so that it actually becomes
usable for some easier files..
* Improve the errors given by the "New Script Wizard", by making
it get a proper error description from the python interpreter.
2003-10-09 Dominique Devriese <devriese@kde.org>
* Add a lot of documentation to the new classes.
* Fix the moving system again, it now only redraws exactly those
objects that need to be redrawn. E.g. when a constrained point
was moved, before it was assumed that all of its parents, and
their children would move, whereas in reality, a constrained point
does not move the curve it is constrained to. This is now taken
into account for. This much optimizes the case where we move the
constrained point in examples/sine-curve.kig.
* Added a DESIGN document, documenting the Kig object system
design. I think that is rather finished now, and it's probably
about time to try and make some other people than myself get it ;)
* Remove support for the ancient pre-0.4 file format that we still
supported opening. If you still have old files around using it,
you should convert them to the new format, by opening them with a
Kig version between 0.4 to 0.6, and re-saving them. Maintaining
compatibility with these old files doesn't seem very useful,
because I don't think there are many files in this format
available, and therefore I didn't think it was worth the trouble
of porting the code to the new object system.
* Introduce a new file format that matches the new object system
better. Files in the old format can still be opened seamlessly.
* Add undo/redo support for changing visible aspects of an object
( size, color, shown state ). In the new system, this was as easy
as replacing the ObjectDrawer of an ObjectHolder with another one.
* Another ( hopefully the last ) major change to the object
system. Decouple the link between how an object is calced and how
it is drawn. We now have a hierarchy structure of ObjectCalcer's
describing various objects and their interrelations. On top of
that, there are the ObjectHolder's, which hold a link to an
ObjectCalcer from the hierarchy, and keep an ObjectDrawer
describing how to draw it. The document only keeps a list of
ObjectHolder's, nothing else..
* make the New Script Wizard give an error when the script does
not generate a valid ObjectImp.
* fix some issues with the escaping of an & in a translatable
string in an xml file
* fix the generation of the pot translation template file
* fix a problem with the order of arguments in ScalingOverLineType
causing a test file to not be loaded correctly..
* update some test files to the new ( post-0.4 ) kig file format.
* add ( sometimes placeholder ) icons for the remaining actions
that missed icons ( thanks to Maurizio Paolini )
2003-09-08 Dominique Devriese <devriese@kde.org>
* Fix a bug that prevented Kig from opening its own files,
rejecting them because they were of the 0.6.0 version, which Kig
could not open.. I'm backporting this into Kig 0.6.0 and
informing the packager..
* clean up: Objects now store their parents in order, so that no
parsing has to be done in the calc() function.. Also some more
modifications making that function a bit simpler are included.
Specifically, ArgsParser now does the checking of the arguments,
instead of every single calc function doing it itself..
2003-09-02 Dominique Devriese <devriese@kde.org>
* rename ArgparserObjectType to ArgsParserObjectType
* remove ArgsChecker class, and rename ArgParser to ArgsParser
2003-09-02 Dominique Devriese <devriese@kde.org>
* branch off Kig 0.6.0
2003-09-01 Dominique Devriese <devriese@kde.org>
* only move an object if its parents are not yet moving.. This
fixes bug #63250.
* remove the defective operator| and operator& implementations for
the Objects class
2003-08-31 Dominique Devriese <devriese@kde.org>
* make the Kig Python Scripting API docs only available online.
It's too much trouble to generate them during the build process,
and I can't add a hard build-time dependency on doxygen anyway...
* keep the Kig version number in a central place, so that it can
easily be changed. Use some autoconf magic to fill it in in the
other places..
2003-08-25 Dominique Devriese <devriese@kde.org>
* update the configure.in.* files and remove
README.boost-python1.30-gcc3.2 and boost-python1.30-gcc3.2.patch
because distributing a Boost.Python patch with Kig is really
stupid, and because the Debian packagers have already applied the
patch in their version of Boost.Python, and so should the other
distro's. Seems I need to thank Ben Burton for suggesting to the
Debian packagers to apply the patch.
* fix a wrong "lib not found error" in configure.in.in by removing
-pedantic from CXXFLAGS while trying to compile.
2003-08-15 Dominique Devriese <devriese@kde.org>
* improve the inline documentation in order to improve the doxygen
generated docs for the python scripting API.
2003-08-03 Dominique Devriese <devriese@kde.org>
* give Transformation::apply better semantics
2003-07-27 Dominique Devriese <devriese@kde.org>
* add a warning to configure.in.bot about how Boost.Python 1.30
together with GCC 3.2+ is a bad combination, along with a patch.
* add documentation about attaching text labels and locuses to the
index.docbook file
2003-07-23 Dominique Devriese <devriese@kde.org>
* add a nifty python scripting example that shows the graph of a
sine curve, but can in fact be used to show any function's graph
you would come up with. It uses python scripting and the locus
facility in a clever way to do this. In fact, I stole the idea
from something I saw Hilaire Fernandes do with the Dr.Genius guile
scripting on a presentation at FOSDEM. Kig - of course ;) - does
it way cooler.. :)
* add support for using the python math package in Kig python
scripts, by importing it from PythonScripter's ctor, and by making
Kig load its part library with RTLD_GLOBAL, to eliminate a problem
which caused python to not be able to load its math dll..
2003-07-20 Dominique Devriese <devriese@kde.org>
* add support for attached text labels.
2003-07-17 Dominique Devriese <devriese@kde.org>
* fix the "conversion from const char* to char*" problem in
python_scripter.cc. This introduces a small, harmless memory leak
because of how the python libs work..
2003-07-16 Dominique Devriese <devriese@kde.org>
* add documentation about installing the python dev libs to
configure.in.bot
* adapt some infrastructure regarding text labels to be able to
work with labels that get their location from an invisible Point
object. This will ease the adding of support for attached text
labels..
2003-07-12 Dominique Devriese <devriese@kde.org>
* prevent a crash when kig cannot find its library. It now just
complains and exits properly.
2003-07-03 Dominique Devriese <devriese@kde.org>
* add Python scripting support. Rather large addition, involving
a lot of autoconf and automake magic..
* make snapToGrid work for PolarCoordinateSystem
* make shift -> snap to grid work in PointConstructionMode and
normal Construction Mode too..
* add the concept of cache objects, which cannot be stored, in
order to support a python compiled script ObjectImp..
2003-07-02 Dominique Devriese <devriese@kde.org>
* sanitize the ObjectImp inherits() system. It now uses static
objects instead of enum values, this also eliminates some ugly
functions in ObjectImp, and allows for more flexible addition of
new ObjectImp types..
* fix a memory leak in KigDocument, which did not delete its
KCommandHistory..
* fix some use of uninitialised value in dragrectmode, which
caused the dragrect to not work at random times
* fix the clearing of the selection when the user clicks on an
empty point..
2003-06-27 Dominique Devriese <devriese@kde.org>
* implement helpSlot() in ManageTypesDialog..
* add a "Set Coordinate System" menu to the Settings menu..
* make shift snap to grid in moving mode, and rework the moving
API to something a bit saner in the process..
2003-06-25 Dominique Devriese <devriese@kde.org>
* add undo support for various view actions like zoom in, zoom
out, recenter screen, select screen rect etc. Check out the
comment in the function KigWidget::slotZoomIn() in
kig/kig_view.cpp for why I implemented this even though it isn't
really "correct".
2003-06-24 Dominique Devriese <devriese@kde.org>
* fix a crash bug reported by Pino Toscano, that occurs because
TextLabelRedefineMode was not yet updated to the new
reference-counting Object's stuff..
2003-06-21 Dominique Devriese <devriese@kde.org>
* Implement Select all, Unselect all and Invert selection.
2003-06-20 Dominique Devriese <devriese@kde.org>
* fix this bug:"17) Add the possiblity, by pressing Esc, to stop
the selection, even of the area to be shown."
* add an icon for Arc's center property, this fixes: "12) Why
don't you use baseCircle.png as icon to show/construct the center
of a circle and (why not?) an arc?"
* fix: a text label constructed using "add text label" from an
object popup wasn't properly calced after construction..
* fix this bug: "2) Add the possibility to set shortcut for all
the actions & objects (For examples: Ctrl+P to construct a point,
Ctrl+R to start a reflection, and so on...).", and add some
default accels too ( "p" for point, "s" for segment etc. ( note :
no control key ).
* fix this bug: "3) When I select a segment, in his popup there are
two same entry in Construct submenu, called Mid point an
Midpoint. Why?" as reported by Pino Toscano
2003-06-11 Dominique Devriese <devriese@kde.org>
* move transformations to their own menu entry, thanks to Pino
Toscano
* move angle stuff to their own objects submenu, and toolbar,
thanks to Pino Toscano
* update the images in the docs, thanks to Pino Toscano
2003-06-04 Dominique Devriese <devriese@kde.org>
* show an appropriate error when trying to open an non-existing
file..
* clean up the object parent-child relation mechanism. Rather
large code cleanup, that simplifies a lot of code.. Needed a
backwards-compatible file format extension. This commit now also
adds proper treatment of internal objects, because it no longer
relies on the inherently wrong isInternal() hack, but features The
Correct Fix(tm).
2003-06-03 Dominique Devriese <devriese@kde.org>
* bugfix: show default icons for actions that don't have any.. (
fixes bug #59283 )
* release Kig 0.5.1
2003-05-30 Dominique Devriese <devriese@kde.org>
* Add an option to select the part of the screen that should be
shown by dragging a rect..
2003-05-28 Dominique Devriese <devriese@kde.org>
* fix warnings when compiling with --disable-debug
2003-05-26 Dominique Devriese <devriese@kde.org>
* fix a crash bug for a weird cubic situation
2003-05-25 Dominique Devriese <devriese@kde.org>
* implement another of Stephan Binner's suggestions: in the set
coordinate system popup, show a checked mark next to the
current coordinate system..
* fix a bug that caused the "circle by center and point" type to
not be visible..
2003-05-24 Dominique Devriese <devriese@kde.org>
* when the user tries to construct a macro that constructs an
object from its children, warn him instead of
crashing... Thanks to Stephan Binner for the bug report
* improve the export to image dialog, as suggested by Stephan Binner
2003-05-23 Dominique Devriese <devriese@kde.org>
* remove some obsolete code and clean some older code up..
2003-05-22 Dominique Devriese <devriese@kde.org>
* add simple printing support using the fantastic KDE-Print lib
2003-05-21 Dominique Devriese <devriese@kde.org>
* fix the full screen mode, to use the correct shortcut for
starting and stopping it, and use QWidget::showFullScreen, instead
of creating a full screen pseudo-dialog etc.
* "branch off" release 0.5, and update the version strings etc.
2003-05-17 Dominique Devriese <devriese@kde.org>
* add a toolbar icon ( i.e. GUIAction ) for constructing an angle
bisector..
2003-05-15 Maurizio Paolini <paolini@dmf.unicatt.it>
* take advantage of the new invalid coordinate when creating circles
and arcs through three aligned points
2003-05-13 Dominique Devriese <devriese@kde.org>
* fix compilation with --enable-final
2003-05-12 Dominique Devriese <devriese@kde.org>
* fix a crash bug for macro's involving PropertyImp
* update the AboutData: upgrade some people to authors, and add
credit for some more people..
* add an angle bisector property
2003-05-10 Dominique Devriese <devriese@kde.org>
* fix the transformation types for cases where the object being
transformed is the same as one of the arguments that the
transformation needs.. E.g. right-click on a
point->transform->reflect over a point works properly
point->transform->now..
2003-05-09 Maurizio Paolini <paolini@dmf.unicatt.it>
* the drawLocus is now changed to function as a generic drawCurve.
The changes are very little, and the locusCalcPoint is no
longer necessary. It seems that performance is not affected
significantly. The drawCubic is not used any longer; it is
still there in kigpainter, but can be purged as soon as
no problems arise with the new setup. The generic drawCurve
is used in place of drawCubic.
2003-05-08 Dominique Devriese <devriese@kde.org>
* add support for quite some more types to the kseg import filter
2003-05-08 Maurizio Paolini <paolini@dmf.unicatt.it>
* fixed drawing problem while building a cubic by 9 points. The
problem was located in calcCubicRoot when the degree is
less than 3
2003-05-08 Dominique Devriese <devriese@kde.org>
* add some properties to the arc object
* organise the filters directory more sanely
* fix for deleting: remove deleted objects from their children, so
they don't appear in saved files
2003-05-07 Dominique Devriese <devriese@kde.org>
* more undo support: redefining text labels and points is undoable
now..
* small undo stuff cleanup
2003-05-06 Dominique Devriese <devriese@kde.org>
* fix the change text action for text labels to reuse the label
construction dialog. this makes it support multi-line
labels, and changing the parameters
2003-05-05 Dominique Devriese <devriese@kde.org>
* add zoom in/out icons to the document popup menu
2003-05-03 Dominique Devriese <devriese@kde.org>
* add support for multiline text labels.. still needs some
further work..
* add a set size action to the angle type
* change the angle size icon..
2003-05-03 Maurizio Paolini <paolini@dmf.unicatt.it>
* add transformation support for arcs..
2003-05-02 Dominique Devriese <devriese@kde.org>
* add undo support for changing the coordinate system
* generalize the undo support from the moving mode, and add undo
support for many of the object specific actions..
2003-05-01 Dominique Devriese <devriese@kde.org>
* perfect the grid..
* fix useless error output on startup
* add scroll bars to the full screen mode
* add zoom actions to the document popup
* add a change text action to text labels
2003-04-28 Dominique Devriese <devriese@kde.org>
* add undo support for moving
* add a full screen mode
2003-04-27 Dominique Devriese <devriese@kde.org>
* some PolarCoords improvements
* show a popup menu when the user clicks on the document, and allow
him to change the coordinate system..
2003-04-26 Dominique Devriese <devriese@kde.org>
* added property icons
2003-04-22 Dominique Devriese <devriese@kde.org>
* fix the move dependencies..
2003-04-19 Dominique Devriese <devriese@kde.org>
* Add KSeg file format support
* Start using the ChangeLog for versions after 0.4.1 ;)
ma feb 11 00:12:52 CET 2002 - Dominique Devriese <devriese@kde.org>
* Initial Creation
|