[rkward-cvs] rkward/rkward main.cpp,1.12,1.13 rkconsole.h,1.4,1.5 rkward.cpp,1.77,1.78 rkwatch.h,1.15,1.16

Pierre ecoch at users.sourceforge.net
Tue Apr 19 06:48:08 UTC 2005


Update of /cvsroot/rkward/rkward/rkward
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6818/rkward

Modified Files:
	main.cpp rkconsole.h rkward.cpp rkwatch.h 
Log Message:
More documentation + changed ctrl+I to F2, which as not used.

Index: rkward.cpp
===================================================================
RCS file: /cvsroot/rkward/rkward/rkward/rkward.cpp,v
retrieving revision 1.77
retrieving revision 1.78
diff -C2 -d -r1.77 -r1.78
*** rkward.cpp	15 Apr 2005 21:38:08 -0000	1.77
--- rkward.cpp	19 Apr 2005 06:48:06 -0000	1.78
***************
*** 388,392 ****
  	configure = new KAction (i18n ("Configure RKWard"), 0, 0, this, SLOT(slotConfigure ()), actionCollection(), "configure");
  	
! 	helpFunction = new KAction (i18n ("&Function reference"), KShortcut ("Ctrl+I"), this, SLOT(slotFunctionReference ()), actionCollection(), "function_reference");
  	
  	new_data_frame->setStatusText (i18n ("Creates new empty dataset and opens it for editing"));
--- 388,392 ----
  	configure = new KAction (i18n ("Configure RKWard"), 0, 0, this, SLOT(slotConfigure ()), actionCollection(), "configure");
  	
! 	helpFunction = new KAction (i18n ("&Function reference"), KShortcut ("F2"), this, SLOT(slotFunctionReference ()), actionCollection(), "function_reference");
  	
  	new_data_frame->setStatusText (i18n ("Creates new empty dataset and opens it for editing"));

Index: rkwatch.h
===================================================================
RCS file: /cvsroot/rkward/rkward/rkward/rkwatch.h,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** rkwatch.h	15 Apr 2005 20:03:09 -0000	1.15
--- rkwatch.h	19 Apr 2005 06:48:06 -0000	1.16
***************
*** 32,37 ****
  
  /**
!   *@author Thomas Friedrichsmeier
!   */
  
  class RKwatch : public RKToggleWidget {
--- 32,38 ----
  
  /**
! 	\brief This widget shows all executed commands and their result
! @author Thomas Friedrichsmeier
! */
  
  class RKwatch : public RKToggleWidget {

Index: main.cpp
===================================================================
RCS file: /cvsroot/rkward/rkward/rkward/main.cpp,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** main.cpp	26 Mar 2005 10:32:18 -0000	1.12
--- main.cpp	19 Apr 2005 06:48:06 -0000	1.13
***************
*** 16,19 ****
--- 16,51 ----
   ***************************************************************************/
  
+ 
+ 
+ /*!
+ **	\mainpage	RKWard
+ **	\author		Thomas Friedrichsmeier and the RKWard Team
+ **
+ **	\section	website	Website
+ **
+ **	<A HREF="http://rkward.sourceforge.net">RKWard's project page</A>
+ **
+ **	\section	description Description
+ **
+ ** RKWard is meant to become an easy to use, transparent frontend to the R-language, a very powerful, yet hard-to-get-into 
+ ** scripting-language with a strong focus on statistic functions. It will not only provide a convenient user-interface, however, but also 
+ ** take care of seamless integration with an office-suite. Practical statistics is not just about calculating, after all, but also about 
+ ** documenting and ultimately publishing the results.
+ **
+ ** RKWard then is (will be) something like a free replacement for commercial statistical packages.
+ **
+ **	\section	copyright	Copyright
+ **
+ **   This program is free software; you can redistribute it and/or modify
+ **   it under the terms of the GNU General Public License as published by
+ **   the Free Software Foundation; either version 2 of the License, or
+ **   (at your option) any later version.
+ **
+ */
+ 
+ 
+ 
+ 
+ 
  #include <kcmdlineargs.h>
  #include <kaboutdata.h>

Index: rkconsole.h
===================================================================
RCS file: /cvsroot/rkward/rkward/rkward/rkconsole.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** rkconsole.h	17 Apr 2005 17:42:25 -0000	1.4
--- rkconsole.h	19 Apr 2005 06:48:06 -0000	1.5
***************
*** 23,38 ****
  #include "rbackend/rcommandreceiver.h"
  
- /**
- \brief Provides an R-like console.
- This class provides a console, which is very similar to the classic R console. It is mainly used by RKwatch to allow
- the user to enter commands manualy. It is basically just a modified QTextEdit.
- 
- \sa RKwatch, QTextEdit
- 
- @author Pierre Ecochard
- */
  
  class QStringList;
  
  class RKConsole : public QTextEdit, public RCommandReceiver {
  Q_OBJECT
--- 23,40 ----
  #include "rbackend/rcommandreceiver.h"
  
  
  class QStringList;
  
+ /**
+ ** 	\brief Provides an R-like console.
+ **
+ ** This class provides a console, which is very similar to the classic R console. It is mainly used by RKwatch to allow
+ ** the user to enter commands manualy. It is basically just a modified QTextEdit.
+ ** 
+ ** \sa RKwatch, QTextEdit
+ ** 
+ ** @author Pierre Ecochard
+ **/
+ 
  class RKConsole : public QTextEdit, public RCommandReceiver {
  Q_OBJECT





More information about the rkward-tracker mailing list