Home | History | Annotate | only in /external/pdfium/fpdfsdk/pwl
Up to higher level directory
NameDateSize
cpwl_appstream.cpp22-Oct-202067.6K
cpwl_appstream.h22-Oct-20201.2K
cpwl_button.cpp22-Oct-2020926
cpwl_button.h22-Oct-2020773
cpwl_caret.cpp22-Oct-20203.5K
cpwl_caret.h22-Oct-20201.1K
cpwl_combo_box.cpp22-Oct-202015K
cpwl_combo_box.h22-Oct-20203.2K
cpwl_combo_box_embeddertest.cpp22-Oct-202012.9K
cpwl_edit.cpp22-Oct-202019K
cpwl_edit.h22-Oct-20204.7K
cpwl_edit_ctrl.cpp22-Oct-20209.6K
cpwl_edit_ctrl.h22-Oct-20202.7K
cpwl_edit_embeddertest.cpp22-Oct-202014.9K
cpwl_edit_impl.cpp22-Oct-202049.7K
cpwl_edit_impl.h22-Oct-202012.4K
cpwl_font_map.cpp22-Oct-202012.2K
cpwl_font_map.h22-Oct-20203.1K
cpwl_icon.cpp22-Oct-20203.6K
cpwl_icon.h22-Oct-20201.1K
cpwl_list_box.cpp22-Oct-202010.6K
cpwl_list_box.h22-Oct-20203.3K
cpwl_list_impl.cpp22-Oct-202016.9K
cpwl_list_impl.h22-Oct-20205.5K
cpwl_scroll_bar.cpp22-Oct-202026.2K
cpwl_scroll_bar.h22-Oct-20205.5K
cpwl_special_button.cpp22-Oct-20201.8K
cpwl_special_button.h22-Oct-20201.4K
cpwl_timer.cpp22-Oct-20201.5K
cpwl_timer.h22-Oct-2020807
cpwl_timer_handler.cpp22-Oct-2020756
cpwl_timer_handler.h22-Oct-2020724
cpwl_wnd.cpp22-Oct-202021.5K
cpwl_wnd.h22-Oct-202010.6K
README.md22-Oct-2020533

README.md

      1 fpdfsdk/pwl is a Widget Library for AcroForms.
      2 
      3 CPWL_Wnd is the base class that widget classes extend. The derived widget
      4 classes 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 
     19 Widgets are rendered to Appearance Streams, with the case all centralized in
     20 CPWL_AppStream.
     21 
     22