lib:menu

none

作者
rssa_romeo
今日安裝
0
安裝總數
1
評價
0 0 0
版本
3
建立日期
2024-04-10
更新日期
2024-05-15
授權條款
GPLv3
腳本執行於
所有網站

example:

const menu = loadlib("menu")
const z = new menu(
  { test1: { ctrlKey: true, key: "a" } },
  [
    {
      text: "test1",
      type: "key",
      innerstyle: {
        color: "green",
        width: "500px",
      },
      tab: 1,
      outerstyle: {
        color: "red",
      },
      allowmodifiers: true,
      keyreturntype: "object",
    },
    {
      type: "none",
      text: "------------------------------------",
      outerstyle: {
        color: "black",
      },
    },
    {
      type: "button",
      text: "test",
      buttontext: "test2",
      hint: `test hint
  test hint
  test hint
  test hint
  test hint
  test hint
  test hint<b>asdasd</b>
  test hint
  test hint
  test hint
  test hint
  test hint
  `,
      hinttype: "text",
      onclick(e) {
        log(e)
      },
      oncontextmenu(e) {
        log(e)
      },
    },
    { type: "select", text: "ttt", options: [1, 2, 3] },
    { type: "range", text: "213", min: 0, max: 10 },
    { type: "select", text: "333", options: [1, 2, 3] },
    { type: "select", text: "ttt", options: [1, 2, 3] },
  ],
  log
)
z.show()