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

« back to all changes in this revision

Viewing changes to man/gtkIdleAddPriority.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{gtkIdleAddPriority}
4
4
\description{
5
5
Like \code{\link{gtkIdleAdd}} this function allows you to have a function called
6
 
when the event loop is idle. The difference is that you can give a 
 
6
when the event loop is idle. The difference is that you can give a
7
7
priority different from \code{GTK_PRIORITY_DEFAULT} to the idle function.
8
8
\strong{WARNING: \code{gtk_idle_add_priority} has been deprecated since version 2.4 and should not be used in newly-written code. Use \code{gIdleAddFull()} instead.}
9
9
}
10
10
\usage{gtkIdleAddPriority(priority, fun, data = NULL)}
11
11
\arguments{
12
 
\item{\verb{priority}}{[integer] The priority which should not be above \code{G_PRIORITY_HIGH_IDLE}.
 
12
\item{\verb{priority}}{The priority which should not be above \code{G_PRIORITY_HIGH_IDLE}.
13
13
Note that you will interfere with GTK+ if you use a priority above
14
14
\code{GTK_PRIORITY_RESIZE}.}
15
 
\item{\verb{data}}{[R object] Data to pass to that function.}
 
15
\item{\verb{data}}{Data to pass to that function.}
16
16
}
17
17
\value{[numeric] A unique id for the event source.}
18
18
\author{Derived by RGtkGen from GTK+ documentation}