Up to higher level directory | |||
Name | Date | Size | |
---|---|---|---|
cfwl_barcodetp.cpp | 22-Oct-2020 | 917 | |
cfwl_barcodetp.h | 22-Oct-2020 | 638 | |
cfwl_carettp.cpp | 22-Oct-2020 | 1.5K | |
cfwl_carettp.h | 22-Oct-2020 | 819 | |
cfwl_checkboxtp.cpp | 22-Oct-2020 | 11.2K | |
cfwl_checkboxtp.h | 22-Oct-2020 | 2.5K | |
cfwl_comboboxtp.cpp | 22-Oct-2020 | 3.1K | |
cfwl_comboboxtp.h | 22-Oct-2020 | 916 | |
cfwl_datetimepickertp.cpp | 22-Oct-2020 | 1.7K | |
cfwl_datetimepickertp.h | 22-Oct-2020 | 734 | |
cfwl_edittp.cpp | 22-Oct-2020 | 3K | |
cfwl_edittp.h | 22-Oct-2020 | 582 | |
cfwl_listboxtp.cpp | 22-Oct-2020 | 2.6K | |
cfwl_listboxtp.h | 22-Oct-2020 | 854 | |
cfwl_monthcalendartp.cpp | 22-Oct-2020 | 10.5K | |
cfwl_monthcalendartp.h | 22-Oct-2020 | 1.8K | |
cfwl_pictureboxtp.cpp | 22-Oct-2020 | 780 | |
cfwl_pictureboxtp.h | 22-Oct-2020 | 618 | |
cfwl_pushbuttontp.cpp | 22-Oct-2020 | 4.9K | |
cfwl_pushbuttontp.h | 22-Oct-2020 | 1.2K | |
cfwl_scrollbartp.cpp | 22-Oct-2020 | 10.2K | |
cfwl_scrollbartp.h | 22-Oct-2020 | 1.8K | |
cfwl_utils.h | 22-Oct-2020 | 1.1K | |
cfwl_widgettp.cpp | 22-Oct-2020 | 11.3K | |
cfwl_widgettp.h | 22-Oct-2020 | 4.1K | |
README.md | 22-Oct-2020 | 868 |
1 xfa/fwl/theme contains code for rendering XFA widgets. 2 3 TP stands for Theme Part. 4 5 CFWL_WidgetTP contains much of the code common to more than one widget. 6 7 The other CFWL_TP classes derive from it and know how to draw the pieces 8 specific to their respective widget. 9 10 The 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 25 All these widget TP classes are composed into CXFA_FWLTheme, which implements 26 IFWL_ThemeProvider (and is the only class that does). CXFA_FWLTheme receives 27 DrawBackground() calls from CFWL widgets to draw themselves and routes them to 28 the TP (Theme Part) corresponding to that widget. 29 30