mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
87f831b8ba
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7193 a592a061-630c-0410-9148-cb99ea01b6c8
83 lines
1.7 KiB
C
83 lines
1.7 KiB
C
/**
|
|
* \file QTexinfo.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Edwin Leuven
|
|
*
|
|
* Full author contact details are available in file CREDITS
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
|
|
#include "ControlTexinfo.h"
|
|
#include "QTexinfoDialog.h"
|
|
#include "QTexinfo.h"
|
|
#include "Qt2BC.h"
|
|
#include "qt_helpers.h"
|
|
#include "helper_funcs.h"
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
#include <qlistbox.h>
|
|
#include <qpushbutton.h>
|
|
#include <qcheckbox.h>
|
|
|
|
using std::vector;
|
|
|
|
typedef QController<ControlTexinfo, QView<QTexinfoDialog> > base_class;
|
|
|
|
|
|
QTexinfo::QTexinfo(Dialog & parent)
|
|
: base_class(parent, _("LyX: LaTeX Information")),
|
|
warningPosted(false), activeStyle(ControlTexinfo::cls)
|
|
{
|
|
}
|
|
|
|
|
|
void QTexinfo::build_dialog()
|
|
{
|
|
dialog_.reset(new QTexinfoDialog(this));
|
|
|
|
updateStyles(ControlTexinfo::cls);
|
|
|
|
bcview().setCancel(dialog_->closePB);
|
|
}
|
|
|
|
|
|
void QTexinfo::updateStyles(ControlTexinfo::texFileSuffix whichStyle)
|
|
{
|
|
string const fstr = controller().getContents(whichStyle, true);
|
|
|
|
switch (whichStyle) {
|
|
case ControlTexinfo::bst:
|
|
bst_ = getVectorFromString(fstr, "\n");
|
|
break;
|
|
case ControlTexinfo::cls:
|
|
cls_ = getVectorFromString(fstr, "\n");
|
|
break;
|
|
case ControlTexinfo::sty:
|
|
sty_ = getVectorFromString(fstr, "\n");
|
|
break;
|
|
}
|
|
|
|
dialog_->fileList->clear();
|
|
|
|
bool const withFullPath = dialog_->path->isChecked();
|
|
string const str = controller().getContents(whichStyle, withFullPath);
|
|
vector<string> flist = getVectorFromString(str, "\n");
|
|
for (vector<string>::const_iterator fitem = flist.begin();
|
|
fitem != flist.end(); ++fitem) {
|
|
dialog_->fileList->insertItem(toqstr((*fitem)));
|
|
}
|
|
|
|
activeStyle = whichStyle;
|
|
}
|
|
|
|
|
|
void QTexinfo::updateStyles()
|
|
{
|
|
updateStyles(activeStyle);
|
|
}
|