[Rqda-commits] r32 - in pkg: R man

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Fri Dec 5 03:51:25 CET 2008


Author: wincent
Date: 2008-12-05 03:51:25 +0100 (Fri, 05 Dec 2008)
New Revision: 32

Removed:
   pkg/man/write.FileList.RD
Modified:
   pkg/R/GUIHandler.R
Log:


Modified: pkg/R/GUIHandler.R
===================================================================
--- pkg/R/GUIHandler.R	2008-12-05 02:43:44 UTC (rev 31)
+++ pkg/R/GUIHandler.R	2008-12-05 02:51:25 UTC (rev 32)
@@ -98,9 +98,9 @@
             sel_index <-  dbGetQuery(con,sprintf("select selfirst, selend from coding where
                                                    cid==%i and fid==%i and status==1",currentCid, currentFid))
             Maxindex <- dbGetQuery(con, sprintf("select max(selend) from coding where fid==%i", currentFid))[1,1]
-            ClearMark(widget,min=0,max=Maxindex)
+            ClearMark(widget,min=0,max=Maxindex,clear.fore.col = TRUE, clear.back.col =FALSE)
         if (nrow(sel_index)>0){
-          HL(widget,index=sel_index,fore.col=NULL,back.col=.rqda$back.col)}
+          HL(widget,index=sel_index,fore.col=.rqda$fore.col,back.col=NULL)}
           },error=function(e){}) # end of mark text chuck
         }
       }

Deleted: pkg/man/write.FileList.RD
===================================================================
--- pkg/man/write.FileList.RD	2008-12-05 02:43:44 UTC (rev 31)
+++ pkg/man/write.FileList.RD	2008-12-05 02:51:25 UTC (rev 32)
@@ -1,33 +0,0 @@
-\name{write.FileList}
-\alias{write.FileList}
-\title{Import a batch of files to the source table}
-\description{
-If import individual file to the project, you can do it by clicking import button in the Files Tab. 
-Sometimes, you want to import a batch of files quickly, you can do it by command. This function is 
-used to import a batch of files into the source table in the *.rqda file.
-}
-\usage{
-write.FileList(FileList, encoding = .rqda$encoding, con = .rqda$qdacon, ...)
-}
-
-\arguments{
-  \item{FileList}{A list. Each element of the list is the file content, and the \code{names(FileList)} are the respective file name.}
-  \item{encoding}{ Don't change this argument.}
-  \item{con}{ Don't change this argument.}
-  \item{\dots}{ \code{\dots} is not used.}
-}
-
-\value{
- This function is used for the side-effects. No value is return.
-}
-\author{Huang Ronggui}
-\examples{
-\dontrun{
-Files <- list("File name one"="content of first File.","File name two"="content of the second File.")
-write.FileList(Files) ## Please launch RQDA(), and open a project first.
-}
-}
-% Add one or more standard keywords, see file 'KEYWORDS' in the
-% R documentation directory.
-% \keyword{ ~kwd1 }
-% \keyword{ ~kwd2 }% __ONLY ONE__ keyword per line



More information about the Rqda-commits mailing list