• Home
Name Date Size #Lines LOC

..--

README.mdD03-May-2024533 2217

cpwl_appstream.cppD03-May-202467.6 KiB1,9941,722

cpwl_appstream.hD03-May-20241.2 KiB4429

cpwl_button.cppD03-May-2024926 3522

cpwl_button.hD03-May-2024773 2815

cpwl_caret.cppD03-May-20243.5 KiB13595

cpwl_caret.hD03-May-20241.1 KiB4227

cpwl_combo_box.cppD03-May-202415 KiB585457

cpwl_combo_box.hD03-May-20243.2 KiB10474

cpwl_combo_box_embeddertest.cppD03-May-202412.9 KiB349260

cpwl_edit.cppD03-May-202419 KiB727583

cpwl_edit.hD03-May-20244.7 KiB13599

cpwl_edit_ctrl.cppD03-May-20249.6 KiB432341

cpwl_edit_ctrl.hD03-May-20242.7 KiB9767

cpwl_edit_embeddertest.cppD03-May-202414.9 KiB422326

cpwl_edit_impl.cppD03-May-202449.7 KiB1,9001,585

cpwl_edit_impl.hD03-May-202412.4 KiB440346

cpwl_font_map.cppD03-May-202412.2 KiB409336

cpwl_font_map.hD03-May-20243.1 KiB9468

cpwl_icon.cppD03-May-20243.6 KiB132100

cpwl_icon.hD03-May-20241.1 KiB4523

cpwl_list_box.cppD03-May-202410.6 KiB386305

cpwl_list_box.hD03-May-20243.3 KiB10984

cpwl_list_impl.cppD03-May-202416.9 KiB638526

cpwl_list_impl.hD03-May-20245.5 KiB170137

cpwl_scroll_bar.cppD03-May-202426.2 KiB931730

cpwl_scroll_bar.hD03-May-20245.5 KiB187144

cpwl_special_button.cppD03-May-20241.8 KiB8154

cpwl_special_button.hD03-May-20241.4 KiB5735

cpwl_timer.cppD03-May-20241.5 KiB6341

cpwl_timer.hD03-May-2024807 3218

cpwl_timer_handler.cppD03-May-2024756 2815

cpwl_timer_handler.hD03-May-2024724 3117

cpwl_wnd.cppD03-May-202421.5 KiB802642

cpwl_wnd.hD03-May-202410.6 KiB327252

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_Icon
15    * CPWL_ListBox
16        * CPWL_CBListBox (combo box)
17    * CPWL_ScrollBar
18
19Widgets are rendered to Appearance Streams, with the case all centralized in
20CPWL_AppStream.
21
22