Home | History | Annotate | only in /external/pdfium/fpdfsdk/pwl
Up to higher level directory
NameDateSize
cpwl_appstream.cpp21-Aug-201867.6K
cpwl_appstream.h21-Aug-20181.2K
cpwl_button.cpp21-Aug-2018926
cpwl_button.h21-Aug-2018773
cpwl_caret.cpp21-Aug-20183.5K
cpwl_caret.h21-Aug-20181.1K
cpwl_combo_box.cpp21-Aug-201815K
cpwl_combo_box.h21-Aug-20183.2K
cpwl_combo_box_embeddertest.cpp21-Aug-201812.9K
cpwl_edit.cpp21-Aug-201819K
cpwl_edit.h21-Aug-20184.7K
cpwl_edit_ctrl.cpp21-Aug-20189.6K
cpwl_edit_ctrl.h21-Aug-20182.7K
cpwl_edit_embeddertest.cpp21-Aug-201814.9K
cpwl_edit_impl.cpp21-Aug-201849.7K
cpwl_edit_impl.h21-Aug-201812.4K
cpwl_font_map.cpp21-Aug-201812.2K
cpwl_font_map.h21-Aug-20183.1K
cpwl_icon.cpp21-Aug-20183.6K
cpwl_icon.h21-Aug-20181.1K
cpwl_list_box.cpp21-Aug-201810.6K
cpwl_list_box.h21-Aug-20183.3K
cpwl_list_impl.cpp21-Aug-201816.9K
cpwl_list_impl.h21-Aug-20185.5K
cpwl_scroll_bar.cpp21-Aug-201826.2K
cpwl_scroll_bar.h21-Aug-20185.5K
cpwl_special_button.cpp21-Aug-20181.8K
cpwl_special_button.h21-Aug-20181.4K
cpwl_timer.cpp21-Aug-20181.5K
cpwl_timer.h21-Aug-2018807
cpwl_timer_handler.cpp21-Aug-2018756
cpwl_timer_handler.h21-Aug-2018724
cpwl_wnd.cpp21-Aug-201821.5K
cpwl_wnd.h21-Aug-201810.6K
README.md21-Aug-2018533

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