Home
last modified time | relevance | path

Searched refs:MapPrinterPageFormat (Results 1 – 5 of 5) sorted by relevance

/dports/graphics/openorienteering-mapper/mapper-0.9.2/src/core/
H A Dmap_printer.h58 class MapPrinterPageFormat
68MapPrinterPageFormat(QSizeF page_rect_size = QSizeF(100.0, 100.0), qreal margin = 5.0, qreal overl…
72 MapPrinterPageFormat(const QPrinter& printer, qreal overlap = 5.0);
79 static MapPrinterPageFormat fromDefaultPrinter();
106 bool operator==(const MapPrinterPageFormat& lhs, const MapPrinterPageFormat& rhs);
109 bool operator!=(const MapPrinterPageFormat& lhs, const MapPrinterPageFormat& rhs);
199 MapPrinterPageFormat page_format;
260 const MapPrinterPageFormat& getPageFormat() const in getPageFormat()
388 void setPageOrientation(MapPrinterPageFormat::Orientation orientation);
435 …void pageFormatChanged(const OpenOrienteering::MapPrinterPageFormat& format) const; // clazy:excl…
[all …]
H A Dmap_printer.cpp101 MapPrinterPageFormat::MapPrinterPageFormat(QSizeF page_rect_size, qreal margin, qreal overlap) in MapPrinterPageFormat() function in OpenOrienteering::MapPrinterPageFormat
118 MapPrinterPageFormat::MapPrinterPageFormat(const QPrinter& printer, qreal overlap) in MapPrinterPageFormat() function in OpenOrienteering::MapPrinterPageFormat
120 …n((printer.orientation() == QPrinter::Portrait) ? MapPrinterPageFormat::Portrait : MapPrinterPageF… in MapPrinterPageFormat()
131 MapPrinterPageFormat MapPrinterPageFormat::fromDefaultPrinter() in fromDefaultPrinter()
135 return MapPrinterPageFormat(default_printer); in fromDefaultPrinter()
137 return MapPrinterPageFormat(); in fromDefaultPrinter()
141 bool operator==(const MapPrinterPageFormat& lhs, const MapPrinterPageFormat& rhs) in operator ==()
187 page_format(MapPrinterPageFormat::fromDefaultPrinter()), in MapPrinterConfig()
260 … (value == literal::portrait) ? MapPrinterPageFormat::Portrait : MapPrinterPageFormat::Landscape; in MapPrinterConfig()
648 … (printer->orientation() == QPrinter::Portrait) ? MapPrinterPageFormat::Portrait : MapPrinterPageF… in updatePaperDimensions()
[all …]
/dports/graphics/openorienteering-mapper/mapper-0.9.2/src/gui/
H A Dprint_widget.h60 class MapPrinterPageFormat; variable
117 void setPageFormat(const OpenOrienteering::MapPrinterPageFormat& format);
H A Dprint_widget.cpp703 void PrintWidget::setPageFormat(const MapPrinterPageFormat& format) in setPageFormat()
744 …->setPageOrientation((id == QPrinter::Portrait) ? MapPrinterPageFormat::Portrait : MapPrinterPageF… in pageOrientationChanged()
/dports/graphics/openorienteering-mapper/mapper-0.9.2/test/
H A Dfile_format_t.cpp87 char* toString(const MapPrinterPageFormat& t) in toString()
92 …ba += (page_format.orientation == MapPrinterPageFormat::Landscape) ? " landscape (" : " portrait (… in toString()