From 7950986c87624412e81010c00ef9f64f4c8bd3a1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=BCrgen=20Spitzm=C3=BCller?= Date: Thu, 4 Sep 2008 09:36:44 +0000 Subject: [PATCH] Some GuiSendto polishing by Vincent and me. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@26295 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/GuiSendto.cpp | 43 ++++++++++++++++++++++++++++---- src/frontends/qt4/GuiSendto.h | 2 ++ src/frontends/qt4/ui/SendtoUi.ui | 9 +++---- 3 files changed, 44 insertions(+), 10 deletions(-) diff --git a/src/frontends/qt4/GuiSendto.cpp b/src/frontends/qt4/GuiSendto.cpp index fe644a40f5..89cd021586 100644 --- a/src/frontends/qt4/GuiSendto.cpp +++ b/src/frontends/qt4/GuiSendto.cpp @@ -23,6 +23,7 @@ #include "support/qstring_helpers.h" #include "support/filetools.h" +#include #include #include @@ -48,6 +49,8 @@ GuiSendTo::GuiSendTo(GuiView & lv) 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())); @@ -68,6 +71,13 @@ void GuiSendTo::updateContents() { all_formats_ = 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 vector keys; @@ -76,8 +86,14 @@ void GuiSendTo::updateContents() vector::iterator result = keys.begin(); vector::const_iterator it = all_formats_.begin(); vector::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 formatLW->clear(); @@ -87,19 +103,25 @@ void GuiSendTo::updateContents() formatLW->addItem(qt_(*it)); } - commandCO->addItem(command_); + // Restore the selection + if (current_line > -1) + formatLW->setCurrentItem(formatLW->item(current_line)); } void GuiSendTo::applyView() { int const line = formatLW->currentRow(); + QString const command = commandCO->currentText().trimmed(); + + if (commandCO->findText(command) == -1) + commandCO->insertItem(0, command); if (line < 0 || line > formatLW->count()) return; format_ = all_formats_[line]; - command_ = commandCO->currentText().trimmed(); + command_ = command; } @@ -110,8 +132,9 @@ bool GuiSendTo::isValid() if (line < 0 || line > int(formatLW->count())) return false; - return formatLW->count() != 0 && - !commandCO->currentText().isEmpty(); + return (formatLW->selectedItems().size() > 0 + && formatLW->count() != 0 + && !commandCO->currentText().isEmpty()); } @@ -119,10 +142,20 @@ bool GuiSendTo::initialiseParams(string const &) { format_ = 0; command_ = toqstr(lyxrc.custom_export_command); + 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()) diff --git a/src/frontends/qt4/GuiSendto.h b/src/frontends/qt4/GuiSendto.h index 5e30bb868a..d1807bf1d4 100644 --- a/src/frontends/qt4/GuiSendto.h +++ b/src/frontends/qt4/GuiSendto.h @@ -51,6 +51,8 @@ private: /// bool initialiseParams(std::string const & data); /// + void paramsToDialog(Format const * format, QString const & command); + /// void clearParams() {} /// void dispatchParams(); diff --git a/src/frontends/qt4/ui/SendtoUi.ui b/src/frontends/qt4/ui/SendtoUi.ui index 430fb8b48b..111ce46ae8 100644 --- a/src/frontends/qt4/ui/SendtoUi.ui +++ b/src/frontends/qt4/ui/SendtoUi.ui @@ -48,7 +48,7 @@ 666 - QComboBox::InsertAtTop + QComboBox::NoInsert true @@ -117,10 +117,6 @@ - - - qt_i18n.h - formatLW commandCO @@ -128,6 +124,9 @@ applyPB closePB + + qt_i18n.h + -- 2.39.2