2006-03-05 17:24:44 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file QGraphicsDialog.C
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author John Levon
|
|
|
|
|
* \author Herbert Vo<EFBFBD>
|
|
|
|
|
* \author Abdelrazak Younes
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
|
|
#include "QGraphicsDialog.h"
|
|
|
|
|
#include "QGraphics.h"
|
|
|
|
|
|
|
|
|
|
#include "lengthcombo.h"
|
|
|
|
|
#include "validators.h"
|
|
|
|
|
#include "qt_helpers.h"
|
|
|
|
|
|
|
|
|
|
#include "debug.h"
|
|
|
|
|
|
|
|
|
|
#include "controllers/ControlGraphics.h"
|
|
|
|
|
|
2007-01-08 13:22:50 +00:00
|
|
|
|
#include "insets/insetgraphicsParams.h"
|
|
|
|
|
|
2006-11-03 11:24:27 +00:00
|
|
|
|
#include <QCloseEvent>
|
|
|
|
|
#include <QPushButton>
|
|
|
|
|
#include <QLineEdit>
|
|
|
|
|
#include <QValidator>
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
using std::string;
|
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
namespace frontend {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
QGraphicsDialog::QGraphicsDialog(QGraphics * form)
|
|
|
|
|
: form_(form)
|
|
|
|
|
{
|
|
|
|
|
setupUi(this);
|
2007-03-04 01:56:58 +00:00
|
|
|
|
connect(okPB, SIGNAL( clicked() ),
|
|
|
|
|
form, SLOT( slotOK() ) );
|
|
|
|
|
connect(applyPB, SIGNAL( clicked() ),
|
|
|
|
|
form, SLOT( slotApply() ) );
|
|
|
|
|
connect(closePB, SIGNAL( clicked() ),
|
|
|
|
|
form, SLOT( slotClose() ) );
|
|
|
|
|
connect(restorePB, SIGNAL( clicked() ),
|
|
|
|
|
form, SLOT( slotRestore() ) );
|
2006-11-03 11:24:27 +00:00
|
|
|
|
connect(filename, SIGNAL( textChanged(const QString&) ),
|
|
|
|
|
this, SLOT( change_adaptor() ) );
|
|
|
|
|
connect(subcaption, SIGNAL( textChanged(const QString&) ),
|
|
|
|
|
this, SLOT( change_adaptor() ) );
|
2007-02-05 19:41:58 +00:00
|
|
|
|
|
|
|
|
|
// FIXME: we should connect to clicked() when we move to Qt 4.2 because
|
|
|
|
|
// the toggled(bool) signal is also trigged when we update the widgets
|
2007-02-05 10:11:16 +00:00
|
|
|
|
connect(subfigure, SIGNAL( toggled(bool) ),
|
2006-11-03 11:24:27 +00:00
|
|
|
|
this, SLOT( change_adaptor() ) );
|
2007-02-05 19:41:58 +00:00
|
|
|
|
connect(displayGB, SIGNAL( toggled(bool) ),
|
|
|
|
|
this, SLOT( change_adaptor() ) );
|
|
|
|
|
|
2006-11-03 11:24:27 +00:00
|
|
|
|
connect(latexoptions, SIGNAL( textChanged(const QString&) ),
|
|
|
|
|
this, SLOT( change_adaptor() ) );
|
|
|
|
|
connect(clip, SIGNAL( stateChanged(int) ),
|
|
|
|
|
this, SLOT( change_adaptor() ) );
|
|
|
|
|
connect(showCB, SIGNAL( currentIndexChanged(int) ),
|
|
|
|
|
this, SLOT( change_adaptor() ) );
|
|
|
|
|
connect(displayscale, SIGNAL( textChanged(const QString&) ),
|
|
|
|
|
this, SLOT( change_adaptor() ) );
|
|
|
|
|
connect(Width, SIGNAL( textChanged(const QString&) ),
|
|
|
|
|
this, SLOT( change_adaptor() ) );
|
|
|
|
|
connect(aspectratio, SIGNAL( stateChanged(int) ),
|
|
|
|
|
this, SLOT( change_adaptor() ) );
|
|
|
|
|
connect(draftCB, SIGNAL( stateChanged(int) ),
|
|
|
|
|
this, SLOT( change_adaptor() ) );
|
|
|
|
|
connect(unzipCB, SIGNAL( stateChanged(int) ),
|
|
|
|
|
this, SLOT( change_adaptor() ) );
|
|
|
|
|
connect(Height, SIGNAL( textChanged(const QString&) ),
|
|
|
|
|
this, SLOT( change_adaptor() ) );
|
|
|
|
|
connect(heightUnit, SIGNAL( selectionChanged(lyx::LyXLength::UNIT) ),
|
|
|
|
|
this, SLOT( change_adaptor() ) );
|
|
|
|
|
connect(widthUnit, SIGNAL( selectionChanged(lyx::LyXLength::UNIT) ),
|
|
|
|
|
this, SLOT( change_adaptor() ) );
|
|
|
|
|
connect(angle, SIGNAL( textChanged(const QString&) ),
|
|
|
|
|
this, SLOT( change_adaptor() ) );
|
|
|
|
|
connect(origin, SIGNAL( activated(int) ),
|
|
|
|
|
this, SLOT( change_adaptor() ) );
|
|
|
|
|
connect(getPB, SIGNAL( clicked() ),
|
|
|
|
|
this, SLOT( change_adaptor() ) );
|
2007-03-04 01:56:58 +00:00
|
|
|
|
connect(scaleCB, SIGNAL( clicked() ),
|
2006-11-03 11:24:27 +00:00
|
|
|
|
this, SLOT(change_adaptor()) );
|
|
|
|
|
connect(Scale, SIGNAL( textChanged(const QString&) ),
|
|
|
|
|
this, SLOT( change_adaptor() ) );
|
|
|
|
|
|
|
|
|
|
connect(lbY, SIGNAL( textChanged(const QString&) ),
|
|
|
|
|
this, SLOT( change_bb() ) );
|
|
|
|
|
connect(lbYunit, SIGNAL( activated(int) ),
|
|
|
|
|
this, SLOT( change_bb() ) );
|
|
|
|
|
connect(rtY, SIGNAL( textChanged(const QString&) ),
|
|
|
|
|
this, SLOT( change_bb() ) );
|
|
|
|
|
connect(rtYunit, SIGNAL( activated(int) ),
|
|
|
|
|
this, SLOT( change_bb() ) );
|
|
|
|
|
|
|
|
|
|
connect(lbX, SIGNAL( textChanged(const QString&) ),
|
|
|
|
|
this, SLOT( change_bb() ) );
|
|
|
|
|
connect(lbXunit, SIGNAL( activated(int) ),
|
|
|
|
|
this, SLOT( change_bb() ) );
|
|
|
|
|
connect(rtX, SIGNAL( textChanged(const QString&) ),
|
|
|
|
|
this, SLOT( change_bb() ) );
|
|
|
|
|
connect(rtXunit, SIGNAL( activated(int) ),
|
|
|
|
|
this, SLOT( change_bb() ) );
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
|
|
angle->setValidator(new QDoubleValidator(-360, 360, 2, angle));
|
|
|
|
|
|
2007-01-13 10:33:04 +00:00
|
|
|
|
lbX->setValidator(new QDoubleValidator(lbX));
|
|
|
|
|
lbY->setValidator(new QDoubleValidator(lbY));
|
|
|
|
|
rtX->setValidator(new QDoubleValidator(rtX));
|
|
|
|
|
rtY->setValidator(new QDoubleValidator(rtY));
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
|
|
displayscale->setValidator(new QIntValidator(displayscale));
|
|
|
|
|
Height->setValidator(unsignedLengthValidator(Height));
|
|
|
|
|
Width->setValidator(unsignedLengthValidator(Width));
|
|
|
|
|
|
|
|
|
|
filename->setValidator(new PathValidator(true, filename));
|
2007-03-28 21:17:47 +00:00
|
|
|
|
setFocusProxy(filename);
|
2006-03-05 17:24:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void QGraphicsDialog::show()
|
|
|
|
|
{
|
|
|
|
|
QDialog::show();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void QGraphicsDialog::change_adaptor()
|
|
|
|
|
{
|
|
|
|
|
form_->changed();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void QGraphicsDialog::change_bb()
|
|
|
|
|
{
|
|
|
|
|
form_->controller().bbChanged = true;
|
2007-04-01 10:09:49 +00:00
|
|
|
|
LYXERR(Debug::GRAPHICS)
|
2006-03-05 17:24:44 +00:00
|
|
|
|
<< "[controller().bb_Changed set to true]\n";
|
|
|
|
|
form_->changed();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void QGraphicsDialog::closeEvent(QCloseEvent * e)
|
|
|
|
|
{
|
|
|
|
|
form_->slotWMHide();
|
|
|
|
|
e->accept();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-11-03 11:24:27 +00:00
|
|
|
|
void QGraphicsDialog::on_browsePB_clicked()
|
2006-03-05 17:24:44 +00:00
|
|
|
|
{
|
2006-10-09 16:33:20 +00:00
|
|
|
|
docstring const str =
|
|
|
|
|
form_->controller().browse(qstring_to_ucs4(filename->text()));
|
2006-03-05 17:24:44 +00:00
|
|
|
|
filename->setText(toqstr(str));
|
|
|
|
|
form_->changed();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-11-03 11:24:27 +00:00
|
|
|
|
void QGraphicsDialog::on_getPB_clicked()
|
2006-03-05 17:24:44 +00:00
|
|
|
|
{
|
|
|
|
|
form_->getBB();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-11-03 11:24:27 +00:00
|
|
|
|
void QGraphicsDialog::on_editPB_clicked()
|
2006-03-05 17:24:44 +00:00
|
|
|
|
{
|
|
|
|
|
form_->controller().editGraphics();
|
|
|
|
|
}
|
|
|
|
|
|
2006-11-03 11:24:27 +00:00
|
|
|
|
|
|
|
|
|
void QGraphicsDialog::on_filename_textChanged(const QString & filename)
|
2006-04-06 21:04:27 +00:00
|
|
|
|
{
|
|
|
|
|
editPB->setDisabled(filename.isEmpty());
|
|
|
|
|
}
|
|
|
|
|
|
2006-11-03 11:24:27 +00:00
|
|
|
|
|
|
|
|
|
void QGraphicsDialog::on_scaleCB_toggled(bool setscale)
|
|
|
|
|
{
|
2007-04-03 02:07:35 +00:00
|
|
|
|
//FIXME: There is no scale text when the scale was "100" before keepaspectratio
|
|
|
|
|
//was checked and then scaleCB is checked again
|
|
|
|
|
//When somebody implements a void on toggling keepaspectration, this
|
|
|
|
|
//case should be handled there.
|
|
|
|
|
if (scaleCB->isChecked() && Scale->text() == "")
|
|
|
|
|
Scale->setText("100");
|
2006-11-03 11:24:27 +00:00
|
|
|
|
Scale->setEnabled(setscale);
|
|
|
|
|
widthL->setDisabled(setscale);
|
|
|
|
|
Width->setDisabled(setscale);
|
|
|
|
|
widthUnit->setDisabled(setscale);
|
|
|
|
|
aspectratio->setDisabled(setscale);
|
|
|
|
|
bool noheight = setscale || aspectratio->checkState()==Qt::Checked;
|
|
|
|
|
heightL->setDisabled(noheight);
|
|
|
|
|
Height->setDisabled(noheight);
|
|
|
|
|
heightUnit->setDisabled(noheight);
|
|
|
|
|
}
|
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
} // namespace frontend
|
|
|
|
|
} // namespace lyx
|
2006-05-18 08:51:12 +00:00
|
|
|
|
|
|
|
|
|
#include "QGraphicsDialog_moc.cpp"
|