]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiHyperlink.cpp
Fix the tab ordering of GuiDocument components.
[lyx.git] / src / frontends / qt4 / GuiHyperlink.cpp
index ee3cb2e9a67c15a0b511e30fd65d7e7dfc641a96..7cb9cc61d4ad7f5c4791eb3416fd9708c5137d96 100644 (file)
 #include "GuiHyperlink.h"
 
 #include "qt_helpers.h"
-#include "FuncRequest.h"
-#include "insets/InsetCommand.h"
 
-#include <QCheckBox>
-#include <QCloseEvent>
-#include <QLineEdit>
-#include <QPushButton>
+#include "insets/InsetHyperlink.h"
+
+#if defined(LYX_MERGE_FILES) && !defined(Q_CC_MSVC)
+// GCC couldn't find operator==
+namespace lyx {
+       bool operator==(lyx::docstring const & d, char const * c);
+       namespace frontend {
+               bool operator==(lyx::docstring const & d, char const * c)
+                 { return lyx::operator ==(d, c); }
+       }
+}
+#endif
 
 
 namespace lyx {
 namespace frontend {
 
-GuiHyperlink::GuiHyperlink(GuiView & lv)
-       : GuiCommand(lv, "href",qt_("Hyperlink"))
+GuiHyperlink::GuiHyperlink(QWidget * parent) : InsetParamsWidget(parent)
 {
        setupUi(this);
 
-       connect(okPB, SIGNAL(clicked()), this, SLOT(slotOK()));
-       connect(closePB, SIGNAL(clicked()), this, SLOT(slotClose()));
        connect(targetED, SIGNAL(textChanged(const QString &)),
-               this, SLOT(changed_adaptor()));
+               this, SIGNAL(changed()));
        connect(nameED, SIGNAL(textChanged(const QString &)),
-               this, SLOT(changed_adaptor()));
+               this, SIGNAL(changed()));
        connect(webRB, SIGNAL(clicked()),
-               this, SLOT(changed_adaptor()));
+               this, SIGNAL(changed()));
        connect(emailRB, SIGNAL(clicked()),
-               this, SLOT(changed_adaptor()));
+               this, SIGNAL(changed()));
        connect(fileRB, SIGNAL(clicked()),
-               this, SLOT(changed_adaptor()));
+               this, SIGNAL(changed()));
 
        setFocusProxy(targetED);
-
-       bc().setOK(okPB);
-       bc().setCancel(closePB);
-       bc().addReadOnly(targetED);
-       bc().addReadOnly(nameED);
-       bc().addReadOnly(webRB);
-       bc().addReadOnly(emailRB);
-       bc().addReadOnly(fileRB);
 }
 
 
-void GuiHyperlink::changed_adaptor()
+void GuiHyperlink::paramsToDialog(Inset const * inset)
 {
-       changed();
-}
-
+       InsetHyperlink const * hlink = static_cast<InsetHyperlink const *>(inset);
+       InsetCommandParams const & params = hlink->params();
 
-void GuiHyperlink::closeEvent(QCloseEvent * e)
-{
-       slotClose();
-       e->accept();
-}
-
-
-void GuiHyperlink::updateContents()
-{
-       targetED->setText(toqstr(params_["target"]));
-       nameED->setText(toqstr(params_["name"]));
-       if (params_["type"] == "")
+       targetED->setText(toqstr(params["target"]));
+       nameED->setText(toqstr(params["name"]));
+       docstring const & type = params["type"];
+       if (type.empty())
                webRB->setChecked(true);
-       else if (params_["type"] == "mailto:")
+       else if (type == "mailto:")
                emailRB->setChecked(true);
-       else if (params_["type"] == "file:")
+       else if (type == "file:")
                fileRB->setChecked(true);
-       bc().setValid(isValid());
 }
 
 
-void GuiHyperlink::applyView()
+docstring GuiHyperlink::dialogToParams() const
 {
-       params_["target"] = qstring_to_ucs4(targetED->text());
-       params_["name"] = qstring_to_ucs4(nameED->text());
+       InsetCommandParams params(insetCode());
+
+       params["target"] = qstring_to_ucs4(targetED->text());
+       params["name"] = qstring_to_ucs4(nameED->text());
        if (webRB->isChecked())
-               params_["type"] = qstring_to_ucs4("");
+               params["type"] = qstring_to_ucs4("");
        else if (emailRB->isChecked())
-               params_["type"] = qstring_to_ucs4("mailto:");
+               params["type"] = qstring_to_ucs4("mailto:");
        else if (fileRB->isChecked())
-               params_["type"] = qstring_to_ucs4("file:");
-       params_.setCmdName("href");
+               params["type"] = qstring_to_ucs4("file:");
+       params.setCmdName("href");
+       return from_utf8(InsetHyperlink::params2string(params));
 }
 
 
-bool GuiHyperlink::isValid()
+bool GuiHyperlink::checkWidgets() const
 {
-       QString const u = targetED->text();
-       QString const n = nameED->text();
-
-       return !u.isEmpty() || !n.isEmpty();
+       if (!InsetParamsWidget::checkWidgets())
+               return false;
+       return !targetED->text().isEmpty() || !nameED->text().isEmpty();
 }
 
 
-Dialog * createGuiHyperlink(GuiView & lv) { return new GuiHyperlink(lv); }
-
-
 } // namespace frontend
 } // namespace lyx
 
 
-#include "GuiHyperlink_moc.cpp"
+#include "moc_GuiHyperlink.cpp"