Files
loongoffice/include/drawinglayer/processor2d/textextractor2d.hxx
Caolán McNamara 006a8e3186 split TextAsPolygonExtractor2D for more general reuse
Change-Id: I102ccab2a423c38b0414c9565fec349aa6ffb5af
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/163725
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
2024-02-22 13:01:16 +01:00

34 lines
1.2 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#pragma once
#include <drawinglayer/drawinglayerdllapi.h>
#include <drawinglayer/processor2d/baseprocessor2d.hxx>
namespace drawinglayer::processor2d
{
/** TextExtractor2D class
This processor extracts text in the fed primitives and calls
processTextPrimitive2D for those while calling processBasePrimitive2D
for everything else.
*/
class DRAWINGLAYER_DLLPUBLIC TextExtractor2D : public BaseProcessor2D
{
public:
explicit TextExtractor2D(const geometry::ViewInformation2D& rViewInformation);
void processBasePrimitive2D(const primitive2d::BasePrimitive2D& rCandidate) override;
virtual void processTextPrimitive2D(const primitive2d::BasePrimitive2D& rCandidate) = 0;
virtual ~TextExtractor2D() override;
};
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */