wxruby3 0.9.1-x64-mingw-ucrt → 0.9.3-x64-mingw-ucrt
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +1 -0
- data/INSTALL.md +35 -29
- data/README.md +24 -15
- data/ext/wxbase32u_gcc_custom.dll +0 -0
- data/ext/wxbase32u_net_gcc_custom.dll +0 -0
- data/ext/wxbase32u_xml_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_aui_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_core_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_gl_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_html_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_media_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_propgrid_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_qa_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_ribbon_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_richtext_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_stc_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_webview_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_xrc_gcc_custom.dll +0 -0
- data/lib/wx/aui/aui_tab_ctrl.rb +18 -0
- data/lib/wx/aui/auinotebook.rb +6 -2
- data/lib/wx/aui/require.rb +1 -0
- data/lib/wx/core/app.rb +2 -2
- data/lib/wx/core/bitmap_combobox.rb +17 -21
- data/lib/wx/core/collapsible_pane.rb +1 -1
- data/lib/wx/core/combobox.rb +13 -3
- data/lib/wx/core/controlwithitems.rb +40 -128
- data/lib/wx/core/enum.rb +17 -1
- data/lib/wx/core/event.rb +6 -1
- data/lib/wx/core/events/evt_list.rb +5 -4
- data/lib/wx/core/evthandler.rb +8 -2
- data/lib/wx/core/generic_validator.rb +312 -0
- data/lib/wx/core/listbox.rb +2 -2
- data/lib/wx/core/log.rb +1 -1
- data/lib/wx/core/menu.rb +10 -0
- data/lib/wx/core/notebook.rb +6 -2
- data/lib/wx/core/owner_drawn_combobox.rb +45 -0
- data/lib/wx/core/size.rb +4 -0
- data/lib/wx/core/sizer.rb +12 -2
- data/lib/wx/core/standard_paths.rb +22 -0
- data/lib/wx/core/task_bar_button.rb +19 -0
- data/lib/wx/core/text_entry.rb +4 -1
- data/lib/wx/core/textctrl.rb +11 -1
- data/lib/wx/core/{treectrl.rb → tree_ctrl.rb} +31 -12
- data/lib/wx/core/validator.rb +70 -5
- data/lib/wx/core/window.rb +13 -7
- data/lib/wx/doc/app.rb +48 -38
- data/lib/wx/doc/art_locator.rb +48 -43
- data/lib/wx/doc/aui/auimanager.rb +16 -8
- data/lib/wx/doc/aui/auinotebook.rb +20 -5
- data/lib/wx/doc/clipboard.rb +11 -7
- data/lib/wx/doc/colour_dialog.rb +14 -10
- data/lib/wx/doc/comboctrl.rb +18 -0
- data/lib/wx/doc/controlwithitems.rb +34 -8
- data/lib/wx/doc/data_object.rb +2 -2
- data/lib/wx/doc/date_picker_ctrl.rb +23 -0
- data/lib/wx/doc/editable_listbox.rb +44 -0
- data/lib/wx/doc/enum.rb +15 -0
- data/lib/wx/doc/event.rb +12 -0
- data/lib/wx/doc/evthandler.rb +113 -108
- data/lib/wx/doc/extra/12_client_data.md +89 -0
- data/lib/wx/doc/extra/13_validators.md +139 -0
- data/lib/wx/doc/font.rb +1 -0
- data/lib/wx/doc/gc_dc.rb +6 -1
- data/lib/wx/doc/gdi_common.rb +4 -0
- data/lib/wx/doc/gen/about_dialog_info.rb +26 -2
- data/lib/wx/doc/gen/accelerator.rb +19 -4
- data/lib/wx/doc/gen/accessible.rb +48 -47
- data/lib/wx/doc/gen/activity_indicator.rb +10 -4
- data/lib/wx/doc/gen/animation.rb +19 -3
- data/lib/wx/doc/gen/animation_ctrl.rb +16 -7
- data/lib/wx/doc/gen/any_button.rb +22 -1
- data/lib/wx/doc/gen/app.rb +41 -5
- data/lib/wx/doc/gen/app_traits.rb +65 -15
- data/lib/wx/doc/gen/art_provider.rb +33 -7
- data/lib/wx/doc/gen/aui/aui_dock_art.rb +18 -3
- data/lib/wx/doc/gen/aui/aui_floating_frame.rb +2 -0
- data/lib/wx/doc/gen/aui/aui_manager.rb +35 -8
- data/lib/wx/doc/gen/aui/aui_manager_event.rb +11 -4
- data/lib/wx/doc/gen/aui/aui_mdi_child_frame.rb +4 -0
- data/lib/wx/doc/gen/aui/aui_mdi_client_window.rb +3 -0
- data/lib/wx/doc/gen/aui/aui_mdi_parent_frame.rb +8 -1
- data/lib/wx/doc/gen/aui/aui_notebook.rb +31 -7
- data/lib/wx/doc/gen/aui/aui_notebook_event.rb +5 -4
- data/lib/wx/doc/gen/aui/aui_pane_info.rb +38 -2
- data/lib/wx/doc/gen/aui/aui_tab_art.rb +9 -3
- data/lib/wx/doc/gen/aui/aui_tab_ctrl.rb +2 -1
- data/lib/wx/doc/gen/aui/aui_tool_bar.rb +20 -6
- data/lib/wx/doc/gen/aui/aui_tool_bar_art.rb +4 -2
- data/lib/wx/doc/gen/aui/aui_tool_bar_event.rb +5 -7
- data/lib/wx/doc/gen/aui/aui_tool_bar_item.rb +5 -1
- data/lib/wx/doc/gen/aui/event_list.rb +164 -160
- data/lib/wx/doc/gen/banner_window.rb +8 -1
- data/lib/wx/doc/gen/bitmap.rb +94 -16
- data/lib/wx/doc/gen/bitmap_button.rb +16 -8
- data/lib/wx/doc/gen/bitmap_combo_box.rb +20 -10
- data/lib/wx/doc/gen/book_ctrl_base.rb +31 -4
- data/lib/wx/doc/gen/book_ctrl_event.rb +9 -3
- data/lib/wx/doc/gen/box_sizer.rb +5 -1
- data/lib/wx/doc/gen/brush.rb +20 -2
- data/lib/wx/doc/gen/busy_info.rb +10 -2
- data/lib/wx/doc/gen/button.rb +31 -11
- data/lib/wx/doc/gen/calculate_layout_event.rb +5 -3
- data/lib/wx/doc/gen/calendar_ctrl.rb +38 -13
- data/lib/wx/doc/gen/calendar_date_attr.rb +2 -1
- data/lib/wx/doc/gen/calendar_event.rb +5 -2
- data/lib/wx/doc/gen/caret.rb +3 -1
- data/lib/wx/doc/gen/check_box.rb +17 -7
- data/lib/wx/doc/gen/check_list_box.rb +8 -6
- data/lib/wx/doc/gen/choice.rb +28 -9
- data/lib/wx/doc/gen/choicebook.rb +7 -7
- data/lib/wx/doc/gen/client_dc.rb +6 -2
- data/lib/wx/doc/gen/clipboard.rb +16 -3
- data/lib/wx/doc/gen/collapsible_pane.rb +9 -7
- data/lib/wx/doc/gen/collapsible_pane_event.rb +3 -3
- data/lib/wx/doc/gen/colour.rb +28 -4
- data/lib/wx/doc/gen/colour_dialog.rb +15 -7
- data/lib/wx/doc/gen/colour_picker_ctrl.rb +13 -10
- data/lib/wx/doc/gen/colour_picker_event.rb +5 -5
- data/lib/wx/doc/gen/combo_box.rb +36 -14
- data/lib/wx/doc/gen/combo_ctrl.rb +117 -295
- data/lib/wx/doc/gen/command_link_button.rb +12 -5
- data/lib/wx/doc/gen/context_help_button.rb +13 -3
- data/lib/wx/doc/gen/control.rb +22 -8
- data/lib/wx/doc/gen/control_with_items.rb +45 -10
- data/lib/wx/doc/gen/core.rb +4 -4
- data/lib/wx/doc/gen/cursor.rb +10 -8
- data/lib/wx/doc/gen/data_format.rb +7 -1
- data/lib/wx/doc/gen/data_object.rb +42 -18
- data/lib/wx/doc/gen/date_event.rb +3 -2
- data/lib/wx/doc/gen/date_picker_ctrl.rb +18 -8
- data/lib/wx/doc/gen/dc.rb +238 -36
- data/lib/wx/doc/gen/defs.rb +51 -51
- data/lib/wx/doc/gen/dial_up_event.rb +2 -1
- data/lib/wx/doc/gen/dial_up_manager.rb +25 -5
- data/lib/wx/doc/gen/dialog.rb +72 -13
- data/lib/wx/doc/gen/dir_dialog.rb +22 -5
- data/lib/wx/doc/gen/dir_filter_list_ctrl.rb +2 -0
- data/lib/wx/doc/gen/dir_picker_ctrl.rb +14 -10
- data/lib/wx/doc/gen/drag_drop.rb +28 -7
- data/lib/wx/doc/gen/drag_image.rb +13 -2
- data/lib/wx/doc/gen/editable_list_box.rb +7 -5
- data/lib/wx/doc/gen/event.rb +57 -26
- data/lib/wx/doc/gen/event_blocker.rb +2 -3
- data/lib/wx/doc/gen/event_filter.rb +3 -0
- data/lib/wx/doc/gen/event_list.rb +1656 -1652
- data/lib/wx/doc/gen/events.rb +305 -173
- data/lib/wx/doc/gen/evt_handler.rb +49 -3
- data/lib/wx/doc/gen/ext_help_controller.rb +10 -1
- data/lib/wx/doc/gen/file_ctrl.rb +28 -10
- data/lib/wx/doc/gen/file_ctrl_event.rb +7 -4
- data/lib/wx/doc/gen/file_dialog.rb +44 -14
- data/lib/wx/doc/gen/file_dialog_custom_control.rb +19 -0
- data/lib/wx/doc/gen/file_dialog_customize_hook.rb +11 -3
- data/lib/wx/doc/gen/file_dir_picker_event.rb +4 -4
- data/lib/wx/doc/gen/file_picker_ctrl.rb +12 -9
- data/lib/wx/doc/gen/file_system.rb +54 -15
- data/lib/wx/doc/gen/find_dialog_event.rb +6 -4
- data/lib/wx/doc/gen/find_replace_data.rb +2 -1
- data/lib/wx/doc/gen/find_replace_dialog.rb +4 -1
- data/lib/wx/doc/gen/flex_grid_sizer.rb +13 -1
- data/lib/wx/doc/gen/font.rb +103 -20
- data/lib/wx/doc/gen/font_data.rb +16 -3
- data/lib/wx/doc/gen/font_dialog.rb +6 -1
- data/lib/wx/doc/gen/font_picker_ctrl.rb +14 -7
- data/lib/wx/doc/gen/font_picker_event.rb +3 -3
- data/lib/wx/doc/gen/frame.rb +73 -15
- data/lib/wx/doc/gen/fs_file.rb +39 -10
- data/lib/wx/doc/gen/gauge.rb +19 -8
- data/lib/wx/doc/gen/gb_sizer_item.rb +5 -1
- data/lib/wx/doc/gen/gcdc.rb +3 -2
- data/lib/wx/doc/gen/gdi_common.rb +80 -11
- data/lib/wx/doc/gen/gdi_object.rb +1 -1
- data/lib/wx/doc/gen/generic_dir_ctrl.rb +13 -7
- data/lib/wx/doc/gen/graphics_context.rb +86 -10
- data/lib/wx/doc/gen/graphics_object.rb +35 -6
- data/lib/wx/doc/gen/grid/event_list.rb +168 -164
- data/lib/wx/doc/gen/grid/grid_cell_activatable_editor.rb +3 -0
- data/lib/wx/doc/gen/grid/grid_cell_attr.rb +16 -3
- data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_editor.rb +1 -1
- data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_renderer.rb +2 -1
- data/lib/wx/doc/gen/grid/grid_cell_bool_editor.rb +2 -1
- data/lib/wx/doc/gen/grid/grid_cell_bool_renderer.rb +1 -1
- data/lib/wx/doc/gen/grid/grid_cell_choice_editor.rb +2 -1
- data/lib/wx/doc/gen/grid/grid_cell_date_editor.rb +2 -1
- data/lib/wx/doc/gen/grid/grid_cell_date_renderer.rb +2 -1
- data/lib/wx/doc/gen/grid/grid_cell_date_time_renderer.rb +2 -1
- data/lib/wx/doc/gen/grid/grid_cell_editor.rb +10 -1
- data/lib/wx/doc/gen/grid/grid_cell_enum_editor.rb +2 -1
- data/lib/wx/doc/gen/grid/grid_cell_enum_renderer.rb +2 -1
- data/lib/wx/doc/gen/grid/grid_cell_float_editor.rb +1 -1
- data/lib/wx/doc/gen/grid/grid_cell_float_renderer.rb +2 -1
- data/lib/wx/doc/gen/grid/grid_cell_number_editor.rb +2 -1
- data/lib/wx/doc/gen/grid/grid_cell_number_renderer.rb +1 -1
- data/lib/wx/doc/gen/grid/grid_cell_renderer.rb +7 -1
- data/lib/wx/doc/gen/grid/grid_cell_string_renderer.rb +1 -1
- data/lib/wx/doc/gen/grid/grid_cell_text_editor.rb +1 -1
- data/lib/wx/doc/gen/grid/grid_ctrl.rb +256 -12
- data/lib/wx/doc/gen/grid/grid_editor_created_event.rb +6 -4
- data/lib/wx/doc/gen/grid/grid_event.rb +6 -4
- data/lib/wx/doc/gen/grid/grid_range_select_event.rb +4 -4
- data/lib/wx/doc/gen/grid/grid_size_event.rb +4 -4
- data/lib/wx/doc/gen/grid/grid_string_table.rb +8 -0
- data/lib/wx/doc/gen/grid/grid_table_base.rb +28 -3
- data/lib/wx/doc/gen/grid/grid_table_message.rb +2 -0
- data/lib/wx/doc/gen/grid_bag_sizer.rb +21 -7
- data/lib/wx/doc/gen/grid_sizer.rb +11 -1
- data/lib/wx/doc/gen/gui_event_loop.rb +13 -3
- data/lib/wx/doc/gen/header_ctrl.rb +110 -11
- data/lib/wx/doc/gen/header_ctrl_event.rb +4 -2
- data/lib/wx/doc/gen/help_controller.rb +14 -3
- data/lib/wx/doc/gen/help_provider.rb +22 -4
- data/lib/wx/doc/gen/html/event_list.rb +41 -37
- data/lib/wx/doc/gen/html/html_cell.rb +48 -6
- data/lib/wx/doc/gen/html/html_cell_event.rb +5 -4
- data/lib/wx/doc/gen/html/html_easy_printing.rb +20 -3
- data/lib/wx/doc/gen/html/html_help_controller.rb +26 -2
- data/lib/wx/doc/gen/html/html_help_data.rb +8 -1
- data/lib/wx/doc/gen/html/html_help_window.rb +9 -1
- data/lib/wx/doc/gen/html/html_link_event.rb +3 -3
- data/lib/wx/doc/gen/html/html_list_box.rb +54 -16
- data/lib/wx/doc/gen/html/html_printout.rb +7 -1
- data/lib/wx/doc/gen/html/html_window.rb +43 -6
- data/lib/wx/doc/gen/hyperlink_ctrl.rb +9 -8
- data/lib/wx/doc/gen/hyperlink_event.rb +3 -3
- data/lib/wx/doc/gen/icon.rb +23 -29
- data/lib/wx/doc/gen/icon_location.rb +1 -1
- data/lib/wx/doc/gen/image.rb +143 -20
- data/lib/wx/doc/gen/image_list.rb +25 -6
- data/lib/wx/doc/gen/info_bar.rb +14 -2
- data/lib/wx/doc/gen/keyboard_state.rb +11 -1
- data/lib/wx/doc/gen/list_box.rb +46 -17
- data/lib/wx/doc/gen/list_ctrl.rb +165 -29
- data/lib/wx/doc/gen/list_event.rb +13 -4
- data/lib/wx/doc/gen/listbook.rb +7 -7
- data/lib/wx/doc/gen/locale.rb +68 -4
- data/lib/wx/doc/gen/log.rb +58 -12
- data/lib/wx/doc/gen/mdi_client_window.rb +11 -2
- data/lib/wx/doc/gen/mdi_frame.rb +51 -7
- data/lib/wx/doc/gen/media_ctrl.rb +43 -18
- data/lib/wx/doc/gen/media_event.rb +6 -4
- data/lib/wx/doc/gen/memory_dc.rb +16 -6
- data/lib/wx/doc/gen/menu.rb +81 -26
- data/lib/wx/doc/gen/menu_bar.rb +74 -15
- data/lib/wx/doc/gen/menu_item.rb +67 -19
- data/lib/wx/doc/gen/message_dialog.rb +17 -8
- data/lib/wx/doc/gen/mini_frame.rb +14 -5
- data/lib/wx/doc/gen/mirror_dc.rb +1 -2
- data/lib/wx/doc/gen/mouse_state.rb +1 -1
- data/lib/wx/doc/gen/multi_choice_dialog.rb +9 -4
- data/lib/wx/doc/gen/non_owned_window.rb +4 -1
- data/lib/wx/doc/gen/notebook.rb +27 -9
- data/lib/wx/doc/gen/num_validator.rb +37 -0
- data/lib/wx/doc/gen/number_entry_dialog.rb +5 -1
- data/lib/wx/doc/gen/object.rb +3 -1
- data/lib/wx/doc/gen/owner_drawn_combo_box.rb +340 -0
- data/lib/wx/doc/gen/paint_dc.rb +1 -1
- data/lib/wx/doc/gen/palette.rb +5 -1
- data/lib/wx/doc/gen/panel.rb +25 -8
- data/lib/wx/doc/gen/pen.rb +46 -8
- data/lib/wx/doc/gen/pg/event_list.rb +97 -93
- data/lib/wx/doc/gen/pg/numeric_property_validator.rb +4 -1
- data/lib/wx/doc/gen/pg/pg_array_editor_dialog.rb +12 -1
- data/lib/wx/doc/gen/pg/pg_cell.rb +11 -3
- data/lib/wx/doc/gen/pg/pg_editor.rb +161 -16
- data/lib/wx/doc/gen/pg/pg_multi_button.rb +3 -2
- data/lib/wx/doc/gen/pg/pg_properties.rb +632 -83
- data/lib/wx/doc/gen/pg/pg_property.rb +381 -77
- data/lib/wx/doc/gen/pg/pg_validation_info.rb +11 -4
- data/lib/wx/doc/gen/pg/property_grid.rb +123 -20
- data/lib/wx/doc/gen/pg/property_grid_event.rb +41 -9
- data/lib/wx/doc/gen/pg/property_grid_interface.rb +273 -34
- data/lib/wx/doc/gen/pg/property_grid_manager.rb +62 -10
- data/lib/wx/doc/gen/pg/property_grid_page.rb +33 -8
- data/lib/wx/doc/gen/pg/property_grid_page_state.rb +18 -4
- data/lib/wx/doc/gen/picker_base.rb +22 -5
- data/lib/wx/doc/gen/platform_info.rb +35 -9
- data/lib/wx/doc/gen/popup_window.rb +7 -5
- data/lib/wx/doc/gen/progress_dialog.rb +5 -0
- data/lib/wx/doc/gen/property_sheet_dialog.rb +20 -4
- data/lib/wx/doc/gen/prt/event_list.rb +8 -4
- data/lib/wx/doc/gen/prt/page_setup_dialog.rb +3 -1
- data/lib/wx/doc/gen/prt/post_script_dc.rb +3 -2
- data/lib/wx/doc/gen/prt/preview_frame.rb +5 -1
- data/lib/wx/doc/gen/prt/print_abort_dialog.rb +4 -0
- data/lib/wx/doc/gen/prt/print_data.rb +31 -3
- data/lib/wx/doc/gen/prt/print_dialog.rb +5 -1
- data/lib/wx/doc/gen/prt/printer.rb +87 -11
- data/lib/wx/doc/gen/prt/printer_dc.rb +3 -1
- data/lib/wx/doc/gen/query_layout_info_event.rb +10 -3
- data/lib/wx/doc/gen/radio_box.rb +28 -10
- data/lib/wx/doc/gen/radio_button.rb +22 -9
- data/lib/wx/doc/gen/rbn/event_list.rb +127 -123
- data/lib/wx/doc/gen/rbn/ribbon_art_provider.rb +82 -3
- data/lib/wx/doc/gen/rbn/ribbon_bar.rb +26 -4
- data/lib/wx/doc/gen/rbn/ribbon_bar_event.rb +3 -2
- data/lib/wx/doc/gen/rbn/ribbon_button_bar.rb +50 -12
- data/lib/wx/doc/gen/rbn/ribbon_button_bar_event.rb +3 -2
- data/lib/wx/doc/gen/rbn/ribbon_control.rb +11 -1
- data/lib/wx/doc/gen/rbn/ribbon_gallery.rb +21 -11
- data/lib/wx/doc/gen/rbn/ribbon_gallery_event.rb +2 -2
- data/lib/wx/doc/gen/rbn/ribbon_page.rb +12 -1
- data/lib/wx/doc/gen/rbn/ribbon_panel.rb +16 -4
- data/lib/wx/doc/gen/rbn/ribbon_panel_event.rb +3 -3
- data/lib/wx/doc/gen/rbn/ribbon_tool_bar.rb +27 -3
- data/lib/wx/doc/gen/rbn/ribbon_tool_bar_event.rb +3 -1
- data/lib/wx/doc/gen/rearrange_ctrl.rb +5 -2
- data/lib/wx/doc/gen/rearrange_list.rb +12 -4
- data/lib/wx/doc/gen/region.rb +104 -17
- data/lib/wx/doc/gen/region_iterator.rb +1 -1
- data/lib/wx/doc/gen/rtc/event_list.rb +116 -112
- data/lib/wx/doc/gen/rtc/rich_text_box.rb +27 -9
- data/lib/wx/doc/gen/rtc/rich_text_buffer.rb +45 -11
- data/lib/wx/doc/gen/rtc/rich_text_buffer_data_object.rb +1 -1
- data/lib/wx/doc/gen/rtc/rich_text_composite_object.rb +23 -14
- data/lib/wx/doc/gen/rtc/rich_text_ctrl.rb +84 -7
- data/lib/wx/doc/gen/rtc/rich_text_event.rb +8 -4
- data/lib/wx/doc/gen/rtc/rich_text_file_handler.rb +8 -2
- data/lib/wx/doc/gen/rtc/rich_text_formatting_dialog.rb +8 -3
- data/lib/wx/doc/gen/rtc/rich_text_header_footer_data.rb +4 -2
- data/lib/wx/doc/gen/rtc/rich_text_html_handler.rb +6 -3
- data/lib/wx/doc/gen/rtc/rich_text_image.rb +7 -2
- data/lib/wx/doc/gen/rtc/rich_text_object.rb +82 -17
- data/lib/wx/doc/gen/rtc/rich_text_paragraph_layout_box.rb +54 -11
- data/lib/wx/doc/gen/rtc/rich_text_printing.rb +15 -2
- data/lib/wx/doc/gen/rtc/rich_text_style_list_box.rb +14 -9
- data/lib/wx/doc/gen/rtc/rich_text_style_organiser_dialog.rb +4 -1
- data/lib/wx/doc/gen/rtc/rich_text_xml_handler.rb +4 -3
- data/lib/wx/doc/gen/rtc/symbol_picker_dialog.rb +2 -2
- data/lib/wx/doc/gen/sash_event.rb +13 -4
- data/lib/wx/doc/gen/sash_layout_window.rb +21 -4
- data/lib/wx/doc/gen/sash_window.rb +6 -4
- data/lib/wx/doc/gen/screen_dc.rb +1 -1
- data/lib/wx/doc/gen/scroll_bar.rb +28 -10
- data/lib/wx/doc/gen/scrolled_canvas.rb +48 -10
- data/lib/wx/doc/gen/scrolled_control.rb +48 -10
- data/lib/wx/doc/gen/scrolled_window.rb +48 -10
- data/lib/wx/doc/gen/search_ctrl.rb +14 -9
- data/lib/wx/doc/gen/simplebook.rb +8 -1
- data/lib/wx/doc/gen/single_choice_dialog.rb +9 -4
- data/lib/wx/doc/gen/sizer.rb +91 -16
- data/lib/wx/doc/gen/sizer_item.rb +21 -4
- data/lib/wx/doc/gen/slider.rb +50 -17
- data/lib/wx/doc/gen/spin_button.rb +24 -10
- data/lib/wx/doc/gen/spin_ctrl.rb +35 -9
- data/lib/wx/doc/gen/spin_ctrl_double.rb +13 -7
- data/lib/wx/doc/gen/spin_double_event.rb +6 -4
- data/lib/wx/doc/gen/spin_event.rb +4 -3
- data/lib/wx/doc/gen/splash_screen.rb +3 -2
- data/lib/wx/doc/gen/splitter_event.rb +12 -4
- data/lib/wx/doc/gen/splitter_window.rb +100 -18
- data/lib/wx/doc/gen/static_bitmap.rb +109 -7
- data/lib/wx/doc/gen/static_box.rb +15 -7
- data/lib/wx/doc/gen/static_box_sizer.rb +3 -2
- data/lib/wx/doc/gen/static_line.rb +7 -4
- data/lib/wx/doc/gen/static_text.rb +10 -6
- data/lib/wx/doc/gen/status_bar.rb +32 -8
- data/lib/wx/doc/gen/stc/event_list.rb +212 -208
- data/lib/wx/doc/gen/stc/styled_text_ctrl.rb +207 -13
- data/lib/wx/doc/gen/stc/styled_text_event.rb +31 -6
- data/lib/wx/doc/gen/std_dialog_button_sizer.rb +7 -1
- data/lib/wx/doc/gen/svg_file_dc.rb +15 -7
- data/lib/wx/doc/gen/system_options.rb +14 -6
- data/lib/wx/doc/gen/system_settings.rb +9 -3
- data/lib/wx/doc/gen/task_bar_button.rb +324 -0
- data/lib/wx/doc/gen/task_bar_icon.rb +26 -8
- data/lib/wx/doc/gen/task_bar_icon_event.rb +5 -3
- data/lib/wx/doc/gen/text_attr.rb +47 -5
- data/lib/wx/doc/gen/text_ctrl.rb +114 -25
- data/lib/wx/doc/gen/text_entry.rb +69 -11
- data/lib/wx/doc/gen/text_entry_dialog.rb +14 -2
- data/lib/wx/doc/gen/text_validator.rb +58 -9
- data/lib/wx/doc/gen/time_picker_ctrl.rb +11 -6
- data/lib/wx/doc/gen/timer.rb +14 -2
- data/lib/wx/doc/gen/timer_event.rb +2 -2
- data/lib/wx/doc/gen/tip_provider.rb +6 -1
- data/lib/wx/doc/gen/toggle_button.rb +73 -6
- data/lib/wx/doc/gen/tool_bar.rb +141 -25
- data/lib/wx/doc/gen/tool_tip.rb +41 -5
- data/lib/wx/doc/gen/toolbook.rb +6 -4
- data/lib/wx/doc/gen/top_level_window.rb +100 -23
- data/lib/wx/doc/gen/tree_ctrl.rb +89 -16
- data/lib/wx/doc/gen/tree_event.rb +9 -4
- data/lib/wx/doc/gen/treebook.rb +16 -4
- data/lib/wx/doc/gen/ui_action_simulator.rb +10 -2
- data/lib/wx/doc/gen/utils.rb +94 -7
- data/lib/wx/doc/gen/v_list_box.rb +27 -2
- data/lib/wx/doc/gen/v_scrolled_window.rb +21 -4
- data/lib/wx/doc/gen/validator.rb +10 -14
- data/lib/wx/doc/gen/variant.rb +7 -0
- data/lib/wx/doc/gen/window.rb +415 -57
- data/lib/wx/doc/gen/window_dc.rb +2 -1
- data/lib/wx/doc/gen/window_disabler.rb +6 -2
- data/lib/wx/doc/gen/with_images.rb +13 -2
- data/lib/wx/doc/gen/wizard.rb +22 -4
- data/lib/wx/doc/gen/wizard_event.rb +5 -4
- data/lib/wx/doc/gen/wizard_page.rb +7 -2
- data/lib/wx/doc/gen/wizard_page_simple.rb +5 -1
- data/lib/wx/doc/gen/wrap_sizer.rb +5 -1
- data/lib/wx/doc/gen/xml_node.rb +33 -4
- data/lib/wx/doc/gen/xml_resource.rb +40 -5
- data/lib/wx/doc/generic_validator.rb +95 -0
- data/lib/wx/doc/graphics_context.rb +1 -0
- data/lib/wx/doc/grid/grid.rb +22 -1
- data/lib/wx/doc/help_controller.rb +11 -7
- data/lib/wx/doc/html/html_help_controller.rb +12 -4
- data/lib/wx/doc/html/simple_html_listbox.rb +22 -0
- data/lib/wx/doc/list_ctrl.rb +33 -29
- data/lib/wx/doc/menu.rb +20 -0
- data/lib/wx/doc/notebook.rb +21 -0
- data/lib/wx/doc/num_validator.rb +387 -0
- data/lib/wx/doc/owner_drawn_combobox.rb +96 -0
- data/lib/wx/doc/pg/events.rb +13 -9
- data/lib/wx/doc/pg/numeric_property_validator.rb +33 -0
- data/lib/wx/doc/pg/pg_property.rb +18 -0
- data/lib/wx/doc/progress_dialog.rb +36 -32
- data/lib/wx/doc/prt/page_setup_dialog.rb +20 -12
- data/lib/wx/doc/prt/print_data.rb +13 -5
- data/lib/wx/doc/prt/print_dialog.rb +31 -23
- data/lib/wx/doc/prt/printer.rb +20 -12
- data/lib/wx/doc/radio_box.rb +19 -15
- data/lib/wx/doc/rbn/ribbon_bar.rb +13 -5
- data/lib/wx/doc/rbn/ribbon_button_bar.rb +13 -5
- data/lib/wx/doc/rbn/ribbon_gallery.rb +13 -5
- data/lib/wx/doc/rbn/ribbon_tool_bar.rb +13 -5
- data/lib/wx/doc/region_iterator.rb +32 -28
- data/lib/wx/doc/rtc/rich_text_composite_object.rb +24 -0
- data/lib/wx/doc/rtc/rich_text_ctrl.rb +24 -0
- data/lib/wx/doc/rtc/rich_text_paragraph.rb +24 -0
- data/lib/wx/doc/rtc/richtext_buffer.rb +27 -19
- data/lib/wx/doc/rtc/richtext_printing.rb +17 -9
- data/lib/wx/doc/rtc/richtext_style_sheet.rb +17 -9
- data/lib/wx/doc/sizer.rb +20 -0
- data/lib/wx/doc/static_bitmap.rb +25 -0
- data/lib/wx/doc/stc/styled_text_ctrl.rb +24 -0
- data/lib/wx/doc/stream.rb +39 -35
- data/lib/wx/doc/system_settings.rb +30 -26
- data/lib/wx/doc/text_validator.rb +23 -9
- data/lib/wx/doc/textctrl.rb +16 -0
- data/lib/wx/doc/tree_ctrl.rb +95 -0
- data/lib/wx/doc/treebook.rb +9 -5
- data/lib/wx/doc/v_list_box.rb +9 -5
- data/lib/wx/doc/validator.rb +113 -0
- data/lib/wx/doc/variant.rb +164 -160
- data/lib/wx/doc/window.rb +87 -47
- data/lib/wx/doc/window_disabler.rb +10 -6
- data/lib/wx/grid/grid.rb +27 -4
- data/lib/wx/html/events/evt_list.rb +0 -10
- data/lib/wx/html/simple_html_listbox.rb +24 -91
- data/lib/wx/keyword_defs.rb +34 -2
- data/lib/wx/pg/pg_property.rb +22 -0
- data/lib/wx/rbn/ribbon_gallery.rb +0 -21
- data/lib/wx/rtc/require.rb +3 -0
- data/lib/wx/rtc/rich_text_composite_object.rb +25 -0
- data/lib/wx/rtc/rich_text_ctrl.rb +25 -0
- data/lib/wx/rtc/rich_text_paragraph.rb +25 -0
- data/lib/wx/stc/require.rb +1 -0
- data/lib/wx/stc/styled_text_ctrl.rb +25 -0
- data/lib/wx/version.rb +1 -1
- data/lib/wxruby_aui.so +0 -0
- data/lib/wxruby_core.so +0 -0
- data/lib/wxruby_grid.so +0 -0
- data/lib/wxruby_html.so +0 -0
- data/lib/wxruby_pg.so +0 -0
- data/lib/wxruby_prt.so +0 -0
- data/lib/wxruby_rbn.so +0 -0
- data/lib/wxruby_rtc.so +0 -0
- data/lib/wxruby_stc.so +0 -0
- data/rakelib/lib/config/linux.rb +0 -3
- data/rakelib/lib/config/macosx.rb +2 -2
- data/rakelib/lib/config/mingw.rb +13 -1
- data/rakelib/lib/config/unixish.rb +1 -1
- data/rakelib/lib/config.rb +14 -4
- data/rakelib/yard/templates/default/fulldoc/html/css/wxruby3.css +74 -2
- data/rakelib/yard/templates/default/fulldoc/html/full_list.erb +38 -0
- data/rakelib/yard/templates/default/fulldoc/html/setup.rb +39 -0
- data/rakelib/yard/templates/default/tags/html/wxrb_require.erb +10 -0
- data/rakelib/yard/templates/default/tags/setup.rb +16 -0
- data/rakelib/yard/yard-custom-templates.rb +3 -0
- data/samples/aui/aui.rb +1237 -1233
- data/samples/calendar/calendar.rb +293 -289
- data/samples/controls/get_item_sample.rb +83 -79
- data/samples/controls/htlbox.rb +331 -327
- data/samples/dialogs/dialogs.rb +682 -694
- data/samples/dialogs/wizard.rb +52 -55
- data/samples/dragdrop/dragdrop.rb +146 -142
- data/samples/drawing/bitmap.rb +29 -26
- data/samples/drawing/bitmap_image.rb +84 -80
- data/samples/drawing/graphics_drawing.rb +209 -205
- data/samples/drawing/image_prt.rb +344 -340
- data/samples/drawing/maths_images.rb +18 -1
- data/samples/drawing/rmagic_bitmap_image.rb +88 -84
- data/samples/etc/caret.rb +306 -0
- data/samples/etc/miniframe.rb +65 -60
- data/samples/etc/sash.rb +109 -105
- data/samples/etc/scrollwin.rb +86 -80
- data/samples/etc/system_settings.rb +216 -209
- data/samples/event/activation.rb +72 -67
- data/samples/event/event.rb +160 -153
- data/samples/event/threaded.rb +8 -1
- data/samples/event/update_ui_event.rb +67 -60
- data/samples/grid/grid.rb +188 -181
- data/samples/grid/gridtablebase.rb +136 -129
- data/samples/html/html.rb +208 -204
- data/samples/mdi/mdi.rb +59 -54
- data/samples/minimal/minimal.rb +54 -51
- data/samples/minimal/nothing.rb +1 -0
- data/samples/printing/printing.rb +367 -377
- data/samples/printing/printing2.rb +203 -198
- data/samples/propgrid/propgrid.rb +2312 -2308
- data/samples/propgrid/propgrid_minimal.rb +57 -50
- data/samples/ribbon/ribbon.rb +780 -774
- data/samples/sampler/ext.rb +0 -33
- data/samples/sampler/sample.rb +4 -9
- data/samples/sampler.rb +1 -1
- data/samples/splash/splash.rb +118 -116
- data/samples/text/rich_textctrl.rb +207 -201
- data/samples/text/richtext.rb +1409 -1405
- data/samples/text/scintilla.rb +137 -128
- data/samples/text/textctrl.rb +89 -83
- data/samples/text/unicode.rb +175 -168
- data/samples/treectrl/treectrl.rb +1430 -1426
- data/samples/widgets/activityindicator.rb +95 -0
- data/samples/widgets/art/widgets/activityindicator.xpm +278 -0
- data/samples/widgets/art/widgets/bmpbtn.xpm +37 -0
- data/samples/widgets/art/widgets/bmpcombobox.xpm +54 -0
- data/samples/widgets/art/widgets/button.xpm +54 -0
- data/samples/widgets/art/widgets/checkbox.xpm +54 -0
- data/samples/{bigdemo/icons → widgets/art/widgets}/choice.xpm +1 -1
- data/samples/widgets/art/widgets/choicebk.xpm +54 -0
- data/samples/widgets/art/widgets/clrpicker.xpm +193 -0
- data/samples/widgets/art/widgets/combobox.xpm +54 -0
- data/samples/widgets/art/widgets/datepick.xpm +200 -0
- data/samples/widgets/art/widgets/dirctrl.xpm +54 -0
- data/samples/widgets/art/widgets/dirpicker.xpm +213 -0
- data/samples/widgets/art/widgets/filepicker.xpm +214 -0
- data/samples/widgets/art/widgets/fontpicker.xpm +185 -0
- data/samples/widgets/art/widgets/gauge.xpm +54 -0
- data/samples/widgets/art/widgets/header.xpm +54 -0
- data/samples/widgets/art/widgets/hyperlnk.xpm +54 -0
- data/samples/widgets/art/widgets/listbook.xpm +54 -0
- data/samples/widgets/art/widgets/listbox.xpm +54 -0
- data/samples/widgets/art/widgets/native.xpm +81 -0
- data/samples/widgets/art/widgets/notebook.xpm +54 -0
- data/samples/widgets/art/widgets/odcombobox.xpm +54 -0
- data/samples/widgets/art/widgets/radiobox.xpm +54 -0
- data/samples/widgets/art/widgets/scrolbar.xpm +54 -0
- data/samples/widgets/art/widgets/slider.xpm +54 -0
- data/samples/widgets/art/widgets/spinbtn.xpm +40 -0
- data/samples/widgets/art/widgets/statbmp.xpm +40 -0
- data/samples/widgets/art/widgets/statbox.xpm +54 -0
- data/samples/widgets/art/widgets/stattext.xpm +54 -0
- data/samples/widgets/art/widgets/text.xpm +54 -0
- data/samples/widgets/art/widgets/timepick.xpm +207 -0
- data/samples/widgets/art/widgets/toggle.xpm +54 -0
- data/samples/widgets/art/widgets/toucan.png +0 -0
- data/samples/widgets/bmpcombobox.rb +651 -0
- data/samples/widgets/button.rb +462 -0
- data/samples/widgets/checkbox.rb +211 -0
- data/samples/widgets/choice.rb +287 -0
- data/samples/widgets/clrpicker.rb +156 -0
- data/samples/widgets/combobox.rb +516 -0
- data/samples/widgets/datepick.rb +215 -0
- data/samples/widgets/dirctrl.rb +265 -0
- data/samples/widgets/dirpicker.rb +158 -0
- data/samples/widgets/editlbox.rb +122 -0
- data/samples/widgets/filectrl.rb +216 -0
- data/samples/widgets/filepicker.rb +214 -0
- data/samples/widgets/fontpicker.rb +135 -0
- data/samples/widgets/gauge.rb +311 -0
- data/samples/widgets/headerctrl.rb +236 -0
- data/samples/widgets/hyperlink.rb +203 -0
- data/samples/widgets/itemcontainer.rb +185 -0
- data/samples/widgets/listbox.rb +473 -0
- data/samples/widgets/notebook.rb +488 -0
- data/samples/widgets/odcombobox.rb +608 -0
- data/samples/widgets/radiobox.rb +328 -0
- data/samples/widgets/searchctrl.rb +159 -0
- data/samples/widgets/slider.rb +594 -0
- data/samples/widgets/spinbtn.rb +443 -0
- data/samples/widgets/statbmp.rb +130 -0
- data/samples/widgets/static.rb +436 -0
- data/samples/widgets/textctrl.rb +700 -0
- data/samples/widgets/timepick.rb +148 -0
- data/samples/widgets/tn_widgets.png +0 -0
- data/samples/widgets/toggle.rb +385 -0
- data/samples/widgets/widgets.rb +1233 -0
- data/samples/xrc/custom_xrc_sample.rb +47 -41
- data/samples/xrc/xrc_sample.rb +53 -47
- data/tests/media/beep_lo.wav +0 -0
- data/tests/test_event_handling.rb +52 -34
- data/tests/test_events.rb +7 -0
- data/tests/test_item_data.rb +24 -0
- data/tests/test_list_ctrl.rb +1 -1
- data/tests/test_media_ctrl.rb +38 -0
- data/tests/test_menu.rb +69 -0
- data/tests/test_pg.rb +27 -0
- data/tests/test_richtext.rb +45 -0
- data/tests/test_sizer.rb +59 -0
- data/tests/test_std_controls.rb +42 -1
- data/tests/test_styled_text_ctrl.rb +46 -0
- data/tests/test_tree_ctrl.rb +138 -0
- data/tests/test_validators.rb +805 -0
- data/tests/test_window.rb +12 -0
- data/tests/testapp_noframe.rb +1 -1
- metadata +113 -138
- data/lib/wx/core/choice.rb +0 -14
- data/lib/wx/core/combo_ctrl.rb +0 -110
- data/samples/bigdemo/About.rbw +0 -39
- data/samples/bigdemo/ColorPanel.rbw +0 -23
- data/samples/bigdemo/GridSimple.rbw +0 -78
- data/samples/bigdemo/MDIDemo.rbw +0 -57
- data/samples/bigdemo/PopupMenu.rbw +0 -146
- data/samples/bigdemo/ShapedWindow.rbw +0 -128
- data/samples/bigdemo/Sizers.rbw +0 -541
- data/samples/bigdemo/bigdemo.rb +0 -817
- data/samples/bigdemo/demoTemplate.rbw +0 -33
- data/samples/bigdemo/helpfile.htb +0 -0
- data/samples/bigdemo/icons/Test 015.jpg +0 -0
- data/samples/bigdemo/icons/Test 015.png +0 -0
- data/samples/bigdemo/icons/choice.bmp +0 -0
- data/samples/bigdemo/icons/combo.bmp +0 -0
- data/samples/bigdemo/icons/combo.xpm +0 -27
- data/samples/bigdemo/icons/copy.xpm +0 -25
- data/samples/bigdemo/icons/cut.xpm +0 -24
- data/samples/bigdemo/icons/gauge.bmp +0 -0
- data/samples/bigdemo/icons/gauge.xpm +0 -27
- data/samples/bigdemo/icons/help.xpm +0 -25
- data/samples/bigdemo/icons/list.bmp +0 -0
- data/samples/bigdemo/icons/list.xpm +0 -27
- data/samples/bigdemo/icons/mondrian.ico +0 -0
- data/samples/bigdemo/icons/mondrian.xpm +0 -44
- data/samples/bigdemo/icons/new.xpm +0 -24
- data/samples/bigdemo/icons/ogl.ico +0 -0
- data/samples/bigdemo/icons/ogl.xpm +0 -45
- data/samples/bigdemo/icons/open.xpm +0 -26
- data/samples/bigdemo/icons/paste.bmp +0 -0
- data/samples/bigdemo/icons/paste.xpm +0 -38
- data/samples/bigdemo/icons/pointy.png +0 -0
- data/samples/bigdemo/icons/preview.xpm +0 -26
- data/samples/bigdemo/icons/print.xpm +0 -26
- data/samples/bigdemo/icons/radio.bmp +0 -0
- data/samples/bigdemo/icons/radio.xpm +0 -27
- data/samples/bigdemo/icons/robert.xpm +0 -415
- data/samples/bigdemo/icons/sashtest.ico +0 -0
- data/samples/bigdemo/icons/save.xpm +0 -25
- data/samples/bigdemo/icons/smiles.bmp +0 -0
- data/samples/bigdemo/icons/smiles.xpm +0 -39
- data/samples/bigdemo/icons/smiley.ico +0 -0
- data/samples/bigdemo/icons/smiley.xpm +0 -42
- data/samples/bigdemo/icons/stattext.xpm +0 -24
- data/samples/bigdemo/icons/test2.bmp +0 -0
- data/samples/bigdemo/icons/test2.png +0 -0
- data/samples/bigdemo/icons/test2.xpm +0 -79
- data/samples/bigdemo/icons/text.bmp +0 -0
- data/samples/bigdemo/icons/text.xpm +0 -27
- data/samples/bigdemo/icons/tog1.bmp +0 -0
- data/samples/bigdemo/icons/tog1.xpm +0 -38
- data/samples/bigdemo/icons/tog2.bmp +0 -0
- data/samples/bigdemo/icons/tog2.xpm +0 -38
- data/samples/bigdemo/icons/wxruby-128x128.png +0 -0
- data/samples/bigdemo/icons/wxwin.ico +0 -0
- data/samples/bigdemo/icons/wxwin16x16.png +0 -0
- data/samples/bigdemo/icons/wxwin16x16.xpm +0 -25
- data/samples/bigdemo/icons/wxwin32x32.png +0 -0
- data/samples/bigdemo/icons/wxwin48x48.png +0 -0
- data/samples/bigdemo/run.rb +0 -98
- data/samples/bigdemo/tips.txt +0 -7
- data/samples/bigdemo/utils.rb +0 -20
- data/samples/bigdemo/wxArtProvider.rbw +0 -282
- data/samples/bigdemo/wxBitmapButton.rbw +0 -65
- data/samples/bigdemo/wxButton.rbw +0 -64
- data/samples/bigdemo/wxCalendarCtrl.rbw +0 -59
- data/samples/bigdemo/wxCheckBox.rbw +0 -50
- data/samples/bigdemo/wxCheckListBox.rbw +0 -65
- data/samples/bigdemo/wxChoice.rbw +0 -47
- data/samples/bigdemo/wxChoicebook.rbw +0 -78
- data/samples/bigdemo/wxColourDialog.rbw +0 -33
- data/samples/bigdemo/wxComboBox.rbw +0 -77
- data/samples/bigdemo/wxCursor.rbw +0 -136
- data/samples/bigdemo/wxDialog.rbw +0 -74
- data/samples/bigdemo/wxDirDialog.rbw +0 -29
- data/samples/bigdemo/wxDragImage.rbw +0 -70
- data/samples/bigdemo/wxFileDialog.rbw +0 -37
- data/samples/bigdemo/wxFileDialog_Save.rbw +0 -35
- data/samples/bigdemo/wxFindReplaceDialog.rbw +0 -82
- data/samples/bigdemo/wxFontDialog.rbw +0 -200
- data/samples/bigdemo/wxFrame.rbw +0 -53
- data/samples/bigdemo/wxGauge.rbw +0 -65
- data/samples/bigdemo/wxGenericDirCtrl.rbw +0 -74
- data/samples/bigdemo/wxGrid.rbw +0 -66
- data/samples/bigdemo/wxHtmlHelpController.rbw +0 -52
- data/samples/bigdemo/wxListBox.rbw +0 -140
- data/samples/bigdemo/wxListCtrl_virtual.rbw +0 -112
- data/samples/bigdemo/wxMDIWindows.rbw +0 -50
- data/samples/bigdemo/wxMenu.rbw +0 -247
- data/samples/bigdemo/wxMessageDialog.rbw +0 -27
- data/samples/bigdemo/wxMiniFrame.rbw +0 -70
- data/samples/bigdemo/wxMultipleChoiceDialog.rbw +0 -29
- data/samples/bigdemo/wxNotebook.rbw +0 -136
- data/samples/bigdemo/wxProgressDialog.rbw +0 -43
- data/samples/bigdemo/wxRadioBox.rbw +0 -72
- data/samples/bigdemo/wxRadioButton.rbw +0 -125
- data/samples/bigdemo/wxSashWindow.rbw +0 -141
- data/samples/bigdemo/wxScrolledMessageDialog.rbw +0 -57
- data/samples/bigdemo/wxScrolledWindow.rbw +0 -199
- data/samples/bigdemo/wxSingleChoiceDialog.rbw +0 -33
- data/samples/bigdemo/wxSlider.rbw +0 -42
- data/samples/bigdemo/wxSpinButton.rbw +0 -50
- data/samples/bigdemo/wxSpinCtrl.rbw +0 -51
- data/samples/bigdemo/wxSplitterWindow.rbw +0 -63
- data/samples/bigdemo/wxStaticBitmap.rbw +0 -47
- data/samples/bigdemo/wxStaticText.rbw +0 -55
- data/samples/bigdemo/wxStatusBar.rbw +0 -126
- data/samples/bigdemo/wxTextCtrl.rbw +0 -149
- data/samples/bigdemo/wxTextEntryDialog.rbw +0 -31
- data/samples/bigdemo/wxToggleButton.rbw +0 -49
- data/samples/bigdemo/wxToolBar.rbw +0 -131
- data/samples/bigdemo/wxTreeCtrl.rbw +0 -191
- data/samples/caret/caret.rb +0 -298
- data/samples/caret/mondrian.xpm +0 -44
- data/samples/controls/books.rb +0 -189
- data/samples/controls/choice.xpm +0 -27
- data/samples/controls/combo.xpm +0 -27
- data/samples/controls/controls.rb +0 -1099
- data/samples/controls/gauge.xpm +0 -27
- data/samples/controls/list.xpm +0 -27
- data/samples/controls/mondrian.ico +0 -0
- data/samples/controls/mondrian.xpm +0 -44
- data/samples/controls/radio.xpm +0 -27
- data/samples/controls/stattext.xpm +0 -24
- data/samples/controls/test2.bmp +0 -0
- data/samples/controls/text.xpm +0 -27
- data/samples/controls/tn_books.png +0 -0
- data/samples/controls/tn_controls.png +0 -0
- data/samples/etc/choice.rb +0 -87
- data/samples/etc/tn_choice.png +0 -0
- data/samples/text/mondrian.ico +0 -0
- data/samples/text/mondrian.xpm +0 -44
- /data/samples/{caret → etc}/tn_caret.png +0 -0
@@ -7,7 +7,6 @@
|
|
7
7
|
module Wx::RTC
|
8
8
|
|
9
9
|
# This class knows how to lay out paragraphs.
|
10
|
-
# ===
|
11
10
|
#
|
12
11
|
# Category: Rich Text
|
13
12
|
# @see Wx::RTC::RichTextCompositeObject
|
@@ -18,6 +17,7 @@ module Wx::RTC
|
|
18
17
|
#
|
19
18
|
#
|
20
19
|
# @note This class is <b>untracked</b> and should not be derived from nor instances extended!
|
20
|
+
# @wxrb_require USE_RICHTEXT
|
21
21
|
class RichTextParagraphLayoutBox < RichTextCompositeObject
|
22
22
|
|
23
23
|
# @overload initialize(parent=nil)
|
@@ -29,6 +29,7 @@ module Wx::RTC
|
|
29
29
|
def initialize(*args) end
|
30
30
|
|
31
31
|
# Hit-testing: returns a flag indicating hit test details, plus information about position.
|
32
|
+
#
|
32
33
|
# contextObj is returned to specify what object position is relevant to, since otherwise there's an ambiguity. @ obj might not be a child of contextObj, since we may be referring to the container itself if we have no hit on a child - for example if we click outside an object.
|
33
34
|
# The function puts the position in textPosition if one is found. pt is in logical units (a zero y position is at the beginning of the buffer).
|
34
35
|
# One of the {Wx::RTC::RichTextHitTestFlags} values.
|
@@ -36,13 +37,12 @@ module Wx::RTC
|
|
36
37
|
# @param context [Wx::RTC::RichTextDrawingContext]
|
37
38
|
# @param pt [Array(Integer, Integer), Wx::Point]
|
38
39
|
# @param textPosition [Integer]
|
39
|
-
# @param obj [Wx::RTC::RichTextObject]
|
40
|
-
# @param contextObj [Wx::RTC::RichTextObject]
|
41
40
|
# @param flags [Integer]
|
42
|
-
# @return [Array(Integer,Integer)]
|
43
|
-
def hit_test(dc, context, pt, textPosition,
|
41
|
+
# @return [Array(Integer,Integer,Wx::RTC::RichTextObject,Wx::RTC::RichTextObject)]
|
42
|
+
def hit_test(dc, context, pt, textPosition, flags=0) end
|
44
43
|
|
45
44
|
# Draw the item, within the given range.
|
45
|
+
#
|
46
46
|
# Some objects may ignore the range (for example paragraphs) while others must obey it (lines, to implement wrapping)
|
47
47
|
# @param dc [Wx::DC]
|
48
48
|
# @param context [Wx::RTC::RichTextDrawingContext]
|
@@ -55,6 +55,7 @@ module Wx::RTC
|
|
55
55
|
def draw(dc, context, range, selection, rect, descent, style) end
|
56
56
|
|
57
57
|
# Lay the item out at the specified position with the given size constraint.
|
58
|
+
#
|
58
59
|
# Layout must set the cached size. rect is the available space for the object, and parentRect is the container that is used to determine a relative size or position (for example if a text box must be 50% of the parent text box).
|
59
60
|
# @param dc [Wx::DC]
|
60
61
|
# @param context [Wx::RTC::RichTextDrawingContext]
|
@@ -65,6 +66,7 @@ module Wx::RTC
|
|
65
66
|
def layout(dc, context, rect, parentRect, style) end
|
66
67
|
|
67
68
|
# Returns the object size for the given range.
|
69
|
+
#
|
68
70
|
# Returns false if the range is invalid for this object.
|
69
71
|
# @param range [Range]
|
70
72
|
# @param size [Array(Integer, Integer), Wx::Size]
|
@@ -99,12 +101,14 @@ module Wx::RTC
|
|
99
101
|
def import_from_xml(buffer, node, handler, recurse) end
|
100
102
|
|
101
103
|
# Returns the XML node name of this object.
|
104
|
+
#
|
102
105
|
# This must be overridden for {Wx::XmlNode}-base XML export to work.
|
103
106
|
# @return [String]
|
104
107
|
def get_xml_node_name; end
|
105
108
|
alias_method :xml_node_name, :get_xml_node_name
|
106
109
|
|
107
110
|
# Returns true if objects of this class can accept the focus, i.e. a call to SetFocusObject is possible.
|
111
|
+
#
|
108
112
|
# For example, containers supporting text, such as a text box object, can accept the focus, but a table can't (set the focus to individual cells instead).
|
109
113
|
# @return [Boolean]
|
110
114
|
def accepts_focus; end
|
@@ -178,6 +182,7 @@ module Wx::RTC
|
|
178
182
|
def insert_image_with_undo(buffer, pos, imageBlock, ctrl, flags, textAttr) end
|
179
183
|
|
180
184
|
# Submits a command to insert the given field.
|
185
|
+
#
|
181
186
|
# Field data can be included in properties.
|
182
187
|
# @see Wx::RTC::RichTextField
|
183
188
|
# @see Wx::RTC::RichTextFieldType
|
@@ -193,6 +198,7 @@ module Wx::RTC
|
|
193
198
|
def insert_field_with_undo(buffer, pos, fieldType, properties, ctrl, flags, textAttr) end
|
194
199
|
|
195
200
|
# Returns the style that is appropriate for a new paragraph at this position.
|
201
|
+
#
|
196
202
|
# If the previous paragraph has a paragraph style name, looks up the next-paragraph style.
|
197
203
|
# @param buffer [Wx::RTC::RichTextBuffer]
|
198
204
|
# @param pos [Integer]
|
@@ -267,6 +273,7 @@ module Wx::RTC
|
|
267
273
|
def add_paragraphs(text, paraStyle=nil) end
|
268
274
|
|
269
275
|
# Returns the line at the given position.
|
276
|
+
#
|
270
277
|
# If caretPosition is true, the position is a caret position, which is normally a smaller number.
|
271
278
|
# @param pos [Integer]
|
272
279
|
# @param caretPosition [Boolean]
|
@@ -295,6 +302,7 @@ module Wx::RTC
|
|
295
302
|
alias_method :line_size_at_position, :get_line_size_at_position
|
296
303
|
|
297
304
|
# Given a position, returns the number of the visible line (potentially many to a paragraph), starting from zero at the start of the buffer.
|
305
|
+
#
|
298
306
|
# We also have to pass a bool (startOfLine) that indicates whether the caret is being shown at the end of the previous line or at the start of the next, since the caret can be shown at two visible positions for the same underlying position.
|
299
307
|
# @param pos [Integer]
|
300
308
|
# @param caretPosition [Boolean]
|
@@ -362,6 +370,7 @@ module Wx::RTC
|
|
362
370
|
|
363
371
|
# @overload set_style(range, style, flags=Wx::RTC::RICHTEXT_SETSTYLE_WITH_UNDO)
|
364
372
|
# Sets the attributes for the given range.
|
373
|
+
#
|
365
374
|
# Pass flags to determine how the attributes are set.
|
366
375
|
# The end point of range is specified as the last character position of the span of text. So, for example, to set the style for a character at position 5, use the range (5,5). This differs from the {Wx::RTC::RichTextCtrl} API, where you would specify (5,6).
|
367
376
|
# flags may contain a bit list of the following values:
|
@@ -386,6 +395,7 @@ module Wx::RTC
|
|
386
395
|
def set_style(*args) end
|
387
396
|
|
388
397
|
# Returns the combined text attributes for this position.
|
398
|
+
#
|
389
399
|
# This function gets the uncombined style - that is, the attributes associated with the paragraph or character content, and not necessarily the combined attributes you see on the screen. To get the combined attributes, use {Wx::RTC::RichTextParagraphLayoutBox#get_style}. If you specify (any) paragraph attribute in style's flags, this function will fetch the paragraph attributes. Otherwise, it will return the character attributes.
|
390
400
|
# @param position [Integer]
|
391
401
|
# @param style [Wx::RTC::RichTextAttr]
|
@@ -401,6 +411,7 @@ module Wx::RTC
|
|
401
411
|
alias_method :uncombined_style, :get_uncombined_style
|
402
412
|
|
403
413
|
# Implementation helper for GetStyle.
|
414
|
+
#
|
404
415
|
# If combineStyles is true, combine base, paragraph and context attributes.
|
405
416
|
# @param position [Integer]
|
406
417
|
# @param style [Wx::RTC::RichTextAttr]
|
@@ -409,6 +420,7 @@ module Wx::RTC
|
|
409
420
|
def do_get_style(position, style, combineStyles=true) end
|
410
421
|
|
411
422
|
# This function gets a style representing the common, combined attributes in the given range.
|
423
|
+
#
|
412
424
|
# Attributes which have different values within the specified range will not be included the style flags.
|
413
425
|
# The function is used to get the attributes to display in the formatting dialog: the user can edit the attributes common to the selection, and optionally specify the values of further attributes to be applied uniformly.
|
414
426
|
# To apply the edited attributes, you can use {Wx::RTC::RichTextParagraphLayoutBox#set_style} specifying the {Wx::RTC::RICHTEXT_SETSTYLE_OPTIMIZE} flag, which will only apply attributes that are different from the combined attributes within the range. So, the user edits the effective, displayed attributes for the range, but his choice won't be applied unnecessarily to content. As an example, say the style for a paragraph specifies bold, but the paragraph text doesn't specify a weight. The combined style is bold, and this is what the user will see on-screen and in the formatting dialog. The user now specifies red text, in addition to bold. When applying with {Wx::RTC::RichTextParagraphLayoutBox#set_style}, the content font weight attributes won't be changed to bold because this is already specified by the paragraph. However the text colour attributes will be changed to show red.
|
@@ -428,6 +440,7 @@ module Wx::RTC
|
|
428
440
|
|
429
441
|
# @overload set_list_style(range, def_, flags=Wx::RTC::RICHTEXT_SETSTYLE_WITH_UNDO, startFrom=1, specifiedLevel=-1)
|
430
442
|
# Sets the list attributes for the given range, passing flags to determine how the attributes are set.
|
443
|
+
#
|
431
444
|
# Either the style definition or the name of the style definition (in the current sheet) can be passed.
|
432
445
|
# flags is a bit list of the following:
|
433
446
|
#
|
@@ -453,6 +466,7 @@ module Wx::RTC
|
|
453
466
|
def set_list_style(*args) end
|
454
467
|
|
455
468
|
# Clears the list style from the given range, clearing list-related attributes and applying any named paragraph style associated with each paragraph.
|
469
|
+
#
|
456
470
|
# flags is a bit list of the following:
|
457
471
|
#
|
458
472
|
# - {Wx::RTC::RICHTEXT_SETSTYLE_WITH_UNDO}: specifies that this command will be undoable.
|
@@ -466,6 +480,7 @@ module Wx::RTC
|
|
466
480
|
|
467
481
|
# @overload number_list(range, def_=nil, flags=Wx::RTC::RICHTEXT_SETSTYLE_WITH_UNDO, startFrom=1, specifiedLevel=-1)
|
468
482
|
# Numbers the paragraphs in the given range.
|
483
|
+
#
|
469
484
|
# Pass flags to determine how the attributes are set. Either the style definition or the name of the style definition (in the current sheet) can be passed.
|
470
485
|
# flags is a bit list of the following:
|
471
486
|
#
|
@@ -494,6 +509,7 @@ module Wx::RTC
|
|
494
509
|
|
495
510
|
# @overload promote_list(promoteBy, range, def_=nil, flags=Wx::RTC::RICHTEXT_SETSTYLE_WITH_UNDO, specifiedLevel=-1)
|
496
511
|
# Promotes the list items within the given range.
|
512
|
+
#
|
497
513
|
# A positive promoteBy produces a smaller indent, and a negative number produces a larger indent. Pass flags to determine how the attributes are set. Either the style definition or the name of the style definition (in the current sheet) can be passed.
|
498
514
|
# flags is a bit list of the following:
|
499
515
|
#
|
@@ -536,6 +552,7 @@ module Wx::RTC
|
|
536
552
|
def find_next_paragraph_number(previousParagraph, attr) end
|
537
553
|
|
538
554
|
# Sets the properties for the given range, passing flags to determine how the attributes are set.
|
555
|
+
#
|
539
556
|
# You can merge properties or replace them.
|
540
557
|
# The end point of range is specified as the last character position of the span of text, plus one. So, for example, to set the properties for a character at position 5, use the range (5,6).
|
541
558
|
# flags may contain a bit list of the following values:
|
@@ -560,6 +577,7 @@ module Wx::RTC
|
|
560
577
|
def set_object_properties_with_undo(obj, properties, objToSet=nil) end
|
561
578
|
|
562
579
|
# Test if this whole range has character attributes of the specified kind.
|
580
|
+
#
|
563
581
|
# If any of the attributes are different within the range, the test fails. You can use this to implement, for example, bold button updating. style must have flags indicating which attributes are of interest.
|
564
582
|
# @param range [Range]
|
565
583
|
# @param style [Wx::RTC::RichTextAttr]
|
@@ -568,6 +586,7 @@ module Wx::RTC
|
|
568
586
|
alias_method :has_character_attributes?, :has_character_attributes
|
569
587
|
|
570
588
|
# Test if this whole range has paragraph attributes of the specified kind.
|
589
|
+
#
|
571
590
|
# If any of the attributes are different within the range, the test fails. You can use this to implement, for example, centering button updating. style must have flags indicating which attributes are of interest.
|
572
591
|
# @param range [Range]
|
573
592
|
# @param style [Wx::RTC::RichTextAttr]
|
@@ -580,12 +599,14 @@ module Wx::RTC
|
|
580
599
|
def clone; end
|
581
600
|
|
582
601
|
# Prepares the content just before insertion (or after buffer reset).
|
602
|
+
#
|
583
603
|
# Currently is only called if undo mode is on.
|
584
604
|
# @param container [Wx::RTC::RichTextParagraphLayoutBox]
|
585
605
|
# @return [void]
|
586
606
|
def prepare_content(container) end
|
587
607
|
|
588
608
|
# Insert fragment into this box at the given position.
|
609
|
+
#
|
589
610
|
# If partialParagraph is true, it is assumed that the last (or only) paragraph is just a piece of data with no paragraph marker.
|
590
611
|
# @param position [Integer]
|
591
612
|
# @param fragment [Wx::RTC::RichTextParagraphLayoutBox]
|
@@ -617,6 +638,7 @@ module Wx::RTC
|
|
617
638
|
alias_method :text, :get_text
|
618
639
|
|
619
640
|
# Sets the default style, affecting the style currently being applied (for example, setting the default style to bold will cause subsequently inserted text to be bold).
|
641
|
+
#
|
620
642
|
# This is not cumulative - setting the default style will replace the previous default style.
|
621
643
|
# Setting it to a default attribute object makes new content take on the 'basic' style.
|
622
644
|
# @param style [Wx::RTC::RichTextAttr]
|
@@ -630,6 +652,7 @@ module Wx::RTC
|
|
630
652
|
alias_method :default_style, :get_default_style
|
631
653
|
|
632
654
|
# Sets the basic (overall) style.
|
655
|
+
#
|
633
656
|
# This is the style of the whole buffer before further styles are applied, unlike the default style, which only affects the style currently being applied (for example, setting the default style to bold will cause subsequently inserted text to be bold).
|
634
657
|
# @param style [Wx::RTC::RichTextAttr]
|
635
658
|
# @return [void]
|
@@ -637,12 +660,14 @@ module Wx::RTC
|
|
637
660
|
alias_method :basic_style=, :set_basic_style
|
638
661
|
|
639
662
|
# Returns the basic (overall) style.
|
663
|
+
#
|
640
664
|
# This is the style of the whole buffer before further styles are applied, unlike the default style, which only affects the style currently being applied (for example, setting the default style to bold will cause subsequently inserted text to be bold).
|
641
665
|
# @return [Wx::RTC::RichTextAttr]
|
642
666
|
def get_basic_style; end
|
643
667
|
alias_method :basic_style, :get_basic_style
|
644
668
|
|
645
669
|
# Invalidates the buffer.
|
670
|
+
#
|
646
671
|
# With no argument, invalidates whole buffer.
|
647
672
|
# @param invalidRange [Range]
|
648
673
|
# @return [void]
|
@@ -659,6 +684,7 @@ module Wx::RTC
|
|
659
684
|
def invalidate_hierarchy(invalidRange=Wx::RICHTEXT_ALL) end
|
660
685
|
|
661
686
|
# Gather information about floating objects.
|
687
|
+
#
|
662
688
|
# If untilObj is non-NULL, will stop getting information if the current object is this, since we will collect the rest later.
|
663
689
|
# @param availableRect [Wx::Rect]
|
664
690
|
# @param untilObj [Wx::RTC::RichTextObject]
|
@@ -695,13 +721,13 @@ module Wx::RTC
|
|
695
721
|
end # RichTextParagraphLayoutBox
|
696
722
|
|
697
723
|
# This class implements the general concept of a field, an object that represents additional functionality such as a footnote, a bookmark, a page number, a table of contents, and so on.
|
724
|
+
#
|
698
725
|
# Extra information (such as a bookmark name) can be stored in the object properties.
|
699
726
|
# Drawing, layout, and property editing is delegated to classes derived from {Wx::RTC::RichTextFieldType}, such as instances of {Wx::RTC::RichTextFieldTypeStandard}; this makes the use of fields an efficient method of introducing extra functionality, since most of the information required to draw a field (such as a bitmap) is kept centrally in a single field type definition.
|
700
727
|
# The FieldType property, accessed by SetFieldType/GetFieldType, is used to retrieve the field type definition. So be careful not to overwrite this property.
|
701
728
|
# {Wx::RTC::RichTextField} is derived from {Wx::RTC::RichTextParagraphLayoutBox}, which means that it can contain its own read-only content, refreshed when the application calls the UpdateField function. Whether a field is treated as a composite or a single graphic is determined by the field type definition. If using {Wx::RTC::RichTextFieldTypeStandard}, passing the display type {Wx::RTC::RichTextFieldTypeStandard::RICHTEXT_FIELD_STYLE_COMPOSITE} to the field type definition causes the field to behave like a composite; the other display styles display a simple graphic. When implementing a composite field, you will still need to derive from {Wx::RTC::RichTextFieldTypeStandard} or {Wx::RTC::RichTextFieldType}, if only to implement UpdateField to refresh the field content appropriately. {Wx::RTC::RichTextFieldTypeStandard} is only one possible implementation, but covers common needs especially for simple, static fields using text or a bitmap.
|
702
729
|
# Register field types on application initialisation with the static function {Wx::RTC::RichTextBuffer.add_field_type}. They will be deleted automatically on application exit.
|
703
730
|
# An application can write a field to a control with {Wx::RTC::RichTextCtrl#write_field}, taking a field type, the properties for the field, and optional attributes.
|
704
|
-
# ===
|
705
731
|
#
|
706
732
|
# Category: Rich Text
|
707
733
|
# @see Wx::RTC::RichTextFieldTypeStandard
|
@@ -713,6 +739,7 @@ module Wx::RTC
|
|
713
739
|
#
|
714
740
|
#
|
715
741
|
# @note This class is <b>untracked</b> and should not be derived from nor instances extended!
|
742
|
+
# @wxrb_require USE_RICHTEXT
|
716
743
|
class RichTextField < RichTextParagraphLayoutBox
|
717
744
|
|
718
745
|
# @overload initialize(fieldType=(''), parent=nil)
|
@@ -727,6 +754,7 @@ module Wx::RTC
|
|
727
754
|
def initialize(*args) end
|
728
755
|
|
729
756
|
# Draw the item, within the given range.
|
757
|
+
#
|
730
758
|
# Some objects may ignore the range (for example paragraphs) while others must obey it (lines, to implement wrapping)
|
731
759
|
# @param dc [Wx::DC]
|
732
760
|
# @param context [Wx::RTC::RichTextDrawingContext]
|
@@ -739,6 +767,7 @@ module Wx::RTC
|
|
739
767
|
def draw(dc, context, range, selection, rect, descent, style) end
|
740
768
|
|
741
769
|
# Lay the item out at the specified position with the given size constraint.
|
770
|
+
#
|
742
771
|
# Layout must set the cached size. rect is the available space for the object, and parentRect is the container that is used to determine a relative size or position (for example if a text box must be 50% of the parent text box).
|
743
772
|
# @param dc [Wx::DC]
|
744
773
|
# @param context [Wx::RTC::RichTextDrawingContext]
|
@@ -749,6 +778,7 @@ module Wx::RTC
|
|
749
778
|
def layout(dc, context, rect, parentRect, style) end
|
750
779
|
|
751
780
|
# Returns the object size for the given range.
|
781
|
+
#
|
752
782
|
# Returns false if the range is invalid for this object.
|
753
783
|
# @param range [Range]
|
754
784
|
# @param size [Array(Integer, Integer), Wx::Size]
|
@@ -764,6 +794,7 @@ module Wx::RTC
|
|
764
794
|
alias_method :range_size, :get_range_size
|
765
795
|
|
766
796
|
# Returns the XML node name of this object.
|
797
|
+
#
|
767
798
|
# This must be overridden for {Wx::XmlNode}-base XML export to work.
|
768
799
|
# @return [String]
|
769
800
|
def get_xml_node_name; end
|
@@ -786,11 +817,13 @@ module Wx::RTC
|
|
786
817
|
alias_method :properties_menu_label, :get_properties_menu_label
|
787
818
|
|
788
819
|
# Returns true if objects of this class can accept the focus, i.e. a call to SetFocusObject is possible.
|
820
|
+
#
|
789
821
|
# For example, containers supporting text, such as a text box object, can accept the focus, but a table can't (set the focus to individual cells instead).
|
790
822
|
# @return [Boolean]
|
791
823
|
def accepts_focus; end
|
792
824
|
|
793
825
|
# Calculates the range of the object.
|
826
|
+
#
|
794
827
|
# By default, guess that the object is 1 unit long.
|
795
828
|
# @param start [Integer]
|
796
829
|
# @param end_ [Integer]
|
@@ -822,6 +855,7 @@ module Wx::RTC
|
|
822
855
|
alias_method :field_type, :get_field_type
|
823
856
|
|
824
857
|
# Update the field; delegated to the associated field type.
|
858
|
+
#
|
825
859
|
# This would typically expand the field to its value, if this is a dynamically changing and/or composite field.
|
826
860
|
# @param buffer [Wx::RTC::RichTextBuffer]
|
827
861
|
# @return [Boolean]
|
@@ -838,11 +872,12 @@ module Wx::RTC
|
|
838
872
|
end # RichTextField
|
839
873
|
|
840
874
|
# A style sheet contains named paragraph and character styles that make it easy for a user to apply combinations of attributes to a {Wx::RTC::RichTextCtrl}.
|
875
|
+
#
|
841
876
|
# You can use a {Wx::RTC::RichTextStyleListBox} in your user interface to show available styles to the user, and allow application of styles to the control.
|
842
|
-
# ===
|
843
877
|
#
|
844
878
|
# Category: Rich Text
|
845
879
|
#
|
880
|
+
# @wxrb_require USE_RICHTEXT
|
846
881
|
class RichTextStyleSheet < Object
|
847
882
|
|
848
883
|
# Constructor.
|
@@ -989,10 +1024,10 @@ module Wx::RTC
|
|
989
1024
|
end # RichTextStyleSheet
|
990
1025
|
|
991
1026
|
# This is a base class for paragraph and character styles.
|
992
|
-
# ===
|
993
1027
|
#
|
994
1028
|
# Category: Rich Text
|
995
1029
|
#
|
1030
|
+
# @wxrb_require USE_RICHTEXT
|
996
1031
|
class RichTextStyleDefinition < Object
|
997
1032
|
|
998
1033
|
# Constructor.
|
@@ -1016,6 +1051,7 @@ module Wx::RTC
|
|
1016
1051
|
alias_method :name, :get_name
|
1017
1052
|
|
1018
1053
|
# Returns the style attributes combined with the attributes of the specified base style, if any.
|
1054
|
+
#
|
1019
1055
|
# This function works recursively.
|
1020
1056
|
# @param sheet [Wx::RTC::RichTextStyleSheet]
|
1021
1057
|
# @return [Wx::RTC::RichTextAttr]
|
@@ -1060,10 +1096,10 @@ module Wx::RTC
|
|
1060
1096
|
end # RichTextStyleDefinition
|
1061
1097
|
|
1062
1098
|
# This class represents a character style definition, usually added to a {Wx::RTC::RichTextStyleSheet}.
|
1063
|
-
# ===
|
1064
1099
|
#
|
1065
1100
|
# Category: Rich Text
|
1066
1101
|
#
|
1102
|
+
# @wxrb_require USE_RICHTEXT
|
1067
1103
|
class RichTextCharacterStyleDefinition < RichTextStyleDefinition
|
1068
1104
|
|
1069
1105
|
# Constructor.
|
@@ -1074,10 +1110,10 @@ module Wx::RTC
|
|
1074
1110
|
end # RichTextCharacterStyleDefinition
|
1075
1111
|
|
1076
1112
|
# This class represents a paragraph style definition, usually added to a {Wx::RTC::RichTextStyleSheet}.
|
1077
|
-
# ===
|
1078
1113
|
#
|
1079
1114
|
# Category: Rich Text
|
1080
1115
|
#
|
1116
|
+
# @wxrb_require USE_RICHTEXT
|
1081
1117
|
class RichTextParagraphStyleDefinition < RichTextStyleDefinition
|
1082
1118
|
|
1083
1119
|
# Constructor.
|
@@ -1099,13 +1135,14 @@ module Wx::RTC
|
|
1099
1135
|
end # RichTextParagraphStyleDefinition
|
1100
1136
|
|
1101
1137
|
# This class represents a list style definition, usually added to a {Wx::RTC::RichTextStyleSheet}.
|
1138
|
+
#
|
1102
1139
|
# The class inherits paragraph attributes from {Wx::RichTextStyleParagraphDefinition}, and adds 10 further attribute objects, one for each level of a list. When applying a list style to a paragraph, the list style's base and appropriate level attributes are merged with the paragraph's existing attributes.
|
1103
1140
|
# You can apply a list style to one or more paragraphs using {Wx::RTC::RichTextCtrl#set_list_style}. You can also use the functions {Wx::RTC::RichTextCtrl#number_list}, {Wx::RTC::RichTextCtrl#promote_list} and {Wx::RTC::RichTextCtrl#clear_list_style}.
|
1104
1141
|
# As usual, there are {Wx::RTC::RichTextBuffer} versions of these functions so that you can apply them directly to a buffer without requiring a control.
|
1105
|
-
# ===
|
1106
1142
|
#
|
1107
1143
|
# Category: Rich Text
|
1108
1144
|
#
|
1145
|
+
# @wxrb_require USE_RICHTEXT
|
1109
1146
|
class RichTextListStyleDefinition < RichTextParagraphStyleDefinition
|
1110
1147
|
|
1111
1148
|
# Constructor.
|
@@ -1114,6 +1151,7 @@ module Wx::RTC
|
|
1114
1151
|
def initialize(name=('')) end
|
1115
1152
|
|
1116
1153
|
# This function combines the given paragraph style with the list style's base attributes and level style matching the given indent, returning the combined attributes.
|
1154
|
+
#
|
1117
1155
|
# If styleSheet is specified, the base style for this definition will also be included in the result.
|
1118
1156
|
# @param indent [Integer]
|
1119
1157
|
# @param paraStyle [Wx::RTC::RichTextAttr]
|
@@ -1127,6 +1165,7 @@ module Wx::RTC
|
|
1127
1165
|
def find_level_for_indent(indent) end
|
1128
1166
|
|
1129
1167
|
# This function combines the list style's base attributes and the level style matching the given indent, returning the combined attributes.
|
1168
|
+
#
|
1130
1169
|
# If styleSheet is specified, the base style for this definition will also be included in the result.
|
1131
1170
|
# @param indent [Integer]
|
1132
1171
|
# @param styleSheet [Wx::RTC::RichTextStyleSheet]
|
@@ -1135,6 +1174,7 @@ module Wx::RTC
|
|
1135
1174
|
alias_method :combined_style, :get_combined_style
|
1136
1175
|
|
1137
1176
|
# This function combines the list style's base attributes and the style for the specified level, returning the combined attributes.
|
1177
|
+
#
|
1138
1178
|
# If styleSheet is specified, the base style for this definition will also be included in the result.
|
1139
1179
|
# @param level [Integer]
|
1140
1180
|
# @param styleSheet [Wx::RTC::RichTextStyleSheet]
|
@@ -1143,6 +1183,7 @@ module Wx::RTC
|
|
1143
1183
|
alias_method :combined_style_for_level, :get_combined_style_for_level
|
1144
1184
|
|
1145
1185
|
# Returns the style for the given level.
|
1186
|
+
#
|
1146
1187
|
# level is a number between 0 and 9.
|
1147
1188
|
# @param level [Integer]
|
1148
1189
|
# @return [Wx::RTC::RichTextAttr]
|
@@ -1150,6 +1191,7 @@ module Wx::RTC
|
|
1150
1191
|
alias_method :level_attributes, :get_level_attributes
|
1151
1192
|
|
1152
1193
|
# Returns the number of levels.
|
1194
|
+
#
|
1153
1195
|
# This is hard-wired to 10. Returns the style for the given level. level is a number between 0 and 9.
|
1154
1196
|
# @return [Integer]
|
1155
1197
|
def get_level_count; end
|
@@ -1162,6 +1204,7 @@ module Wx::RTC
|
|
1162
1204
|
alias_method :numbered?, :is_numbered
|
1163
1205
|
|
1164
1206
|
# Sets the style for the given level.
|
1207
|
+
#
|
1165
1208
|
# level is a number between 0 and 9. The first and most flexible form uses a {Wx::TextAttr} object, while the second form is for convenient setting of the most commonly-used attributes.
|
1166
1209
|
# @param level [Integer]
|
1167
1210
|
# @param attr [Wx::RTC::RichTextAttr]
|
@@ -7,14 +7,16 @@
|
|
7
7
|
module Wx::RTC
|
8
8
|
|
9
9
|
# This class provides a simple interface for performing {Wx::RTC::RichTextBuffer} printing and previewing.
|
10
|
+
#
|
10
11
|
# It uses {Wx::RTC::RichTextPrintout} for layout and rendering.
|
11
|
-
# ===
|
12
12
|
#
|
13
13
|
# Category: Rich Text
|
14
14
|
#
|
15
|
+
# @wxrb_require USE_PRINTING_ARCHITECTURE,USE_RICHTEXT
|
15
16
|
class RichTextPrinting < Object
|
16
17
|
|
17
18
|
# Constructor.
|
19
|
+
#
|
18
20
|
# Optionally pass a title to be used in the preview frame and printing wait dialog, and also a parent window for these windows.
|
19
21
|
# @param name [String]
|
20
22
|
# @param parentWindow [Wx::Window]
|
@@ -22,6 +24,7 @@ module Wx::RTC
|
|
22
24
|
def initialize(name=("PRINTING"), parentWindow=nil) end
|
23
25
|
|
24
26
|
# A convenience function to get the footer text.
|
27
|
+
#
|
25
28
|
# See {Wx::RTC::RichTextHeaderFooterData} for details.
|
26
29
|
# @param page [Wx::RichTextOddEvenPage]
|
27
30
|
# @param location [Wx::RichTextPageLocation]
|
@@ -35,6 +38,7 @@ module Wx::RTC
|
|
35
38
|
alias_method :header_footer_data, :get_header_footer_data
|
36
39
|
|
37
40
|
# A convenience function to get the header text.
|
41
|
+
#
|
38
42
|
# See {Wx::RTC::RichTextHeaderFooterData} for details.
|
39
43
|
# @param page [Wx::RichTextOddEvenPage]
|
40
44
|
# @param location [Wx::RichTextPageLocation]
|
@@ -62,18 +66,21 @@ module Wx::RTC
|
|
62
66
|
def page_setup; end
|
63
67
|
|
64
68
|
# Shows a preview window for the given buffer.
|
69
|
+
#
|
65
70
|
# The function takes its own copy of buffer.
|
66
71
|
# @param buffer [Wx::RTC::RichTextBuffer]
|
67
72
|
# @return [Boolean]
|
68
73
|
def preview_buffer(buffer) end
|
69
74
|
|
70
75
|
# Shows a preview window for the given file.
|
76
|
+
#
|
71
77
|
# richTextFile can be a text file or XML file, or other file depending on the available file handlers.
|
72
78
|
# @param richTextFile [String]
|
73
79
|
# @return [Boolean]
|
74
80
|
def preview_file(richTextFile) end
|
75
81
|
|
76
82
|
# Prints the given buffer.
|
83
|
+
#
|
77
84
|
# The function takes its own copy of buffer. showPrintDialog can be true to show the print dialog, or false to print quietly.
|
78
85
|
# @param buffer [Wx::RTC::RichTextBuffer]
|
79
86
|
# @param showPrintDialog [Boolean]
|
@@ -81,6 +88,7 @@ module Wx::RTC
|
|
81
88
|
def print_buffer(buffer, showPrintDialog=true) end
|
82
89
|
|
83
90
|
# Prints the given file.
|
91
|
+
#
|
84
92
|
# richTextFile can be a text file or XML file, or other file depending on the available file handlers. showPrintDialog can be true to show the print dialog, or false to print quietly.
|
85
93
|
# @param richTextFile [String]
|
86
94
|
# @param showPrintDialog [Boolean]
|
@@ -88,6 +96,7 @@ module Wx::RTC
|
|
88
96
|
def print_file(richTextFile, showPrintDialog=true) end
|
89
97
|
|
90
98
|
# A convenience function to set the footer text.
|
99
|
+
#
|
91
100
|
# See {Wx::RTC::RichTextHeaderFooterData} for details.
|
92
101
|
# @param text [String]
|
93
102
|
# @param page [Wx::RichTextOddEvenPage]
|
@@ -115,6 +124,7 @@ module Wx::RTC
|
|
115
124
|
alias_method :header_footer_text_colour=, :set_header_footer_text_colour
|
116
125
|
|
117
126
|
# A convenience function to set the header text.
|
127
|
+
#
|
118
128
|
# See {Wx::RTC::RichTextHeaderFooterData} for details.
|
119
129
|
# @param text [String]
|
120
130
|
# @param page [Wx::RichTextOddEvenPage]
|
@@ -162,11 +172,12 @@ module Wx::RTC
|
|
162
172
|
end # RichTextPrinting
|
163
173
|
|
164
174
|
# This class implements print layout for {Wx::RTC::RichTextBuffer}.
|
175
|
+
#
|
165
176
|
# Instead of using it directly, you should normally use the {Wx::RTC::RichTextPrinting} class.
|
166
|
-
# ===
|
167
177
|
#
|
168
178
|
# Category: Rich Text
|
169
179
|
#
|
180
|
+
# @wxrb_require USE_PRINTING_ARCHITECTURE,USE_RICHTEXT
|
170
181
|
class RichTextPrintout < Printout
|
171
182
|
|
172
183
|
# Constructor.
|
@@ -219,6 +230,7 @@ module Wx::RTC
|
|
219
230
|
alias_method :header_footer_data=, :set_header_footer_data
|
220
231
|
|
221
232
|
# Sets margins in 10ths of millimetre.
|
233
|
+
#
|
222
234
|
# Defaults to 1 inch for margins.
|
223
235
|
# @param top [Integer]
|
224
236
|
# @param bottom [Integer]
|
@@ -229,6 +241,7 @@ module Wx::RTC
|
|
229
241
|
alias_method :margins=, :set_margins
|
230
242
|
|
231
243
|
# Sets the buffer to print.
|
244
|
+
#
|
232
245
|
# {Wx::RTC::RichTextPrintout} does not manage this pointer; it should be managed by the calling code, such as {Wx::RTC::RichTextPrinting}.
|
233
246
|
# @param buffer [Wx::RTC::RichTextBuffer]
|
234
247
|
# @return [void]
|
@@ -7,20 +7,22 @@
|
|
7
7
|
module Wx::RTC
|
8
8
|
|
9
9
|
# This is a listbox that can display the styles in a {Wx::RTC::RichTextStyleSheet}, and apply the selection to an associated {Wx::RTC::RichTextCtrl}.
|
10
|
+
#
|
10
11
|
# See <code>samples/richtext</code> for an example of how to use it.
|
11
|
-
# ===
|
12
12
|
#
|
13
13
|
# Category: Rich Text
|
14
14
|
# @see Wx::RTC::RichTextStyleComboCtrl
|
15
15
|
# @see wxRichTextCtrl Overview
|
16
16
|
#
|
17
17
|
#
|
18
|
+
# @wxrb_require USE_RICHTEXT
|
18
19
|
class RichTextStyleListBox < HtmlListBox
|
19
20
|
|
20
21
|
# Which type of style definition is currently showing?
|
21
22
|
#
|
22
23
|
#
|
23
24
|
#
|
25
|
+
# @wxrb_require USE_RICHTEXT
|
24
26
|
class RichTextStyleType < Wx::Enum
|
25
27
|
|
26
28
|
#
|
@@ -104,7 +106,7 @@ module Wx::RTC
|
|
104
106
|
alias_method :style_sheet, :get_style_sheet
|
105
107
|
|
106
108
|
# Returns the type of style to show in the list box.
|
107
|
-
# @return [Wx::
|
109
|
+
# @return [Wx::RichTextStyleListBox::RichTextStyleType]
|
108
110
|
def get_style_type; end
|
109
111
|
alias_method :style_type, :get_style_type
|
110
112
|
|
@@ -132,13 +134,14 @@ module Wx::RTC
|
|
132
134
|
alias_method :style_sheet=, :set_style_sheet
|
133
135
|
|
134
136
|
# Sets the style type to display.
|
137
|
+
#
|
135
138
|
# One of
|
136
139
|
#
|
137
140
|
# - {Wx::RTC::RichTextStyleListBox::RichTextStyleType::RICHTEXT_STYLE_ALL},
|
138
141
|
# - {Wx::RTC::RichTextStyleListBox::RichTextStyleType::RICHTEXT_STYLE_PARAGRAPH},
|
139
142
|
# - {Wx::RTC::RichTextStyleListBox::RichTextStyleType::RICHTEXT_STYLE_CHARACTER}
|
140
143
|
# - {Wx::RTC::RichTextStyleListBox::RichTextStyleType::RICHTEXT_STYLE_LIST}.
|
141
|
-
# @param styleType [Wx::
|
144
|
+
# @param styleType [Wx::RichTextStyleListBox::RichTextStyleType]
|
142
145
|
# @return [void]
|
143
146
|
def set_style_type(styleType) end
|
144
147
|
alias_method :style_type=, :set_style_type
|
@@ -150,19 +153,19 @@ module Wx::RTC
|
|
150
153
|
end # RichTextStyleListBox
|
151
154
|
|
152
155
|
# This class incorporates a {Wx::RTC::RichTextStyleListBox} and a choice control that allows the user to select the category of style to view.
|
156
|
+
#
|
153
157
|
# It is demonstrated in the {Wx::RTC::RichTextCtrl} sample in <code>samples/richtext</code>.
|
154
158
|
# To use {Wx::RTC::RichTextStyleListCtrl}, add the control to your window hierarchy and call {Wx::RTC::RichTextStyleListCtrl#set_style_type} with one of {Wx::RTC::RichTextStyleListBox::RichTextStyleType::RICHTEXT_STYLE_ALL}, {Wx::RTC::RichTextStyleListBox::RichTextStyleType::RICHTEXT_STYLE_PARAGRAPH}, {Wx::RTC::RichTextStyleListBox::RichTextStyleType::RICHTEXT_STYLE_CHARACTER} and {Wx::RTC::RichTextStyleListBox::RichTextStyleType::RICHTEXT_STYLE_LIST} to set the current view.
|
155
159
|
# Associate the control with a style sheet and rich text control with SetStyleSheet and SetRichTextCtrl, so that when a style is double-clicked, it is applied to the selection.
|
156
|
-
#
|
160
|
+
# ### Styles
|
157
161
|
#
|
158
162
|
# This class supports the following styles:
|
159
163
|
#
|
160
164
|
# - {Wx::RICHTEXTSTYLELIST_HIDE_TYPE_SELECTOR}: This style hides the category selection control.
|
161
165
|
#
|
162
|
-
# ===
|
163
|
-
#
|
164
166
|
# Category: Rich Text
|
165
167
|
#
|
168
|
+
# @wxrb_require USE_RICHTEXT
|
166
169
|
class RichTextStyleListCtrl < Control
|
167
170
|
|
168
171
|
# @overload initialize(parent, id=Wx::StandardID::ID_ANY, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=0)
|
@@ -207,7 +210,7 @@ module Wx::RTC
|
|
207
210
|
alias_method :style_sheet, :get_style_sheet
|
208
211
|
|
209
212
|
# Returns the type of style to show in the list box.
|
210
|
-
# @return [Wx::
|
213
|
+
# @return [Wx::RichTextStyleListBox::RichTextStyleType]
|
211
214
|
def get_style_type; end
|
212
215
|
alias_method :style_type, :get_style_type
|
213
216
|
|
@@ -224,13 +227,14 @@ module Wx::RTC
|
|
224
227
|
alias_method :style_sheet=, :set_style_sheet
|
225
228
|
|
226
229
|
# Sets the style type to display.
|
230
|
+
#
|
227
231
|
# One of
|
228
232
|
#
|
229
233
|
# - {Wx::RTC::RichTextStyleListBox::RichTextStyleType::RICHTEXT_STYLE_ALL},
|
230
234
|
# - {Wx::RTC::RichTextStyleListBox::RichTextStyleType::RICHTEXT_STYLE_PARAGRAPH},
|
231
235
|
# - {Wx::RTC::RichTextStyleListBox::RichTextStyleType::RICHTEXT_STYLE_CHARACTER}
|
232
236
|
# - {Wx::RTC::RichTextStyleListBox::RichTextStyleType::RICHTEXT_STYLE_LIST}.
|
233
|
-
# @param styleType [Wx::
|
237
|
+
# @param styleType [Wx::RichTextStyleListBox::RichTextStyleType]
|
234
238
|
# @return [void]
|
235
239
|
def set_style_type(styleType) end
|
236
240
|
alias_method :style_type=, :set_style_type
|
@@ -242,14 +246,15 @@ module Wx::RTC
|
|
242
246
|
end # RichTextStyleListCtrl
|
243
247
|
|
244
248
|
# This is a combo control that can display the styles in a {Wx::RTC::RichTextStyleSheet}, and apply the selection to an associated {Wx::RTC::RichTextCtrl}.
|
249
|
+
#
|
245
250
|
# See <code>samples/richtext</code> for an example of how to use it.
|
246
|
-
# ===
|
247
251
|
#
|
248
252
|
# Category: Rich Text
|
249
253
|
# @see Wx::RTC::RichTextStyleListBox
|
250
254
|
# @see wxRichTextCtrl Overview
|
251
255
|
#
|
252
256
|
#
|
257
|
+
# @wxrb_require USE_RICHTEXT
|
253
258
|
class RichTextStyleComboCtrl < ComboCtrl
|
254
259
|
|
255
260
|
# @overload initialize(parent, id=Wx::StandardID::ID_ANY, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=0)
|
@@ -52,11 +52,12 @@ module Wx::RTC
|
|
52
52
|
RICHTEXT_ORGANISER_BROWSE_NUMBERING = 1120
|
53
53
|
|
54
54
|
# This class shows a style sheet and allows the user to edit, add and remove styles.
|
55
|
+
#
|
55
56
|
# It can also be used as a style browser, for example if the application is not using a permanent {Wx::RTC::RichTextStyleComboCtrl} or {Wx::RTC::RichTextStyleListCtrl} to present styles.
|
56
|
-
# ===
|
57
57
|
#
|
58
58
|
# Category: Rich Text
|
59
59
|
#
|
60
|
+
# @wxrb_require USE_RICHTEXT
|
60
61
|
class RichTextStyleOrganiserDialog < Dialog
|
61
62
|
|
62
63
|
# @overload initialize()
|
@@ -64,6 +65,7 @@ module Wx::RTC
|
|
64
65
|
# @return [Wx::RTC::RichTextStyleOrganiserDialog]
|
65
66
|
# @overload initialize(flags, sheet, ctrl, parent, id=Wx::StandardID::ID_ANY, caption=(_.new("STYLE ORGANISER")), pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=(Wx::DEFAULT_DIALOG_STYLE|Wx::RESIZE_BORDER|Wx::SYSTEM_MENU|Wx::CLOSE_BOX))
|
66
67
|
# Constructor.
|
68
|
+
#
|
67
69
|
# To create a dialog, pass a bitlist of flags (see below), a style sheet, a text control to apply a selected style to (or NULL), followed by the usual window parameters.
|
68
70
|
# To specify the operations available to the user, pass a combination of these values to flags:
|
69
71
|
#
|
@@ -105,6 +107,7 @@ module Wx::RTC
|
|
105
107
|
def apply_style(ctrl=nil) end
|
106
108
|
|
107
109
|
# Creates the dialog.
|
110
|
+
#
|
108
111
|
# See the ctor.
|
109
112
|
# @param flags [Integer]
|
110
113
|
# @param sheet [Wx::RTC::RichTextStyleSheet]
|