Displaying 20 results from an estimated 99 matches for "gwidgets".
Did you mean:
widgets
2008 Oct 14
3
gWidgets install
Hi,
I wanted to install the gWidgets package and ran the following code:
------------------------------------------
> install.packages("gWidgets")
trying URL 'http://www.ibiblio.org/pub/languages/R/CRAN/bin/windows/contrib/2.7/gWidgets_0.0-30.zip'
Content type 'application/zip' length 1354268 bytes (1.3 M...
2006 Oct 06
2
[R-pkg] New packages pmg, gWidgets, gWidgetsRGtk2
I'd like to announce three new packages on CRAN: pmg, gWidgets, and
gWidgetsRGtk2.
--John Verzani
1 PMG
*=*=*=
The pmg package for R provides a relatively simple graphical user
interface for R in a manner similar to the more mature RCmdr package.
Basically this means a menu-driven interface to dialogs that collect
arguments for R functions. This GUI was...
2006 Oct 06
2
[R-pkg] New packages pmg, gWidgets, gWidgetsRGtk2
I'd like to announce three new packages on CRAN: pmg, gWidgets, and
gWidgetsRGtk2.
--John Verzani
1 PMG
*=*=*=
The pmg package for R provides a relatively simple graphical user
interface for R in a manner similar to the more mature RCmdr package.
Basically this means a menu-driven interface to dialogs that collect
arguments for R functions. This GUI was...
2009 Nov 28
1
how to put ggobi display into a GUI window setup by gWidgets
Hi,
I want to put a ggobi display into a GUI window setup by gWidgets, but error
occur said it is not a S4 object.
Does anyone have any idea about how to put it in or maybe it can not be put
into a widget at all?
Thanks A LOT!
--
View this message in context: http://n4.nabble.com/how-to-put-ggobi-display-into-a-GUI-window-setup-by-gWidgets-tp930529p930529.html
Sen...
2008 Feb 12
1
gWidgets process management
...o make a graphical interface for an R function
I've written. A common use for the function is to call it with
specific parameters, and then watch the output as it evolves.
There's not necessarily a logical stopping point, so I usually
use ctrl-C when I'm done to stop it.
I've made a gWidgets interface to the function that gets some
user info and then on a button click calls the function. The
gWidgets window, however, seems to be frozen as long as the
function is running, and the function output seems to be
happening in the "background" in my R session, so ctrl-C (esc
on the M...
2013 Jan 21
13
Problema gWidgets & XLConnect
Hola.
Tengo una especie de "poltergeist"... a ver si alguien es capaz de echarme un cable.... sucede al usar los paquetes XLConnect (http://cran.r-project.org/web/packages/XLConnect/) y gWidgets (http://cran.r-project.org/web/packages/gWidgets/) simultáneamente en R 2.15.2 (de 32 bits bajo Windows 7) ... con la versión anterior (2.15.1), en las mismas condiciones, no pasa.
Caso 1:
# Cargo XLConnect
. require(XLConnect)
# Después cargo gWidgets
. require(gWidgets)
....
2012 Nov 30
1
How to add widgets of gWidgets to widgets of rgtk2 ???
I have a layout in gwidgets. To this, I wanted to add a Textbox(gtkEntry)
created from rgtk2...
The code is as follows:
MainLayOut <- glayout(homogeneous = FALSE, spacing = 10, container =
SubGroup)
MainLayOut[1, 1, anchor=left] <- "Number of Total Patients: "
font(MainLayOut[1, 1, anchor=left]) <- c(we...
2012 May 29
1
gslider-gwidgets
Hello R lovers,
For my GUI, I am using gslider of Gwidgets. I need to add the "to=" value
dynamically ie., maximum value from a data frame column(something like
to=max(df[,3])). But I am getting error message like
Error in checkPtrType(object, "GtkWidget") :
object of class NULL isn't a GtkWidget
Not sure what I am missing he...
2013 Feb 14
0
Building a Package & using gWidgets
...on with command line - think Rcmdr but much more simple, to allow my co-workes who have never touched R to use it.
The gui needs to be able to edit the settings - like with the fix command above, to save a settings object to file, and to read in setting from an object file. I've built this with gWidgets:
gui <- function(){
INPUT <- matrix(c(1:4),nrow=2,ncol=2)
mainwin <- gwindow("MainWindow")
button1 <- gbutton("Edit Settings", cont=mainwin, handler=
function(h,...){
fix(INPUT)
print(&...
2009 Dec 27
2
RGtk2 / gWidgets - addHandlerClicked Problem
In The following code, the table handler is executed twice when the
button is pressed (from the 2nd pressing on).
I want it to be executed only once. Does someone know, why this
happens and how I can change it?
library(gWidgets)
w <- gwindow()
b <- gbutton("press", cont=w)
tbl <- gtable(1:10, cont=w)
addhandlerclicked(b, handler=function(h, ...){
cat("addhandlerclicked button\n")
svalue(tbl, index=T) <- 1 # change the table value
})
addhandlerclicked(tbl, handler=function(h, ...){
c...
2007 Sep 14
2
Building an R GUI using gWidgets and RGtk2
Hello,
I'm developing a GUI in R that will be used to monitor financial
portfolio performance. The GUI will be distributed as an R package. So
far, I've decided to use the "cairoDevice", "RGtk2", "gWidgets", and
"gWidgetsRGtk2" packages to develop the GUI. I am trying to decide what
would be the best way to structure the GUI would be.
I've considered 3 approaches to building the GUI. The first would be to
use S4 classes. I would create parent "gui" object that would s...
2011 Dec 18
1
gWidgets: how to remove that is box drawn when moving the mouse with pressed button
...rting position to the current position
of the mouse when clicking and it over a GTK graphics object?
I have seen that in the 'playwith' package the box changes to an arrow when
using the 'pan' button. But I do not find the corresponding line in the code to implement that.
library(gWidgets)
options("guiToolkit"="RGtk2")
w <- gwindow()
g <- ggraphics(cont=w)
par(mar=rep(0,4))
size(g) <- c(600,600)
plot(1:10)
Thanks!
Mark
????????????????????????????????????
Mark Heckmann
Blog: www.markheckmann.de
R-Blog: http://ryouready.wordpress.com
2013 Feb 04
0
gwidget position on screen
Hi guys,
I have a problem with the placement of my gwindow widget. When I start the
gwindow widget it is displayed near the middle of my screen but I want that
the widget is on the upper left side of my screen. Is it possible to define
where my gwindow pops up? And additionally, I want to focus my gwindow
permenantly. Is that possible, too
Thanks,
Norweger
--
View this message in context:
2007 Aug 22
2
gWidgets (tcltk): problem extracting values from widgets in glayout grid
...been able to find an example for the second case below -- or
perhaps I didn't recognize it when I saw it.
Is there a value for x such that svalue(x) will return "bbb", either by
itself or as part of an array? Or do I need to do something else
entirely?
(R2.5.1; Windows XP)
> #### gWidgets test
> options("guiToolkit"="tcltk")
> require(gWidgets)
[1] TRUE
>
> ###### Case 1: this works ########
> wtesta = gwindow("wtesta",visible=TRUE)
> wtesta1 = gedit("aaa",container=wtesta)
> print(svalue(wtesta1))
[1] "aaa"
>...
2009 Dec 27
1
gWidgets / RGtk2 - how to change a handler from a toolbar?
I want to assign a default handler to a toolbar button and change the
handler later.
The addhandlerclicked() method does not apply to a gAction Object, I
think...
defHandler <- function(h, ...) print("default")
w <- gwindow()
aTest <- gaction(label="Test", icon="open", handler=defHandler)
tblList = list( test = aTest )
toolBar = gtoolbar(tblList,
2008 Jan 21
3
Need suggestions about GUI
What I want to do is:
1, creat a text box, insert text into that box.
2, select chunk of of the text by mouse, and link it to a lable. so I would
like a way to get that chunk of text.
Can I do such job with tcltk? Any relavant tutorial materials?
Thanks
--
HUANG Ronggui
Bachelor of Social Work, Fudan University, China
Master of sociology, Fudan University, China
Ph.D. Student , CityU of
2009 Jun 25
1
How do I define the method for gcheckboxgroup in gWidgets?
Hi All...
I?m trying to build a small demo using gWidgets which permits interactive
scaling and selection among different things to plot. I can get the widgets
for scaling to work just fine. I am using gcheckboxgroup to make the
(possibly multiple) selections. However, I can?t seem to figure out how to
properly define the gcheckboxgroup; I can draw the...
2008 Feb 29
2
GUI developement / Matlab
Hi there,
I was wondering whether there are flexible packages available with which you
can create user interfaces? (I've read about "gWidgets"!?)
For example in Matlab you can even create stand alone applications. Is it also
possible for R in the same extend? Of course it should be platform independent
if possible...
And then I would like to know from people who know R as well as Matlab. What
would you see as advantages and disa...
2011 Mar 01
2
problems with playwith
hello, i tried to run playwith but :
> library(playwith)
Loading required package: lattice
Loading required package: cairoDevice
Loading required package: gWidgetsRGtk2
Loading required package: gWidgets
Error in inDL(x, as.logical(local), as.logical(now), ...) :
unable to load shared object 'H:/R/cran/RGtk2/libs/i386/RGtk2.dll':
LoadLibrary failure: The specified procedure could not be found.
Failed to load RGtk2 dynamic library, attempting to...
2007 Mar 30
1
Using Java or Tcl/Tk in R
Dear R People:
This is more of an opinion question please:
When putting together GUI type functions, is
it better to use JAVA or Tcl/Tk, please?
Any input is appreciated!
Sincerely,
Erin Hodgess
Associate Professor
Department of Computer and Mathematical Sciences
University of Houston - Downtown
mailto: hodgess at gator.uhd.edu