mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
hack for listof algorithm
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1966 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
662d0acd45
commit
fdc6082cfc
@ -1512,7 +1512,7 @@ bool BufferView::Pimpl::Dispatch(kb_action action, string const & argument)
|
||||
if (action == LFUN_TOC_INSERT )
|
||||
p.setCmdName("tableofcontents");
|
||||
else if (action == LFUN_LOA_INSERT )
|
||||
p.setCmdName( "listofalgorithms" );
|
||||
p.setCmdName("listof{algorithm}{List of Algorithms}");
|
||||
else if (action == LFUN_LOF_INSERT )
|
||||
p.setCmdName("listoffigures");
|
||||
else
|
||||
|
@ -1,3 +1,11 @@
|
||||
2001-04-27 Lars Gullik Bjønnes <larsbj@birdstep.com>
|
||||
|
||||
* lyxfunc.C (Dispatch): hack to make listof algorithm work
|
||||
|
||||
* buffer.C (readInset): hack to make listof algorithm work
|
||||
|
||||
* BufferView_pimpl.C: hack to make listof algorithm work
|
||||
|
||||
2001-04-26 Lars Gullik Bjønnes <larsbj@birdstep.com>
|
||||
|
||||
* LyXAction.C: removed all !NEW_INSETS cruft
|
||||
|
@ -1293,7 +1293,8 @@ void Buffer::readInset(LyXLex & lex, LyXParagraph *& par,
|
||||
} else if (inscmd.getCmdName() == "tableofcontents"
|
||||
|| inscmd.getCmdName() == "listofalgorithms"
|
||||
|| inscmd.getCmdName() == "listoffigures"
|
||||
|| inscmd.getCmdName() == "listoftables") {
|
||||
|| inscmd.getCmdName() == "listoftables"
|
||||
|| inscmd.getCmdName() == "listof{algorithm}{List of Algorithms}") {
|
||||
inset = new InsetTOC(inscmd);
|
||||
} else if (inscmd.getCmdName() == "printindex") {
|
||||
inset = new InsetPrintIndex(inscmd);
|
||||
|
@ -1,3 +1,7 @@
|
||||
2001-04-27 Lars Gullik Bjønnes <larsbj@birdstep.com>
|
||||
|
||||
* insettoc.C: hack to make listof algorithm work
|
||||
|
||||
2001-04-20 Juergen Vigna <jug@sad.it>
|
||||
|
||||
* insettext.C (Edit): call checkAndActivateInset with y=0 if y < 0.
|
||||
|
@ -17,9 +17,10 @@ using std::vector;
|
||||
string const InsetTOC::getScreenLabel() const
|
||||
{
|
||||
string const cmdname(getCmdName());
|
||||
|
||||
if (cmdname == "tableofcontents")
|
||||
return _("Table of Contents");
|
||||
else if (cmdname == "listofalgorithms" )
|
||||
else if (cmdname == "listof{algorithm}{List of Algorithms}")
|
||||
return _("List of Algorithms");
|
||||
else if (cmdname == "listoffigures")
|
||||
return _("List of Figures");
|
||||
@ -33,7 +34,7 @@ Inset::Code InsetTOC::LyxCode() const
|
||||
string const cmdname(getCmdName());
|
||||
if (cmdname == "tableofcontents")
|
||||
return Inset::TOC_CODE;
|
||||
else if (cmdname == "listofalgorithms")
|
||||
else if (cmdname == "listof{algorithm}{List of Algorithms}")
|
||||
return Inset::LOA_CODE;
|
||||
else if (cmdname == "listoffigures")
|
||||
return Inset::LOF_CODE;
|
||||
@ -57,7 +58,7 @@ int InsetTOC::Ascii(Buffer const * buffer, std::ostream & os, int) const
|
||||
string cmdname = getCmdName();
|
||||
if (cmdname == "tableofcontents")
|
||||
type = Buffer::TOC_TOC;
|
||||
else if (cmdname == "listofalgorithms" )
|
||||
else if (cmdname == "listof{algorithm}{List of Algorithms}")
|
||||
type = Buffer::TOC_LOA;
|
||||
else if (cmdname == "listoffigures")
|
||||
type = Buffer::TOC_LOF;
|
||||
@ -78,7 +79,7 @@ int InsetTOC::Ascii(Buffer const * buffer, std::ostream & os, int) const
|
||||
string const cmdname = getCmdName();
|
||||
if (cmdname == "tableofcontents")
|
||||
type = "TOC";
|
||||
else if (cmdname == "listofalgorithms" )
|
||||
else if (cmdname == "listof{algorithm}{List of Algorithms}")
|
||||
type = "LOA";
|
||||
else if (cmdname == "listoffigures")
|
||||
type = "LOF";
|
||||
|
@ -927,7 +927,7 @@ string const LyXFunc::Dispatch(int ac,
|
||||
if (action == LFUN_TOCVIEW)
|
||||
p.setCmdName("tableofcontents");
|
||||
else if (action == LFUN_LOAVIEW )
|
||||
p.setCmdName( "listofalgorithms" );
|
||||
p.setCmdName("listof{algorithm}{List of Algorithms}");
|
||||
else if (action == LFUN_LOFVIEW)
|
||||
p.setCmdName("listoffigures");
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user