2001-08-28 03:35:17 +00:00
|
|
|
/**
|
|
|
|
* \file QGraphics.C
|
|
|
|
* Copyright 2001 the LyX Team
|
|
|
|
* Read the file COPYING
|
|
|
|
*
|
|
|
|
* \author John Levon <moz@compsoc.man.ac.uk>
|
2002-01-31 13:15:33 +00:00
|
|
|
* \author Edwin Leuven <leuven@fee.uva.nl>
|
2001-08-28 03:35:17 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
2002-06-19 03:38:44 +00:00
|
|
|
#include "QtLyXView.h"
|
|
|
|
#include "ControlGraphics.h"
|
|
|
|
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
#include "support/FileInfo.h"
|
|
|
|
#include "support/filetools.h"
|
|
|
|
#include "insets/insetgraphicsParams.h"
|
|
|
|
#include "lyxrc.h"
|
|
|
|
#include "lengthcombo.h"
|
|
|
|
#include "gettext.h"
|
|
|
|
#include "debug.h"
|
|
|
|
|
2002-01-31 13:15:33 +00:00
|
|
|
#include <qlineedit.h>
|
|
|
|
#include <qpushbutton.h>
|
|
|
|
#include <qcheckbox.h>
|
|
|
|
#include <qradiobutton.h>
|
|
|
|
#include <qcombobox.h>
|
|
|
|
#include <qgroupbox.h>
|
|
|
|
#include <qbuttongroup.h>
|
|
|
|
#include <qlabel.h>
|
|
|
|
|
2001-08-28 03:35:17 +00:00
|
|
|
#include "QGraphicsDialog.h"
|
|
|
|
#include "QGraphics.h"
|
|
|
|
#include "Qt2BC.h"
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2001-08-28 03:35:17 +00:00
|
|
|
|
|
|
|
typedef Qt2CB<ControlGraphics, Qt2DB<QGraphicsDialog> > base_class;
|
|
|
|
|
2002-08-12 14:28:43 +00:00
|
|
|
QGraphics::QGraphics()
|
|
|
|
: base_class(_("Graphics"))
|
2001-08-28 03:35:17 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void QGraphics::build_dialog()
|
|
|
|
{
|
|
|
|
dialog_.reset(new QGraphicsDialog(this));
|
|
|
|
|
|
|
|
bc().setOK(dialog_->okPB);
|
|
|
|
bc().setApply(dialog_->applyPB);
|
2002-01-31 13:15:33 +00:00
|
|
|
bc().setRestore(dialog_->restorePB);
|
2002-08-08 03:50:54 +00:00
|
|
|
bc().setCancel(dialog_->closePB);
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-08-08 03:50:54 +00:00
|
|
|
// FIXME: and the rest ?
|
2002-01-31 13:15:33 +00:00
|
|
|
bc().addReadOnly(dialog_->rotateGB);
|
|
|
|
bc().addReadOnly(dialog_->latexoptionsGB);
|
|
|
|
bc().addReadOnly(dialog_->bbGB);
|
|
|
|
bc().addReadOnly(dialog_->subfigure);
|
|
|
|
bc().addReadOnly(dialog_->subcaption);
|
|
|
|
bc().addReadOnly(dialog_->filenameL);
|
|
|
|
bc().addReadOnly(dialog_->filename);
|
2001-08-28 03:35:17 +00:00
|
|
|
bc().addReadOnly(dialog_->browsePB);
|
|
|
|
}
|
|
|
|
|
|
|
|
void QGraphics::update_contents()
|
|
|
|
{
|
|
|
|
InsetGraphicsParams & igp = controller().params();
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-08-24 22:02:30 +00:00
|
|
|
// set the right default unit
|
2002-01-31 13:15:33 +00:00
|
|
|
string unit = "cm";
|
2002-08-24 22:02:30 +00:00
|
|
|
switch (lyxrc.default_papersize) {
|
|
|
|
case BufferParams::PAPER_DEFAULT: break;
|
|
|
|
|
|
|
|
case BufferParams::PAPER_USLETTER:
|
|
|
|
case BufferParams::PAPER_LEGALPAPER:
|
|
|
|
case BufferParams::PAPER_EXECUTIVEPAPER: unit = "in"; break;
|
|
|
|
|
|
|
|
case BufferParams::PAPER_A3PAPER:
|
|
|
|
case BufferParams::PAPER_A4PAPER:
|
|
|
|
case BufferParams::PAPER_A5PAPER:
|
|
|
|
case BufferParams::PAPER_B5PAPER: unit = "cm"; break;
|
|
|
|
}
|
|
|
|
// ?? defaultUnit is not used !!
|
2002-01-31 13:15:33 +00:00
|
|
|
string const defaultUnit = string(unit);
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-01-31 13:15:33 +00:00
|
|
|
// Update dialog with details from inset
|
|
|
|
dialog_->filename->setText(igp.filename.c_str());
|
|
|
|
|
|
|
|
// set the bounding box values, if exists. First we need the whole
|
|
|
|
// path, because the controller knows nothing about the doc-dir
|
|
|
|
controller().bbChanged = false;
|
|
|
|
if (igp.bb.empty()) {
|
2002-08-08 03:50:54 +00:00
|
|
|
string const fileWithAbsPath(MakeAbsPath(igp.filename, OnlyPath(igp.filename)));
|
|
|
|
string const bb(controller().readBB(fileWithAbsPath));
|
2002-01-31 13:15:33 +00:00
|
|
|
if (!bb.empty()) {
|
|
|
|
// get the values from the file
|
|
|
|
// in this case we always have the point-unit
|
2002-08-08 03:50:54 +00:00
|
|
|
dialog_->lbX->setText(token(bb, ' ', 0).c_str());
|
|
|
|
dialog_->lbY->setText(token(bb, ' ', 1).c_str());
|
|
|
|
dialog_->rtX->setText(token(bb, ' ', 2).c_str());
|
|
|
|
dialog_->rtY->setText(token(bb, ' ', 3).c_str());
|
2002-01-31 13:15:33 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// get the values from the inset
|
|
|
|
controller().bbChanged = true;
|
2002-08-08 03:50:54 +00:00
|
|
|
dialog_->lbX->setText(token(igp.bb, ' ', 0).c_str());
|
|
|
|
dialog_->lbY->setText(token(igp.bb, ' ', 1).c_str());
|
|
|
|
dialog_->rtX->setText(token(igp.bb, ' ', 2).c_str());
|
|
|
|
dialog_->rtY->setText(token(igp.bb, ' ', 3).c_str());
|
2002-01-31 13:15:33 +00:00
|
|
|
}
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-01-31 13:15:33 +00:00
|
|
|
// Update the draft and clip mode
|
|
|
|
dialog_->draft->setChecked(igp.draft);
|
|
|
|
dialog_->clip->setChecked(igp.clip);
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-01-31 13:15:33 +00:00
|
|
|
// Update the subcaption check button and input field
|
|
|
|
dialog_->subfigure->setChecked(igp.subcaption);
|
|
|
|
dialog_->subcaption->setText(igp.subcaptionText.c_str());
|
2001-08-28 03:35:17 +00:00
|
|
|
|
2002-08-08 03:50:54 +00:00
|
|
|
int item;
|
2001-08-28 03:35:17 +00:00
|
|
|
switch (igp.display) {
|
2002-08-24 22:02:30 +00:00
|
|
|
case grfx::DefaultDisplay: item = 0; break;
|
|
|
|
case grfx::MonochromeDisplay: item = 1; break;
|
|
|
|
case grfx::GrayscaleDisplay: item = 2; break;
|
|
|
|
case grfx::ColorDisplay: item = 3; break;
|
|
|
|
case grfx::NoDisplay: item = 4; break;
|
2001-08-28 03:35:17 +00:00
|
|
|
}
|
2002-08-08 03:50:54 +00:00
|
|
|
dialog_->show->setCurrentItem(item);
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-08-08 03:50:54 +00:00
|
|
|
dialog_->displayscale->setText(tostr(igp.lyxscale).c_str());
|
|
|
|
|
|
|
|
dialog_->widthUnit->setCurrentItem(igp.width.unit());
|
|
|
|
dialog_->heightUnit->setCurrentItem(igp.height.unit());
|
|
|
|
dialog_->aspectratio->setChecked(igp.keepAspectRatio);
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-01-31 13:15:33 +00:00
|
|
|
// Update the rotate angle
|
|
|
|
dialog_->angle->setText(tostr(igp.rotateAngle).c_str());
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-01-31 13:15:33 +00:00
|
|
|
if (igp.rotateOrigin.empty()) {
|
|
|
|
dialog_->origin->setCurrentItem(0);
|
|
|
|
} else {
|
2002-08-08 03:50:54 +00:00
|
|
|
// FIXME fl_set_choice_text(special_->choice_origin,igp.rotateOrigin.c_str());
|
2001-08-28 03:35:17 +00:00
|
|
|
}
|
2002-01-31 13:15:33 +00:00
|
|
|
|
|
|
|
// latex options
|
|
|
|
dialog_->latexoptions->setText(igp.special.c_str());
|
2001-08-28 03:35:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void QGraphics::apply()
|
|
|
|
{
|
|
|
|
InsetGraphicsParams & igp = controller().params();
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-01-31 13:15:33 +00:00
|
|
|
igp.filename = dialog_->filename->text();
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-08-08 03:50:54 +00:00
|
|
|
if (!controller().bbChanged) {
|
|
|
|
igp.bb = string();
|
|
|
|
} else {
|
2002-01-31 13:15:33 +00:00
|
|
|
string bb;
|
|
|
|
string lbX(dialog_->lbX->text());
|
|
|
|
string lbY(dialog_->lbY->text());
|
|
|
|
string rtX(dialog_->rtX->text());
|
|
|
|
string rtY(dialog_->rtY->text());
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-01-31 13:15:33 +00:00
|
|
|
if (lbX.empty())
|
|
|
|
bb = "0 ";
|
|
|
|
else
|
|
|
|
bb = lbX + " ";
|
|
|
|
if (lbY.empty())
|
|
|
|
bb += "0 ";
|
|
|
|
else
|
|
|
|
bb += (lbY + " ");
|
|
|
|
if (rtX.empty())
|
|
|
|
bb += "0 ";
|
|
|
|
else
|
|
|
|
bb += (rtX + " ");
|
|
|
|
if (rtY.empty())
|
|
|
|
bb += "0 ";
|
|
|
|
else
|
|
|
|
bb += (rtY + " ");
|
|
|
|
|
|
|
|
igp.bb = bb;
|
2001-08-28 03:35:17 +00:00
|
|
|
}
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-01-31 13:15:33 +00:00
|
|
|
igp.draft = dialog_->draft->isChecked();
|
|
|
|
igp.clip = dialog_->clip->isChecked();
|
|
|
|
igp.subcaption = dialog_->subfigure->isChecked();
|
|
|
|
igp.subcaptionText = dialog_->subcaption->text();
|
|
|
|
|
2002-08-08 03:50:54 +00:00
|
|
|
switch (dialog_->show->currentItem()) {
|
2002-08-24 22:02:30 +00:00
|
|
|
case 0: igp.display = grfx::DefaultDisplay; break;
|
|
|
|
case 1: igp.display = grfx::MonochromeDisplay; break;
|
|
|
|
case 2: igp.display = grfx::GrayscaleDisplay; break;
|
|
|
|
case 3: igp.display = grfx::ColorDisplay; break;
|
|
|
|
case 4: igp.display = grfx::NoDisplay; break;
|
2001-08-28 03:35:17 +00:00
|
|
|
default:;
|
|
|
|
}
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-01-31 13:15:33 +00:00
|
|
|
string value(dialog_->width->text());
|
|
|
|
igp.width = LyXLength(strToDbl(value), dialog_->widthUnit->currentLengthItem());
|
|
|
|
value = string(dialog_->height->text());
|
|
|
|
igp.height = LyXLength(strToDbl(value), dialog_->heightUnit->currentLengthItem());
|
|
|
|
|
2002-08-08 03:50:54 +00:00
|
|
|
igp.keepAspectRatio = dialog_->aspectratio->isChecked();
|
|
|
|
|
|
|
|
igp.lyxscale = strToInt(string(dialog_->displayscale->text()));
|
2002-01-31 13:15:33 +00:00
|
|
|
|
|
|
|
igp.rotateAngle = strToDbl(string(dialog_->angle->text()));
|
2002-08-24 22:02:30 +00:00
|
|
|
while (igp.rotateAngle < -360.0) igp.rotateAngle += 360.0;
|
|
|
|
while (igp.rotateAngle > 360.0) igp.rotateAngle -= 360.0;
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-01-31 13:15:33 +00:00
|
|
|
if ((dialog_->origin->currentItem()) > 0)
|
|
|
|
igp.rotateOrigin = dialog_->origin->currentText();
|
|
|
|
else
|
|
|
|
igp.rotateOrigin = string();
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-01-31 13:15:33 +00:00
|
|
|
igp.special = dialog_->latexoptions->text();
|
2001-08-28 03:35:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void QGraphics::browse()
|
|
|
|
{
|
2002-01-31 13:15:33 +00:00
|
|
|
string const & name = controller().Browse(dialog_->filename->text().latin1());
|
2001-08-28 03:35:17 +00:00
|
|
|
if (!name.empty())
|
2002-03-21 21:21:28 +00:00
|
|
|
dialog_->filename->setText(name.c_str());
|
2002-01-31 13:15:33 +00:00
|
|
|
}
|
|
|
|
|
2002-08-08 03:50:54 +00:00
|
|
|
|
2002-01-31 13:15:33 +00:00
|
|
|
void QGraphics::get()
|
|
|
|
{
|
2002-08-08 03:50:54 +00:00
|
|
|
string const filename(dialog_->filename->text());
|
|
|
|
if (!filename.empty()) {
|
|
|
|
string const fileWithAbsPath(MakeAbsPath(filename, OnlyPath(filename)));
|
|
|
|
string const bb(controller().readBB(fileWithAbsPath));
|
|
|
|
if (!bb.empty()) {
|
|
|
|
dialog_->lbX->setText(token(bb, ' ', 0).c_str());
|
|
|
|
dialog_->lbY->setText(token(bb, ' ', 1).c_str());
|
|
|
|
dialog_->rtX->setText(token(bb, ' ', 2).c_str());
|
|
|
|
dialog_->rtY->setText(token(bb, ' ', 3).c_str());
|
|
|
|
}
|
|
|
|
controller().bbChanged = false;
|
2002-01-31 13:15:33 +00:00
|
|
|
}
|
2001-08-28 03:35:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool QGraphics::isValid()
|
|
|
|
{
|
2002-08-08 03:50:54 +00:00
|
|
|
// FIXME: we need more here.
|
2002-01-31 13:15:33 +00:00
|
|
|
return !string(dialog_->filename->text().latin1()).empty();
|
2001-08-28 03:35:17 +00:00
|
|
|
}
|