2006-03-05 17:24:44 +00:00
|
|
|
|
/**
|
2007-08-31 05:53:55 +00:00
|
|
|
|
* \file GuiSendto.cpp
|
2006-03-05 17:24:44 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
2007-10-06 20:09:40 +00:00
|
|
|
|
* \author Angus Leeming
|
2006-03-05 17:24:44 +00:00
|
|
|
|
* \author J<EFBFBD>rgen Spitzm<EFBFBD>ller
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
2007-08-31 05:53:55 +00:00
|
|
|
|
#include "GuiSendto.h"
|
2007-09-05 20:33:29 +00:00
|
|
|
|
|
2007-10-06 20:09:40 +00:00
|
|
|
|
#include "Buffer.h"
|
|
|
|
|
#include "Converter.h"
|
|
|
|
|
#include "Format.h"
|
|
|
|
|
#include "FuncRequest.h"
|
|
|
|
|
#include "LyXRC.h"
|
2006-03-05 17:24:44 +00:00
|
|
|
|
#include "qt_helpers.h"
|
|
|
|
|
|
2007-10-06 20:09:40 +00:00
|
|
|
|
#include "support/filetools.h"
|
|
|
|
|
#include "support/lstrings.h"
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
2006-05-03 19:51:15 +00:00
|
|
|
|
#include <QListWidget>
|
|
|
|
|
#include <QPushButton>
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
2007-12-12 10:16:00 +00:00
|
|
|
|
using namespace std;
|
2007-12-12 18:57:56 +00:00
|
|
|
|
using namespace lyx::support;
|
2007-04-25 10:57:54 +00:00
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
namespace lyx {
|
|
|
|
|
namespace frontend {
|
|
|
|
|
|
2007-10-06 20:09:40 +00:00
|
|
|
|
|
2007-11-23 09:44:02 +00:00
|
|
|
|
GuiSendTo::GuiSendTo(GuiView & lv)
|
2008-02-05 12:43:19 +00:00
|
|
|
|
: GuiDialog(lv, "sendto", qt_("Send Document to Command"))
|
2007-04-25 10:57:54 +00:00
|
|
|
|
{
|
|
|
|
|
setupUi(this);
|
2007-09-05 20:33:29 +00:00
|
|
|
|
|
|
|
|
|
connect(okPB, SIGNAL(clicked()), this, SLOT(slotOK()));
|
|
|
|
|
connect(applyPB, SIGNAL(clicked()), this, SLOT(slotApply()));
|
|
|
|
|
connect(closePB, SIGNAL(clicked()), this, SLOT(slotClose()));
|
|
|
|
|
|
|
|
|
|
connect(formatLW, SIGNAL(itemClicked(QListWidgetItem *)),
|
|
|
|
|
this, SLOT(slotFormatHighlighted(QListWidgetItem *)));
|
|
|
|
|
connect(formatLW, SIGNAL(itemActivated(QListWidgetItem *)),
|
|
|
|
|
this, SLOT(slotFormatSelected(QListWidgetItem *)));
|
|
|
|
|
connect(formatLW, SIGNAL(itemClicked(QListWidgetItem *)),
|
|
|
|
|
this, SLOT(changed_adaptor()));
|
2007-10-06 20:09:40 +00:00
|
|
|
|
connect(commandCO, SIGNAL(textChanged(QString)),
|
2007-09-05 20:33:29 +00:00
|
|
|
|
this, SLOT(changed_adaptor()));
|
|
|
|
|
|
|
|
|
|
bc().setPolicy(ButtonPolicy::OkApplyCancelPolicy);
|
|
|
|
|
bc().setOK(okPB);
|
|
|
|
|
bc().setApply(applyPB);
|
|
|
|
|
bc().setCancel(closePB);
|
2007-04-25 10:57:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-10-06 20:09:40 +00:00
|
|
|
|
void GuiSendTo::changed_adaptor()
|
2006-03-05 17:24:44 +00:00
|
|
|
|
{
|
2007-09-05 20:33:29 +00:00
|
|
|
|
changed();
|
2006-03-05 17:24:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-10-06 20:09:40 +00:00
|
|
|
|
void GuiSendTo::updateContents()
|
2006-03-05 17:24:44 +00:00
|
|
|
|
{
|
2007-10-06 20:09:40 +00:00
|
|
|
|
all_formats_ = allFormats();
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
|
|
// Check whether the current contents of the browser will be
|
|
|
|
|
// changed by loading the contents of formats
|
|
|
|
|
vector<string> keys;
|
|
|
|
|
keys.resize(all_formats_.size());
|
|
|
|
|
|
|
|
|
|
vector<string>::iterator result = keys.begin();
|
|
|
|
|
vector<Format const *>::const_iterator it = all_formats_.begin();
|
|
|
|
|
vector<Format const *>::const_iterator end = all_formats_.end();
|
2007-09-05 20:33:29 +00:00
|
|
|
|
for (; it != end; ++it, ++result)
|
2006-03-05 17:24:44 +00:00
|
|
|
|
*result = (*it)->prettyname();
|
|
|
|
|
|
|
|
|
|
// Reload the browser
|
2007-09-05 20:33:29 +00:00
|
|
|
|
formatLW->clear();
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
|
|
for (vector<string>::const_iterator it = keys.begin();
|
2007-09-05 20:33:29 +00:00
|
|
|
|
it != keys.end(); ++it) {
|
|
|
|
|
formatLW->addItem(toqstr(*it));
|
2006-03-05 17:24:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-10-06 20:09:40 +00:00
|
|
|
|
commandCO->addItem(toqstr(command_));
|
2006-03-05 17:24:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-10-06 20:09:40 +00:00
|
|
|
|
void GuiSendTo::applyView()
|
2006-03-05 17:24:44 +00:00
|
|
|
|
{
|
2007-09-05 20:33:29 +00:00
|
|
|
|
int const line = formatLW->currentRow();
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
2007-09-05 20:33:29 +00:00
|
|
|
|
if (line < 0 || line > int(formatLW->count()))
|
2006-03-05 17:24:44 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2007-10-06 20:09:40 +00:00
|
|
|
|
format_ = all_formats_[line];
|
|
|
|
|
command_ = trim(fromqstr(commandCO->currentText()));
|
2006-03-05 17:24:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-10-06 20:09:40 +00:00
|
|
|
|
bool GuiSendTo::isValid()
|
2006-03-05 17:24:44 +00:00
|
|
|
|
{
|
2007-09-05 20:33:29 +00:00
|
|
|
|
int const line = formatLW->currentRow();
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
2007-09-05 20:33:29 +00:00
|
|
|
|
if (line < 0 || line > int(formatLW->count()))
|
2006-03-05 17:24:44 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
2007-09-05 20:33:29 +00:00
|
|
|
|
return formatLW->count() != 0 &&
|
|
|
|
|
!commandCO->currentText().isEmpty();
|
2006-03-05 17:24:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-10-06 20:09:40 +00:00
|
|
|
|
|
2007-12-12 19:28:07 +00:00
|
|
|
|
bool GuiSendTo::initialiseParams(string const &)
|
2007-10-06 20:09:40 +00:00
|
|
|
|
{
|
|
|
|
|
format_ = 0;
|
|
|
|
|
command_ = lyxrc.custom_export_command;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void GuiSendTo::dispatchParams()
|
|
|
|
|
{
|
|
|
|
|
if (command_.empty() || !format_ || format_->name().empty())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
string const data = format_->name() + " " + command_;
|
|
|
|
|
dispatch(FuncRequest(getLfun(), data));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// FIXME: Move to Converters?
|
|
|
|
|
vector<Format const *> GuiSendTo::allFormats() const
|
|
|
|
|
{
|
|
|
|
|
// What formats can we output natively?
|
|
|
|
|
vector<string> exports;
|
|
|
|
|
exports.push_back("lyx");
|
|
|
|
|
exports.push_back("text");
|
|
|
|
|
|
2008-01-03 09:22:36 +00:00
|
|
|
|
if (buffer().isLatex()) {
|
2007-10-06 20:09:40 +00:00
|
|
|
|
exports.push_back("latex");
|
2008-01-03 09:22:36 +00:00
|
|
|
|
exports.push_back("pdflatex");
|
|
|
|
|
}
|
2007-10-06 20:09:40 +00:00
|
|
|
|
else if (buffer().isDocBook())
|
|
|
|
|
exports.push_back("docbook");
|
|
|
|
|
else if (buffer().isLiterate())
|
|
|
|
|
exports.push_back("literate");
|
|
|
|
|
|
|
|
|
|
// Loop over these native formats and ascertain what formats we
|
|
|
|
|
// can convert to
|
|
|
|
|
vector<Format const *> to;
|
|
|
|
|
|
|
|
|
|
vector<string>::const_iterator ex_it = exports.begin();
|
|
|
|
|
vector<string>::const_iterator ex_end = exports.end();
|
|
|
|
|
for (; ex_it != ex_end; ++ex_it) {
|
|
|
|
|
// Start off with the native export format.
|
|
|
|
|
// "formats" is LyX's list of recognised formats
|
|
|
|
|
to.push_back(formats.getFormat(*ex_it));
|
|
|
|
|
|
|
|
|
|
Formats::const_iterator fo_it = formats.begin();
|
|
|
|
|
Formats::const_iterator fo_end = formats.end();
|
|
|
|
|
for (; fo_it != fo_end; ++fo_it) {
|
|
|
|
|
// we need to hide the default graphic export formats
|
|
|
|
|
// from the external menu, because we need them only
|
|
|
|
|
// for the internal lyx-view and external latex run
|
|
|
|
|
string const name = fo_it->name();
|
|
|
|
|
if (name != "eps" && name != "xpm" && name != "png" &&
|
|
|
|
|
theConverters().isReachable(*ex_it, name))
|
|
|
|
|
to.push_back(&(*fo_it));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Remove repeated formats.
|
2007-12-12 19:28:07 +00:00
|
|
|
|
sort(to.begin(), to.end());
|
|
|
|
|
to.erase(unique(to.begin(), to.end()), to.end());
|
2007-10-06 20:09:40 +00:00
|
|
|
|
|
|
|
|
|
return to;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-11-23 09:44:02 +00:00
|
|
|
|
Dialog * createGuiSendTo(GuiView & lv) { return new GuiSendTo(lv); }
|
2007-10-06 20:09:40 +00:00
|
|
|
|
|
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
} // namespace frontend
|
|
|
|
|
} // namespace lyx
|
2007-04-25 10:57:54 +00:00
|
|
|
|
|
2007-08-31 05:53:55 +00:00
|
|
|
|
#include "GuiSendto_moc.cpp"
|