android13/external/pdfium/xfa/fwl/theme
liiir1985 7f62dcda9f initial 2024-06-22 20:45:49 +08:00
..
README.md initial 2024-06-22 20:45:49 +08:00
cfwl_barcodetp.cpp initial 2024-06-22 20:45:49 +08:00
cfwl_barcodetp.h initial 2024-06-22 20:45:49 +08:00
cfwl_carettp.cpp initial 2024-06-22 20:45:49 +08:00
cfwl_carettp.h initial 2024-06-22 20:45:49 +08:00
cfwl_checkboxtp.cpp initial 2024-06-22 20:45:49 +08:00
cfwl_checkboxtp.h initial 2024-06-22 20:45:49 +08:00
cfwl_comboboxtp.cpp initial 2024-06-22 20:45:49 +08:00
cfwl_comboboxtp.h initial 2024-06-22 20:45:49 +08:00
cfwl_datetimepickertp.cpp initial 2024-06-22 20:45:49 +08:00
cfwl_datetimepickertp.h initial 2024-06-22 20:45:49 +08:00
cfwl_edittp.cpp initial 2024-06-22 20:45:49 +08:00
cfwl_edittp.h initial 2024-06-22 20:45:49 +08:00
cfwl_listboxtp.cpp initial 2024-06-22 20:45:49 +08:00
cfwl_listboxtp.h initial 2024-06-22 20:45:49 +08:00
cfwl_monthcalendartp.cpp initial 2024-06-22 20:45:49 +08:00
cfwl_monthcalendartp.h initial 2024-06-22 20:45:49 +08:00
cfwl_pictureboxtp.cpp initial 2024-06-22 20:45:49 +08:00
cfwl_pictureboxtp.h initial 2024-06-22 20:45:49 +08:00
cfwl_pushbuttontp.cpp initial 2024-06-22 20:45:49 +08:00
cfwl_pushbuttontp.h initial 2024-06-22 20:45:49 +08:00
cfwl_scrollbartp.cpp initial 2024-06-22 20:45:49 +08:00
cfwl_scrollbartp.h initial 2024-06-22 20:45:49 +08:00
cfwl_utils.h initial 2024-06-22 20:45:49 +08:00
cfwl_widgettp.cpp initial 2024-06-22 20:45:49 +08:00
cfwl_widgettp.h initial 2024-06-22 20:45:49 +08:00

README.md

xfa/fwl/theme contains code for rendering XFA widgets.

TP stands for Theme Part.

CFWL_WidgetTP contains much of the code common to more than one widget.

The other CFWL_TP classes derive from it and know how to draw the pieces specific to their respective widget.

The inheritance hierarchy for this directory is:

  • CFWL_WidgetTP
    • CFWL_BarcodeTP
    • CFWL_CaretTP
    • CFWL_CheckboxTP
    • CFWL_ComboBowTP
    • CFWL_DateTimePickerTP
    • CFWL_EditTP
    • CFWL_ListBoxTP
    • CFWL_MonthCalendarTP
    • CFWL_PictureBoxTP
    • CFWL_PushButtonTP
    • CFWL_ScrollBarTP

All these widget TP classes are composed into CXFA_FWLTheme, which implements IFWL_ThemeProvider (and is the only class that does). CXFA_FWLTheme receives DrawBackground() calls from CFWL widgets to draw themselves and routes them to the TP (Theme Part) corresponding to that widget.