lyx_mirror/lib
Richard Heck d5d665482e This commit changes the way individual LyXModule's are represented, both internally and in the .lyx files. The earlier version represented them by their `descriptive name', e.g., "Endnote" or "Theorems (AMS)", these being the same names used in the UI. This was a mistake, as becomes readily apparent when one starts to think about translating these strings. The modules ought to be represented by their filename, without the extension, just as TextClass's are.
The changes that accomplish this part are in ModuleList.{h,cpp}, configure.py, and the *.module files themselves. This is a format change, and the lyx2lyx is in those files.

By itself, that change would not be major, except for the fact that we do not want the module to be represented in the UI by its filename---e.g., theorems-std---but rather by a descriptive name, such as "Theorems". But that change turns out to be wholly non-trivial. The mechanism for choosing modules was the same as---indeed, was borrowed from---that in GuiCitation: You get a list of modules, and choosing them involves moving strings from one QListView to another. The models underlying these views are just QStringListModels, which means that, when you want to know what modules have been selected, you see what strings are in the "selected" QListView. But these are just the descriptive names, and we can't look up a module by its descriptive name if it's been translated. That, indeed, was the whole point of the change to the new representation.

So, we need a more complicated model underlying the QListView, one that will pair an identifying string---the filename minus the extension, in this case---with each item. This turns out not to be terribly difficult, though it took rather a while for me to understand why it's not difficult. There are two parts:
(i)  GuiSelectionManger gets re-written to use any QAbstractListModel, not just a QStringListModel. This actually seems to improve the code, independently.
(ii) We then subclass QAbstractListModel to get the associated ID string, using the Qt::UserRole slot associated with each item to store its ID. This would be almost completely trivial if QAbstractListItem::itemData() included the QVariant associated with this role, but it doesn't, so there are some additional hoops through which to jump.

The new model, a GuiIdListModel, is defined in the files by that name. The changes in GuiSelectionManger.{h,cpp} make it more abstract; the changes in GuiDocument.{h,cpp} adapt it to the new framework. 

I've also updated the module documenation to accord with this change.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22501 a592a061-630c-0410-9148-cb99ea01b6c8
2008-01-12 04:28:12 +00:00
..
bind rename LFUNs math-nonumber and math-number to what they really do, 2008-01-11 22:45:19 +00:00
commands CmdDef: 2007-12-02 22:10:26 +00:00
doc This commit changes the way individual LyXModule's are represented, both internally and in the .lyx files. The earlier version represented them by their `descriptive name', e.g., "Endnote" or "Theorems (AMS)", these being the same names used in the UI. This was a mistake, as becomes readily apparent when one starts to think about translating these strings. The modules ought to be represented by their filename, without the extension, just as TextClass's are. 2008-01-12 04:28:12 +00:00
examples add a module for typesetting Braille 2008-01-06 13:39:58 +00:00
fonts Add the esint font to the private fonts. 2007-10-06 15:30:29 +00:00
images Embedding: display a pin at the top left corner of embedded figures 2008-01-08 16:22:05 +00:00
kbd Add keymap file for Farsi, provided by Mostafa 2007-06-22 22:41:45 +00:00
layouts This commit changes the way individual LyXModule's are represented, both internally and in the .lyx files. The earlier version represented them by their `descriptive name', e.g., "Endnote" or "Theorems (AMS)", these being the same names used in the UI. This was a mistake, as becomes readily apparent when one starts to think about translating these strings. The modules ought to be represented by their filename, without the extension, just as TextClass's are. 2008-01-12 04:28:12 +00:00
lyx2lyx This commit changes the way individual LyXModule's are represented, both internally and in the .lyx files. The earlier version represented them by their `descriptive name', e.g., "Endnote" or "Theorems (AMS)", these being the same names used in the UI. This was a mistake, as becomes readily apparent when one starts to think about translating these strings. The modules ought to be represented by their filename, without the extension, just as TextClass's are. 2008-01-12 04:28:12 +00:00
scripts Fix layout2layout. 2008-01-10 03:59:39 +00:00
templates g-brief: fix typos (ported from r20614) 2007-09-30 22:51:53 +00:00
tex
ui rename LFUNs math-nonumber and math-number to what they really do, 2008-01-11 22:45:19 +00:00
autocorrect
build-listerrors
chkconfig.ltx *** Support for generic sideways floats *** 2008-01-11 18:56:53 +00:00
configure.py This commit changes the way individual LyXModule's are represented, both internally and in the .lyx files. The earlier version represented them by their `descriptive name', e.g., "Endnote" or "Theorems (AMS)", these being the same names used in the UI. This was a mistake, as becomes readily apparent when one starts to think about translating these strings. The modules ought to be represented by their filename, without the extension, just as TextClass's are. 2008-01-12 04:28:12 +00:00
CREDITS - add Andrey V. Panov to the CREDITS part 2 2008-01-05 02:25:29 +00:00
encodings encodings: disable the new SJIS-plain encoding as long as we don't support it properly, see http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg129935.html 2007-10-11 23:41:57 +00:00
external_templates
generate_contributions.py - add Andrey V. Panov to the CREDITS part 2 2008-01-05 02:25:29 +00:00
languages support for Serbian with Latin letters 2007-12-13 23:29:56 +00:00
Makefile.am Remove layout stuff made obsolete by modularization. 2008-01-10 07:24:53 +00:00
symbols Add the esint font to the private fonts. 2007-10-06 15:30:29 +00:00
syntax.default
unicodesymbols Some more Greek and Cyrillic symbols. 2007-10-13 13:34:33 +00:00