Home
last modified time | relevance | path

Searched refs:PageLayout (Results 1 – 25 of 265) sorted by relevance

1234567891011

/dports/graphics/scantailor/scantailor-advanced-1.0.16/filters/page_split/
H A DPageLayout.cpp31 PageLayout::PageLayout() : m_type(SINGLE_PAGE_UNCUT) {} in PageLayout() function in page_split::PageLayout
33 PageLayout::PageLayout(const QRectF& full_rect) in PageLayout() function in page_split::PageLayout
39 PageLayout::PageLayout(const QRectF& full_rect, const QLineF& cutter1, const QLineF& cutter2) in PageLayout() function in page_split::PageLayout
42 PageLayout::PageLayout(const QRectF full_rect, const QLineF& split_line) in PageLayout() function in page_split::PageLayout
45 PageLayout::PageLayout(const QPolygonF& outline, const QLineF& cutter1, const QLineF& cutter2, Type… in PageLayout() function in page_split::PageLayout
48 PageLayout::PageLayout(const QDomElement& layout_el) in PageLayout() function in page_split::PageLayout
95 int PageLayout::numCutters() const { in numCutters()
272 PageLayout PageLayout::transformed(const QTransform& xform) const { in transformed()
294 PageLayout::Type PageLayout::typeFromString(const QString& str) { in typeFromString()
387 bool PageLayout::isNull() const { in isNull()
[all …]
H A DPageLayoutAdapter.cpp82 if (layout->type() == PageLayout::SINGLE_PAGE_CUT) { in correctPageLayoutType()
91 layout->setType(PageLayout::SINGLE_PAGE_UNCUT); in correctPageLayoutType()
100 layout->setType(PageLayout::SINGLE_PAGE_UNCUT); in correctPageLayoutType()
104 if (layout->type() == PageLayout::TWO_PAGES) { in correctPageLayoutType()
110 layout->setType(PageLayout::SINGLE_PAGE_UNCUT); in correctPageLayoutType()
115 PageLayout PageLayoutAdapter::adaptPageLayout(const PageLayout& pageLayout, const QRectF& outline) { in adaptPageLayout()
120 PageLayout newPageLayout; in adaptPageLayout()
122 if (pageLayout.type() == PageLayout::SINGLE_PAGE_CUT) { in adaptPageLayout()
127 } else if (pageLayout.type() == PageLayout::TWO_PAGES) { in adaptPageLayout()
129 newPageLayout = PageLayout(outline, adaptedCutter); in adaptPageLayout()
[all …]
H A DPageLayout.h48 class PageLayout {
55 PageLayout();
60 explicit PageLayout(const QRectF& full_rect);
65 PageLayout(const QRectF& full_rect, const QLineF& cutter1, const QLineF& cutter2);
70 PageLayout(QRectF full_rect, const QLineF& split_line);
75 explicit PageLayout(const QDomElement& layout_el);
161 PageLayout transformed(const QTransform& xform) const;
166 PageLayout(const QPolygonF& outline, const QLineF& cutter1, const QLineF& cutter2, Type type);
H A DPageLayoutEstimator.h42 class PageLayout; variable
62 static PageLayout estimatePageLayout(LayoutType layout_type,
69 static std::unique_ptr<PageLayout> tryCutAtFoldingLine(LayoutType layout_type,
74 static PageLayout cutAtWhitespace(LayoutType layout_type,
80 static PageLayout cutAtWhitespaceDeskewed150(LayoutType layout_type,
104 static PageLayout processContentSpansSinglePage(LayoutType layout_type,
111 static PageLayout processContentSpansTwoPages(LayoutType layout_type,
116 static PageLayout processTwoPagesWithSingleSpan(const Span& span, int width, int height);
H A DOptionsWidget.cpp119 const PageLayout::Type layout_type = ui_data.pageLayout().type(); in postUpdateUI()
122 case PageLayout::SINGLE_PAGE_UNCUT: in postUpdateUI()
125 case PageLayout::SINGLE_PAGE_CUT: in postUpdateUI()
128 case PageLayout::TWO_PAGES: in postUpdateUI()
133 splitLineGroup->setVisible(layout_type != PageLayout::SINGLE_PAGE_UNCUT); in postUpdateUI()
185 PageLayout::Type plt; in layoutTypeButtonToggled()
187 plt = PageLayout::SINGLE_PAGE_UNCUT; in layoutTypeButtonToggled()
190 plt = PageLayout::TWO_PAGES; in layoutTypeButtonToggled()
193 PageLayout new_layout(m_uiData.pageLayout()); in layoutTypeButtonToggled()
324 void OptionsWidget::UiData::setPageLayout(const PageLayout& layout) { in setPageLayout()
[all …]
H A DPageLayoutEstimator.cpp112 return std::make_unique<PageLayout>(virtual_image_rect); in autoDetectSinglePageLayout()
131 return std::make_unique<PageLayout>(virtual_image_rect, left_line, line); in autoDetectSinglePageLayout()
165 return std::make_unique<PageLayout>(virtual_image_rect, *best_line); in autoDetectTwoPageLayout()
197 return PageLayout(pre_xform.resultingRect()); in estimatePageLayout()
384 PageLayout transformed_layout(layout.transformed(xform.inverted())); in cutAtWhitespace()
633 return PageLayout(virtual_image_rect, vertLine(x), right_line); in processContentSpansSinglePage()
657 return PageLayout(virtual_image_rect, left_line, vertLine(x)); in processContentSpansSinglePage()
664 return PageLayout(virtual_image_rect, line1, line2); in processContentSpansSinglePage()
667 return PageLayout(virtual_image_rect); in processContentSpansSinglePage()
762 return PageLayout(virtual_image_rect, vertLine(x)); in processContentSpansTwoPages()
[all …]
H A DTask.cpp68 static ProjectPages::LayoutType toPageLayoutType(const PageLayout& layout) { in toPageLayoutType()
70 case PageLayout::SINGLE_PAGE_UNCUT: in toPageLayoutType()
71 case PageLayout::SINGLE_PAGE_CUT: in toPageLayoutType()
73 case PageLayout::TWO_PAGES: in toPageLayoutType()
113 PageLayout new_layout; in process()
127 PageLayout corrected_page_layout = params->pageLayout(); in process()
175 const PageLayout& layout = record.params()->pageLayout(); in process()
231 QObject::connect(view, SIGNAL(pageLayoutSetLocally(const PageLayout&)), opt_widget, in updateUI()
232 SLOT(pageLayoutSetExternally(const PageLayout&))); in updateUI()
233 QObject::connect(opt_widget, SIGNAL(pageLayoutSetLocally(const PageLayout&)), view, in updateUI()
[all …]
H A DOptionsWidget.h50 void setPageLayout(const PageLayout& layout);
52 const PageLayout& pageLayout() const;
67 PageLayout m_pageLayout;
86 void pageLayoutSetLocally(const PageLayout& page_layout);
90 void pageLayoutSetExternally(const PageLayout& page_layout);
H A DThumbnail.cpp28 const PageLayout& layout, in Thumbnail()
50 case PageLayout::SINGLE_PAGE_UNCUT: in prePaintOverImage()
55 case PageLayout::SINGLE_PAGE_CUT: in prePaintOverImage()
59 case PageLayout::TWO_PAGES: { in prePaintOverImage()
91 case PageLayout::SINGLE_PAGE_CUT: in prePaintOverImage()
95 case PageLayout::TWO_PAGES: in prePaintOverImage()
H A DParams.h36 Params(const PageLayout& layout, const Dependencies& deps, AutoManualMode split_line_mode);
42 const PageLayout& pageLayout() const;
44 void setPageLayout(const PageLayout& layout);
57 PageLayout m_layout;
H A DImageView.h48 const PageLayout& layout,
60 void pageLayoutSetLocally(const PageLayout& layout);
64 void pageLayoutSetExternally(const PageLayout& layout);
93 PageLayout widgetLayout() const;
136 PageLayout m_virtLayout;
H A DCacheDrivenTask.cpp40 static ProjectPages::LayoutType toPageLayoutType(const PageLayout& layout) { in toPageLayoutType()
42 case PageLayout::SINGLE_PAGE_UNCUT: in toPageLayoutType()
43 case PageLayout::SINGLE_PAGE_CUT: in toPageLayoutType()
45 case PageLayout::TWO_PAGES: in toPageLayoutType()
73 PageLayout layout(params->pageLayout()); in process()
H A DPageLayoutAdapter.h17 static PageLayout adaptPageLayout(const PageLayout& pageLayout, const QRectF& outline);
22 static void correctPageLayoutType(PageLayout* layout);
H A DParams.cpp23 Params::Params(const PageLayout& layout, const Dependencies& deps, const AutoManualMode split_line_… in Params()
42 const PageLayout& Params::pageLayout() const { in pageLayout()
46 void Params::setPageLayout(const PageLayout& layout) { in setPageLayout()
H A DSplitModeDialog.cpp29 const PageLayout::Type auto_detected_layout_type, in SplitModeDialog()
137 case PageLayout::SINGLE_PAGE_UNCUT: in combinedLayoutType()
139 case PageLayout::SINGLE_PAGE_CUT: in combinedLayoutType()
141 case PageLayout::TWO_PAGES: in combinedLayoutType()
/dports/devel/kf5-ktexteditor/ktexteditor-5.89.0/src/printing/
H A Dprintpainter.h39 class PageLayout; variable
111 void paintLineNumber(QPainter &painter, const uint number, const PageLayout &pl) const;
112 …void paintLine(QPainter &painter, const uint line, uint &y, uint &remainder, const PageLayout &pl)…
113 … void paintNewPage(QPainter &painter, const uint currentPage, uint &y, const PageLayout &pl) const;
115 void paintBackground(QPainter &painter, const uint y, const PageLayout &pl) const;
116 void paintBox(QPainter &painter, uint &y, const PageLayout &pl) const;
117 void paintGuide(QPainter &painter, uint &y, const PageLayout &pl) const;
119 … void paintHeader(QPainter &painter, const uint currentPage, uint &y, const PageLayout &pl) const;
120 void paintFooter(QPainter &painter, const uint currentPage, const PageLayout &pl) const;
121 void configure(const QPrinter *printer, PageLayout &layout) const;
/dports/editors/libreoffice/libreoffice-7.2.6.2/reportbuilder/java/org/libreoffice/report/pentaho/model/
H A DOfficeStyles.java90 private final Map<String,PageLayout> pageStyles;
99 this.pageStyles = new HashMap<String,PageLayout>(); in OfficeStyles()
126 public void addPageStyle(final PageLayout style) in addPageStyle()
131 public PageLayout getPageStyle(final String name) in getPageStyle()
156 public PageLayout[] getAllPageStyles() in getAllPageStyles()
158 return pageStyles.values().toArray(new PageLayout[pageStyles.size()]); in getAllPageStyles()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/reportbuilder/java/org/libreoffice/report/pentaho/model/
H A DOfficeStyles.java90 private final Map<String,PageLayout> pageStyles;
99 this.pageStyles = new HashMap<String,PageLayout>(); in OfficeStyles()
126 public void addPageStyle(final PageLayout style) in addPageStyle()
131 public PageLayout getPageStyle(final String name) in getPageStyle()
156 public PageLayout[] getAllPageStyles() in getAllPageStyles()
158 return pageStyles.values().toArray(new PageLayout[pageStyles.size()]); in getAllPageStyles()
/dports/editors/libreoffice/libreoffice-7.2.6.2/reportbuilder/java/org/libreoffice/report/pentaho/parser/style/
H A DPageLayoutReadHandler.java20 import org.libreoffice.report.pentaho.model.PageLayout;
42 private final PageLayout pageLayout;
47 this.pageLayout = new PageLayout(); in PageLayoutReadHandler()
87 public PageLayout getPageLayout() in getPageLayout()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/reportbuilder/java/org/libreoffice/report/pentaho/parser/style/
H A DPageLayoutReadHandler.java20 import org.libreoffice.report.pentaho.model.PageLayout;
42 private final PageLayout pageLayout;
47 this.pageLayout = new PageLayout(); in PageLayoutReadHandler()
87 public PageLayout getPageLayout() in getPageLayout()
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/core/Documentation/Changelog/10.3/
H A DFeature-90348-NewFluid-basedReplacementForPageLayoutView.rst36 * :file:`EXT:backend/Resources/Private/Templates/PageLayout/PageLayout.html`
37 * :file:`EXT:backend/Resources/Private/Templates/PageLayout/UnusedRecords.html`
38 * :file:`EXT:backend/Resources/Private/Partials/PageLayout/Grid.html`
39 * :file:`EXT:backend/Resources/Private/Partials/PageLayout/Grid/Column.html`
40 * :file:`EXT:backend/Resources/Private/Partials/PageLayout/Record.html`
41 * :file:`EXT:backend/Resources/Private/Partials/PageLayout/Record/Header.html`
42 * :file:`EXT:backend/Resources/Private/Partials/PageLayout/Record/Footer.html`
52 * :file:`EXT:myext/Resources/Private/Partials/PageLayout/Record/my_contenttype/Header`
53 * :file:`EXT:myext/Resources/Private/Partials/PageLayout/Record/my_contenttype/Footer`
54 * :file:`EXT:myext/Resources/Private/Partials/PageLayout/Record/my_contenttype/Preview`
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/core/Documentation/Changelog/10.3/
H A DFeature-90348-NewFluid-basedReplacementForPageLayoutView.rst36 * :file:`EXT:backend/Resources/Private/Templates/PageLayout/PageLayout.html`
37 * :file:`EXT:backend/Resources/Private/Templates/PageLayout/UnusedRecords.html`
38 * :file:`EXT:backend/Resources/Private/Partials/PageLayout/Grid.html`
39 * :file:`EXT:backend/Resources/Private/Partials/PageLayout/Grid/Column.html`
40 * :file:`EXT:backend/Resources/Private/Partials/PageLayout/Record.html`
41 * :file:`EXT:backend/Resources/Private/Partials/PageLayout/Record/Header.html`
42 * :file:`EXT:backend/Resources/Private/Partials/PageLayout/Record/Footer.html`
52 * :file:`EXT:myext/Resources/Private/Partials/PageLayout/Record/my_contenttype/Header`
53 * :file:`EXT:myext/Resources/Private/Partials/PageLayout/Record/my_contenttype/Footer`
54 * :file:`EXT:myext/Resources/Private/Partials/PageLayout/Record/my_contenttype/Preview`
/dports/textproc/kreport/kreport-3.2.0/src/common/
H A DKReportUtils_p.h180 class PageLayout: public QPageLayout {
182 PageLayout();
183 PageLayout(const QPageLayout& pageLayout);
184 PageLayout& operator=(const QPageLayout& other);
/dports/audio/supercollider/SuperCollider-3.11.0-Source/HelpSource/Classes/
H A DPageLayout.schelp1 CLASS:: PageLayout
13 Create a Window with a FlowView on it. The PageLayout object can be treated like a Window or like …
33 returns:: a PageLayout
54 Just as for Window, this method is called when the PageLayout's window is closed. The actual Windo…
66 if bounds are nil then it returns self, as a PageLayout is compatible with FlowView. If bounds are…
76 …his message converts nil and various other objects to a PageLayout. This is already a PageLayout, …
82 Ignored. Would have been used to size the PageLayout
232 PageLayout.new
/dports/sysutils/nomad/nomad-1.1.0/ui/app/templates/
H A Dservers.hbs1 <PageLayout>
3 </PageLayout>

1234567891011