pdfium_render/pdf/document/page/field/unknown.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
//! Defines the [PdfFormUnknownField] struct, exposing functionality related to a single
//! form field of type `PdfFormFieldType::Unknown`.
//!
use crate::bindgen::{FPDF_ANNOTATION, FPDF_FORMHANDLE};
use crate::bindings::PdfiumLibraryBindings;
use crate::pdf::document::page::field::private::internal::PdfFormFieldPrivate;
/// A single `PdfFormField` of type `PdfFormFieldType::Unknown`.
///
/// Form fields in Pdfium are wrapped inside page annotations of type `PdfPageAnnotationType::Widget`
/// or `PdfPageAnnotationType::XfaWidget`. User-specified values can be retrieved directly from
/// each form field object by unwrapping the form field from the annotation, or in bulk from the
/// `PdfForm::field_values()` function.
pub struct PdfFormUnknownField<'a> {
form_handle: FPDF_FORMHANDLE,
annotation_handle: FPDF_ANNOTATION,
bindings: &'a dyn PdfiumLibraryBindings,
}
impl<'a> PdfFormUnknownField<'a> {
pub(crate) fn from_pdfium(
form_handle: FPDF_FORMHANDLE,
annotation_handle: FPDF_ANNOTATION,
bindings: &'a dyn PdfiumLibraryBindings,
) -> Self {
PdfFormUnknownField {
form_handle,
annotation_handle,
bindings,
}
}
/// Returns the [PdfiumLibraryBindings] used by this [PdfFormUnknownField] object.
#[inline]
pub fn bindings(&self) -> &'a dyn PdfiumLibraryBindings {
self.bindings
}
}
impl<'a> PdfFormFieldPrivate<'a> for PdfFormUnknownField<'a> {
#[inline]
fn form_handle(&self) -> &FPDF_FORMHANDLE {
&self.form_handle
}
#[inline]
fn annotation_handle(&self) -> &FPDF_ANNOTATION {
&self.annotation_handle
}
#[inline]
fn bindings(&self) -> &dyn PdfiumLibraryBindings {
self.bindings
}
}