]> git.lyx.org Git - features.git/commit
Per Abdel's suggestion that we focus on bug-fixing at this point, this will be the...
authorRichard Heck <rgheck@comcast.net>
Mon, 25 Feb 2008 22:13:45 +0000 (22:13 +0000)
committerRichard Heck <rgheck@comcast.net>
Mon, 25 Feb 2008 22:13:45 +0000 (22:13 +0000)
commit2fb02d20f120e0864759152adb05a8ad10f4c504
treeef1c3930f4ad5610ee1022be87aa55109c9152fd
parentf8d516c7afcb84b73930fb9de5738fafa8a921c9
Per Abdel's suggestion that we focus on bug-fixing at this point, this will be the last patch in this series for a bit. But I wanted to get this done before I forget what it is I was doing, so here it is.

The idea behind this patch is to make real key-value support for InsetCommand parameters possible. This should be particularly useful for the listings version of InsetInclude, though we would need some kind of UI for it before it would really be helpful. (See below for some thoughts.) This doesn't substantially change anything else, though some things do get re-arranged a bit.

Basically, the idea is this. First, we introduce a whole range of parameter types: Normal LaTeX optional and required parameters; ones for LyX's internal use (like embed); and finally, in connection with keyval, ones that represent keys and ones that represent optional and required arguments where the keyval stuff will appear. (I'm assuming here that there will always be exactly one of those, and that it will accept only keyval-type material.) The parameters themselves are stored in a map, so it's really only the output routines that need to care about the different types of parameters.

Regarding the frontend, it seems to me that something like the following would work:
(i) scan the parameter list for LATEX_KEY type parameters
(ii) the dialog will have a series of lines, each of which has a combo box listing the acceptable keys and a QLineEdit for entering its value, as well as a "delete" button of some sort for removing this key and its value
(iii) there should be an "add line" button to add a new line, activated only when all other lines are filled with values
Probably not even too hard.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23235 a592a061-630c-0410-9148-cb99ea01b6c8
13 files changed:
src/insets/InsetBibitem.cpp
src/insets/InsetBibtex.cpp
src/insets/InsetCitation.cpp
src/insets/InsetCommandParams.cpp
src/insets/InsetCommandParams.h
src/insets/InsetFloatList.cpp
src/insets/InsetHyperlink.cpp
src/insets/InsetInclude.cpp
src/insets/InsetIndex.cpp
src/insets/InsetLabel.cpp
src/insets/InsetNomencl.cpp
src/insets/InsetRef.cpp
src/insets/InsetTOC.cpp