Merge branch '1.4' into 1.4_QJSEngine
Before Width: | Height: | Size: 204 B After Width: | Height: | Size: 342 B |
Before Width: | Height: | Size: 158 B After Width: | Height: | Size: 342 B |
Before Width: | Height: | Size: 149 B After Width: | Height: | Size: 338 B |
Before Width: | Height: | Size: 159 B After Width: | Height: | Size: 338 B |
Before Width: | Height: | Size: 192 B After Width: | Height: | Size: 337 B |
Before Width: | Height: | Size: 149 B After Width: | Height: | Size: 338 B |
Before Width: | Height: | Size: 184 B After Width: | Height: | Size: 336 B |
Before Width: | Height: | Size: 158 B After Width: | Height: | Size: 338 B |
Before Width: | Height: | Size: 193 B After Width: | Height: | Size: 337 B |
Before Width: | Height: | Size: 149 B After Width: | Height: | Size: 338 B |
Before Width: | Height: | Size: 185 B After Width: | Height: | Size: 336 B |
Before Width: | Height: | Size: 159 B After Width: | Height: | Size: 338 B |
Before Width: | Height: | Size: 182 B After Width: | Height: | Size: 331 B |
Before Width: | Height: | Size: 143 B After Width: | Height: | Size: 308 B |
Before Width: | Height: | Size: 158 B After Width: | Height: | Size: 342 B |
Before Width: | Height: | Size: 149 B After Width: | Height: | Size: 338 B |
Before Width: | Height: | Size: 154 B After Width: | Height: | Size: 338 B |
Before Width: | Height: | Size: 640 B After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 229 B After Width: | Height: | Size: 398 B |
BIN
limereport/items/images/barcode3.png
Normal file
After Width: | Height: | Size: 368 B |
Before Width: | Height: | Size: 444 B After Width: | Height: | Size: 904 B |
Before Width: | Height: | Size: 430 B After Width: | Height: | Size: 476 B |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.6 KiB |
BIN
limereport/items/images/imageItem3.png
Normal file
After Width: | Height: | Size: 379 B |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 593 B After Width: | Height: | Size: 927 B |
Before Width: | Height: | Size: 598 B After Width: | Height: | Size: 1.2 KiB |
BIN
limereport/items/images/insert-text_6.png
Normal file
After Width: | Height: | Size: 409 B |
Before Width: | Height: | Size: 509 B After Width: | Height: | Size: 552 B |
Before Width: | Height: | Size: 878 B After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 538 B After Width: | Height: | Size: 640 B |
Before Width: | Height: | Size: 636 B After Width: | Height: | Size: 716 B |
Before Width: | Height: | Size: 662 B After Width: | Height: | Size: 824 B |
BIN
limereport/items/images/shape6.png
Normal file
After Width: | Height: | Size: 448 B |
@@ -1,15 +1,15 @@
|
||||
<RCC>
|
||||
<qresource prefix="/items">
|
||||
<file>images/insert-text.png</file>
|
||||
<file alias="BarcodeItem">images/barcode2.png</file>
|
||||
<file>images/barcode2.png</file>
|
||||
<file>images/imageItem.png</file>
|
||||
<file>images/shape2.png</file>
|
||||
<file>images/shape4.png</file>
|
||||
<file>images/insert-text_2.png</file>
|
||||
<file>images/insert-text_3.png</file>
|
||||
<file>images/hlayout.png</file>
|
||||
<file alias="TextItem">images/insert-text_5.png</file>
|
||||
<file alias="ShapeItem">images/shape5.png</file>
|
||||
<file>images/insert-text_5.png</file>
|
||||
<file>images/shape5.png</file>
|
||||
<file>images/imageItem1.png</file>
|
||||
<file alias="ImageItem">images/imageItem2.png</file>
|
||||
<file>images/settings.png</file>
|
||||
@@ -33,5 +33,9 @@
|
||||
<file alias="GroupBandFooter">images/GroupFooter16.png</file>
|
||||
<file alias="GroupBandHeader">images/GroupHeader16.png</file>
|
||||
<file alias="PageItemDesignIntf">images/ReportPage16.png</file>
|
||||
<file alias="TextItem">images/insert-text_6.png</file>
|
||||
<file alias="BarcodeItem">images/barcode3.png</file>
|
||||
<file alias="ShapeItem">images/shape6.png</file>
|
||||
<file alias="ImageItem">images/imageItem3.png</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
@@ -655,11 +655,11 @@ BaseDesignIntf *TextItem::cloneBottomPart(int height, QObject *owner, QGraphicsI
|
||||
loop_exit:;
|
||||
|
||||
int textPos=0;
|
||||
for (;curBlock!=m_text->end();curBlock=curBlock.next(),curLine=0){
|
||||
for (;curBlock!=m_text->end() || curLine<curBlock.lineCount();curBlock=curBlock.next(), curLine=0, tmpText+='\n'){
|
||||
for (;curLine<curBlock.layout()->lineCount();curLine++){
|
||||
if (tmpText=="") textPos= curBlock.layout()->lineAt(curLine).textStart();
|
||||
tmpText+=curBlock.text().mid(curBlock.layout()->lineAt(curLine).textStart(),
|
||||
curBlock.layout()->lineAt(curLine).textLength()) + "\n";
|
||||
curBlock.layout()->lineAt(curLine).textLength());
|
||||
}
|
||||
}
|
||||
tmpText.chop(1);
|
||||
|