mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
bb8ce22e78
work _despite_ of LyXLex so... here is the Paragraph dialog reworked. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6487 a592a061-630c-0410-9148-cb99ea01b6c8
109 lines
1.5 KiB
C
109 lines
1.5 KiB
C
/**
|
|
* \file xforms/Dialogs2.C
|
|
* Copyright 1995 Matthias Ettrich
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Allan Rae
|
|
* \author Angus Leeming
|
|
*
|
|
* Full author contact details are available in file CREDITS
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "Dialogs_impl.h"
|
|
|
|
|
|
void Dialogs::showDocument()
|
|
{
|
|
pimpl_->document.controller().show();
|
|
}
|
|
|
|
|
|
void Dialogs::showFile(string const & f)
|
|
{
|
|
pimpl_->file.controller().showFile(f);
|
|
}
|
|
|
|
|
|
void Dialogs::showForks()
|
|
{
|
|
pimpl_->forks.controller().show();
|
|
}
|
|
|
|
|
|
void Dialogs::showLogFile()
|
|
{
|
|
pimpl_->logfile.controller().show();
|
|
}
|
|
|
|
|
|
void Dialogs::showMathPanel()
|
|
{
|
|
pimpl_->mathpanel.controller().show();
|
|
}
|
|
|
|
|
|
void Dialogs::showPreamble()
|
|
{
|
|
pimpl_->preamble.controller().show();
|
|
}
|
|
|
|
|
|
void Dialogs::showPreferences()
|
|
{
|
|
pimpl_->preferences.controller().show();
|
|
}
|
|
|
|
|
|
void Dialogs::showPrint()
|
|
{
|
|
pimpl_->print.controller().show();
|
|
}
|
|
|
|
|
|
void Dialogs::showSearch()
|
|
{
|
|
pimpl_->search.controller().show();
|
|
}
|
|
|
|
|
|
void Dialogs::showSendto()
|
|
{
|
|
pimpl_->sendto.controller().show();
|
|
}
|
|
|
|
|
|
void Dialogs::showSpellchecker()
|
|
{
|
|
pimpl_->spellchecker.controller().show();
|
|
}
|
|
|
|
|
|
void Dialogs::showTexinfo()
|
|
{
|
|
pimpl_->texinfo.controller().show();
|
|
}
|
|
|
|
|
|
#ifdef HAVE_LIBAIKSAURUS
|
|
|
|
void Dialogs::showThesaurus(string const & s)
|
|
{
|
|
pimpl_->thesaurus.controller().showEntry(s);
|
|
}
|
|
|
|
#else
|
|
|
|
void Dialogs::showThesaurus(string const &)
|
|
{}
|
|
|
|
#endif
|
|
|
|
|
|
void Dialogs::showVCLogFile()
|
|
{
|
|
pimpl_->vclogfile.controller().show();
|
|
}
|