• Home
Name Date Size #Lines LOC

..--

README.mdD03-May-2024868 3022

cfwl_barcodetp.cppD03-May-2024917 3523

cfwl_barcodetp.hD03-May-2024638 2311

cfwl_carettp.cppD03-May-20241.5 KiB5239

cfwl_carettp.hD03-May-2024819 2916

cfwl_checkboxtp.cppD03-May-202411.2 KiB316270

cfwl_checkboxtp.hD03-May-20242.5 KiB7860

cfwl_comboboxtp.cppD03-May-20243.1 KiB10187

cfwl_comboboxtp.hD03-May-2024916 3017

cfwl_datetimepickertp.cppD03-May-20241.7 KiB6349

cfwl_datetimepickertp.hD03-May-2024734 2512

cfwl_edittp.cppD03-May-20243 KiB8674

cfwl_edittp.hD03-May-2024582 2210

cfwl_listboxtp.cppD03-May-20242.6 KiB7865

cfwl_listboxtp.hD03-May-2024854 2916

cfwl_monthcalendartp.cppD03-May-202410.5 KiB285254

cfwl_monthcalendartp.hD03-May-20241.8 KiB5538

cfwl_pictureboxtp.cppD03-May-2024780 3018

cfwl_pictureboxtp.hD03-May-2024618 2210

cfwl_pushbuttontp.cppD03-May-20244.9 KiB128106

cfwl_pushbuttontp.hD03-May-20241.2 KiB4729

cfwl_scrollbartp.cppD03-May-202410.2 KiB272239

cfwl_scrollbartp.hD03-May-20241.8 KiB6245

cfwl_utils.hD03-May-20241.1 KiB4127

cfwl_widgettp.cppD03-May-202411.3 KiB332278

cfwl_widgettp.hD03-May-20244.1 KiB142113

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