lyx_mirror/src/frontends/qt4/QWrap.cpp
Christian Ridderström 1050cc4471 Converted '#warning ...' into FIXME-comments
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19397 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-10 11:47:12 +00:00

165 lines
3.3 KiB
C++

/**
* \file QWrap.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Jürgen Spitzmüller
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "QWrap.h"
#include "Qt2BC.h"
#include "LengthCombo.h"
#include "qt_helpers.h"
#include "controllers/ControlWrap.h"
#include "insets/InsetWrap.h"
#include "support/convert.h"
#include "support/lstrings.h"
#include <QLineEdit>
#include <QCloseEvent>
#include <QPushButton>
using std::string;
namespace lyx {
namespace frontend {
/////////////////////////////////////////////////////////////////////
//
// QWrapDialog
//
/////////////////////////////////////////////////////////////////////
QWrapDialog::QWrapDialog(QWrap * form)
: form_(form)
{
setupUi(this);
connect(restorePB, SIGNAL(clicked()), form, SLOT(slotRestore()));
connect(okPB, SIGNAL(clicked()), form, SLOT(slotOK()));
connect(applyPB, SIGNAL(clicked()), form, SLOT(slotApply()));
connect(closePB, SIGNAL(clicked()), form, SLOT(slotClose()));
connect(widthED, SIGNAL(textChanged(const QString &)),
this, SLOT(change_adaptor()));
connect(unitsLC, SIGNAL(selectionChanged(lyx::Length::UNIT)),
this, SLOT(change_adaptor()));
connect(valignCO, SIGNAL(highlighted(const QString &)),
this, SLOT(change_adaptor()));
}
void QWrapDialog::closeEvent(QCloseEvent * e)
{
form_->slotWMHide();
e->accept();
}
void QWrapDialog::change_adaptor()
{
form_->changed();
}
/////////////////////////////////////////////////////////////////////
//
// QWrap
//
/////////////////////////////////////////////////////////////////////
typedef QController<ControlWrap, QView<QWrapDialog> > wrap_base_class;
QWrap::QWrap(Dialog & parent)
: wrap_base_class(parent, _("Text Wrap Settings"))
{
}
void QWrap::build_dialog()
{
dialog_.reset(new QWrapDialog(this));
bcview().setRestore(dialog_->restorePB);
bcview().setOK(dialog_->okPB);
bcview().setApply(dialog_->applyPB);
bcview().setCancel(dialog_->closePB);
bcview().addReadOnly(dialog_->widthED);
bcview().addReadOnly(dialog_->unitsLC);
bcview().addReadOnly(dialog_->valignCO);
}
void QWrap::apply()
{
double const value = convert<double>(fromqstr(dialog_->widthED->text()));
Length::UNIT unit = dialog_->unitsLC->currentLengthItem();
if (dialog_->widthED->text().isEmpty())
unit = Length::UNIT_NONE;
InsetWrapParams & params = controller().params();
params.width = Length(value, unit);
switch (dialog_->valignCO->currentIndex()) {
case 0:
params.placement.erase();
break;
case 1:
params.placement = "l";
break;
case 2:
params.placement = "r";
break;
case 3:
params.placement = "p";
break;
}
}
static string const numtostr(double val)
{
string a = convert<string>(val);
// FIXME: Will this test ever trigger? (Lgb)
if (a == "0")
a.erase();
return a;
}
void QWrap::update_contents()
{
InsetWrapParams & params = controller().params();
Length len(params.width);
dialog_->widthED->setText(toqstr(numtostr(len.value())));
dialog_->unitsLC->setCurrentItem(len.unit());
int item = 0;
if (params.placement == "l")
item = 1;
else if (params.placement == "r")
item = 2;
else if (params.placement == "p")
item = 3;
dialog_->valignCO->setCurrentIndex(item);
}
} // namespace frontend
} // namespace lyx
#include "QWrap_moc.cpp"