Displaying 6 results from an estimated 6 matches for "menu_row".
Did you mean:
menu_rows
2005 Mar 27
3
RESEND: Problems with menu.c32, and some feature request for menu.c32
...orner. This could be enabled/disabled through a menu option.
Request #2:
It would be nice if the following vars in the menu.c could be set in the config file so the program would not have to be recompiled to change these values.
#define WIDTH 80
#define MARGIN 10
#define PASSWD_MARGIN 3
#define MENU_ROWS 12
#define TABMSG_ROW 18
#define CMDLINE_ROW 20
#define END_ROW 24
#define PASSWD_ROW 11
Request #3:
Add an option to the config file that would enable HOTKEYING. What is hotkeying? Currently when you press a hotkey the menu item is highlighted and then you have to press enter to execute the m...
2012 Sep 05
4
Final line of menu selectable even if it is disabled
I have a menu conf as follows:
LABEL enabled, use as item
LABEL disabled, use as description
SEPARATOR
LABEL enabled, use as item
LABEL disabled, use as description
In this situation, I expect the cursors to be able to select from only the two enabled lines.
However, the final disabled line is also selectable.
Even if I put a final separator and/or disabled label the final line of the menu
2005 Mar 28
0
Problems with menu.c32,and some feature request for menu.c32
...the code would add a significant amout of bloat to the code base.
Regarding the response from Request #2:
I had enough menu entries that the default settings of menu.c32 created a scroll bar on the display window. I did not want this and the only way to correct it was to change the "#define MENU_ROWS 12" to increase the number of rows displayed.
Regarding the response from Request #3
I did not think it would be difficult to modify the code to allow for this. In the section that process the hotkey what could be done is to first check to see if a global menu command, say "MENU HOTKEY...
2011 Apr 16
20
[PATCH 00/20] Switch to ELF modules
From: Matt Fleming <matt.fleming at linux.intel.com>
This series fixes some bugs and switches the elflink branch to be
entirely ELF modules. It applies on top of,
http://syslinux.zytor.com/archives/2011-April/016369.html
The deletions in the diff stat below are mainly from deleting
com32/elflink/modules (finally!). Now there should be no duplicate
code because we don't need COM32 and
2005 Mar 24
1
Problems with menu.c32, and some feature request for menu.c32
...orner. This could be enabled/disabled through a menu option.
Request #2:
It would be nice if the following vars in the menu.c could be set in the config file so the program would not have to be recompiled to change these values.
#define WIDTH 80
#define MARGIN 10
#define PASSWD_MARGIN 3
#define MENU_ROWS 12
#define TABMSG_ROW 18
#define CMDLINE_ROW 20
#define END_ROW 24
#define PASSWD_ROW 11
Request #3:
Add an option to the config file that would enable HOTKEYING. What is hotkeying? Currently when you press a hotkey the menu item is highlighted and then you have to press enter to execute the m...
2010 Apr 23
1
Path simple menu integrated progress indicator
...inux-3.86-vanilla//com32/menu/menu.h syslinux-3.86/com32/menu/menu.h
--- syslinux-3.86-vanilla//com32/menu/menu.h 2010-03-31 11:24:25.000000000 -0500
+++ syslinux-3.86/com32/menu/menu.h 2010-04-15 10:08:01.000000000 -0500
@@ -97,6 +97,7 @@ enum parameter_number {
P_PASSWD_MARGIN,
P_MENU_ROWS,
P_TABMSG_ROW,
+ P_LOADMSG_ROW,
P_CMDLINE_ROW,
P_END_ROW,
P_PASSWD_ROW,
@@ -115,6 +116,7 @@ enum message_number {
MSG_TITLE,
MSG_AUTOBOOT,
MSG_TAB,
+ MSG_LOAD,
MSG_NOTAB,
MSG_PASSPROMPT,
@@ -188,6 +190,7 @@ int draw_background(const char *filenam...