Merge branch 'RefactorPrint'
- Modifies printing model to be similar to glabels-3.x. - Allow simple projects to print by-the-page (#51) - Added collated vs uncollated document merges - Added ability to separate merge groups by page - Updated man pages - Updated misc developer documentation
This commit is contained in:
+69
-16
@@ -70,10 +70,7 @@ namespace glabels
|
||||
|
||||
connect( mModel, SIGNAL(changed()), this, SLOT(onModelChanged()) );
|
||||
|
||||
copiesSpin->setRange( 1, 100*mModel->frame()->nLabels() );
|
||||
copiesStartSpin->setRange( 1, mModel->frame()->nLabels() );
|
||||
|
||||
onFormChanged();
|
||||
onModelChanged();
|
||||
}
|
||||
|
||||
|
||||
@@ -82,10 +79,15 @@ namespace glabels
|
||||
///
|
||||
void PrintView::onModelChanged()
|
||||
{
|
||||
copiesSpin->setRange( 1, 100*mModel->frame()->nLabels() );
|
||||
copiesStartSpin->setRange( 1, mModel->frame()->nLabels() );
|
||||
printRangeStartPositionSpin->setRange( 1, mModel->frame()->nLabels() );
|
||||
printRangeLastPositionSpin->setRange( 1, mModel->frame()->nLabels() );
|
||||
mergeStartPositionSpin->setRange( 1, mModel->frame()->nLabels() );
|
||||
|
||||
updateView();
|
||||
printRangeBox->setVisible( mModel->merge()->keys().empty() );
|
||||
mergeBox->setVisible( !mModel->merge()->keys().empty() );
|
||||
mergeOnlyOptions->setVisible( !mModel->merge()->keys().empty() );
|
||||
|
||||
onFormChanged();
|
||||
}
|
||||
|
||||
|
||||
@@ -98,22 +100,24 @@ namespace glabels
|
||||
{
|
||||
if ( mRenderer.nItems() == 1 )
|
||||
{
|
||||
copiesDescriptionLabel->setText( tr("(Will print a total of 1 item on 1 page.)") );
|
||||
printDescriptionLabel->setText( tr("(Will print a total of 1 item on 1 page.)") );
|
||||
}
|
||||
else
|
||||
{
|
||||
copiesDescriptionLabel->setText( tr("(Will print a total of %1 items on 1 page.)")
|
||||
.arg(mRenderer.nItems()) );
|
||||
printDescriptionLabel->setText( tr("(Will print a total of %1 items on 1 page.)")
|
||||
.arg(mRenderer.nItems()) );
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
copiesDescriptionLabel->setText( tr("(Will print a total of %1 items on %2 pages.)")
|
||||
.arg(mRenderer.nItems()).arg(mRenderer.nPages()) );
|
||||
printDescriptionLabel->setText( tr("(Will print a total of %1 items on %2 pages.)")
|
||||
.arg(mRenderer.nItems()).arg(mRenderer.nPages()) );
|
||||
}
|
||||
|
||||
pageSpin->setRange( 1, mRenderer.nPages() );
|
||||
nPagesLabel->setText( QString::number( mRenderer.nPages() ) );
|
||||
|
||||
mRenderer.setIPage( pageSpin->value() - 1 ); // Update preview
|
||||
}
|
||||
|
||||
|
||||
@@ -126,15 +130,64 @@ namespace glabels
|
||||
{
|
||||
mBlocked = true;
|
||||
|
||||
mRenderer.setNCopies( copiesSpin->value() );
|
||||
mRenderer.setStartLabel( copiesStartSpin->value() - 1 );
|
||||
if ( mModel->merge()->keys().empty() )
|
||||
{
|
||||
// Simple project (no merge)
|
||||
if ( printRangePagesRadio->isChecked() )
|
||||
{
|
||||
// Print full sheets of labels
|
||||
int nItemsPerPage = mModel->frame()->nLabels();
|
||||
|
||||
printRangePagesSpin->setEnabled( true );
|
||||
|
||||
printRangeStartPositionSpin->setEnabled( false );
|
||||
printRangeLastPositionSpin->setEnabled( false );
|
||||
|
||||
printRangeStartPositionSpin->setMaximum( nItemsPerPage );
|
||||
printRangeLastPositionSpin->setMinimum( 1 );
|
||||
|
||||
printRangeStartPositionSpin->setValue( 1 );
|
||||
printRangeLastPositionSpin->setValue( nItemsPerPage );
|
||||
|
||||
mRenderer.setNCopies( printRangePagesSpin->value()*nItemsPerPage );
|
||||
mRenderer.setStartItem( 0 );
|
||||
}
|
||||
else
|
||||
{
|
||||
// Print a partial sheet of labels
|
||||
int iStart = printRangeStartPositionSpin->value();
|
||||
int iLast = printRangeLastPositionSpin->value();
|
||||
|
||||
printRangePagesSpin->setEnabled( false );
|
||||
|
||||
printRangeStartPositionSpin->setEnabled( true );
|
||||
printRangeLastPositionSpin->setEnabled( true );
|
||||
|
||||
printRangeStartPositionSpin->setMaximum( iLast );
|
||||
printRangeLastPositionSpin->setMinimum( iStart );
|
||||
|
||||
mRenderer.setNCopies( iLast - iStart + 1 );
|
||||
mRenderer.setStartItem( iStart - 1 );
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
// Project with merge
|
||||
bool isMultipleCopies = mergeCopiesSpin->value() > 1;
|
||||
|
||||
mergeCollateCombo->setEnabled ( isMultipleCopies );
|
||||
mergeGroupCombo->setEnabled ( isMultipleCopies );
|
||||
|
||||
mRenderer.setNCopies( mergeCopiesSpin->value() );
|
||||
mRenderer.setIsCollated( mergeCollateCombo->currentIndex() == 1 );
|
||||
mRenderer.setAreGroupsContiguous( mergeGroupCombo->currentIndex() == 0 );
|
||||
mRenderer.setStartItem( mergeStartPositionSpin->value() - 1 );
|
||||
}
|
||||
|
||||
mRenderer.setPrintOutlines( printOutlinesCheck->isChecked() );
|
||||
mRenderer.setPrintCropMarks( printCropMarksCheck->isChecked() );
|
||||
mRenderer.setPrintReverse( printReverseCheck->isChecked() );
|
||||
|
||||
mRenderer.setIPage( pageSpin->value() - 1 );
|
||||
|
||||
updateView();
|
||||
|
||||
mBlocked = false;
|
||||
|
||||
@@ -473,7 +473,7 @@ namespace glabels
|
||||
|
||||
model::PageRenderer renderer( sheet );
|
||||
renderer.setNCopies( sheet->frame()->nLabels() );
|
||||
renderer.setStartLabel( 0 );
|
||||
renderer.setStartItem( 0 );
|
||||
renderer.setPrintOutlines( true );
|
||||
|
||||
QPrinter printer( QPrinter::HighResolution );
|
||||
|
||||
@@ -95,13 +95,17 @@
|
||||
<file>icons/flat/24x24/glabels-valign-text-middle.svg</file>
|
||||
<file>icons/flat/24x24/glabels-valign-text-top.svg</file>
|
||||
|
||||
<file>icons/flat/32x32/glabels-collated.svg</file>
|
||||
<file>icons/flat/32x32/glabels-file-new.svg</file>
|
||||
<file>icons/flat/32x32/glabels-file-open.svg</file>
|
||||
<file>icons/flat/32x32/glabels-file-recent.svg</file>
|
||||
<file>icons/flat/32x32/glabels-label-orientation-horiz.svg</file>
|
||||
<file>icons/flat/32x32/glabels-label-orientation-vert.svg</file>
|
||||
<file>icons/flat/32x32/glabels-merge-group-contiguous.svg</file>
|
||||
<file>icons/flat/32x32/glabels-merge-group-page.svg</file>
|
||||
<file>icons/flat/32x32/glabels-print.svg</file>
|
||||
<file>icons/flat/32x32/glabels-select-product.svg</file>
|
||||
<file>icons/flat/32x32/glabels-uncollated.svg</file>
|
||||
<file>icons/apps/32x32/glabels.svg</file>
|
||||
|
||||
<file>icons/flat/48x48/glabels-edit.svg</file>
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="32" >
|
||||
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#333333;stroke-width:1;stroke-opacity:1"
|
||||
height="8" width="20" x="4.5" y="2.5" rx="1" ry="1" />
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#333333;stroke-width:1;stroke-opacity:1"
|
||||
height="8" width="20" x="6.5" y="4.5" rx="1" ry="1" />
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#333333;stroke-width:1;stroke-opacity:1"
|
||||
height="8" width="20" x="8.5" y="6.5" rx="1" ry="1" />
|
||||
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#333333;stroke-width:1;stroke-opacity:1"
|
||||
height="8" width="20" x="4.5" y="17.5" rx="1" ry="1" />
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#333333;stroke-width:1;stroke-opacity:1"
|
||||
height="8" width="20" x="6.5" y="19.5" rx="1" ry="1" />
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#333333;stroke-width:1;stroke-opacity:1"
|
||||
height="8" width="20" x="8.5" y="21.5" rx="1" ry="1" />
|
||||
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
@@ -0,0 +1,45 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="32" >
|
||||
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#333333;stroke-width:1;stroke-opacity:1"
|
||||
height="24" width="18" x="6.5" y="2.5" />
|
||||
|
||||
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#333333;stroke-width:1;stroke-opacity:1"
|
||||
height="24" width="18" x="8.5" y="4.5" />
|
||||
|
||||
|
||||
<rect
|
||||
style="fill:#666666;fill-opacity:1;stroke:none"
|
||||
height="4" width="6" x="11" y="7" />
|
||||
|
||||
<rect
|
||||
style="fill:#666666;fill-opacity:1;stroke:none"
|
||||
height="4" width="6" x="18" y="7" />
|
||||
|
||||
<rect
|
||||
style="fill:#666666;fill-opacity:1;stroke:none"
|
||||
height="4" width="6" x="11" y="12" />
|
||||
|
||||
<rect
|
||||
style="fill:#666666;fill-opacity:1;stroke:none"
|
||||
height="4" width="6" x="18" y="12" />
|
||||
|
||||
<rect
|
||||
style="fill:#666666;fill-opacity:1;stroke:none"
|
||||
height="4" width="6" x="11" y="17" />
|
||||
|
||||
<rect
|
||||
style="fill:#666666;fill-opacity:1;stroke:none"
|
||||
height="4" width="6" x="18" y="17" />
|
||||
|
||||
<rect
|
||||
style="fill:#666666;fill-opacity:1;stroke:none"
|
||||
height="4" width="6" x="11" y="22" />
|
||||
|
||||
<rect
|
||||
style="fill:#666666;fill-opacity:1;stroke:none"
|
||||
height="4" width="6" x="18" y="22" />
|
||||
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,30 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="32" >
|
||||
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#333333;stroke-width:1;stroke-opacity:1"
|
||||
height="24" width="18" x="5.5" y="1.5" />
|
||||
|
||||
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#333333;stroke-width:1;stroke-opacity:1"
|
||||
height="24" width="18" x="7.5" y="3.5" />
|
||||
|
||||
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#333333;stroke-width:1;stroke-opacity:1"
|
||||
height="24" width="18" x="9.5" y="5.5" />
|
||||
|
||||
|
||||
<rect
|
||||
style="fill:#666666;fill-opacity:1;stroke:none"
|
||||
height="4" width="6" x="12" y="8" />
|
||||
|
||||
<rect
|
||||
style="fill:#666666;fill-opacity:1;stroke:none"
|
||||
height="4" width="6" x="19" y="8" />
|
||||
|
||||
<rect
|
||||
style="fill:#666666;fill-opacity:1;stroke:none"
|
||||
height="4" width="6" x="12" y="13" />
|
||||
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 835 B |
@@ -0,0 +1,19 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="32" >
|
||||
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#333333;stroke-width:1;stroke-opacity:1"
|
||||
height="8" width="20" x="2.5" y="7.5" rx="1" ry="1" />
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#333333;stroke-width:1;stroke-opacity:1"
|
||||
height="8" width="20" x="4.5" y="9.5" rx="1" ry="1" />
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#333333;stroke-width:1;stroke-opacity:1"
|
||||
height="8" width="20" x="6.5" y="11.5" rx="1" ry="1" />
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#333333;stroke-width:1;stroke-opacity:1"
|
||||
height="8" width="20" x="8.5" y="13.5" rx="1" ry="1" />
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#333333;stroke-width:1;stroke-opacity:1"
|
||||
height="8" width="20" x="10.5" y="15.5" rx="1" ry="1" />
|
||||
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 872 B |
+418
-81
@@ -7,7 +7,7 @@
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>852</width>
|
||||
<height>792</height>
|
||||
<height>796</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="sizePolicy">
|
||||
@@ -22,6 +22,9 @@
|
||||
<layout class="QHBoxLayout" name="horizontalLayout" stretch="0,0,1">
|
||||
<item>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_2">
|
||||
<property name="spacing">
|
||||
<number>9</number>
|
||||
</property>
|
||||
<property name="sizeConstraint">
|
||||
<enum>QLayout::SetDefaultConstraint</enum>
|
||||
</property>
|
||||
@@ -51,7 +54,7 @@
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QGroupBox" name="copiesBox">
|
||||
<widget class="QGroupBox" name="printRangeBox">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
@@ -71,26 +74,29 @@
|
||||
</size>
|
||||
</property>
|
||||
<property name="title">
|
||||
<string>Copies</string>
|
||||
<string>Print range</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_4">
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_5">
|
||||
<property name="spacing">
|
||||
<number>9</number>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QLabel" name="label_4">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<widget class="QRadioButton" name="printRangePagesRadio">
|
||||
<property name="text">
|
||||
<string>Copies:</string>
|
||||
<string>Pages</string>
|
||||
</property>
|
||||
<property name="checked">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<attribute name="buttonGroup">
|
||||
<string notr="true">buttonGroup</string>
|
||||
</attribute>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QSpinBox" name="copiesSpin">
|
||||
<widget class="QSpinBox" name="printRangePagesSpin">
|
||||
<property name="buttonSymbols">
|
||||
<enum>QAbstractSpinBox::UpDownArrows</enum>
|
||||
</property>
|
||||
@@ -101,7 +107,7 @@
|
||||
<number>1</number>
|
||||
</property>
|
||||
<property name="maximum">
|
||||
<number>9999</number>
|
||||
<number>250</number>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@@ -121,48 +127,67 @@
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_4">
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
||||
<item>
|
||||
<widget class="QLabel" name="label_2">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<widget class="QRadioButton" name="printRangePositionsRadio">
|
||||
<property name="text">
|
||||
<string>Start on position:</string>
|
||||
<string>Positions</string>
|
||||
</property>
|
||||
<attribute name="buttonGroup">
|
||||
<string notr="true">buttonGroup</string>
|
||||
</attribute>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QSpinBox" name="copiesStartSpin">
|
||||
<widget class="QSpinBox" name="printRangeStartPositionSpin">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
|
||||
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>60</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
|
||||
</property>
|
||||
<property name="minimum">
|
||||
<number>1</number>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="label_3">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<widget class="QLabel" name="label_4">
|
||||
<property name="text">
|
||||
<string>on 1st page</string>
|
||||
<string>to</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="horizontalSpacer_2">
|
||||
<widget class="QSpinBox" name="printRangeLastPositionSpin">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>60</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="minimum">
|
||||
<number>1</number>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="horizontalSpacer_6">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
@@ -176,29 +201,114 @@
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_7">
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QGroupBox" name="mergeBox">
|
||||
<property name="title">
|
||||
<string>Merge control</string>
|
||||
</property>
|
||||
<layout class="QGridLayout" name="gridLayout">
|
||||
<item row="0" column="0">
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
||||
<property name="spacing">
|
||||
<number>9</number>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QLabel" name="copiesDescriptionLabel">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="MinimumExpanding" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>330</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<widget class="QLabel" name="label">
|
||||
<property name="text">
|
||||
<string notr="true">(Will print a total of xxxx items on nnn pages.) </string>
|
||||
<string>Copies:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QSpinBox" name="mergeCopiesSpin">
|
||||
<property name="minimum">
|
||||
<number>1</number>
|
||||
</property>
|
||||
<property name="maximum">
|
||||
<number>9999</number>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="horizontalSpacer_3">
|
||||
<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>
|
||||
<item row="1" column="0">
|
||||
<widget class="QComboBox" name="mergeCollateCombo">
|
||||
<property name="styleSheet">
|
||||
<string notr="true">text-align:left; padding:3px;</string>
|
||||
</property>
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
<width>32</width>
|
||||
<height>32</height>
|
||||
</size>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Uncollated (e.g. 1,1,1 2,2,2 3,3,3)</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../icons.qrc">
|
||||
<normaloff>:/icons/flat/32x32/glabels-uncollated.svg</normaloff>:/icons/flat/32x32/glabels-uncollated.svg</iconset>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Collated (e.g. 1,2,3 1,2,3 1,2,3)</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../icons.qrc">
|
||||
<normaloff>:/icons/flat/32x32/glabels-collated.svg</normaloff>:/icons/flat/32x32/glabels-collated.svg</iconset>
|
||||
</property>
|
||||
</item>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
<widget class="QComboBox" name="mergeGroupCombo">
|
||||
<property name="styleSheet">
|
||||
<string notr="true">text-align:left; padding:3px;</string>
|
||||
</property>
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
<width>32</width>
|
||||
<height>32</height>
|
||||
</size>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Merge groups are contiguous</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../icons.qrc">
|
||||
<normaloff>:/icons/flat/32x32/glabels-merge-group-contiguous.svg</normaloff>:/icons/flat/32x32/glabels-merge-group-contiguous.svg</iconset>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Merge groups start on a new page</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../icons.qrc">
|
||||
<normaloff>:/icons/flat/32x32/glabels-merge-group-page.svg</normaloff>:/icons/flat/32x32/glabels-merge-group-page.svg</iconset>
|
||||
</property>
|
||||
</item>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
@@ -223,10 +333,10 @@
|
||||
</size>
|
||||
</property>
|
||||
<property name="title">
|
||||
<string>Print options</string>
|
||||
<string>Options</string>
|
||||
</property>
|
||||
<layout class="QGridLayout" name="gridLayout_4">
|
||||
<item row="0" column="0">
|
||||
<item row="1" column="0">
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<item>
|
||||
<widget class="QCheckBox" name="printOutlinesCheck">
|
||||
@@ -249,11 +359,84 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QWidget" name="mergeOnlyOptions" native="true">
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_8">
|
||||
<property name="leftMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QLabel" name="label_2">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Start groups at position:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QSpinBox" name="mergeStartPositionSpin">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="minimum">
|
||||
<number>1</number>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="horizontalSpacer_2">
|
||||
<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>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="verticalSpacer_2">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
<property name="sizeType">
|
||||
<enum>QSizePolicy::Fixed</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>12</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="printButton">
|
||||
<property name="sizePolicy">
|
||||
@@ -266,7 +449,7 @@
|
||||
<string notr="true">text-align:left; padding:3px;</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Print</string>
|
||||
<string>Print...</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../icons.qrc">
|
||||
@@ -278,8 +461,63 @@
|
||||
<height>32</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="default">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_7">
|
||||
<item>
|
||||
<spacer name="horizontalSpacer_4">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>2</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="printDescriptionLabel">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="MinimumExpanding" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>330</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string notr="true"><html><head/><body><p>(Will print a total of xxxx items on nnn pages.)</p></body></html></string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignCenter</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="horizontalSpacer_5">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>2</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="verticalSpacer">
|
||||
<property name="orientation">
|
||||
@@ -401,30 +639,14 @@
|
||||
</resources>
|
||||
<connections>
|
||||
<connection>
|
||||
<sender>copiesStartSpin</sender>
|
||||
<sender>printRangePagesSpin</sender>
|
||||
<signal>valueChanged(int)</signal>
|
||||
<receiver>PrintView</receiver>
|
||||
<slot>onFormChanged()</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel">
|
||||
<x>221</x>
|
||||
<y>124</y>
|
||||
</hint>
|
||||
<hint type="destinationlabel">
|
||||
<x>4</x>
|
||||
<y>309</y>
|
||||
</hint>
|
||||
</hints>
|
||||
</connection>
|
||||
<connection>
|
||||
<sender>copiesSpin</sender>
|
||||
<signal>valueChanged(int)</signal>
|
||||
<receiver>PrintView</receiver>
|
||||
<slot>onFormChanged()</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel">
|
||||
<x>161</x>
|
||||
<y>84</y>
|
||||
<x>175</x>
|
||||
<y>122</y>
|
||||
</hint>
|
||||
<hint type="destinationlabel">
|
||||
<x>2</x>
|
||||
@@ -439,8 +661,8 @@
|
||||
<slot>onFormChanged()</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel">
|
||||
<x>114</x>
|
||||
<y>220</y>
|
||||
<x>182</x>
|
||||
<y>444</y>
|
||||
</hint>
|
||||
<hint type="destinationlabel">
|
||||
<x>2</x>
|
||||
@@ -455,8 +677,8 @@
|
||||
<slot>onFormChanged()</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel">
|
||||
<x>84</x>
|
||||
<y>248</y>
|
||||
<x>152</x>
|
||||
<y>475</y>
|
||||
</hint>
|
||||
<hint type="destinationlabel">
|
||||
<x>6</x>
|
||||
@@ -471,8 +693,8 @@
|
||||
<slot>onFormChanged()</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel">
|
||||
<x>88</x>
|
||||
<y>276</y>
|
||||
<x>156</x>
|
||||
<y>506</y>
|
||||
</hint>
|
||||
<hint type="destinationlabel">
|
||||
<x>6</x>
|
||||
@@ -487,8 +709,8 @@
|
||||
<slot>onFormChanged()</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel">
|
||||
<x>645</x>
|
||||
<y>745</y>
|
||||
<x>641</x>
|
||||
<y>760</y>
|
||||
</hint>
|
||||
<hint type="destinationlabel">
|
||||
<x>1</x>
|
||||
@@ -503,8 +725,8 @@
|
||||
<slot>onPrintButtonClicked()</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel">
|
||||
<x>249</x>
|
||||
<y>325</y>
|
||||
<x>291</x>
|
||||
<y>589</y>
|
||||
</hint>
|
||||
<hint type="destinationlabel">
|
||||
<x>5</x>
|
||||
@@ -512,10 +734,125 @@
|
||||
</hint>
|
||||
</hints>
|
||||
</connection>
|
||||
<connection>
|
||||
<sender>mergeCopiesSpin</sender>
|
||||
<signal>valueChanged(int)</signal>
|
||||
<receiver>PrintView</receiver>
|
||||
<slot>onFormChanged()</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel">
|
||||
<x>159</x>
|
||||
<y>243</y>
|
||||
</hint>
|
||||
<hint type="destinationlabel">
|
||||
<x>7</x>
|
||||
<y>218</y>
|
||||
</hint>
|
||||
</hints>
|
||||
</connection>
|
||||
<connection>
|
||||
<sender>printRangePagesRadio</sender>
|
||||
<signal>toggled(bool)</signal>
|
||||
<receiver>PrintView</receiver>
|
||||
<slot>onFormChanged()</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel">
|
||||
<x>59</x>
|
||||
<y>108</y>
|
||||
</hint>
|
||||
<hint type="destinationlabel">
|
||||
<x>6</x>
|
||||
<y>76</y>
|
||||
</hint>
|
||||
</hints>
|
||||
</connection>
|
||||
<connection>
|
||||
<sender>printRangeStartPositionSpin</sender>
|
||||
<signal>valueChanged(int)</signal>
|
||||
<receiver>PrintView</receiver>
|
||||
<slot>onFormChanged()</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel">
|
||||
<x>142</x>
|
||||
<y>149</y>
|
||||
</hint>
|
||||
<hint type="destinationlabel">
|
||||
<x>5</x>
|
||||
<y>123</y>
|
||||
</hint>
|
||||
</hints>
|
||||
</connection>
|
||||
<connection>
|
||||
<sender>printRangeLastPositionSpin</sender>
|
||||
<signal>valueChanged(int)</signal>
|
||||
<receiver>PrintView</receiver>
|
||||
<slot>onFormChanged()</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel">
|
||||
<x>226</x>
|
||||
<y>145</y>
|
||||
</hint>
|
||||
<hint type="destinationlabel">
|
||||
<x>8</x>
|
||||
<y>155</y>
|
||||
</hint>
|
||||
</hints>
|
||||
</connection>
|
||||
<connection>
|
||||
<sender>mergeCollateCombo</sender>
|
||||
<signal>currentIndexChanged(int)</signal>
|
||||
<receiver>PrintView</receiver>
|
||||
<slot>onFormChanged()</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel">
|
||||
<x>52</x>
|
||||
<y>261</y>
|
||||
</hint>
|
||||
<hint type="destinationlabel">
|
||||
<x>3</x>
|
||||
<y>192</y>
|
||||
</hint>
|
||||
</hints>
|
||||
</connection>
|
||||
<connection>
|
||||
<sender>mergeGroupCombo</sender>
|
||||
<signal>currentIndexChanged(int)</signal>
|
||||
<receiver>PrintView</receiver>
|
||||
<slot>onFormChanged()</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel">
|
||||
<x>231</x>
|
||||
<y>314</y>
|
||||
</hint>
|
||||
<hint type="destinationlabel">
|
||||
<x>5</x>
|
||||
<y>378</y>
|
||||
</hint>
|
||||
</hints>
|
||||
</connection>
|
||||
<connection>
|
||||
<sender>mergeStartPositionSpin</sender>
|
||||
<signal>valueChanged(int)</signal>
|
||||
<receiver>PrintView</receiver>
|
||||
<slot>onFormChanged()</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel">
|
||||
<x>199</x>
|
||||
<y>362</y>
|
||||
</hint>
|
||||
<hint type="destinationlabel">
|
||||
<x>4</x>
|
||||
<y>309</y>
|
||||
</hint>
|
||||
</hints>
|
||||
</connection>
|
||||
</connections>
|
||||
<slots>
|
||||
<slot>onPrintButtonClicked()</slot>
|
||||
<slot>onFormChanged()</slot>
|
||||
<slot>onPrinterPropertiesButtonClicked()</slot>
|
||||
</slots>
|
||||
<buttongroups>
|
||||
<buttongroup name="buttonGroup"/>
|
||||
</buttongroups>
|
||||
</ui>
|
||||
|
||||
Reference in New Issue
Block a user