lyx_mirror/src/frontends/qt4/UrlView.C
Lars Gullik Bjønnes 43b77ba2d7 Change _() to return a docstring. Fixup callers with the help of lyx::to_utf8.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14952 a592a061-630c-0410-9148-cb99ea01b6c8
2006-09-09 15:27:44 +00:00

86 lines
1.7 KiB
C

/**
* \file UrlView.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author John Levon
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "UrlView.h"
#include "QURLDialog.h"
#include "Qt2BC.h"
#include "qt_helpers.h"
#include "controllers/ButtonController.h"
#include "controllers/ControlCommand.h"
#include <QCheckBox>
#include <QLineEdit>
#include <QPushButton>
using std::string;
namespace lyx {
namespace frontend {
typedef QController< ControlCommand, QView<QURLDialog> > base_class;
UrlView::UrlView(Dialog & parent)
: base_class(parent, lyx::to_utf8(_("URL")))
{
}
void UrlView::build_dialog()
{
dialog_.reset(new QURLDialog(this));
bcview().setOK(dialog_->okPB);
bcview().setCancel(dialog_->closePB);
bcview().addReadOnly(dialog_->urlED);
bcview().addReadOnly(dialog_->nameED);
bcview().addReadOnly(dialog_->hyperlinkCB);
}
void UrlView::update_contents()
{
InsetCommandParams const & params = controller().params();
dialog_->urlED->setText(toqstr(params.getContents()));
dialog_->nameED->setText(toqstr(params.getOptions()));
dialog_->hyperlinkCB->setChecked(params.getCmdName() != "url");
bc().valid(isValid());
}
void UrlView::apply()
{
InsetCommandParams & params = controller().params();
params.setContents(fromqstr(dialog_->urlED->text()));
params.setOptions(fromqstr(dialog_->nameED->text()));
if (dialog_->hyperlinkCB->isChecked())
params.setCmdName("htmlurl");
else
params.setCmdName("url");
}
bool UrlView::isValid()
{
string const u(fromqstr(dialog_->urlED->text()));
string const n(fromqstr(dialog_->nameED->text()));
return !u.empty() || !n.empty();
}
} // namespace frontend
} // namespace lyx