Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
README.md | D | 03-May-2024 | 868 | 30 | 22 | |
cfwl_barcodetp.cpp | D | 03-May-2024 | 879 | 30 | 19 | |
cfwl_barcodetp.h | D | 03-May-2024 | 650 | 23 | 11 | |
cfwl_carettp.cpp | D | 03-May-2024 | 1.4 KiB | 44 | 31 | |
cfwl_carettp.h | D | 03-May-2024 | 782 | 28 | 15 | |
cfwl_checkboxtp.cpp | D | 03-May-2024 | 9.1 KiB | 259 | 219 | |
cfwl_checkboxtp.h | D | 03-May-2024 | 2.1 KiB | 62 | 45 | |
cfwl_comboboxtp.cpp | D | 03-May-2024 | 2.6 KiB | 84 | 72 | |
cfwl_comboboxtp.h | D | 03-May-2024 | 790 | 27 | 14 | |
cfwl_datetimepickertp.cpp | D | 03-May-2024 | 1.6 KiB | 59 | 47 | |
cfwl_datetimepickertp.h | D | 03-May-2024 | 781 | 26 | 13 | |
cfwl_edittp.cpp | D | 03-May-2024 | 2.7 KiB | 76 | 64 | |
cfwl_edittp.h | D | 03-May-2024 | 594 | 22 | 10 | |
cfwl_listboxtp.cpp | D | 03-May-2024 | 2.7 KiB | 78 | 66 | |
cfwl_listboxtp.h | D | 03-May-2024 | 859 | 29 | 16 | |
cfwl_monthcalendartp.cpp | D | 03-May-2024 | 10.2 KiB | 267 | 238 | |
cfwl_monthcalendartp.h | D | 03-May-2024 | 1.7 KiB | 44 | 31 | |
cfwl_pictureboxtp.cpp | D | 03-May-2024 | 749 | 26 | 15 | |
cfwl_pictureboxtp.h | D | 03-May-2024 | 630 | 22 | 10 | |
cfwl_pushbuttontp.cpp | D | 03-May-2024 | 4.7 KiB | 126 | 104 | |
cfwl_pushbuttontp.h | D | 03-May-2024 | 1.2 KiB | 44 | 28 | |
cfwl_scrollbartp.cpp | D | 03-May-2024 | 9.2 KiB | 252 | 218 | |
cfwl_scrollbartp.h | D | 03-May-2024 | 1.8 KiB | 60 | 44 | |
cfwl_utils.h | D | 03-May-2024 | 1.1 KiB | 41 | 27 | |
cfwl_widgettp.cpp | D | 03-May-2024 | 10 KiB | 286 | 238 | |
cfwl_widgettp.h | D | 03-May-2024 | 3.3 KiB | 118 | 92 |
README.md
1xfa/fwl/theme contains code for rendering XFA widgets. 2 3TP stands for Theme Part. 4 5CFWL_WidgetTP contains much of the code common to more than one widget. 6 7The other CFWL_TP classes derive from it and know how to draw the pieces 8specific to their respective widget. 9 10The inheritance hierarchy for this directory is: 11 12* CFWL_WidgetTP 13 * CFWL_BarcodeTP 14 * CFWL_CaretTP 15 * CFWL_CheckboxTP 16 * CFWL_ComboBowTP 17 * CFWL_DateTimePickerTP 18 * CFWL_EditTP 19 * CFWL_ListBoxTP 20 * CFWL_MonthCalendarTP 21 * CFWL_PictureBoxTP 22 * CFWL_PushButtonTP 23 * CFWL_ScrollBarTP 24 25All these widget TP classes are composed into CXFA_FWLTheme, which implements 26IFWL_ThemeProvider (and is the only class that does). CXFA_FWLTheme receives 27DrawBackground() calls from CFWL widgets to draw themselves and routes them to 28the TP (Theme Part) corresponding to that widget. 29 30