PoDoFo 1.0.0-dev
Loading...
Searching...
No Matches
PdfRadioButton.h
1
7#ifndef PDF_RADIO_BUTTON_H
8#define PDF_RADIO_BUTTON_H
9
10#include "PdfButton.h"
11
12namespace PoDoFo
13{
17 class PODOFO_API PdfRadioButton final : public PdfToggleButton
18 {
19 friend class PdfField;
20
21 private:
22 PdfRadioButton(PdfAcroForm& acroform, const std::shared_ptr<PdfField>& parent);
23
24 PdfRadioButton(PdfAnnotationWidget& widget, const std::shared_ptr<PdfField>& parent);
25
26 PdfRadioButton(PdfObject& obj, PdfAcroForm* acroform);
27
28 public:
29 PdfRadioButton* GetParent();
30 const PdfRadioButton* GetParent() const;
31 };
32}
33
34#endif // PDF_RADIO_BUTTON_H
This class represents a PDF indirect Object in memory.
Definition PdfObject.h:35
A radio button TODO: This is just a stub.
Definition PdfRadioButton.h:18
Convenient type for char array storage and/or buffer with std::string compatibility.
Definition basetypes.h:38
SPDX-FileCopyrightText: (C) 2022 Francesco Pretto ceztko@gmail.com SPDX-License-Identifier: LGPL-2....
Definition basetypes.h:16