mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
44cd0fc9a1
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7862 a592a061-630c-0410-9148-cb99ea01b6c8
89 lines
1.4 KiB
C
89 lines
1.4 KiB
C
/**
|
|
* \file QTexinfoDialog.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 "QTexinfoDialog.h"
|
|
#include "QTexinfo.h"
|
|
|
|
#include <qlistbox.h>
|
|
#include <qpushbutton.h>
|
|
#include <qcombobox.h>
|
|
|
|
using std::vector;
|
|
using std::string;
|
|
|
|
|
|
QTexinfoDialog::QTexinfoDialog(QTexinfo * form)
|
|
: QTexinfoDialogBase(0, 0, false, 0),
|
|
form_(form)
|
|
{
|
|
connect(closePB, SIGNAL(clicked()),
|
|
form, SLOT(slotClose()));
|
|
}
|
|
|
|
|
|
void QTexinfoDialog::change_adaptor()
|
|
{
|
|
form_->changed();
|
|
}
|
|
|
|
|
|
void QTexinfoDialog::closeEvent(QCloseEvent * e)
|
|
{
|
|
form_->slotWMHide();
|
|
e->accept();
|
|
}
|
|
|
|
|
|
void QTexinfoDialog::rescanClicked()
|
|
{
|
|
// build new *Files.lst
|
|
rescanTexStyles();
|
|
form_->updateStyles();
|
|
enableViewPB();
|
|
}
|
|
|
|
|
|
void QTexinfoDialog::viewClicked()
|
|
{
|
|
vector<string>::size_type const fitem = fileList->currentItem();
|
|
vector<string> const & data = form_->texdata_[form_->activeStyle];
|
|
form_->controller().viewFile(data[fitem]);
|
|
}
|
|
|
|
|
|
void QTexinfoDialog::update()
|
|
{
|
|
switch (whatStyle->currentItem()) {
|
|
case 0:
|
|
form_->updateStyles(ControlTexinfo::cls);
|
|
break;
|
|
case 1:
|
|
form_->updateStyles(ControlTexinfo::sty);
|
|
break;
|
|
case 2:
|
|
form_->updateStyles(ControlTexinfo::bst);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
enableViewPB();
|
|
}
|
|
|
|
|
|
void QTexinfoDialog::enableViewPB()
|
|
{
|
|
viewPB->setEnabled(fileList->currentItem() > -1);
|
|
}
|