mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
68 lines
1.3 KiB
C++
68 lines
1.3 KiB
C++
|
/**
|
||
|
* \file QTexinfo.C
|
||
|
* Copyright 2002 the LyX Team
|
||
|
* Read the file COPYING
|
||
|
*
|
||
|
* \author Edwin Leuven <leuven@fee.uva.nl>
|
||
|
*/
|
||
|
|
||
|
#include <config.h>
|
||
|
|
||
|
#include <vector>
|
||
|
|
||
|
#ifdef __GNUG__
|
||
|
#pragma implementation
|
||
|
#endif
|
||
|
|
||
|
#include "ControlTexinfo.h"
|
||
|
#include "QTexinfoDialog.h"
|
||
|
#include "QTexinfo.h"
|
||
|
#include "Qt2BC.h"
|
||
|
#include "gettext.h"
|
||
|
#include "helper_funcs.h"
|
||
|
|
||
|
#include <qlistbox.h>
|
||
|
#include <qpushbutton.h>
|
||
|
#include <qcheckbox.h>
|
||
|
|
||
|
typedef Qt2CB<ControlTexinfo, Qt2DB<QTexinfoDialog> > base_class;
|
||
|
|
||
|
QTexinfo::QTexinfo(ControlTexinfo & c)
|
||
|
: base_class(c, _("LaTeX Information")), warningPosted(false), activeStyle(ControlTexinfo::cls)
|
||
|
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
void QTexinfo::build_dialog()
|
||
|
{
|
||
|
dialog_.reset(new QTexinfoDialog(this));
|
||
|
|
||
|
updateStyles(ControlTexinfo::cls);
|
||
|
|
||
|
bc().setCancel(dialog_->closePB);
|
||
|
}
|
||
|
|
||
|
|
||
|
void QTexinfo::updateStyles(ControlTexinfo::texFileSuffix whichStyle)
|
||
|
{
|
||
|
bool const withFullPath = dialog_->path->isChecked();
|
||
|
|
||
|
string const str = controller().getContents(whichStyle, withFullPath);
|
||
|
std::vector<string> flist = getVectorFromString(str,"\n");
|
||
|
|
||
|
dialog_->fileList->clear();
|
||
|
|
||
|
for (vector<string>::const_iterator fitem = flist.begin();
|
||
|
fitem != flist.end(); ++fitem) {
|
||
|
dialog_->fileList->insertItem((*fitem).c_str());
|
||
|
}
|
||
|
|
||
|
activeStyle = whichStyle;
|
||
|
}
|
||
|
|
||
|
void QTexinfo::updateStyles()
|
||
|
{
|
||
|
updateStyles(activeStyle);
|
||
|
}
|