grub-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [GITGRUB] New menu interface (implementation)


From: Bean
Subject: Re: [GITGRUB] New menu interface (implementation)
Date: Tue, 27 Oct 2009 02:24:59 +0800

Hi,

Update:

Support transparent icon.

Support command history for term widget, up/down move through history,
ctrl-p/ctrl-n move to previous output lines. you can use history
property to set the number of history lines:

term {
  history = 10
}

If history is not set, default value of 20 is used, history = 0 means
unlimited history.

Support two menu style, you can pop up sub menu alongside parent, or
display it in full screen. Menu style can't be changed dynamically,
but you can edit menu.cfg to select them:

This show sub menu alongside parent:
menu_create menu_template item_template

This shows sub menu full screen:
menu_create menu_template1 item_template

The templates are defined in menu.txt:

menu_template {
  panel {
    class = frame
  }
}

menu_template1 {
  panel {
    absolute = 1
    width = 100%
    height = 100%

    panel {
      id = __child__
      class = frame
      valign = center
      halign = center
      extend = 1
    }
  }
}

-- 
Bean

My repository: https://launchpad.net/burg




reply via email to

[Prev in Thread] Current Thread [Next in Thread]