| 769 | } |
| 770 | |
| 771 | bool MapPrinter::isOutputEmpty() const |
| 772 | { |
| 773 | return ( |
| 774 | (map.getNumObjects() == 0 || (view && !view->effectiveMapVisibility().visible)) && |
| 775 | (!options.show_templates || map.getNumTemplates() == 0) && |
| 776 | !options.show_grid |
| 777 | ); |
| 778 | } |
| 779 | |
| 780 | QSizeF MapPrinter::getPrintAreaPaperSize() const |
| 781 | { |
no test coverage detected