In a Drawing Area of ggraphics in gWidgets changes the mouse cursor to "GDK_TCROSS",but i want the same mouse cursor of the gwindow "GDK_LEFT_PTR":
library(gWidgets)
library(gWidgetsRGtk2)
library(RGtk2)
options(guiToolkit = "RGtk2")
w=gwindow("")
g=ggraphics(cont=w,no_popup=T,do.rubber.banding = F)
plot(x,y)
c=gdkCursorNew("GDK_TOP_LEFT_ARROW")
getToolkitWidget(g)$ModifyCursor(c)
or
gtkWidgetModifyCursor(getToolkitWidget(g),"GDK_TCROSS","GDK_LEFT_PTR")
but this not works