[EMAIL PROTECTED] wrote:
Could I get a description of what the LFUN_WINDOW_NEW does plese?
+ { LFUN_WINDOW_NEW, "window-new", NoBuffer },
From the name I assume it allows you to open a separate lyx window.
Yes.
I'm
guessing it'll be empty to begin with,
Yes.
but I'd like some more details.
For instance, how come there's no 'Read-Only' flag?
I am not sure what's this flag is for but as I was reading this:
/// possible "permissions" for an action
enum func_attrib {
Noop = 0, //< nothing special about this func
ReadOnly = 1, //< can be used in RO mode (perhaps this should change)
NoBuffer = 2, //< Can be used when there is no document open
Argument = 4, //< Requires argument
NoUpdate = 8, //< Does not (usually) require update
SingleParUpdate = 16 //< Usually only requires this par updated
};
I thought this was not applicable as there is no Buffer loaded by default.
cheers
/Christian
(who hasn't forgotten his project to document LFUNs, just busy lately)