~ubuntu-branches/ubuntu/trusty/rgtk2/trusty

« back to all changes in this revision

Viewing changes to man/gtkTimeoutAddFull.Rd

  • Committer: Bazaar Package Importer
  • Author(s): Dirk Eddelbuettel
  • Date: 2010-11-03 11:35:46 UTC
  • mfrom: (1.3.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20101103113546-a7fi7jdxdebp0tw1
Tags: 2.20.1-1
* New upstream release

* debian/control: Set (Build-)Depends: to current R version
* debian/control: Set Standards-Version: to current version 

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
\title{gtkTimeoutAddFull}
4
4
\description{
5
5
Registers a function to be called periodically. The function will be called
6
 
repeatedly after \code{interval} milliseconds until it returns \code{FALSE} at which 
 
6
repeatedly after \code{interval} milliseconds until it returns \code{FALSE} at which
7
7
point the timeout is destroyed and will not be called again.
8
8
\strong{WARNING: \code{gtk_timeout_add_full} has been deprecated since version 2.4 and should not be used in newly-written code. Use \code{gTimeoutAddFull()} instead.}
9
9
}
10
10
\usage{gtkTimeoutAddFull(interval, fun, data = NULL)}
11
11
\arguments{
12
 
\item{\verb{interval}}{[numeric] The time between calls to the function, in milliseconds 
 
12
\item{\verb{interval}}{The time between calls to the function, in milliseconds 
13
13
        (1/1000ths of a second.)}
14
 
\item{\verb{data}}{[R object] The data to pass to the function.}
 
14
\item{\verb{data}}{The data to pass to the function.}
15
15
}
16
16
\value{[numeric] A unique id for the event source.}
17
17
\author{Derived by RGtkGen from GTK+ documentation}