PDF4QT/PdfForQtLib/sources/pdfobjecteditorwidget.h

71 lines
1.7 KiB
C
Raw Normal View History

2020-11-27 19:53:37 +01:00
// 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 PDFOBJECTEDITORWIDGET_H
#define PDFOBJECTEDITORWIDGET_H
#include "pdfobjecteditormodel.h"
#include <QWidget>
2020-11-29 18:36:59 +01:00
#include <QDialog>
2020-11-27 19:53:37 +01:00
class QTabWidget;
2020-11-29 18:36:59 +01:00
class QDialogButtonBox;
2020-11-27 19:53:37 +01:00
namespace pdf
{
class PDFObjectEditorWidgetMapper;
2020-11-29 18:36:59 +01:00
enum class EditObjectType
{
Annotation
};
2020-11-27 19:53:37 +01:00
class PDFObjectEditorWidget : public QWidget
{
Q_OBJECT
private:
using BaseClass = QWidget;
public:
2020-11-29 18:36:59 +01:00
explicit PDFObjectEditorWidget(EditObjectType type, QWidget* parent);
2020-11-27 19:53:37 +01:00
private:
PDFObjectEditorWidgetMapper* m_mapper;
QTabWidget* m_tabWidget;
};
2020-11-29 18:36:59 +01:00
class PDFEditObjectDialog : public QDialog
{
Q_OBJECT
private:
using BaseClass = QDialog;
public:
explicit PDFEditObjectDialog(EditObjectType type, QWidget* parent);
private:
PDFObjectEditorWidget* m_widget;
QDialogButtonBox* m_buttonBox;
};
2020-11-27 19:53:37 +01:00
} // namespace pdf
#endif // PDFOBJECTEDITORWIDGET_H