这与您之前的问题有关。答案基本是否定的,但如果你愿意使用gWidgets2的开发版:
require(devtools)
install_github("gWidgets2", username="jverzani")
install_github("gWidgets2RGtk2", username="jverzani")
然后你可以破解它,因为该版本允许你将小部件放入工具栏中。这是一种有效的方法:
w <- gwindow()
h <- function(h,...) print("hi")
l <- list(file=gaction("file", icon="ok", handler=h),
open=gaction("open", icon="open", handler=h),
quit=gaction("quit", icon="quit", handler=h))
popup <- gmenu(l, popup=TRUE)
tbl <- list(c=gaction("cancel", icon="cancel", handler=h),
b=gbutton("file")) ## adding a widget
addPopupMenu(tbl$b, popup) ## put popup menu on b
tbl$b$remove_border()
tb = gtoolbar(tbl, cont=w, style="both-horiz")
glabel("fill me in", cont=w)
我仍然需要在这个版本中添加一些小部件(还没有树小部件、数据框编辑器等)。