R RGtk2 gmenu:使用gaction后的子菜单

发布于 2024-12-08 21:35:06 字数 344 浏览 1 评论 0原文

在下一个示例中,我们有一个带有 aData 的主菜单。 我们怎样才能有一个包含 aData1 和 aData2 的子菜单?

library(gWidgets)
options(guiToolkit = "RGtk2")

aData <- gaction(label="File", icon="file")
aData1 <- gaction(label="Open", icon="open")
aData2 <- gaction(label="Close", icon="close")

ml <- list(Data=aData)

gmenu(ml, container = TRUE)

In the next example we have a mainmenu with aData.
How can we have a submenu with aData1 and aData2 ?

library(gWidgets)
options(guiToolkit = "RGtk2")

aData <- gaction(label="File", icon="file")
aData1 <- gaction(label="Open", icon="open")
aData2 <- gaction(label="Close", icon="close")

ml <- list(Data=aData)

gmenu(ml, container = TRUE)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

兮子 2024-12-15 21:35:06

这与你之前的问题有关。答案基本上是否定的,但如果您愿意使用 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)

我仍然需要在这个版本中添加一些小部件(还没有树小部件、数据框编辑器等)。

This is related to your previous question. The answer is basically no, but if you are willing to use the developmental version of gWidgets2:

require(devtools)
install_github("gWidgets2", username="jverzani")
install_github("gWidgets2RGtk2", username="jverzani")

then you can hack this in, as that version allows you to put in widgets into the toolbar. Here is something that kind of works:

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)

I still need to add some of the widgets into this version (no tree widget, data frame editor, and others yet).

双手揣兜 2024-12-15 21:35:06

我想你正在寻找这个:

gmenu(menulist = list(File = list(Open = aData1, Close = aData2)), container = TRUE)

在此处输入图像描述

I think you're looking for this:

gmenu(menulist = list(File = list(Open = aData1, Close = aData2)), container = TRUE)

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文