- 24 Mar, 2006 1 commit
-
-
David Saxton authored
svn path=/trunk/KDE/kdeedu/kmplot/; revision=522070
-
- 06 Feb, 2006 1 commit
-
-
Pino Toscano authored
svn path=/trunk/KDE/kdeedu/kmplot/; revision=506360
-
- 05 Oct, 2005 1 commit
-
-
Dirk Mueller authored
svn path=/trunk/KDE/kdeedu/kmplot/; revision=467420
-
- 03 Oct, 2005 1 commit
-
-
Laurent Montel authored
svn path=/trunk/KDE/kdeedu/kmplot/; revision=466888
-
- 16 Jul, 2005 1 commit
-
-
Dirk Mueller authored
svn path=/trunk/KDE/kdeedu/kmplot/; revision=435269
-
- 20 Mar, 2005 1 commit
-
-
Fredrik Edemar authored
svn path=/trunk/kdeedu/kmplot/; revision=399216
-
- 26 Feb, 2005 1 commit
-
-
Fredrik Edemar authored
* Generate correct function names for parametric functions. svn path=/trunk/kdeedu/kmplot/; revision=393361
-
- 20 Dec, 2004 1 commit
-
-
Fredrik Edemar authored
* Set some members in Parser to private (was protected before). * The load/save implemention for constants now works with KCalc again. * XParser::functionFstr is renamed to XParser::functionStr. svn path=/trunk/kdeedu/kmplot/; revision=372367
-
- 10 Dec, 2004 1 commit
-
-
Fredrik Edemar authored
* Cleaned some code. svn path=/trunk/kdeedu/kmplot/; revision=369690
-
- 29 Oct, 2004 1 commit
-
-
Fredrik Edemar authored
* Ability to copy and move functions to other running Kmplot instances. * Convert some atoi-calls to use .toInt() instead. * Check if the expression is valid when the user change the range values. * Merge Ufkt::k_liste and Ufkt::str_parameter to Ufkt::parameters. * Fix bug #92014. * When opening a file in a new window, the new window exits if the file couln't be loaded. * Kmplot automatic give you an other function name if you try to define one that already exists. svn path=/trunk/kdeedu/kmplot/; revision=358745
-
- 21 Oct, 2004 1 commit
-
-
Anne-Marie Mahfouf authored
svn path=/trunk/kdeedu/kmplot/; revision=356591
-
- 21 Sep, 2004 1 commit
-
-
Fredrik Edemar authored
* Optimzed and cleaned the integral-drawing. Now a drawing takes <1 second, before it took >3 sometimes. * KMinMax doesn't crash anymore when it is shown. * Cleaned some code in the add-function classes. CCMAIL:kdmoeller@foni.net CCMAIL:bmlmessmer@web.de svn path=/trunk/kdeedu/kmplot/; revision=348257
-
- 18 Sep, 2004 1 commit
-
-
Fredrik Edemar authored
* XParser::FktExt is merged to Parser::Ufkt as it simplify the code when looping through the functions. * Ufkt is now a standalone class, independent from Parser. * The changes stated above forced me to re-write the procedure of adding a function: Now all data for the new function isplaced in a temp-variable, the function is created and then all data is copied to the new function. * Both XParser and Parser were cleaned; some old functions were removed (the are not needed anymore as XParser::FktExt doesn't exist) and comments are added to the header files. * KmplotIO has the XParser-object as a member variable instead of an argument to the load and save functions. * A silly ';'-character after an if-statement made it impossible to define recursive functions before. That is fixed now. And: * The functions are now sorted in the edit-function dialog. CCMAIL:kdmoeller@foni.net CCMAIL:bmlmessmer@web.de svn path=/trunk/kdeedu/kmplot/; revision=347322
-
- 17 Sep, 2004 1 commit
-
-
Fredrik Edemar authored
Every function has now an unique ID-number. This number is used instead of index-number (the position the function had in the two functions-arrays). As the two arrays were converted to two QValueVectors the index-number of a function would be changed when a function with a lower index-number was removed. Therefore, the ID-number is needed to addres a function. CCMAIL:kdmoeller@foni.net CCMAIL:bmlmessmer@web.de svn path=/trunk/kdeedu/kmplot/; revision=347257
-
- 06 Sep, 2004 1 commit
-
-
Fredrik Edemar authored
* Support for more than 10 parameter values for a function. * Make calls to other functions work again, it was a problem with the auto-adding of *-characters: f(g(x)) != f(g*(x)) :-) CCMAIL:kdmoeller@foni.net CCMAIL:bmlmessmer@web.de svn path=/trunk/kdeedu/kmplot/; revision=344256
-
- 16 Jul, 2004 1 commit
-
-
Fredrik Edemar authored
* You can now load polar functions again without a freeze :-) * Forgot to commit View.cpp in my last commit. CCMAIL:kdmoeller@foni.net CCMAIL:bmlmessmer@web.de svn path=/trunk/kdeedu/kmplot/; revision=330105
-
- 19 Jun, 2004 2 commits
-
-
Fredrik Edemar authored
* Don't let the default color disappear when adding/changing a function. CCMAIL:kdmoeller@foni.net CCMAIL:bmlmessmer@web.de svn path=/trunk/kdeedu/kmplot/; revision=322070
-
Fredrik Edemar authored
* Don't change the function name when editing a function with uses fixFunctionName. * Set the focus on the min-textbox when KMinMax is opened. * Make findFunctionName private. * Don't show the min- and maxrangevalue if it's not necessary. * Set the calculate-button in KMinMax to default. CCMAIL:kdmoeller@foni.net CCMAIL:bmlmessmer@web.de svn path=/trunk/kdeedu/kmplot/; revision=321937
-
- 17 Jun, 2004 1 commit
-
-
Fredrik Edemar authored
CCMAIL:kdmoeller@foni.net CCMAIL:bmlmessmer@web.de svn path=/trunk/kdeedu/kmplot/; revision=321530
-
- 13 Jun, 2004 2 commits
-
-
Fredrik Edemar authored
svn path=/trunk/kdeedu/kmplot/; revision=320358
-
Fredrik Edemar authored
* If you edit a function and something goes wrong (e.g boundcheck), the function will not be deleted. * Implement a new function called "reparse" in Parser which reparse a function. This is needed for editing constant in a better way. Plus, it can be useful in the future. * Make "equation" in the editfunctionpage to be focused first when the dialog is shown. * Use the default linewidth in keditparametric. * Only functions with just anti-derivates enabled are allowed to use "y". Otherwise, a recursive error will happen. CCMAIL:kdmoeller@foni.net CCMAIL:bmlmessmer@web.de raabe@kde.org svn path=/trunk/kdeedu/kmplot/; revision=320244
-
- 11 Jun, 2004 1 commit
-
-
Fredrik Edemar authored
* Prefer initializion to assignment in constructors, because it's faster and cleaner than assigning members in the constructor's body. * Don't freeze when calculating negative numbers with the function "log". * Thanks to Frerich Raabe pointing out that "const QString sessionId" in MainDlg's constructor should be "const QString &sessionId". * Get rid of some warnings in View.cpp * I don't know why "private:" was uncommented in parser.h, but that is fixed now. CCMAIL:kdmoeller@foni.net CCMAIL:bmlmessmer@web.de raabe@kde.org svn path=/trunk/kdeedu/kmplot/; revision=319798
-
- 09 Jun, 2004 1 commit
-
-
Fredrik Edemar authored
* Don't lose the color settings in the functions if you set a new default color. * Use the inverted color of the background for the "Fadenkreuz" so you always can see it. * You can choose if you want to print with transparent background or not. * Make the file-loading work again for both new and old Kmplot-files. * When a zoom mode is enabled: use a different mouse cursor. * Removed some old uncommented code in KPrinterDlg and renamed kcfg_printHeaderTable to printHeaderTable to prevent confusion with KConfig XT. CCMAIL:kdmoeller@foni.net CCMAIL:bmlmessmer@web.de svn path=/trunk/kdeedu/kmplot/; revision=319110
-
- 29 May, 2004 1 commit
-
-
Fredrik Edemar authored
* Strange label on the "edit plot function"-dialog * Check the max- and minvalue in polar and parametric dialog. * Prevent to edit/delete a function that doesn't exist ( trigger crash) in FktDlg. * Ability to show polar and parametric graphs again CCMAIL:bmlmessmer@web.de CCMAIL:kdmoeller@foni.net svn path=/trunk/kdeedu/kmplot/; revision=315952
-
- 20 May, 2004 1 commit
-
-
Fredrik Edemar authored
CCMAIL:kdmoeller@foni.net svn path=/trunk/kdeedu/kmplot/; revision=312924
-
- 14 May, 2004 1 commit
-
-
Fredrik Edemar authored
My first patch. This adds support for drawing antiderivative with Euler's method, a new plot function dialog, a constant editor, ability to change between radians and degrees + automatic suggestion for function names. Big thanks to pipesmoker and annma on IRC! svn path=/trunk/kdeedu/kmplot/; revision=311398
-
- 13 May, 2004 1 commit
-
-
Anne-Marie Mahfouf authored
CCMAIL=kdmoeller@foni.net CCMAIL=bmlmessmer@web.de CCMAIL=08.7683331@telia.com svn path=/trunk/kdeedu/kmplot/; revision=311070
-
- 15 Apr, 2004 1 commit
-
-
Matthias Messmer authored
svn path=/trunk/kdeedu/kmplot/; revision=304012
-
- 09 Apr, 2004 2 commits
-
-
Anne-Marie Mahfouf authored
svn path=/trunk/kdeedu/kmplot/; revision=302279
-
Anne-Marie Mahfouf authored
the doxygen comments are to be in the .h file svn path=/trunk/kdeedu/kmplot/; revision=302276
-
- 07 Apr, 2004 1 commit
-
-
Matthias Messmer authored
svn path=/trunk/kdeedu/kmplot/; revision=301974
-
- 05 Apr, 2004 2 commits
-
-
Matthias Messmer authored
* fixing the color preselection svn path=/trunk/kdeedu/kmplot/; revision=301564
-
Matthias Messmer authored
* fixing the color preselection svn path=/trunk/kdeedu/kmplot/; revision=301561
-
- 04 Apr, 2004 2 commits
-
-
Matthias Messmer authored
svn path=/trunk/kdeedu/kmplot/; revision=301265
-
Matthias Messmer authored
svn path=/trunk/kdeedu/kmplot/; revision=301219
-
- 16 Mar, 2004 1 commit
-
-
Matthias Messmer authored
now the pair of definition equations are displayed as 1 list item separated by ";" svn path=/trunk/kdeedu/kmplot/; revision=296399
-
- 14 Mar, 2004 2 commits
-
-
Matthias Messmer authored
svn path=/trunk/kdeedu/kmplot/; revision=295884
-
Matthias Messmer authored
svn path=/trunk/kdeedu/kmplot/; revision=295868
-
- 13 Mar, 2004 1 commit
-
-
Matthias Messmer authored
svn path=/trunk/kdeedu/kmplot/; revision=295717
-
- 11 Mar, 2004 1 commit
-
-
Matthias Messmer authored
svn path=/trunk/kdeedu/kmplot/; revision=295258
-