Hooked up barcode data controls in object editor.

This commit is contained in:
Jim Evins
2017-05-03 22:20:09 -04:00
parent b29dd58c6b
commit c2052abf43
8 changed files with 153 additions and 327 deletions
+11 -18
View File
@@ -65,7 +65,7 @@ namespace glabels
mBcTextFlag = mBcStyle.canText();
mBcChecksumFlag = mBcStyle.canChecksum();
mBcFormatDigits = mBcStyle.preferedN();
mBcDataNode = TextNode( false, mBcStyle.defaultDigits() );
mBcData = mBcStyle.defaultDigits();
mBcColorNode = ColorNode( Qt::black );
update(); // Initialize cached editor layouts
@@ -82,7 +82,7 @@ namespace glabels
mBcTextFlag = object->mBcTextFlag;
mBcChecksumFlag = object->mBcChecksumFlag;
mBcFormatDigits = object->mBcFormatDigits;
mBcDataNode = object->mBcDataNode;
mBcData = object->mBcData;
mBcColorNode = object->mBcColorNode;
mEditorBarcode = nullptr;
@@ -117,22 +117,22 @@ namespace glabels
///
/// bcDataNode Property Getter
/// bcData Property Getter
///
TextNode LabelModelBarcodeObject::bcDataNode() const
QString LabelModelBarcodeObject::bcData() const
{
return mBcDataNode;
return mBcData;
}
///
/// bcDataNode Property Setter
/// bcData Property Setter
///
void LabelModelBarcodeObject::setBcDataNode( const TextNode& value )
void LabelModelBarcodeObject::setBcData( const QString& value )
{
if ( mBcDataNode != value )
if ( mBcData != value )
{
mBcDataNode = value;
mBcData = value;
update();
emit changed();
}
@@ -331,14 +331,7 @@ namespace glabels
mEditorBarcode->setChecksum(mBcChecksumFlag);
mEditorBarcode->setShowText(mBcTextFlag);
if ( mBcDataNode.isField() )
{
mEditorBarcode->build( mBcStyle.defaultDigits().toStdString(), mW.pt(), mH.pt() );
}
else
{
mEditorBarcode->build( mBcDataNode.data().toStdString(), mW.pt(), mH.pt() );
}
mEditorBarcode->build( mBcData.toStdString(), mW.pt(), mH.pt() );
mW = Distance::pt( mEditorBarcode->width() );
mH = Distance::pt( mEditorBarcode->height() );
@@ -386,7 +379,7 @@ namespace glabels
bc->setChecksum(mBcChecksumFlag);
bc->setShowText(mBcTextFlag);
bc->build( mBcDataNode.text(record).toStdString(), mW.pt(), mH.pt() );
bc->build( mBcData.toStdString(), mW.pt(), mH.pt() );
glbarcode::QtRenderer renderer(painter);
bc->render( renderer );
+4 -4
View File
@@ -57,10 +57,10 @@ namespace glabels
///////////////////////////////////////////////////////////////
public:
//
// Barcode Property: bcDataNode
// Barcode Property: bcData
//
TextNode bcDataNode() const override;
void setBcDataNode( const TextNode &value ) override;
QString bcData() const override;
void setBcData( const QString &value ) override;
//
@@ -134,7 +134,7 @@ namespace glabels
bool mBcTextFlag;
bool mBcChecksumFlag;
int mBcFormatDigits;
TextNode mBcDataNode;
QString mBcData;
ColorNode mBcColorNode;
glbarcode::Barcode* mEditorBarcode;
+4 -4
View File
@@ -710,12 +710,12 @@ namespace glabels
///
/// Virtual Barcode Data Node Property Default Getter
/// Virtual Barcode Data Property Default Getter
/// (Overridden by concrete class)
///
TextNode LabelModelObject::bcDataNode() const
QString LabelModelObject::bcData() const
{
return TextNode();
return QString();
}
@@ -723,7 +723,7 @@ namespace glabels
/// Virtual Barcode Data Node Property Default Setter
/// (Overridden by concrete class)
///
void LabelModelObject::setBcDataNode( const TextNode &value )
void LabelModelObject::setBcData( const QString& value )
{
// empty
}
+3 -3
View File
@@ -299,10 +299,10 @@ namespace glabels
///////////////////////////////////////////////////////////////
public:
//
// Virtual Barcode Property: bcDataNode
// Virtual Barcode Property: bcData
//
virtual TextNode bcDataNode() const;
virtual void setBcDataNode( const TextNode &value );
virtual QString bcData() const;
virtual void setBcData( const QString& value );
//
+10
View File
@@ -67,6 +67,7 @@ namespace glabels
shadowColorButton->init( "Default", QColor(0,0,0,255), QColor(0,0,0,255) );
textInsertFieldCombo->setName( "Insert Field" );
barcodeInsertFieldCombo->setName( "Insert Field" );
imageFieldCombo->setName( "Key" );
setEnabled( false );
@@ -251,6 +252,7 @@ namespace glabels
barcodeShowTextCheck->setChecked( mObject->bcTextFlag() );
barcodeChecksumCheck->setChecked( mObject->bcChecksumFlag() );
barcodeColorButton->setColorNode( mObject->bcColorNode() );
barcodeDataEdit->setText( mObject->bcData() );
mBlocked = false;
}
@@ -475,6 +477,7 @@ namespace glabels
lineColorButton->setKeys( keys );
fillColorButton->setKeys( keys );
textInsertFieldCombo->setKeys( keys );
barcodeInsertFieldCombo->setKeys( keys );
imageFieldCombo->setKeys( keys );
shadowColorButton->setKeys( keys );
}
@@ -702,12 +705,19 @@ namespace glabels
mObject->setBcTextFlag( barcodeShowTextCheck->isChecked() );
mObject->setBcChecksumFlag( barcodeChecksumCheck->isChecked() );
mObject->setBcColorNode( barcodeColorButton->colorNode() );
mObject->setBcData( barcodeDataEdit->toPlainText() );
mBlocked = false;
}
}
void ObjectEditor::onBarcodeInsertFieldKeySelected( QString key )
{
barcodeDataEdit->insertPlainText( "${" + key + "}" );
}
void ObjectEditor::onResetImageSize()
{
mObject->setSize( mObject->naturalSize() );
+1
View File
@@ -95,6 +95,7 @@ namespace glabels
void onTextControlsChanged();
void onTextInsertFieldKeySelected( QString key );
void onBarcodeControlsChanged();
void onBarcodeInsertFieldKeySelected( QString key );
void onResetImageSize();
void onShadowControlsChanged();
void onChanged();
+58 -211
View File
@@ -35,7 +35,7 @@
<item row="1" column="0">
<widget class="QTabWidget" name="notebook">
<property name="currentIndex">
<number>0</number>
<number>1</number>
</property>
<widget class="QWidget" name="textPage">
<attribute name="title">
@@ -631,169 +631,44 @@
<item row="1" column="0">
<widget class="QGroupBox" name="groupBox_8">
<property name="title">
<string>Data</string>
<string>Barcode data</string>
</property>
<layout class="QGridLayout" name="gridLayout_10">
<layout class="QGridLayout" name="gridLayout_11">
<item row="0" column="0">
<layout class="QFormLayout" name="formLayout_12">
<layout class="QGridLayout" name="gridLayout_10">
<item row="0" column="0">
<layout class="QVBoxLayout" name="verticalLayout_2">
<item>
<widget class="QRadioButton" name="barcodeLiteralRadio">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>80</width>
<height>0</height>
</size>
</property>
<property name="text">
<string>Literal:</string>
</property>
</widget>
</item>
<item>
<spacer name="verticalSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
<item row="0" column="1">
<widget class="QPlainTextEdit" name="barcodeTextEdit">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="maximumSize">
<size>
<width>240</width>
<height>100</height>
</size>
</property>
</widget>
<widget class="QTextEdit" name="barcodeDataEdit"/>
</item>
<item row="1" column="0">
<layout class="QVBoxLayout" name="verticalLayout_4">
<layout class="QHBoxLayout" name="horizontalLayout_15">
<item>
<widget class="QRadioButton" name="barcodeKeyRadio">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>80</width>
<height>0</height>
</size>
</property>
<property name="text">
<string>Key:</string>
</property>
</widget>
</item>
<item>
<spacer name="verticalSpacer_2">
<spacer name="horizontalSpacer_3">
<property name="orientation">
<enum>Qt::Vertical</enum>
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
<item row="1" column="1">
<layout class="QVBoxLayout" name="verticalLayout_3">
<item>
<layout class="QHBoxLayout" name="horizontalLayout_16">
<item>
<widget class="QPushButton" name="barcodeFieldButton">
<property name="text">
<string/>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_13">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout>
<widget class="glabels::FieldButton" name="barcodeInsertFieldCombo"/>
</item>
<item>
<layout class="QGridLayout" name="gridLayout_11">
<item row="0" column="0">
<widget class="QLabel" name="label_21">
<property name="text">
<string>format:</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QLabel" name="barcodeFormatLabel">
<property name="text">
<string>0000000000</string>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="label_24">
<property name="text">
<string>digits:</string>
</property>
</widget>
</item>
<item row="1" column="1">
<layout class="QHBoxLayout" name="horizontalLayout_15">
<item>
<widget class="QSpinBox" name="barcodeDigitsSpin"/>
</item>
<item>
<spacer name="horizontalSpacer_12">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
</layout>
<spacer name="horizontalSpacer_12">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
@@ -1610,6 +1485,9 @@
<class>glabels::FieldButton</class>
<extends>QComboBox</extends>
<header>FieldButton.h</header>
<slots>
<signal>keySelected(QString)</signal>
</slots>
</customwidget>
</customwidgets>
<resources>
@@ -2176,70 +2054,6 @@
</hint>
</hints>
</connection>
<connection>
<sender>barcodeLiteralRadio</sender>
<signal>toggled(bool)</signal>
<receiver>ObjectEditor</receiver>
<slot>onBarcodeControlsChanged()</slot>
<hints>
<hint type="sourcelabel">
<x>68</x>
<y>302</y>
</hint>
<hint type="destinationlabel">
<x>5</x>
<y>331</y>
</hint>
</hints>
</connection>
<connection>
<sender>barcodeKeyRadio</sender>
<signal>toggled(bool)</signal>
<receiver>ObjectEditor</receiver>
<slot>onBarcodeControlsChanged()</slot>
<hints>
<hint type="sourcelabel">
<x>39</x>
<y>401</y>
</hint>
<hint type="destinationlabel">
<x>2</x>
<y>377</y>
</hint>
</hints>
</connection>
<connection>
<sender>barcodeDigitsSpin</sender>
<signal>valueChanged(int)</signal>
<receiver>ObjectEditor</receiver>
<slot>onBarcodeControlsChanged()</slot>
<hints>
<hint type="sourcelabel">
<x>216</x>
<y>485</y>
</hint>
<hint type="destinationlabel">
<x>397</x>
<y>532</y>
</hint>
</hints>
</connection>
<connection>
<sender>barcodeTextEdit</sender>
<signal>textChanged()</signal>
<receiver>ObjectEditor</receiver>
<slot>onBarcodeControlsChanged()</slot>
<hints>
<hint type="sourcelabel">
<x>242</x>
<y>333</y>
</hint>
<hint type="destinationlabel">
<x>4</x>
<y>369</y>
</hint>
</hints>
</connection>
<connection>
<sender>barcodeColorButton</sender>
<signal>colorChanged()</signal>
@@ -2256,6 +2070,38 @@
</hint>
</hints>
</connection>
<connection>
<sender>barcodeDataEdit</sender>
<signal>textChanged()</signal>
<receiver>ObjectEditor</receiver>
<slot>onBarcodeControlsChanged()</slot>
<hints>
<hint type="sourcelabel">
<x>255</x>
<y>405</y>
</hint>
<hint type="destinationlabel">
<x>398</x>
<y>534</y>
</hint>
</hints>
</connection>
<connection>
<sender>barcodeInsertFieldCombo</sender>
<signal>keySelected(QString)</signal>
<receiver>ObjectEditor</receiver>
<slot>onBarcodeInsertFieldKeySelected(QString)</slot>
<hints>
<hint type="sourcelabel">
<x>203</x>
<y>486</y>
</hint>
<hint type="destinationlabel">
<x>403</x>
<y>625</y>
</hint>
</hints>
</connection>
</connections>
<slots>
<slot>onChanged()</slot>
@@ -2271,5 +2117,6 @@
<slot>onTextControlsChanged()</slot>
<slot>onTextInsertFieldKeySelected(QString)</slot>
<slot>onBarcodeControlsChanged()</slot>
<slot>onBarcodeInsertFieldKeySelected(QString)</slot>
</slots>
</ui>
+62 -87
View File
@@ -205,9 +205,9 @@
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="392"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="585"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="947"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="1039"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="1476"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="822"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="914"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="1351"/>
<source>Color:</source>
<translation type="unfinished"></translation>
</message>
@@ -243,164 +243,139 @@
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="634"/>
<source>Data</source>
<source>Barcode data</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="656"/>
<source>Literal:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="708"/>
<source>Key:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="758"/>
<source>format:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="765"/>
<source>0000000000</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="772"/>
<source>digits:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="809"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="684"/>
<source>Image</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="815"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="690"/>
<source>File</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="838"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="713"/>
<source>None</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="853"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="728"/>
<source>Select File...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="866"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="741"/>
<source>or</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="880"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="755"/>
<source>Select Merge Field...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="909"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="784"/>
<source>Line/Fill</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="917"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="792"/>
<source>Line</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="934"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="1320"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="809"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="1195"/>
<source>Width:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="1025"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="900"/>
<source>Fill</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="1093"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="968"/>
<source>Position/Size</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="1099"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="974"/>
<source>Position</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="1113"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="988"/>
<source>X:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="1133"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="1008"/>
<source>Y:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="1165"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="1247"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="1040"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="1122"/>
<source>Size</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="1179"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="1054"/>
<source>Length:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="1199"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="1074"/>
<source>Angle:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="1262"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="1137"/>
<source>Original size:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="1269"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="1144"/>
<source>Reset</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="1361"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="1236"/>
<source>Lock aspect ratio</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="1376"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="1251"/>
<source>Height:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="1402"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="1408"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="1277"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="1283"/>
<source>Shadow</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="1422"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="1297"/>
<source>X offset:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="1449"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="1324"/>
<source>Y offset:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="1483"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="1358"/>
<source>Opacity:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ui/ObjectEditor.ui" line="1592"/>
<location filename="../glabels/ui/ObjectEditor.ui" line="1467"/>
<source>Object properties</source>
<translation type="unfinished"></translation>
</message>
@@ -1807,139 +1782,139 @@
<context>
<name>glabels::ObjectEditor</name>
<message>
<location filename="../glabels/ObjectEditor.cpp" line="192"/>
<location filename="../glabels/ObjectEditor.cpp" line="193"/>
<source>Original size</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ObjectEditor.cpp" line="333"/>
<location filename="../glabels/ObjectEditor.cpp" line="335"/>
<source>Box object properties</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ObjectEditor.cpp" line="354"/>
<location filename="../glabels/ObjectEditor.cpp" line="356"/>
<source>Ellipse object properties</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ObjectEditor.cpp" line="375"/>
<location filename="../glabels/ObjectEditor.cpp" line="377"/>
<source>Image object properties</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ObjectEditor.cpp" line="395"/>
<location filename="../glabels/ObjectEditor.cpp" line="397"/>
<source>Line object properties</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ObjectEditor.cpp" line="416"/>
<location filename="../glabels/ObjectEditor.cpp" line="418"/>
<source>Text object properties</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ObjectEditor.cpp" line="435"/>
<location filename="../glabels/ObjectEditor.cpp" line="437"/>
<source>Barcode object properties</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ObjectEditor.cpp" line="519"/>
<location filename="../glabels/ObjectEditor.cpp" line="522"/>
<source>Line</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ObjectEditor.cpp" line="535"/>
<location filename="../glabels/ObjectEditor.cpp" line="538"/>
<source>Fill</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ObjectEditor.cpp" line="558"/>
<location filename="../glabels/ObjectEditor.cpp" line="561"/>
<source>Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ObjectEditor.cpp" line="559"/>
<location filename="../glabels/ObjectEditor.cpp" line="562"/>
<source>All files (*)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ObjectEditor.cpp" line="560"/>
<location filename="../glabels/ObjectEditor.cpp" line="563"/>
<source>PNG - Portable Network Graphics (*.png)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ObjectEditor.cpp" line="561"/>
<location filename="../glabels/ObjectEditor.cpp" line="564"/>
<source>BMP - Windows Bitmap (*.bmp)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ObjectEditor.cpp" line="562"/>
<location filename="../glabels/ObjectEditor.cpp" line="565"/>
<source>GIF - Graphics Interchange Format (*.gif)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ObjectEditor.cpp" line="563"/>
<location filename="../glabels/ObjectEditor.cpp" line="566"/>
<source>JPEG - Joint Photographic Experts Group (*.jpg *.jpeg)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ObjectEditor.cpp" line="564"/>
<location filename="../glabels/ObjectEditor.cpp" line="567"/>
<source>PBM - Portable Bitmap (*.pbm)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ObjectEditor.cpp" line="565"/>
<location filename="../glabels/ObjectEditor.cpp" line="568"/>
<source>PGM - Portable Graymap (*.pgm)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ObjectEditor.cpp" line="566"/>
<location filename="../glabels/ObjectEditor.cpp" line="569"/>
<source>PPM - Portable Pixmap (*.ppm)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ObjectEditor.cpp" line="567"/>
<location filename="../glabels/ObjectEditor.cpp" line="570"/>
<source>SVG - Scalable Vector Graphics (*.svg)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ObjectEditor.cpp" line="568"/>
<location filename="../glabels/ObjectEditor.cpp" line="571"/>
<source>XBM - X11 Bitmap (*.xbm)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ObjectEditor.cpp" line="569"/>
<location filename="../glabels/ObjectEditor.cpp" line="572"/>
<source>XPM - X11 Pixmap (*.xpm)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ObjectEditor.cpp" line="573"/>
<location filename="../glabels/ObjectEditor.cpp" line="576"/>
<source>gLabels - Select image file</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ObjectEditor.cpp" line="578"/>
<location filename="../glabels/ObjectEditor.cpp" line="590"/>
<location filename="../glabels/ObjectEditor.cpp" line="581"/>
<location filename="../glabels/ObjectEditor.cpp" line="593"/>
<source>Set image</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ObjectEditor.cpp" line="601"/>
<location filename="../glabels/ObjectEditor.cpp" line="604"/>
<source>Move</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ObjectEditor.cpp" line="619"/>
<location filename="../glabels/ObjectEditor.cpp" line="653"/>
<location filename="../glabels/ObjectEditor.cpp" line="622"/>
<location filename="../glabels/ObjectEditor.cpp" line="656"/>
<source>Size</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ObjectEditor.cpp" line="672"/>
<location filename="../glabels/ObjectEditor.cpp" line="675"/>
<source>Text</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../glabels/ObjectEditor.cpp" line="723"/>
<location filename="../glabels/ObjectEditor.cpp" line="733"/>
<source>Shadow</source>
<translation type="unfinished"></translation>
</message>