Info tool about page boxes

This commit is contained in:
Jakub Melka
2020-10-08 18:47:04 +02:00
parent 300a893f5d
commit 98f945f724
5 changed files with 208 additions and 0 deletions

View File

@ -0,0 +1,37 @@
// Copyright (C) 2020 Jakub Melka
//
// This file is part of PdfForQt.
//
// PdfForQt is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// PdfForQt is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with PDFForQt. If not, see <https://www.gnu.org/licenses/>.
#ifndef PDFTOOLINFOPAGEBOXES_H
#define PDFTOOLINFOPAGEBOXES_H
#include "pdftoolabstractapplication.h"
namespace pdftool
{
class PDFToolInfoPageBoxesApplication : public PDFToolAbstractApplication
{
public:
virtual QString getStandardString(StandardString standardString) const override;
virtual int execute(const PDFToolOptions& options) override;
virtual Options getOptionsFlags() const override;
};
} // namespace pdftool
#endif // PDFTOOLINFOPAGEBOXES_H