]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiSendto.cpp
* fix spelling in comments to please John.
[lyx.git] / src / frontends / qt4 / GuiSendto.cpp
index e635272be003f4d2ea1e9231c69ff5def16143fd..0bfb1de465f0051536ce5a13dcabfa18f54c40df 100644 (file)
@@ -3,7 +3,8 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Jürgen Spitzmüller
+ * \author Angus Leeming
+ * \author Jürgen Spitzmüller
  *
  * Full author contact details are available in file CREDITS.
  */
 #include "GuiSendto.h"
 #include "qt_helpers.h"
 
+#include "Buffer.h"
 #include "Format.h"
+#include "FuncRequest.h"
 
+#include "support/qstring_helpers.h"
+#include "support/filetools.h"
+
+#include <QLineEdit>
 #include <QListWidget>
 #include <QPushButton>
-#include <QCloseEvent>
-
-using std::vector;
-using std::string;
 
+using namespace std;
+using namespace lyx::support;
 
 namespace lyx {
 namespace frontend {
 
-/////////////////////////////////////////////////////////////////////
-//
-// GuiSendtoDialog
-//
-/////////////////////////////////////////////////////////////////////
 
-GuiSendtoDialog::GuiSendtoDialog(GuiSendto * form)
-       : form_(form)
+GuiSendTo::GuiSendTo(GuiView & lv)
+       : GuiDialog(lv, "sendto", qt_("Send Document to Command"))
 {
        setupUi(this);
 
-       connect(okPB, SIGNAL(clicked()),
-               form, SLOT(slotOK()));
-       connect(applyPB, SIGNAL(clicked()),
-               form, SLOT(slotApply()));
-       connect(closePB, SIGNAL(clicked()),
-               form, 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() ) );
-       connect( commandCO, SIGNAL( textChanged(const QString&) ),
-               this, SLOT( changed_adaptor() ) );
-}
-
-
-void GuiSendtoDialog::changed_adaptor()
-{
-       form_->changed();
-}
-
-
-void GuiSendtoDialog::closeEvent(QCloseEvent * e)
-{
-       form_->slotWMHide();
-       e->accept();
+       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()));
+       connect(formatLW, SIGNAL(itemSelectionChanged()),
+               this, SLOT(changed_adaptor()));
+       connect(commandCO, SIGNAL(textChanged(QString)),
+               this, SLOT(changed_adaptor()));
+
+       bc().setPolicy(ButtonPolicy::OkApplyCancelPolicy);
+       bc().setOK(okPB);
+       bc().setApply(applyPB);
+       bc().setCancel(closePB);
 }
 
 
-/////////////////////////////////////////////////////////////////////
-//
-// GuiSendto
-//
-/////////////////////////////////////////////////////////////////////
-
-
-GuiSendto::GuiSendto(GuiDialog & parent)
-       : GuiView<GuiSendtoDialog>(parent, _("Send Document to Command"))
+void GuiSendTo::changed_adaptor()
 {
+       changed();
 }
 
 
-void GuiSendto::build_dialog()
+void GuiSendTo::updateContents()
 {
-       dialog_.reset(new GuiSendtoDialog(this));
-
-       // Manage the ok, apply, restore and cancel/close buttons
-       bc().setOK(dialog_->okPB);
-       bc().setApply(dialog_->applyPB);
-       bc().setCancel(dialog_->closePB);
-}
+       all_formats_ = buffer().exportableFormats(false);
 
-
-void GuiSendto::update_contents()
-{
-       all_formats_ = controller().allFormats();
+       // Save the current selection if any
+       Format const * current_format = 0;
+       int const line = formatLW->currentRow();
+       if (line >= 0 && line <= formatLW->count()
+           && formatLW->selectedItems().size() > 0)
+               current_format = all_formats_[line];
 
        // Check whether the current contents of the browser will be
        // changed by loading the contents of formats
@@ -104,48 +84,88 @@ void GuiSendto::update_contents()
        vector<string>::iterator result = keys.begin();
        vector<Format const *>::const_iterator it  = all_formats_.begin();
        vector<Format const *>::const_iterator end = all_formats_.end();
-       for (; it != end; ++it, ++result) {
+
+       int current_line = -1;
+       for (int ln = 0; it != end; ++it, ++result, ++ln) {
                *result = (*it)->prettyname();
+               if (current_format 
+                   && (*it)->prettyname() == current_format->prettyname())
+                       current_line = ln;
        }
 
        // Reload the browser
-       dialog_->formatLW->clear();
+       formatLW->clear();
 
        for (vector<string>::const_iterator it = keys.begin();
-            it < keys.end(); ++it) {
-               dialog_->formatLW->addItem(toqstr(*it));
+            it != keys.end(); ++it) {
+               formatLW->addItem(qt_(*it));
        }
 
-       dialog_->commandCO->addItem(toqstr(controller().getCommand()));
+       // Restore the selection
+       if (current_line > -1)
+               formatLW->setCurrentItem(formatLW->item(current_line));
 }
 
 
-void GuiSendto::apply()
+void GuiSendTo::applyView()
 {
-       int const line(dialog_->formatLW->currentRow());
+       int const line = formatLW->currentRow();
+       QString const command = commandCO->currentText().trimmed();
 
-       if (line < 0 || line > int(dialog_->formatLW->count()))
-               return;
+       if (commandCO->findText(command) == -1)
+               commandCO->insertItem(0, command);
 
-       string const cmd(fromqstr(dialog_->commandCO->currentText()));
+       if (line < 0 || line > formatLW->count())
+               return;
 
-       controller().setFormat(all_formats_[line]);
-       controller().setCommand(cmd);
+       format_ = all_formats_[line];
+       command_ = command;
 }
 
 
-bool GuiSendto::isValid()
+bool GuiSendTo::isValid()
 {
-       int const line(dialog_->formatLW->currentRow());
+       int const line = formatLW->currentRow();
 
-       if (line < 0 || line > int(dialog_->formatLW->count()))
+       if (line < 0 || line > int(formatLW->count()))
                return false;
 
-       else return dialog_->formatLW->count() != 0 &&
-               !dialog_->commandCO->currentText().isEmpty();
+       return (formatLW->selectedItems().size() > 0
+               && formatLW->count() != 0
+               && !commandCO->currentText().isEmpty());
+}
+
+
+bool GuiSendTo::initialiseParams(string const &)
+{
+       format_ = 0;
+       paramsToDialog(format_, command_);
+       return true;
+}
+
+
+void GuiSendTo::paramsToDialog(Format const * /*format*/, QString const & command)
+{
+       if (!command.isEmpty())
+               commandCO->addItem(command);
+
+       bc().setValid(isValid());
 }
 
+
+void GuiSendTo::dispatchParams()
+{
+       if (command_.isEmpty() || !format_ || format_->name().empty())
+               return;
+
+       string const data = format_->name() + " " + fromqstr(command_);
+       dispatch(FuncRequest(getLfun(), data));
+}
+
+Dialog * createGuiSendTo(GuiView & lv) { return new GuiSendTo(lv); }
+
+
 } // namespace frontend
 } // namespace lyx
 
-#include "GuiSendto_moc.cpp"
+#include "moc_GuiSendto.cpp"