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

« back to all changes in this revision

Viewing changes to man/gdkWindowSetComposited.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:
1
1
\alias{gdkWindowSetComposited}
2
2
\name{gdkWindowSetComposited}
3
3
\title{gdkWindowSetComposited}
4
 
\description{Sets a \verb{\link{GdkWindow}} as composited, or unsets it. Composited 
5
 
windows do not automatically have their contents drawn to 
6
 
the screen. Drawing is redirected to an offscreen buffer 
7
 
and an expose event is emitted on the parent of the composited 
 
4
\description{Sets a \code{\link{GdkWindow}} as composited, or unsets it. Composited
 
5
windows do not automatically have their contents drawn to
 
6
the screen. Drawing is redirected to an offscreen buffer
 
7
and an expose event is emitted on the parent of the composited
8
8
window. It is the responsibility of the parent's expose handler
9
9
to manually merge the off-screen content onto the screen in
10
10
whatever way it sees fit. See 
11
11
for an example.}
12
12
\usage{gdkWindowSetComposited(object, composited)}
13
13
\arguments{
14
 
\item{\verb{object}}{[\verb{\link{GdkWindow}}]  a \verb{\link{GdkWindow}}}
15
 
\item{\verb{composited}}{[logical] \code{TRUE} to set the window as composited}
 
14
\item{\verb{object}}{a \code{\link{GdkWindow}}}
 
15
\item{\verb{composited}}{\code{TRUE} to set the window as composited}
16
16
}
17
17
\details{It only makes sense for child windows to be composited; see
18
18
\code{\link{gdkWindowSetOpacity}} if you need translucent toplevel
24
24
window are also no longer clipped by the child.
25
25
  
26
26
This call is only supported on some systems (currently,
27
 
only X11 with new enough Xcomposite and Xdamage extensions). 
 
27
only X11 with new enough Xcomposite and Xdamage extensions).
28
28
You must call \code{\link{gdkDisplaySupportsComposite}} to check if
29
29
setting a window as composited is supported before
30
 
attempting to do so.  
31
 
 
32
 
  Since  2.12}
 
30
attempting to do so.
 
31
  Since 2.12}
33
32
\author{Derived by RGtkGen from GTK+ documentation}
34
33
\keyword{internal}