Re: [R] GTK

2012-02-20 Thread Yvonnick Noel
I am struggling to install GTK+ for Windows 7. RGtk2 needs this package to load. Does anybody know of a installation file that works? GTK+ is automatically installed when you install the RGtk2 package (you'll be asked about it during installation). As of R-2.14.1, it is installed under t

Re: [R] GTK+

2012-02-20 Thread Uwe Ligges
On 19.02.2012 18:58, Idielle Walters wrote: Hi I am struggling to install GTK+ for Windows 7. RGtk2 needs this package to load. Does anybody know of a installation file that works? See the ReadMe for Windows binary packages. For the current R-reelase this is http://cran.r-project.org/b

[R] GTK+

2012-02-19 Thread Idielle Walters
Hi I am struggling to install GTK+ for Windows 7. RGtk2 needs this package to load. Does anybody know of a installation file that works? __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide

Re: [R] gtk, RGtk2 and error in callback: delet_event in mai window

2011-03-28 Thread jverzani
Cleber N. Borges yahoo.com.br> writes: > > Hello All, > > I am trying to learn about the GUI in R (with GTK+Glade+RGtk2) and in my > test I don't get sucess in to make > an callback to destroy the application... > > When I try to define an function for "delet-event callback", I get the > err

[R] gtk, RGtk2 and error in callback: delet_event in mai window

2011-03-27 Thread Cleber N. Borges
Hello All, I am trying to learn about the GUI in R (with GTK+Glade+RGtk2) and in my test I don't get sucess in to make an callback to destroy the application... When I try to define an function for "delet-event callback", I get the error message: (with mouse click in X window) *Error in fun

Re: [R] Gtk objects disappears

2009-06-14 Thread Olivier Nuñez
It woks fine. Thanks very much. Olivier -- Olivier G. Nuñez Email: onu...@iberstat.es Tel : +34 663 03 69 09 Web: http://www.iberstat.es El 14/06/2009, a las 4:30, Michael Lawrence escribió: I would recommend just

Re: [R] Gtk objects disappears

2009-06-13 Thread Michael Lawrence
I would recommend just running gtkMain(), so that GTK+ blocks R. Then you need your GUI to call gtkMainQuit() when it's time to kill R. On Fri, Jun 12, 2009 at 6:59 AM, Olivier Nuñez wrote: > Dear John, > > I have a question. > > When I run a RGtk code in my terminal (without using the R GUI) >

[R] Gtk objects disappears

2009-06-12 Thread Olivier Nuñez
Dear John, I have a question. When I run a RGtk code in my terminal (without using the R GUI) R --vanilla << "EOF" source("myRGtkcode.R") EOF the GTK objects do not remain on the screen. Until now, I "bypass" this problem using the following commands: require(tcltk) tkmessageBox("Press to exi

Re: [R] GTK Tooltips under Linux

2009-06-02 Thread Ronggui Huang
Thanks, Michael. 2009/6/2 Michael Lawrence : > I think I've got the threaded event loop working. Uploaded it to CRAN as > 2.12.12. Should appear in a few days. > > Michael > > On Fri, May 29, 2009 at 11:24 AM, Ronggui Huang > wrote: >> >> Noted with thanks. >> >> Regards >> >> Ronggui >> >> 2009/

Re: [R] GTK Tooltips under Linux

2009-06-02 Thread Michael Lawrence
I think I've got the threaded event loop working. Uploaded it to CRAN as 2.12.12. Should appear in a few days. Michael On Fri, May 29, 2009 at 11:24 AM, Ronggui Huang wrote: > Noted with thanks. > > Regards > > Ronggui > > 2009/5/29 Michael Lawrence : > > > > > > On Thu, May 28, 2009 at 7:35 PM,

Re: [R] GTK Tooltips under Linux

2009-05-29 Thread Ronggui Huang
Noted with thanks. Regards Ronggui 2009/5/29 Michael Lawrence : > > > On Thu, May 28, 2009 at 7:35 PM, Ronggui Huang > wrote: >> >> Dear all, >> >> I want to set tool-tips for a gtkButton. I use the following code >> which works under Windows. However, it doesn't work under Linux. Any >> hints?

Re: [R] GTK Tooltips under Linux

2009-05-29 Thread Michael Lawrence
On Thu, May 28, 2009 at 7:35 PM, Ronggui Huang wrote: > Dear all, > > I want to set tool-tips for a gtkButton. I use the following code > which works under Windows. However, it doesn't work under Linux. Any > hints? Thanks. > Unfortunately, on platforms besides Windows, the event loop runs via an

[R] GTK Tooltips under Linux

2009-05-28 Thread Ronggui Huang
Dear all, I want to set tool-tips for a gtkButton. I use the following code which works under Windows. However, it doesn't work under Linux. Any hints? Thanks. library(RGtk2) b<-gtkButtonNewWithLabel("OK") gtkTooltips()$setTip(b,"Memo for a Button.") gw <- gtkWindow(show=F) gw$Add(b) gw$Show() >