831 lines
22 KiB
C++
831 lines
22 KiB
C++
/* ObjectEditor.cpp
|
|
*
|
|
* Copyright (C) 2013-2016 Jaye Evins <evins@snaught.com>
|
|
*
|
|
* This file is part of gLabels-qt.
|
|
*
|
|
* gLabels-qt is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* gLabels-qt is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with gLabels-qt. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "ObjectEditor.h"
|
|
|
|
#include "UndoRedoModel.h"
|
|
|
|
#include "model/Model.h"
|
|
#include "model/ModelObject.h"
|
|
#include "model/ModelBarcodeObject.h"
|
|
#include "model/ModelBoxObject.h"
|
|
#include "model/ModelEllipseObject.h"
|
|
#include "model/ModelImageObject.h"
|
|
#include "model/ModelLineObject.h"
|
|
#include "model/ModelTextObject.h"
|
|
#include "model/FileUtil.h"
|
|
#include "model/Settings.h"
|
|
#include "model/Size.h"
|
|
|
|
#include "merge/Merge.h"
|
|
|
|
#include <QFileDialog>
|
|
#include <QDir>
|
|
#include <QtMath>
|
|
#include <QtDebug>
|
|
|
|
|
|
namespace glabels
|
|
{
|
|
|
|
///
|
|
/// Constructor
|
|
///
|
|
ObjectEditor::ObjectEditor( QWidget *parent )
|
|
: mModel(nullptr), mObject(nullptr), mImageCwd("."), mBlocked(false)
|
|
{
|
|
setupUi( this );
|
|
|
|
textHAlignGroup = new QButtonGroup( this );
|
|
textHAlignGroup->addButton( textHAlignLeftToggle, Qt::AlignLeft );
|
|
textHAlignGroup->addButton( textHAlignCenterToggle, Qt::AlignHCenter );
|
|
textHAlignGroup->addButton( textHAlignRightToggle, Qt::AlignRight );
|
|
|
|
textVAlignGroup = new QButtonGroup( this );
|
|
textVAlignGroup->addButton( textVAlignTopToggle, Qt::AlignTop );
|
|
textVAlignGroup->addButton( textVAlignMiddleToggle, Qt::AlignVCenter );
|
|
textVAlignGroup->addButton( textVAlignBottomToggle, Qt::AlignBottom );
|
|
|
|
lineColorButton->init( tr("No line"), QColor(0,0,0,0), QColor(0,0,0,255) );
|
|
fillColorButton->init( tr("No fill"), QColor(0,0,0,0), QColor(0,0,0,255) );
|
|
textColorButton->init( tr("Default"), QColor(0,0,0,255), QColor(0,0,0,255) );
|
|
barcodeColorButton->init( tr("Default"), QColor(0,0,0,255), QColor(0,0,0,255) );
|
|
shadowColorButton->init( tr("Default"), QColor(0,0,0,255), QColor(0,0,0,255) );
|
|
|
|
textInsertFieldButton->setText( tr("Insert substitution field") );
|
|
barcodeInsertFieldButton->setText( tr("Insert substitution field") );
|
|
imageFieldButton->setText( tr("Use substitution field") );
|
|
|
|
setEnabled( false );
|
|
hidePages();
|
|
|
|
connect( model::Settings::instance(), SIGNAL(changed()),
|
|
this, SLOT(onSettingsChanged()) );
|
|
|
|
onSettingsChanged();
|
|
}
|
|
|
|
|
|
void ObjectEditor::setModel( model::Model* model, UndoRedoModel* undoRedoModel )
|
|
{
|
|
mModel = model;
|
|
mUndoRedoModel = undoRedoModel;
|
|
|
|
connect( mModel, SIGNAL(sizeChanged()),
|
|
this, SLOT(onLabelSizeChanged()) );
|
|
|
|
connect( mModel, SIGNAL(selectionChanged()),
|
|
this, SLOT(onSelectionChanged()) );
|
|
|
|
connect( mModel, SIGNAL(mergeSourceChanged()),
|
|
this, SLOT(onFieldsAvailableChanged()) );
|
|
|
|
connect( mModel, SIGNAL(variablesChanged()),
|
|
this, SLOT(onFieldsAvailableChanged()) );
|
|
|
|
onLabelSizeChanged();
|
|
onSelectionChanged();
|
|
onFieldsAvailableChanged();
|
|
}
|
|
|
|
|
|
void ObjectEditor::hidePages()
|
|
{
|
|
notebook->removeTab( notebook->indexOf(textPage) );
|
|
notebook->removeTab( notebook->indexOf(barcodePage) );
|
|
notebook->removeTab( notebook->indexOf(imagePage) );
|
|
notebook->removeTab( notebook->indexOf(lineFillPage) );
|
|
notebook->removeTab( notebook->indexOf(posSizePage) );
|
|
notebook->removeTab( notebook->indexOf(shadowPage) );
|
|
}
|
|
|
|
|
|
void ObjectEditor::loadImagePage()
|
|
{
|
|
if ( mObject )
|
|
{
|
|
mBlocked = true;
|
|
|
|
model::TextNode filenameNode = mObject->filenameNode();
|
|
|
|
if ( filenameNode.isField() )
|
|
{
|
|
imageFilenameLineEdit->setText( QString("${%1}").arg(filenameNode.data()) );
|
|
}
|
|
else
|
|
{
|
|
QString fn = model::FileUtil::makeRelativeIfInDir( mModel->dir(), filenameNode.data() );
|
|
imageFilenameLineEdit->setText( fn );
|
|
}
|
|
|
|
mBlocked = false;
|
|
}
|
|
}
|
|
|
|
|
|
void ObjectEditor::loadLineFillPage()
|
|
{
|
|
if ( mObject )
|
|
{
|
|
mBlocked = true;
|
|
|
|
lineWidthSpin->setValue( mObject->lineWidth().pt() );
|
|
lineColorButton->setColorNode( mObject->lineColorNode() );
|
|
fillColorButton->setColorNode( mObject->fillColorNode() );
|
|
|
|
mBlocked = false;
|
|
}
|
|
}
|
|
|
|
|
|
void ObjectEditor::loadPositionPage()
|
|
{
|
|
if ( mObject )
|
|
{
|
|
mBlocked = true;
|
|
|
|
posXSpin->setDecimals( mSpinDigits );
|
|
posXSpin->setSingleStep( mSpinStep );
|
|
posXSpin->setSuffix( " " + mUnits.toIdString() );
|
|
|
|
posYSpin->setDecimals( mSpinDigits );
|
|
posYSpin->setSingleStep( mSpinStep );
|
|
posYSpin->setSuffix( " " + mUnits.toIdString() );
|
|
|
|
posXSpin->setValue( mObject->x0().inUnits(mUnits) );
|
|
posYSpin->setValue( mObject->y0().inUnits(mUnits) );
|
|
|
|
mBlocked = false;
|
|
}
|
|
}
|
|
|
|
|
|
void ObjectEditor::loadRectSizePage()
|
|
{
|
|
if ( mObject )
|
|
{
|
|
mBlocked = true;
|
|
|
|
sizeWSpin->setDecimals( mSpinDigits );
|
|
sizeWSpin->setSingleStep( mSpinStep );
|
|
sizeWSpin->setSuffix( " " + mUnits.toIdString() );
|
|
|
|
sizeHSpin->setDecimals( mSpinDigits );
|
|
sizeHSpin->setSingleStep( mSpinStep );
|
|
sizeHSpin->setSuffix( " " + mUnits.toIdString() );
|
|
|
|
sizeWSpin->setValue( mObject->w().inUnits(mUnits) );
|
|
sizeHSpin->setValue( mObject->h().inUnits(mUnits) );
|
|
sizeAspectCheck->setChecked( mObject->lockAspectRatio() );
|
|
|
|
model::Size originalSize = mObject->naturalSize();
|
|
QString originalSizeString = QString( "%1: %2 x %3 %4" )
|
|
.arg( tr("Original size") )
|
|
.arg( originalSize.w().inUnits(mUnits), 0, 'f', mSpinDigits )
|
|
.arg( originalSize.h().inUnits(mUnits), 0, 'f', mSpinDigits )
|
|
.arg( mUnits.toIdString() );
|
|
sizeOriginalSizeLabel->setText( originalSizeString );
|
|
|
|
mBlocked = false;
|
|
}
|
|
}
|
|
|
|
|
|
void ObjectEditor::loadLineSizePage()
|
|
{
|
|
if ( mObject )
|
|
{
|
|
mBlocked = true;
|
|
|
|
sizeLineLengthSpin->setDecimals( mSpinDigits );
|
|
sizeLineLengthSpin->setSingleStep( mSpinStep );
|
|
sizeLineLengthSpin->setSuffix( " " + mUnits.toIdString() );
|
|
|
|
double w = mObject->w().inUnits(mUnits);
|
|
double h = mObject->h().inUnits(mUnits);
|
|
sizeLineLengthSpin->setValue( sqrt( w*w + h*h ) );
|
|
sizeLineAngleSpin->setValue( qRadiansToDegrees( qAtan2( h, w ) ) );
|
|
|
|
mBlocked = false;
|
|
}
|
|
}
|
|
|
|
|
|
void ObjectEditor::loadTextPage()
|
|
{
|
|
if ( mObject )
|
|
{
|
|
mBlocked = true;
|
|
|
|
int wrapIndex = 0;
|
|
switch (mObject->textWrapMode())
|
|
{
|
|
case QTextOption::WordWrap: wrapIndex = 0; break;
|
|
case QTextOption::WrapAnywhere: wrapIndex = 1; break;
|
|
default: wrapIndex = 2; break;
|
|
}
|
|
|
|
textFontFamilyCombo->setCurrentText( mObject->fontFamily() );
|
|
textFontSizeSpin->setValue( mObject->fontSize() );
|
|
textFontBoldToggle->setChecked( mObject->fontWeight() == QFont::Bold );
|
|
textFontItalicToggle->setChecked( mObject->fontItalicFlag() );
|
|
textFontUnderlineToggle->setChecked( mObject->fontUnderlineFlag() );
|
|
textColorButton->setColorNode( mObject->textColorNode() );
|
|
textHAlignGroup->button( mObject->textHAlign() )->setChecked( true );
|
|
textVAlignGroup->button( mObject->textVAlign() )->setChecked( true );
|
|
textWrapModeCombo->setCurrentIndex( wrapIndex );
|
|
textLineSpacingSpin->setValue( mObject->textLineSpacing() );
|
|
textAutoShrinkCheck->setChecked( mObject->textAutoShrink() );
|
|
textEdit->setText( mObject->text() );
|
|
|
|
mBlocked = false;
|
|
}
|
|
}
|
|
|
|
|
|
void ObjectEditor::loadBarcodePage()
|
|
{
|
|
if ( mObject )
|
|
{
|
|
mBlocked = true;
|
|
|
|
barcode::Style bcStyle = mObject->bcStyle();
|
|
|
|
barcodeShowTextCheck->setEnabled( bcStyle.textOptional() );
|
|
barcodeChecksumCheck->setEnabled( bcStyle.checksumOptional() );
|
|
|
|
// May need to adjust current text flag, if style changed
|
|
bool textFlag = (mObject->bcTextFlag() && bcStyle.canText())
|
|
|| (bcStyle.canText() && !bcStyle.textOptional());
|
|
mObject->setBcTextFlag( textFlag );
|
|
|
|
// May need to adjust current checksum flag, if style changed
|
|
bool csFlag = (mObject->bcChecksumFlag() && bcStyle.canChecksum())
|
|
|| (bcStyle.canChecksum() && !bcStyle.checksumOptional());
|
|
mObject->setBcChecksumFlag( csFlag );
|
|
|
|
barcodeStyleButton->setBcStyle( bcStyle );
|
|
barcodeShowTextCheck->setChecked( textFlag );
|
|
barcodeChecksumCheck->setChecked( csFlag );
|
|
barcodeColorButton->setColorNode( mObject->bcColorNode() );
|
|
barcodeDataEdit->setText( mObject->bcData() );
|
|
|
|
mBlocked = false;
|
|
}
|
|
}
|
|
|
|
|
|
void ObjectEditor::loadShadowPage()
|
|
{
|
|
if ( mObject )
|
|
{
|
|
mBlocked = true;
|
|
|
|
shadowXSpin->setDecimals( mSpinDigits );
|
|
shadowXSpin->setSingleStep( mSpinStep );
|
|
shadowXSpin->setSuffix( " " + mUnits.toIdString() );
|
|
|
|
shadowYSpin->setDecimals( mSpinDigits );
|
|
shadowYSpin->setSingleStep( mSpinStep );
|
|
shadowYSpin->setSuffix( " " + mUnits.toIdString() );
|
|
|
|
shadowEnableCheck->setChecked( mObject->shadow() );
|
|
shadowXSpin->setValue( mObject->shadowX().inUnits(mUnits) );
|
|
shadowYSpin->setValue( mObject->shadowY().inUnits(mUnits) );
|
|
shadowColorButton->setColorNode( mObject->shadowColorNode() );
|
|
shadowOpacitySpin->setValue( 100*mObject->shadowOpacity() );
|
|
|
|
mBlocked = false;
|
|
}
|
|
}
|
|
|
|
|
|
void ObjectEditor::onSettingsChanged()
|
|
{
|
|
mUnits = model::Settings::units();
|
|
mSpinDigits = mUnits.resolutionDigits();
|
|
mSpinStep = mUnits.resolution();
|
|
|
|
/* Must now update limits and reload any active pages with appropriate units. */
|
|
onLabelSizeChanged();
|
|
onSelectionChanged();
|
|
}
|
|
|
|
|
|
void ObjectEditor::onLabelSizeChanged()
|
|
{
|
|
if ( mModel )
|
|
{
|
|
mBlocked = true;
|
|
|
|
model::Distance whMax = std::max( mModel->w(), mModel->h() );
|
|
|
|
posXSpin->setRange( -whMax.inUnits(mUnits), 2*whMax.inUnits(mUnits) );
|
|
posYSpin->setRange( -whMax.inUnits(mUnits), 2*whMax.inUnits(mUnits) );
|
|
sizeWSpin->setRange( 0, 2*whMax.inUnits(mUnits) );
|
|
sizeHSpin->setRange( 0, 2*whMax.inUnits(mUnits) );
|
|
|
|
mBlocked = false;
|
|
}
|
|
}
|
|
|
|
|
|
void ObjectEditor::onSelectionChanged()
|
|
{
|
|
if ( mModel )
|
|
{
|
|
if ( mObject )
|
|
{
|
|
disconnect( mObject, nullptr, this, nullptr );
|
|
}
|
|
|
|
hidePages();
|
|
|
|
if ( mModel->isSelectionAtomic() )
|
|
{
|
|
mObject = mModel->getFirstSelectedObject();
|
|
|
|
if ( dynamic_cast<model::ModelBoxObject*>(mObject) )
|
|
{
|
|
titleImageLabel->setPixmap( QPixmap(":icons/flat/24x24/glabels-box.svg") );
|
|
titleLabel->setText( tr("Box object properties") );
|
|
|
|
notebook->addTab( lineFillPage, tr("line/fill") );
|
|
notebook->addTab( posSizePage, tr("position/size") );
|
|
notebook->addTab( shadowPage, tr("shadow") );
|
|
|
|
fillFrame->setVisible( true );
|
|
sizeRectFrame->setVisible( true );
|
|
sizeOriginalSizeGroup->setVisible( false );
|
|
sizeLineFrame->setVisible( false );
|
|
|
|
loadLineFillPage();
|
|
loadPositionPage();
|
|
loadRectSizePage();
|
|
loadShadowPage();
|
|
|
|
setEnabled( true );
|
|
}
|
|
else if ( dynamic_cast<model::ModelEllipseObject*>(mObject) )
|
|
{
|
|
titleImageLabel->setPixmap( QPixmap(":icons/flat/24x24/glabels-ellipse.svg") );
|
|
titleLabel->setText( tr("Ellipse object properties") );
|
|
|
|
notebook->addTab( lineFillPage, tr("line/fill") );
|
|
notebook->addTab( posSizePage, tr("position/size") );
|
|
notebook->addTab( shadowPage, tr("shadow") );
|
|
|
|
fillFrame->setVisible( true );
|
|
sizeRectFrame->setVisible( true );
|
|
sizeOriginalSizeGroup->setVisible( false );
|
|
sizeLineFrame->setVisible( false );
|
|
|
|
loadLineFillPage();
|
|
loadPositionPage();
|
|
loadRectSizePage();
|
|
loadShadowPage();
|
|
|
|
setEnabled( true );
|
|
}
|
|
else if ( dynamic_cast<model::ModelImageObject*>(mObject) )
|
|
{
|
|
titleImageLabel->setPixmap( QPixmap(":icons/flat/24x24/glabels-image.svg") );
|
|
titleLabel->setText( tr("Image object properties") );
|
|
|
|
notebook->addTab( imagePage, tr("image") );
|
|
notebook->addTab( posSizePage, tr("position/size") );
|
|
notebook->addTab( shadowPage, tr("shadow") );
|
|
|
|
sizeRectFrame->setVisible( true );
|
|
sizeOriginalSizeGroup->setVisible( true );
|
|
sizeLineFrame->setVisible( false );
|
|
|
|
loadImagePage();
|
|
loadPositionPage();
|
|
loadRectSizePage();
|
|
loadShadowPage();
|
|
|
|
setEnabled( true );
|
|
}
|
|
else if ( dynamic_cast<model::ModelLineObject*>(mObject) )
|
|
{
|
|
titleImageLabel->setPixmap( QPixmap(":icons/flat/24x24/glabels-line.svg") );
|
|
titleLabel->setText( tr("Line object properties") );
|
|
|
|
notebook->addTab( lineFillPage, tr("line/fill") );
|
|
notebook->addTab( posSizePage, tr("position/size") );
|
|
notebook->addTab( shadowPage, tr("shadow") );
|
|
|
|
fillFrame->setVisible( false );
|
|
sizeRectFrame->setVisible( false );
|
|
sizeOriginalSizeGroup->setVisible( false );
|
|
sizeLineFrame->setVisible( true );
|
|
|
|
loadLineFillPage();
|
|
loadPositionPage();
|
|
loadLineSizePage();
|
|
loadShadowPage();
|
|
|
|
setEnabled( true );
|
|
}
|
|
else if ( dynamic_cast<model::ModelTextObject*>(mObject) )
|
|
{
|
|
titleImageLabel->setPixmap( QPixmap(":icons/flat/24x24/glabels-text.svg") );
|
|
titleLabel->setText( tr("Text object properties") );
|
|
|
|
notebook->addTab( textPage, tr("text") );
|
|
notebook->addTab( posSizePage, tr("position/size") );
|
|
notebook->addTab( shadowPage, tr("shadow") );
|
|
|
|
sizeRectFrame->setVisible( true );
|
|
sizeOriginalSizeGroup->setVisible( false );
|
|
sizeLineFrame->setVisible( false );
|
|
|
|
loadTextPage();
|
|
loadPositionPage();
|
|
loadRectSizePage();
|
|
loadShadowPage();
|
|
|
|
setEnabled( true );
|
|
}
|
|
else if ( dynamic_cast<model::ModelBarcodeObject*>(mObject) )
|
|
{
|
|
titleImageLabel->setPixmap( QPixmap(":icons/flat/24x24/glabels-barcode.svg") );
|
|
titleLabel->setText( tr("Barcode object properties") );
|
|
|
|
notebook->addTab( barcodePage, tr("barcode") );
|
|
notebook->addTab( posSizePage, tr("position/size") );
|
|
|
|
sizeRectFrame->setVisible( true );
|
|
sizeOriginalSizeGroup->setVisible( false );
|
|
sizeLineFrame->setVisible( false );
|
|
|
|
loadBarcodePage();
|
|
loadPositionPage();
|
|
loadRectSizePage();
|
|
|
|
setEnabled( true );
|
|
}
|
|
else
|
|
{
|
|
Q_ASSERT_X( false, "ObjectEditor::onSelectionChanged", "Invalid object" );
|
|
}
|
|
|
|
connect( mObject, SIGNAL(changed()), this, SLOT(onObjectChanged()) );
|
|
connect( mObject, SIGNAL(moved()), this, SLOT(onObjectMoved()) );
|
|
connect( mObject, SIGNAL(destroyed(QObject*)), this, SLOT(onObjectDestroyed()) );
|
|
}
|
|
else
|
|
{
|
|
mObject = nullptr;
|
|
|
|
titleImageLabel->setPixmap( QPixmap(":icons/flat/24x24/glabels-object-properties.svg") );
|
|
titleLabel->setText( tr("Object properties") );
|
|
setEnabled( false );
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
void ObjectEditor::onFieldsAvailableChanged()
|
|
{
|
|
if ( !mBlocked )
|
|
{
|
|
lineColorButton->setKeys( mModel->merge(), mModel->variables() );
|
|
fillColorButton->setKeys( mModel->merge(), mModel->variables() );
|
|
textColorButton->setKeys( mModel->merge(), mModel->variables() );
|
|
barcodeColorButton->setKeys( mModel->merge(), mModel->variables() );
|
|
shadowColorButton->setKeys( mModel->merge(), mModel->variables() );
|
|
|
|
textInsertFieldButton->setKeys( mModel->merge(), mModel->variables() );
|
|
barcodeInsertFieldButton->setKeys( mModel->merge(), mModel->variables() );
|
|
imageFieldButton->setKeys( mModel->merge(), mModel->variables() );
|
|
}
|
|
}
|
|
|
|
|
|
void ObjectEditor::onObjectChanged()
|
|
{
|
|
if ( !mBlocked )
|
|
{
|
|
loadLineFillPage();
|
|
loadRectSizePage();
|
|
loadLineSizePage();
|
|
loadImagePage();
|
|
loadShadowPage();
|
|
}
|
|
}
|
|
|
|
|
|
void ObjectEditor::onObjectMoved()
|
|
{
|
|
if ( !mBlocked )
|
|
{
|
|
loadPositionPage();
|
|
}
|
|
}
|
|
|
|
|
|
void ObjectEditor::onObjectDestroyed()
|
|
{
|
|
disconnect( mObject, nullptr, this, nullptr );
|
|
mObject = nullptr;
|
|
}
|
|
|
|
|
|
void ObjectEditor::onLineControlsChanged()
|
|
{
|
|
if ( !mBlocked )
|
|
{
|
|
mBlocked = true;
|
|
|
|
mUndoRedoModel->checkpoint( tr("Line") );
|
|
|
|
mObject->setLineWidth( model::Distance::pt(lineWidthSpin->value()) );
|
|
mObject->setLineColorNode( lineColorButton->colorNode() );
|
|
|
|
mBlocked = false;
|
|
}
|
|
}
|
|
|
|
|
|
void ObjectEditor::onFillControlsChanged()
|
|
{
|
|
if ( !mBlocked )
|
|
{
|
|
mBlocked = true;
|
|
|
|
mUndoRedoModel->checkpoint( tr("Fill") );
|
|
|
|
mObject->setFillColorNode( fillColorButton->colorNode() );
|
|
|
|
mBlocked = false;
|
|
}
|
|
}
|
|
|
|
|
|
void ObjectEditor::onImageFileButtonClicked()
|
|
{
|
|
// Either use saved CWD from a previous open or the current file, if it exists
|
|
QString cwd = mImageCwd;
|
|
if ( !mObject->filenameNode().isField() )
|
|
{
|
|
QFileInfo fileInfo( mObject->filenameNode().data() );
|
|
if ( fileInfo.isFile() )
|
|
{
|
|
cwd = fileInfo.filePath();
|
|
}
|
|
}
|
|
|
|
QString filters =
|
|
tr("Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg)") + ";;" +
|
|
tr("All files (*)") + ";;" +
|
|
tr("PNG - Portable Network Graphics (*.png)") + ";;" +
|
|
tr("BMP - Windows Bitmap (*.bmp)") + ";;" +
|
|
tr("GIF - Graphics Interchange Format (*.gif)") + ";;" +
|
|
tr("JPEG - Joint Photographic Experts Group (*.jpg *.jpeg)") + ";;" +
|
|
tr("PBM - Portable Bitmap (*.pbm)") + ";;" +
|
|
tr("PGM - Portable Graymap (*.pgm)") + ";;" +
|
|
tr("PPM - Portable Pixmap (*.ppm)") + ";;" +
|
|
tr("SVG - Scalable Vector Graphics (*.svg)") + ";;" +
|
|
tr("XBM - X11 Bitmap (*.xbm)") + ";;" +
|
|
tr("XPM - X11 Pixmap (*.xpm)");
|
|
|
|
QString filename =
|
|
QFileDialog::getOpenFileName( this->window(),
|
|
tr("gLabels - Select image file"),
|
|
cwd, filters );
|
|
|
|
if ( !filename.isEmpty() )
|
|
{
|
|
mUndoRedoModel->checkpoint( tr("Set image") );
|
|
mObject->setFilenameNode( model::TextNode( false, filename ) );
|
|
|
|
// Save CWD for next open
|
|
QFileInfo fileInfo( filename );
|
|
mImageCwd = fileInfo.absolutePath();
|
|
}
|
|
}
|
|
|
|
|
|
void ObjectEditor::onImageKeySelected( QString key )
|
|
{
|
|
if ( mObject )
|
|
{
|
|
mUndoRedoModel->checkpoint( tr("Set image") );
|
|
mObject->setFilenameNode( model::TextNode( true, key ) );
|
|
}
|
|
}
|
|
|
|
|
|
void ObjectEditor::onPositionControlsChanged()
|
|
{
|
|
if ( !mBlocked )
|
|
{
|
|
mBlocked = true;
|
|
|
|
mUndoRedoModel->checkpoint( tr("Position") );
|
|
|
|
model::Distance x = model::Distance(posXSpin->value(), mUnits);
|
|
model::Distance y = model::Distance(posYSpin->value(), mUnits);
|
|
|
|
mObject->setPosition( x, y );
|
|
|
|
mBlocked = false;
|
|
}
|
|
}
|
|
|
|
|
|
void ObjectEditor::onRectSizeControlsChanged()
|
|
{
|
|
if ( !mBlocked )
|
|
{
|
|
mBlocked = true;
|
|
|
|
mUndoRedoModel->checkpoint( tr("Size") );
|
|
|
|
model::Distance spinW = model::Distance(sizeWSpin->value(), mUnits);
|
|
model::Distance spinH = model::Distance(sizeHSpin->value(), mUnits);
|
|
|
|
if ( sizeAspectCheck->isChecked() )
|
|
{
|
|
mObject->setLockAspectRatio( true );
|
|
if ( fabs(spinW - mObject->w()) > fabs(spinH - mObject->h()) )
|
|
{
|
|
mObject->setWHonorAspect( spinW );
|
|
sizeHSpin->setValue( mObject->h().inUnits(mUnits) );
|
|
}
|
|
else
|
|
{
|
|
mObject->setHHonorAspect( spinH );
|
|
sizeWSpin->setValue( mObject->w().inUnits(mUnits) );
|
|
}
|
|
}
|
|
else
|
|
{
|
|
mObject->setLockAspectRatio( false );
|
|
mObject->setSize( spinW, spinH );
|
|
}
|
|
|
|
mBlocked = false;
|
|
}
|
|
}
|
|
|
|
|
|
void ObjectEditor::onLineSizeControlsChanged()
|
|
{
|
|
if ( !mBlocked )
|
|
{
|
|
mBlocked = true;
|
|
|
|
mUndoRedoModel->checkpoint( tr("Size") );
|
|
|
|
model::Distance spinLength = model::Distance(sizeLineLengthSpin->value(), mUnits);
|
|
double spinAngleRads = qDegreesToRadians( sizeLineAngleSpin->value() );
|
|
|
|
mObject->setSize( spinLength*qCos(spinAngleRads),
|
|
spinLength*qSin(spinAngleRads) );
|
|
|
|
mBlocked = false;
|
|
}
|
|
}
|
|
|
|
|
|
void ObjectEditor::onTextControlsChanged()
|
|
{
|
|
if ( !mBlocked )
|
|
{
|
|
mBlocked = true;
|
|
|
|
mUndoRedoModel->checkpoint( tr("Text") );
|
|
|
|
QTextOption::WrapMode wrapMode;
|
|
switch (textWrapModeCombo->currentIndex())
|
|
{
|
|
case 0: wrapMode = QTextOption::WordWrap; break;
|
|
case 1: wrapMode = QTextOption::WrapAnywhere; break;
|
|
default: wrapMode = QTextOption::NoWrap; break;
|
|
}
|
|
|
|
mObject->setFontFamily( textFontFamilyCombo->currentText() );
|
|
mObject->setFontSize( textFontSizeSpin->value() );
|
|
mObject->setFontWeight( textFontBoldToggle->isChecked() ? QFont::Bold : QFont::Normal );
|
|
mObject->setFontItalicFlag( textFontItalicToggle->isChecked() );
|
|
mObject->setFontUnderlineFlag( textFontUnderlineToggle->isChecked() );
|
|
mObject->setTextColorNode( textColorButton->colorNode() );
|
|
mObject->setTextHAlign( Qt::AlignmentFlag( textHAlignGroup->checkedId() ) );
|
|
mObject->setTextVAlign( Qt::AlignmentFlag( textVAlignGroup->checkedId() ) );
|
|
mObject->setTextWrapMode( wrapMode );
|
|
mObject->setTextLineSpacing( textLineSpacingSpin->value() );
|
|
mObject->setTextAutoShrink( textAutoShrinkCheck->isChecked() );
|
|
mObject->setText( textEdit->toPlainText() );
|
|
|
|
mBlocked = false;
|
|
}
|
|
}
|
|
|
|
|
|
void ObjectEditor::onTextInsertFieldKeySelected( QString key )
|
|
{
|
|
textEdit->insertPlainText( "${" + key + "}" );
|
|
}
|
|
|
|
|
|
void ObjectEditor::onBarcodeControlsChanged()
|
|
{
|
|
if ( !mBlocked )
|
|
{
|
|
mBlocked = true;
|
|
|
|
mUndoRedoModel->checkpoint( tr("Barcode") );
|
|
|
|
barcode::Style bcStyle = barcodeStyleButton->bcStyle();
|
|
|
|
barcodeShowTextCheck->setEnabled( bcStyle.textOptional() );
|
|
barcodeChecksumCheck->setEnabled( bcStyle.checksumOptional() );
|
|
|
|
// May need to adjust current text flag, if style changed
|
|
bool textFlag = (barcodeShowTextCheck->isChecked() && bcStyle.canText())
|
|
|| (bcStyle.canText() && !bcStyle.textOptional());
|
|
barcodeShowTextCheck->setChecked( textFlag );
|
|
|
|
// May need to adjust current checksum flag, if style changed
|
|
bool csFlag = (barcodeChecksumCheck->isChecked() && bcStyle.canChecksum())
|
|
|| (bcStyle.canChecksum() && !bcStyle.checksumOptional());
|
|
barcodeChecksumCheck->setChecked( csFlag );
|
|
|
|
mObject->setBcStyle( bcStyle );
|
|
mObject->setBcTextFlag( textFlag );
|
|
mObject->setBcChecksumFlag( csFlag );
|
|
mObject->setBcColorNode( barcodeColorButton->colorNode() );
|
|
mObject->setBcData( barcodeDataEdit->toPlainText() );
|
|
|
|
mBlocked = false;
|
|
}
|
|
}
|
|
|
|
|
|
void ObjectEditor::onBarcodeInsertFieldKeySelected( QString key )
|
|
{
|
|
barcodeDataEdit->insertPlainText( "${" + key + "}" );
|
|
}
|
|
|
|
|
|
void ObjectEditor::onResetImageSize()
|
|
{
|
|
mUndoRedoModel->checkpoint( tr("Reset") );
|
|
|
|
mObject->setSize( mObject->naturalSize() );
|
|
}
|
|
|
|
|
|
void ObjectEditor::onShadowControlsChanged()
|
|
{
|
|
if ( !mBlocked )
|
|
{
|
|
mBlocked = true;
|
|
|
|
mUndoRedoModel->checkpoint( tr("Shadow") );
|
|
|
|
mObject->setShadow( shadowEnableCheck->isChecked() );
|
|
mObject->setShadowX( model::Distance(shadowXSpin->value(), mUnits) );
|
|
mObject->setShadowY( model::Distance(shadowYSpin->value(), mUnits) );
|
|
mObject->setShadowColorNode( shadowColorButton->colorNode() );
|
|
mObject->setShadowOpacity( shadowOpacitySpin->value()/100.0 );
|
|
|
|
mBlocked = false;
|
|
}
|
|
}
|
|
|
|
|
|
void ObjectEditor::onChanged()
|
|
{
|
|
if ( !mBlocked )
|
|
{
|
|
mBlocked = true;
|
|
|
|
qDebug() << "Form changed.";
|
|
|
|
mBlocked = false;
|
|
}
|
|
}
|
|
|
|
} // namespace glabels
|