Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
README.md | D | 03-May-2024 | 868 | 30 | 22 | |
cfwl_barcodetp.cpp | D | 03-May-2024 | 917 | 35 | 23 | |
cfwl_barcodetp.h | D | 03-May-2024 | 638 | 23 | 11 | |
cfwl_carettp.cpp | D | 03-May-2024 | 1.5 KiB | 52 | 39 | |
cfwl_carettp.h | D | 03-May-2024 | 819 | 29 | 16 | |
cfwl_checkboxtp.cpp | D | 03-May-2024 | 11.2 KiB | 316 | 270 | |
cfwl_checkboxtp.h | D | 03-May-2024 | 2.5 KiB | 78 | 60 | |
cfwl_comboboxtp.cpp | D | 03-May-2024 | 3.1 KiB | 101 | 87 | |
cfwl_comboboxtp.h | D | 03-May-2024 | 916 | 30 | 17 | |
cfwl_datetimepickertp.cpp | D | 03-May-2024 | 1.7 KiB | 63 | 49 | |
cfwl_datetimepickertp.h | D | 03-May-2024 | 734 | 25 | 12 | |
cfwl_edittp.cpp | D | 03-May-2024 | 3 KiB | 86 | 74 | |
cfwl_edittp.h | D | 03-May-2024 | 582 | 22 | 10 | |
cfwl_listboxtp.cpp | D | 03-May-2024 | 2.6 KiB | 78 | 65 | |
cfwl_listboxtp.h | D | 03-May-2024 | 854 | 29 | 16 | |
cfwl_monthcalendartp.cpp | D | 03-May-2024 | 10.5 KiB | 285 | 254 | |
cfwl_monthcalendartp.h | D | 03-May-2024 | 1.8 KiB | 55 | 38 | |
cfwl_pictureboxtp.cpp | D | 03-May-2024 | 780 | 30 | 18 | |
cfwl_pictureboxtp.h | D | 03-May-2024 | 618 | 22 | 10 | |
cfwl_pushbuttontp.cpp | D | 03-May-2024 | 4.9 KiB | 128 | 106 | |
cfwl_pushbuttontp.h | D | 03-May-2024 | 1.2 KiB | 47 | 29 | |
cfwl_scrollbartp.cpp | D | 03-May-2024 | 10.2 KiB | 272 | 239 | |
cfwl_scrollbartp.h | D | 03-May-2024 | 1.8 KiB | 62 | 45 | |
cfwl_utils.h | D | 03-May-2024 | 1.1 KiB | 41 | 27 | |
cfwl_widgettp.cpp | D | 03-May-2024 | 11.3 KiB | 332 | 278 | |
cfwl_widgettp.h | D | 03-May-2024 | 4.1 KiB | 142 | 113 |
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