Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
README.md | D | 04-Jul-2025 | 868 | 30 | 22 | |
cfwl_barcodetp.cpp | D | 04-Jul-2025 | 943 | 34 | 21 | |
cfwl_barcodetp.h | D | 04-Jul-2025 | 821 | 34 | 17 | |
cfwl_carettp.cpp | D | 04-Jul-2025 | 1.5 KiB | 48 | 33 | |
cfwl_carettp.h | D | 04-Jul-2025 | 992 | 39 | 21 | |
cfwl_checkboxtp.cpp | D | 04-Jul-2025 | 9.2 KiB | 258 | 212 | |
cfwl_checkboxtp.h | D | 04-Jul-2025 | 2.3 KiB | 75 | 52 | |
cfwl_comboboxtp.cpp | D | 04-Jul-2025 | 1.9 KiB | 58 | 44 | |
cfwl_comboboxtp.h | D | 04-Jul-2025 | 791 | 33 | 16 | |
cfwl_datetimepickertp.cpp | D | 04-Jul-2025 | 1 KiB | 35 | 22 | |
cfwl_datetimepickertp.h | D | 04-Jul-2025 | 833 | 33 | 16 | |
cfwl_edittp.cpp | D | 04-Jul-2025 | 2.7 KiB | 75 | 62 | |
cfwl_edittp.h | D | 04-Jul-2025 | 763 | 33 | 16 | |
cfwl_listboxtp.cpp | D | 04-Jul-2025 | 2.8 KiB | 82 | 68 | |
cfwl_listboxtp.h | D | 04-Jul-2025 | 1 KiB | 40 | 22 | |
cfwl_monthcalendartp.cpp | D | 04-Jul-2025 | 10.4 KiB | 271 | 233 | |
cfwl_monthcalendartp.h | D | 04-Jul-2025 | 1.8 KiB | 53 | 35 | |
cfwl_pictureboxtp.cpp | D | 04-Jul-2025 | 803 | 30 | 17 | |
cfwl_pictureboxtp.h | D | 04-Jul-2025 | 805 | 33 | 16 | |
cfwl_pushbuttontp.cpp | D | 04-Jul-2025 | 4.9 KiB | 131 | 106 | |
cfwl_pushbuttontp.h | D | 04-Jul-2025 | 1.2 KiB | 49 | 28 | |
cfwl_scrollbartp.cpp | D | 04-Jul-2025 | 5.4 KiB | 151 | 129 | |
cfwl_scrollbartp.h | D | 04-Jul-2025 | 1.7 KiB | 63 | 42 | |
cfwl_utils.h | D | 04-Jul-2025 | 1 KiB | 35 | 16 | |
cfwl_widgettp.cpp | D | 04-Jul-2025 | 7.9 KiB | 211 | 175 | |
cfwl_widgettp.h | D | 04-Jul-2025 | 2.9 KiB | 90 | 65 |
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