Displaying 5 results from an estimated 5 matches for "devgtk".
Did you mean:
dev_t
2001 Jun 25
0
Dokumentation bug in src/include/Graphics.h (R-1.3.0) (PR#994)
...that is
now in the 'module' section:
* currently existing device drivers:
* FILE driver name prefix
* ---------------------- ------------------
* ../main/devPS.c PS _and_ XFig
* ../main/devPicTeX.c PicTeX
* ../unix/X11/devX11.c X11
* ../gnuwin32/devga.c GA
* ../unix/gnome/devGTK.c GTK
* ../unix/gnome/devGNOME.c Gnome
should read
* currently existing device drivers:
* FILE driver name prefix
* ---------------------- ------------------
* ../main/devPS.c PS _and_ XFig
* ../main/devPicTeX.c PicTeX
* ../modules/X11/devX11.c X11
* ../gnuwin32/devga.c GA
* ../m...
2000 Feb 09
1
R-0.99.0 bugfixes available
...patch -p 1
For those with broken patch programs or fast connections, there is
also a patched distribution in
ftp://cvs.r-project.org/pub/R/src/base/R-0.99.0a.tgz
Files patched:
uncmin.c --> demo(nlm) bug
character.c --> strsplit/devPS memory corruption
printutils.c --> va_list trouble
devGTK.c --> gnome/plotmath fix
edit.R --> couldn't edit character vectors
--
O__ ---- Peter Dalgaard Blegdamsvej 3
c/ /'_ --- Dept. of Biostatistics 2200 Cph. N
(*) \(*) -- University of Copenhagen Denmark Ph: (+45) 35327918
~~~~~~~~~~ - (p.dalgaard at...
2000 Feb 09
1
R-0.99.0 bugfixes available
...patch -p 1
For those with broken patch programs or fast connections, there is
also a patched distribution in
ftp://cvs.r-project.org/pub/R/src/base/R-0.99.0a.tgz
Files patched:
uncmin.c --> demo(nlm) bug
character.c --> strsplit/devPS memory corruption
printutils.c --> va_list trouble
devGTK.c --> gnome/plotmath fix
edit.R --> couldn't edit character vectors
--
O__ ---- Peter Dalgaard Blegdamsvej 3
c/ /'_ --- Dept. of Biostatistics 2200 Cph. N
(*) \(*) -- University of Copenhagen Denmark Ph: (+45) 35327918
~~~~~~~~~~ - (p.dalgaard at...
2000 May 22
0
RE:bug 548 graphics '*' (PR#549)
...ation on glib, gdk and gtk+ is
> available from here:
>
> http://developer.gnome.org/doc/API/
>
> but is still quite sparse.
>
> This is not, in fact, a gdk bug, but is due to a permutation in
> the arguments of gdk_string_extents in GTK_MetricInfo
> (file src/gnome/devGTK.c). It currently reads
>
> gdk_string_extents(gtkd->font, tmp,
> &lbearing, &rbearing,
> &iascent, &idescent, &iwidth);
>
> but should be
>
> gdk_string_extents(gtkd->font, tmp,
>...
2000 May 22
1
RE:bug 548 graphics '*' (PR#549)
A little more followup. The gtk() device uses gdk_string_width to
find the character extents. That seems undocumented anywhere in the
gtk+ sources. It is returning the maximal descent for the font for all
input strings on my system. Looking at the current gtk+-1.2.7 sources it
appears to call XTextExtents, and that _should_ give the
string descent.
Since gdk fonts are private opaque structures