Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
Android.bp | D | 03-May-2024 | 810 | 34 | 28 | |
BUILD.gn | D | 03-May-2024 | 1.9 KiB | 85 | 80 | |
README.md | D | 03-May-2024 | 520 | 21 | 16 | |
cpwl_button.cpp | D | 03-May-2024 | 1,001 | 35 | 23 | |
cpwl_button.h | D | 03-May-2024 | 868 | 31 | 17 | |
cpwl_caret.cpp | D | 03-May-2024 | 3.6 KiB | 131 | 93 | |
cpwl_caret.h | D | 03-May-2024 | 1.3 KiB | 47 | 29 | |
cpwl_cbbutton.cpp | D | 03-May-2024 | 2.6 KiB | 80 | 57 | |
cpwl_cbbutton.h | D | 03-May-2024 | 966 | 31 | 18 | |
cpwl_cblistbox.cpp | D | 03-May-2024 | 2.7 KiB | 94 | 73 | |
cpwl_cblistbox.h | D | 03-May-2024 | 1 KiB | 33 | 19 | |
cpwl_combo_box.cpp | D | 03-May-2024 | 12.2 KiB | 478 | 377 | |
cpwl_combo_box.h | D | 03-May-2024 | 2.4 KiB | 80 | 59 | |
cpwl_combo_box_edit_embeddertest.cpp | D | 03-May-2024 | 10.8 KiB | 284 | 207 | |
cpwl_combo_box_embeddertest.cpp | D | 03-May-2024 | 2.5 KiB | 76 | 55 | |
cpwl_combo_box_embeddertest.h | D | 03-May-2024 | 1.6 KiB | 49 | 38 | |
cpwl_edit.cpp | D | 03-May-2024 | 21.5 KiB | 867 | 704 | |
cpwl_edit.h | D | 03-May-2024 | 4.8 KiB | 138 | 107 | |
cpwl_edit_embeddertest.cpp | D | 03-May-2024 | 15.6 KiB | 443 | 340 | |
cpwl_edit_impl.cpp | D | 03-May-2024 | 52.5 KiB | 1,973 | 1,641 | |
cpwl_edit_impl.h | D | 03-May-2024 | 8.8 KiB | 290 | 226 | |
cpwl_list_box.cpp | D | 03-May-2024 | 10.3 KiB | 362 | 288 | |
cpwl_list_box.h | D | 03-May-2024 | 3 KiB | 85 | 64 | |
cpwl_list_ctrl.cpp | D | 03-May-2024 | 16.6 KiB | 629 | 514 | |
cpwl_list_ctrl.h | D | 03-May-2024 | 5.9 KiB | 185 | 145 | |
cpwl_sbbutton.cpp | D | 03-May-2024 | 5.2 KiB | 149 | 110 | |
cpwl_sbbutton.h | D | 03-May-2024 | 1.2 KiB | 38 | 23 | |
cpwl_scroll_bar.cpp | D | 03-May-2024 | 14.9 KiB | 532 | 418 | |
cpwl_scroll_bar.h | D | 03-May-2024 | 4.7 KiB | 162 | 124 | |
cpwl_special_button.cpp | D | 03-May-2024 | 1.9 KiB | 73 | 49 | |
cpwl_special_button.h | D | 03-May-2024 | 1.7 KiB | 62 | 39 | |
cpwl_special_button_embeddertest.cpp | D | 03-May-2024 | 5.3 KiB | 148 | 118 | |
cpwl_wnd.cpp | D | 03-May-2024 | 19.1 KiB | 714 | 559 | |
cpwl_wnd.h | D | 03-May-2024 | 9.4 KiB | 298 | 224 | |
ipwl_fillernotify.h | D | 03-May-2024 | 2 KiB | 70 | 49 |
README.md
1fpdfsdk/pwl is a Widget Library for AcroForms. 2 3CPWL_Wnd is the base class that widget classes extend. The derived widget 4classes are controllers for each widget. The hierarchy is: 5 6* CPWL_Wnd 7 * CPWL_Button 8 * CPWL_CheckBox 9 * CPWL_PushButton 10 * CPWL_RadioButton 11 * CPWL_Caret 12 * CPWL_EditCtrl 13 * CPWL_Edit 14 * CPWL_ListBox 15 * CPWL_CBListBox (combo box) 16 * CPWL_ScrollBar 17 18Widgets are rendered to Appearance Streams, with the case all centralized in 19CPDFSDK_AppStream. 20 21