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
@@ -0,0 +1,324 @@
|
|
1
|
+
# :stopdoc:
|
2
|
+
# This file is automatically generated by the WXRuby3 documentation
|
3
|
+
# generator. Do not alter this file.
|
4
|
+
# :startdoc:
|
5
|
+
|
6
|
+
|
7
|
+
module Wx
|
8
|
+
|
9
|
+
# State of the taskbar button.
|
10
|
+
#
|
11
|
+
#
|
12
|
+
#
|
13
|
+
# @wxrb_require WXMSW,USE_TASKBARBUTTON
|
14
|
+
class TaskBarButtonState < Wx::Enum
|
15
|
+
|
16
|
+
#
|
17
|
+
#
|
18
|
+
TASKBAR_BUTTON_NO_PROGRESS = Wx::TaskBarButtonState.new(0)
|
19
|
+
|
20
|
+
#
|
21
|
+
#
|
22
|
+
TASKBAR_BUTTON_INDETERMINATE = Wx::TaskBarButtonState.new(1)
|
23
|
+
|
24
|
+
#
|
25
|
+
#
|
26
|
+
TASKBAR_BUTTON_NORMAL = Wx::TaskBarButtonState.new(2)
|
27
|
+
|
28
|
+
#
|
29
|
+
#
|
30
|
+
TASKBAR_BUTTON_ERROR = Wx::TaskBarButtonState.new(4)
|
31
|
+
|
32
|
+
#
|
33
|
+
#
|
34
|
+
TASKBAR_BUTTON_PAUSED = Wx::TaskBarButtonState.new(8)
|
35
|
+
|
36
|
+
end # TaskBarButtonState
|
37
|
+
|
38
|
+
# Type of jump list item.
|
39
|
+
#
|
40
|
+
#
|
41
|
+
#
|
42
|
+
# @wxrb_require WXMSW,USE_TASKBARBUTTON
|
43
|
+
class TaskBarJumpListItemType < Wx::Enum
|
44
|
+
|
45
|
+
# A separator, Only tasks category supports separators.
|
46
|
+
#
|
47
|
+
TASKBAR_JUMP_LIST_SEPARATOR = Wx::TaskBarJumpListItemType.new(0)
|
48
|
+
|
49
|
+
# A task, represents a link to application.
|
50
|
+
#
|
51
|
+
TASKBAR_JUMP_LIST_TASK = Wx::TaskBarJumpListItemType.new(1)
|
52
|
+
|
53
|
+
# Item acts as a link to a file that the application can open.
|
54
|
+
#
|
55
|
+
TASKBAR_JUMP_LIST_DESTINATION = Wx::TaskBarJumpListItemType.new(2)
|
56
|
+
|
57
|
+
end # TaskBarJumpListItemType
|
58
|
+
|
59
|
+
# A taskbar button that associated with the window under Windows 7 or later.
|
60
|
+
#
|
61
|
+
# It is used to access the functionality including thumbnail representations, thumbnail toolbars, notification and status overlays, and progress indicators.
|
62
|
+
#
|
63
|
+
# <div class="wxrb-note">
|
64
|
+
# <b>Note:</b>
|
65
|
+
# <p>This class is only created and initialized in the internal implementation of {Wx::Frame} by design. You can only get the pointer of the instance which associated with the frame by calling {Wx::Frame#msw_get_task_bar_button}.
|
66
|
+
# </p>
|
67
|
+
# </div>
|
68
|
+
#
|
69
|
+
# Category: {Wx::Miscellaneous}
|
70
|
+
# Availability: only available for the WXMSW port.
|
71
|
+
# @see Wx::Frame#msw_get_task_bar_button
|
72
|
+
#
|
73
|
+
#
|
74
|
+
#
|
75
|
+
# @note This class is <b>untracked</b> and should not be derived from nor instances extended!
|
76
|
+
# @wxrb_require WXMSW,USE_TASKBARBUTTON
|
77
|
+
class TaskBarButton < ::Object
|
78
|
+
|
79
|
+
# Starts showing a determinate progress indicator.
|
80
|
+
#
|
81
|
+
# Call {Wx::TaskBarButton#set_progress_value} after this call to update the progress indicator.
|
82
|
+
# If range is 0, the progress indicator is dismissed.
|
83
|
+
# @param range [Integer]
|
84
|
+
# @return [void]
|
85
|
+
def set_progress_range(range) end
|
86
|
+
alias_method :progress_range=, :set_progress_range
|
87
|
+
|
88
|
+
# Update the progress indicator, setting the progress to the new value .
|
89
|
+
# @param value [Integer] Must be in the range from 0 to the argument to the last {Wx::TaskBarButton#set_progress_range} call. When it is equal to the range, the progress bar is dismissed.
|
90
|
+
# @return [void]
|
91
|
+
def set_progress_value(value) end
|
92
|
+
alias_method :progress_value=, :set_progress_value
|
93
|
+
|
94
|
+
# Makes the progress indicator run in indeterminate mode.
|
95
|
+
#
|
96
|
+
# The first call to this method starts showing the indeterminate progress indicator if it hadn't been shown yet.
|
97
|
+
# Call SetProgressRange(0) to stop showing the progress indicator.
|
98
|
+
# @return [void]
|
99
|
+
def pulse_progress; end
|
100
|
+
|
101
|
+
# Show in the taskbar.
|
102
|
+
# @param show [Boolean]
|
103
|
+
# @return [void]
|
104
|
+
def show(show=true) end
|
105
|
+
|
106
|
+
# Hide in the taskbar.
|
107
|
+
# @return [void]
|
108
|
+
def hide; end
|
109
|
+
|
110
|
+
# Specifies or updates the text of the tooltip that is displayed when the mouse pointer rests on an individual preview thumbnail in a taskbar button flyout.
|
111
|
+
# @param tooltip [String]
|
112
|
+
# @return [void]
|
113
|
+
def set_thumbnail_tooltip(tooltip) end
|
114
|
+
alias_method :thumbnail_tooltip=, :set_thumbnail_tooltip
|
115
|
+
|
116
|
+
# Set the state of the progress indicator displayed on a taskbar button.
|
117
|
+
#
|
118
|
+
#
|
119
|
+
# @see Wx::TaskBarButtonState
|
120
|
+
# @param state [Wx::TaskBarButtonState]
|
121
|
+
# @return [void]
|
122
|
+
def set_progress_state(state) end
|
123
|
+
alias_method :progress_state=, :set_progress_state
|
124
|
+
|
125
|
+
# Set an overlay icon to indicate application status or a notification top the user.
|
126
|
+
# @param icon [Wx::Icon] This should be a small icon, measuring 16x16 pixels at 96 dpi. If an overlay icon is already applied to the taskbar button, that existing overlay is replaced. Setting with {Wx::NULL_ICON} to remove.
|
127
|
+
# @param description [String] The property holds the description of the overlay for accessibility purposes.
|
128
|
+
# @return [void]
|
129
|
+
def set_overlay_icon(icon, description=(())) end
|
130
|
+
alias_method :overlay_icon=, :set_overlay_icon
|
131
|
+
|
132
|
+
# Selects a portion of a window's client area to display as that window's thumbnail in the taskbar.
|
133
|
+
# @param rect [Wx::Rect] The portion inside of the window. Setting with an empty {Wx::Rect} will restore the default display of the thumbnail.
|
134
|
+
# @return [void]
|
135
|
+
def set_thumbnail_clip(rect) end
|
136
|
+
alias_method :thumbnail_clip=, :set_thumbnail_clip
|
137
|
+
|
138
|
+
# Selects the child window area to display as that window's thumbnail in the taskbar.
|
139
|
+
# @param child [Wx::Window]
|
140
|
+
# @return [void]
|
141
|
+
def set_thumbnail_contents(child) end
|
142
|
+
alias_method :thumbnail_contents=, :set_thumbnail_contents
|
143
|
+
|
144
|
+
# Inserts the given button before the position pos to the taskbar thumbnail toolbar.
|
145
|
+
#
|
146
|
+
# <div class="wxrb-note">
|
147
|
+
# <b>Note:</b>
|
148
|
+
# <p>The number of buttons and separators is limited to 7.
|
149
|
+
# </p>
|
150
|
+
# </div>
|
151
|
+
# @see Wx::TaskBarButton#append_thumb_bar_button
|
152
|
+
# @see Wx::TaskBarButton#append_separator_in_thumb_bar
|
153
|
+
# @param pos [Integer]
|
154
|
+
# @param button [Wx::ThumbBarButton]
|
155
|
+
# @return [Boolean]
|
156
|
+
def insert_thumb_bar_button(pos, button) end
|
157
|
+
|
158
|
+
# Appends a button to the taskbar thumbnail toolbar.
|
159
|
+
#
|
160
|
+
# <div class="wxrb-note">
|
161
|
+
# <b>Note:</b>
|
162
|
+
# <p>The number of buttons and separators is limited to 7.
|
163
|
+
# </p>
|
164
|
+
# </div>
|
165
|
+
# @see Wx::TaskBarButton#insert_thumb_bar_button
|
166
|
+
# @see Wx::TaskBarButton#append_separator_in_thumb_bar
|
167
|
+
# @param button [Wx::ThumbBarButton]
|
168
|
+
# @return [Boolean]
|
169
|
+
def append_thumb_bar_button(button) end
|
170
|
+
|
171
|
+
# Appends a separator to the taskbar thumbnail toolbar.
|
172
|
+
#
|
173
|
+
# <div class="wxrb-note">
|
174
|
+
# <b>Note:</b>
|
175
|
+
# <p>The number of buttons and separators is limited to 7.
|
176
|
+
# </p>
|
177
|
+
# </div>
|
178
|
+
# @see Wx::TaskBarButton#append_thumb_bar_button
|
179
|
+
# @see Wx::TaskBarButton#insert_thumb_bar_button
|
180
|
+
# @return [Boolean]
|
181
|
+
def append_separator_in_thumb_bar; end
|
182
|
+
|
183
|
+
# @overload remove_thumb_bar_button(button)
|
184
|
+
# Removes the thumbnail toolbar button from the taskbar button but doesn't delete the associated c++ object.
|
185
|
+
#
|
186
|
+
# A pointer to the button which was detached from the taskbar button.
|
187
|
+
# @param button [Wx::ThumbBarButton] The thumbnail toolbar button to remove.
|
188
|
+
# @return [Wx::ThumbBarButton]
|
189
|
+
# @overload remove_thumb_bar_button(id)
|
190
|
+
# Removes the thumbnail toolbar button from the taskbar button but doesn't delete the associated c++ object.
|
191
|
+
#
|
192
|
+
# A pointer to the button which was detached from the taskbar button.
|
193
|
+
# @param id [Integer] The identifier of the thumbnail toolbar button to remove.
|
194
|
+
# @return [Wx::ThumbBarButton]
|
195
|
+
def remove_thumb_bar_button(*args) end
|
196
|
+
|
197
|
+
end # TaskBarButton
|
198
|
+
|
199
|
+
# A thumbnail toolbar button is a control that displayed in the thumbnail image of a window in a taskbar button flyout.
|
200
|
+
#
|
201
|
+
# Category: {Wx::Miscellaneous}
|
202
|
+
# Availability: only available for the WXMSW port.
|
203
|
+
# @see Wx::TaskBarButton
|
204
|
+
#
|
205
|
+
#
|
206
|
+
#
|
207
|
+
# @note This class is <b>untracked</b> and should not be derived from nor instances extended!
|
208
|
+
# @wxrb_require WXMSW,USE_TASKBARBUTTON
|
209
|
+
class ThumbBarButton < ::Object
|
210
|
+
|
211
|
+
# @overload initialize()
|
212
|
+
# Default constructor to allow 2-phase creation.
|
213
|
+
# @return [Wx::ThumbBarButton]
|
214
|
+
# @overload initialize(id, icon, tooltip=(()), enable=true, dismissOnClick=false, hasBackground=true, shown=true, interactive=true)
|
215
|
+
# Constructs the thumbnail toolbar button.
|
216
|
+
# @param id [Integer] The identifier for the control.
|
217
|
+
# @param icon [Wx::Icon] The icon used as the button image.
|
218
|
+
# @param tooltip [String] The text of the button's tooltip, displayed when the mouse pointer hovers over the button.
|
219
|
+
# @param enable [Boolean] If true (default), the button is active and available to the user. If false, the button is disabled. It is present, but has a visual state that indicates that it will not respond to user action.
|
220
|
+
# @param dismissOnClick [Boolean] If true, when the button is clicked, the taskbar button's flyout closes immediately. false by default.
|
221
|
+
# @param hasBackground [Boolean] If false, the button border is not drawn. true by default.
|
222
|
+
# @param shown [Boolean] If false, the button is not shown to the user. true by default.
|
223
|
+
# @param interactive [Boolean] If false, the button is enabled but not interactive; no pressed button state is drawn. This flag is intended for instances where the button is used in a notification. true by default.
|
224
|
+
# @return [Wx::ThumbBarButton]
|
225
|
+
def initialize(*args) end
|
226
|
+
|
227
|
+
# @param id [Integer]
|
228
|
+
# @param icon [Wx::Icon]
|
229
|
+
# @param tooltip [String]
|
230
|
+
# @param enable [Boolean]
|
231
|
+
# @param dismissOnClick [Boolean]
|
232
|
+
# @param hasBackground [Boolean]
|
233
|
+
# @param shown [Boolean]
|
234
|
+
# @param interactive [Boolean]
|
235
|
+
# @return [Boolean]
|
236
|
+
def create(id, icon, tooltip=(()), enable=true, dismissOnClick=false, hasBackground=true, shown=true, interactive=true) end
|
237
|
+
|
238
|
+
# Returns the identifier associated with this control.
|
239
|
+
# @return [Integer]
|
240
|
+
def get_id; end
|
241
|
+
alias_method :id, :get_id
|
242
|
+
|
243
|
+
# Returns the icon associated with this control.
|
244
|
+
# @return [Wx::Icon]
|
245
|
+
def get_icon; end
|
246
|
+
alias_method :icon, :get_icon
|
247
|
+
|
248
|
+
# Returns the tooltip.
|
249
|
+
# @return [Wx::String]
|
250
|
+
def get_tooltip; end
|
251
|
+
alias_method :tooltip, :get_tooltip
|
252
|
+
|
253
|
+
# Returns true if the button is enabled, false if it has been disabled.
|
254
|
+
# @return [Boolean]
|
255
|
+
def is_enable; end
|
256
|
+
alias_method :enable?, :is_enable
|
257
|
+
|
258
|
+
# Enables or disables the thumbnail toolbar button.
|
259
|
+
# @param enable [Boolean]
|
260
|
+
# @return [void]
|
261
|
+
def enable(enable=true) end
|
262
|
+
|
263
|
+
# Equivalent to calling {Wx::ThumbBarButton#enable(false)}.
|
264
|
+
# @return [void]
|
265
|
+
def disable; end
|
266
|
+
|
267
|
+
# Returns true if the button will dismiss on click.
|
268
|
+
# @return [Boolean]
|
269
|
+
def is_dismiss_on_click; end
|
270
|
+
alias_method :dismiss_on_click?, :is_dismiss_on_click
|
271
|
+
|
272
|
+
# Whether the window thumbnail is dismissed after a button click.
|
273
|
+
# @param enable [Boolean]
|
274
|
+
# @return [void]
|
275
|
+
def enable_dismiss_on_click(enable=true) end
|
276
|
+
|
277
|
+
# Equivalent to calling {Wx::ThumbBarButton#disable_dimiss_on_click(false)}.
|
278
|
+
# @return [void]
|
279
|
+
def disable_dimiss_on_click; end
|
280
|
+
|
281
|
+
# Returns true if the button has button border.
|
282
|
+
# @return [Boolean]
|
283
|
+
def has_background; end
|
284
|
+
alias_method :has_background?, :has_background
|
285
|
+
|
286
|
+
# Set the property that whether the button has background.
|
287
|
+
# @param has [Boolean]
|
288
|
+
# @return [void]
|
289
|
+
def set_has_background(has=true) end
|
290
|
+
alias_method :has_background=, :set_has_background
|
291
|
+
|
292
|
+
# Returns true if the button is shown, false if it has been hidden.
|
293
|
+
# @return [Boolean]
|
294
|
+
def is_shown; end
|
295
|
+
alias_method :shown?, :is_shown
|
296
|
+
|
297
|
+
# Show or hide the thumbnail toolbar button.
|
298
|
+
# @param shown [Boolean]
|
299
|
+
# @return [void]
|
300
|
+
def show(shown=true) end
|
301
|
+
|
302
|
+
# Hide the thumbnail toolbar button.
|
303
|
+
#
|
304
|
+
# Equivalent to calling {Wx::ThumbBarButton#show(false)}.
|
305
|
+
# @return [void]
|
306
|
+
def hide; end
|
307
|
+
|
308
|
+
# Returns true if the button is interactive.
|
309
|
+
# @return [Boolean]
|
310
|
+
def is_interactive; end
|
311
|
+
alias_method :interactive?, :is_interactive
|
312
|
+
|
313
|
+
# Set the property which holds whether the button is interactive.
|
314
|
+
#
|
315
|
+
# A non-interactive thumbnail toolbar button does not react to user interaction, but is still visually enabled.
|
316
|
+
# @param interactive [Boolean]
|
317
|
+
# @return [void]
|
318
|
+
def set_interactive(interactive=true) end
|
319
|
+
alias_method :interactive=, :set_interactive
|
320
|
+
|
321
|
+
end # ThumbBarButton
|
322
|
+
|
323
|
+
|
324
|
+
end
|
@@ -7,13 +7,14 @@
|
|
7
7
|
module Wx
|
8
8
|
|
9
9
|
# This class represents a taskbar icon.
|
10
|
+
#
|
10
11
|
# A taskbar icon is an icon that appears in the 'system tray' and responds to mouse clicks, optionally with a tooltip above it to help provide information.
|
11
12
|
#
|
12
|
-
#
|
13
|
+
# ## X Window System Note
|
13
14
|
#
|
14
15
|
# Under X Window System, the window manager must support either the "System Tray Protocol" (see http://freedesktop.org/wiki/Specifications/systemtray-spec) by freedesktop.org (WMs used by modern desktop environments such as GNOME >= 2, KDE >= 3 and XFCE >= 4 all do) or the older methods used in GNOME 1.2 and KDE 1 and 2.
|
15
16
|
# If it doesn't, the icon will appear as a toplevel window on user's desktop. Because not all window managers have system tray, there's no guarantee that {Wx::TaskBarIcon} will work correctly under X Window System and so the applications should use it only as an optional component of their user interface. The user should be required to explicitly enable the taskbar icon on Unix, it shouldn't be on by default.
|
16
|
-
#
|
17
|
+
# ### Events emitted by this class
|
17
18
|
#
|
18
19
|
# The following event-handler methods redirect the events to member method or handler blocks for {Wx::TaskBarIconEvent} events.
|
19
20
|
# Event handler methods for events emitted by this class:{Wx::TaskBarIcon#create_popup_menu} or {Wx::TaskBarIcon#get_popup_menu} if all that the application does is that it shows a popup menu in reaction to mouse click.
|
@@ -34,14 +35,14 @@ module Wx
|
|
34
35
|
#
|
35
36
|
# - {Wx::EvtHandler#evt_taskbar_click}(meth = nil, &block): This is a synonym for either EVT_TASKBAR_RIGHT_DOWN or UP depending on the platform, use this event macro to catch the event which should result in the menu being displayed on the current platform.
|
36
37
|
#
|
37
|
-
# ===
|
38
|
-
#
|
39
38
|
# Category: {Wx::Miscellaneous}
|
40
39
|
#
|
40
|
+
# @wxrb_require USE_TASKBARICON
|
41
41
|
class TaskBarIcon < EvtHandler
|
42
42
|
|
43
43
|
# Default constructor.
|
44
|
-
#
|
44
|
+
#
|
45
|
+
# The iconType is only applicable on WXOSX/Cocoa.
|
45
46
|
# @param iconType [Wx::TaskBarIconType]
|
46
47
|
# @return [Wx::TaskBarIcon]
|
47
48
|
def initialize(iconType=Wx::TaskBarIconType::TBI_DEFAULT_TYPE) end
|
@@ -61,8 +62,14 @@ module Wx
|
|
61
62
|
alias_method :ok?, :is_ok
|
62
63
|
|
63
64
|
# Pops up a menu at the current mouse position.
|
65
|
+
#
|
64
66
|
# The events can be handled by a class derived from {Wx::TaskBarIcon}.
|
65
|
-
#
|
67
|
+
#
|
68
|
+
# <div class="wxrb-note">
|
69
|
+
# <b>Note:</b>
|
70
|
+
# <p>It is recommended to override the {Wx::TaskBarIcon#create_popup_menu} or {Wx::TaskBarIcon#get_popup_menu} callback instead of calling this method from event handler, because some ports (e.g. {Wx::Cocoa}) may not implement {Wx::TaskBarIcon#popup_menu} and mouse click events at all.
|
71
|
+
# </p>
|
72
|
+
# </div>
|
66
73
|
# @param menu [Wx::Menu]
|
67
74
|
# @return [Boolean]
|
68
75
|
def popup_menu(menu) end
|
@@ -79,11 +86,21 @@ module Wx
|
|
79
86
|
alias_method :icon=, :set_icon
|
80
87
|
|
81
88
|
# Returns true if system tray is available in the desktop environment the app runs under.
|
89
|
+
#
|
82
90
|
# On Windows and macOS, the tray is always available and this function simply returns true.
|
83
91
|
# On Unix, X11 environment may or may not provide the tray, depending on user's desktop environment. Most modern desktops support the tray via the System Tray Protocol by freedesktop.org (http://freedesktop.org/wiki/Specifications/systemtray-spec).
|
84
|
-
# Tray availability may change during application's lifetime under X11 and so applications shouldn't cache the result.
|
85
92
|
#
|
86
|
-
#
|
93
|
+
# <div class="wxrb-note">
|
94
|
+
# <b>Note:</b>
|
95
|
+
# <p>Tray availability may change during application's lifetime under X11 and so applications shouldn't cache the result.
|
96
|
+
# </p>
|
97
|
+
# </div>
|
98
|
+
#
|
99
|
+
# <div class="wxrb-note">
|
100
|
+
# <b>Note:</b>
|
101
|
+
# <p>{Wx::TaskBarIcon} supports older GNOME 1.2 and KDE 1/2 methods of adding icons to tray, but they are unreliable and this method doesn't detect them.
|
102
|
+
# </p>
|
103
|
+
# </div>
|
87
104
|
# @return [Boolean]
|
88
105
|
def self.is_available; end
|
89
106
|
|
@@ -91,6 +108,7 @@ module Wx
|
|
91
108
|
protected
|
92
109
|
|
93
110
|
# Called by the library when the user requests popup menu if {Wx::TaskBarIcon#get_popup_menu} is not overridden.
|
111
|
+
#
|
94
112
|
# Override this function in order to provide popup menu associated with the icon if you don't want to override {Wx::TaskBarIcon#get_popup_menu}, i.e. if you prefer creating a new menu every time instead of reusing the same menu.
|
95
113
|
# If {Wx::TaskBarIcon#create_popup_menu} returns NULL (this happens by default), no menu is shown, otherwise the menu is displayed and then deleted by the library as soon as the user dismisses it. If you don't want the menu to be destroyed when it is dismissed, override {Wx::TaskBarIcon#get_popup_menu} instead.
|
96
114
|
# @return [Wx::Menu]
|
@@ -6,10 +6,11 @@
|
|
6
6
|
|
7
7
|
module Wx
|
8
8
|
|
9
|
-
# On
|
9
|
+
# On WXOSX/Cocoa the taskbar icon can be in the doc or in the status area.
|
10
10
|
#
|
11
11
|
# This enumeration can be used to select which will be instantiated.
|
12
12
|
#
|
13
|
+
# @wxrb_require USE_TASKBARICON
|
13
14
|
class TaskBarIconType < Wx::Enum
|
14
15
|
|
15
16
|
#
|
@@ -67,15 +68,16 @@ module Wx
|
|
67
68
|
EVT_TASKBAR_BALLOON_CLICK = 10198
|
68
69
|
|
69
70
|
# The event class used by {Wx::TaskBarIcon}.
|
71
|
+
#
|
70
72
|
# For a list of the event macros meant to be used with {Wx::TaskBarIconEvent}, please look at {Wx::TaskBarIcon} description.
|
71
|
-
# ===
|
72
73
|
#
|
73
74
|
# Category: {Wx::Events}
|
74
75
|
#
|
76
|
+
# @wxrb_require USE_TASKBARICON
|
75
77
|
class TaskBarIconEvent < Event
|
76
78
|
|
77
79
|
# Constructor.
|
78
|
-
# @param evtType [Wx::
|
80
|
+
# @param evtType [Wx::StaticLine::EventType]
|
79
81
|
# @param tbIcon [Wx::TaskBarIcon]
|
80
82
|
# @return [Wx::TaskBarIconEvent]
|
81
83
|
def initialize(evtType, tbIcon) end
|
data/lib/wx/doc/gen/text_attr.rb
CHANGED
@@ -7,8 +7,8 @@
|
|
7
7
|
module Wx
|
8
8
|
|
9
9
|
# {Wx::TextAttr} represents the character and paragraph attributes, or style, for a range of text in a {Wx::TextCtrl} or {Wx::RTC::RichTextCtrl}.
|
10
|
+
#
|
10
11
|
# When setting up a {Wx::TextAttr} object, pass a bitlist mask to {Wx::TextAttr#set_flags} to indicate which style elements should be changed. As a convenience, when you call a setter such as SetFont, the relevant bit will be set.
|
11
|
-
# ===
|
12
12
|
#
|
13
13
|
# Category: Rich Text
|
14
14
|
# @see Wx::TextCtrl
|
@@ -36,6 +36,7 @@ module Wx
|
|
36
36
|
def initialize(*args) end
|
37
37
|
|
38
38
|
# Returns the alignment flags.
|
39
|
+
#
|
39
40
|
# See {Wx::TextAttrAlignment} for a list of available styles.
|
40
41
|
# @return [Wx::TextAttrAlignment]
|
41
42
|
def get_alignment; end
|
@@ -47,12 +48,14 @@ module Wx
|
|
47
48
|
alias_method :background_colour, :get_background_colour
|
48
49
|
|
49
50
|
# Returns a string containing the name of the font associated with the bullet symbol.
|
51
|
+
#
|
50
52
|
# Only valid for attributes with {Wx::TEXT_ATTR_BULLET_SYMBOL}.
|
51
53
|
# @return [Wx::String]
|
52
54
|
def get_bullet_font; end
|
53
55
|
alias_method :bullet_font, :get_bullet_font
|
54
56
|
|
55
57
|
# Returns the standard bullet name, applicable if the bullet style is {Wx::TextAttrBulletStyle::TEXT_ATTR_BULLET_STYLE_STANDARD}.
|
58
|
+
#
|
56
59
|
# Currently the following standard bullet names are supported:
|
57
60
|
#
|
58
61
|
# - <code>standard/circle</code>
|
@@ -60,7 +63,11 @@ module Wx
|
|
60
63
|
# - <code>standard/diamond</code>
|
61
64
|
# - <code>standard/triangle</code>
|
62
65
|
#
|
63
|
-
#
|
66
|
+
# <div class="wxrb-note">
|
67
|
+
# <b>Note:</b>
|
68
|
+
# <p>For {Wx::RTC::RichTextCtrl} users only: if you wish your rich text controls to support further bullet graphics, you can derive a class from {Wx::RichTextRenderer} or {Wx::RichTextStdRenderer}, override DrawStandardBullet and EnumerateStandardBulletNames, and set an instance of the class using {Wx::RTC::RichTextBuffer::SetRenderer}.
|
69
|
+
# </p>
|
70
|
+
# </div>
|
64
71
|
# @return [Wx::String]
|
65
72
|
def get_bullet_name; end
|
66
73
|
alias_method :bullet_name, :get_bullet_name
|
@@ -71,6 +78,7 @@ module Wx
|
|
71
78
|
alias_method :bullet_number, :get_bullet_number
|
72
79
|
|
73
80
|
# Returns the bullet style.
|
81
|
+
#
|
74
82
|
# See {Wx::TextAttrBulletStyle} for a list of available styles.
|
75
83
|
# @return [Integer]
|
76
84
|
def get_bullet_style; end
|
@@ -87,12 +95,14 @@ module Wx
|
|
87
95
|
alias_method :character_style_name, :get_character_style_name
|
88
96
|
|
89
97
|
# Returns flags indicating which attributes are applicable.
|
98
|
+
#
|
90
99
|
# See {Wx::TextAttr#set_flags} for a list of available flags.
|
91
100
|
# @return [Integer]
|
92
101
|
def get_flags; end
|
93
102
|
alias_method :flags, :get_flags
|
94
103
|
|
95
104
|
# Creates and returns a font specified by the font attributes in the {Wx::TextAttr} object.
|
105
|
+
#
|
96
106
|
# Note that {Wx::TextAttr} does not store a {Wx::Font} object, so this is only a temporary font.
|
97
107
|
# For greater efficiency, access the font attributes directly.
|
98
108
|
# @return [Wx::Font]
|
@@ -142,6 +152,7 @@ module Wx
|
|
142
152
|
alias_method :underline_type, :get_underline_type
|
143
153
|
|
144
154
|
# Returns the underline color used.
|
155
|
+
#
|
145
156
|
# {Wx::NULL_COLOUR} when the text colour is used.
|
146
157
|
# @return [Wx::Colour,String,Symbol]
|
147
158
|
def get_underline_colour; end
|
@@ -198,6 +209,7 @@ module Wx
|
|
198
209
|
alias_method :right_indent, :get_right_indent
|
199
210
|
|
200
211
|
# Returns an array of tab stops, each expressed in tenths of a millimeter.
|
212
|
+
#
|
201
213
|
# Each stop is measured from the left margin and therefore each value must be larger than the last.
|
202
214
|
# @return [Wx::ArrayInt]
|
203
215
|
def get_tabs; end
|
@@ -209,18 +221,21 @@ module Wx
|
|
209
221
|
alias_method :text_colour, :get_text_colour
|
210
222
|
|
211
223
|
# Returns the text effect bits of interest.
|
224
|
+
#
|
212
225
|
# See {Wx::TextAttr#set_flags} for further information.
|
213
226
|
# @return [Integer]
|
214
227
|
def get_text_effect_flags; end
|
215
228
|
alias_method :text_effect_flags, :get_text_effect_flags
|
216
229
|
|
217
230
|
# Returns the text effects, a bit list of styles.
|
231
|
+
#
|
218
232
|
# See {Wx::TextAttr#set_text_effects} for details.
|
219
233
|
# @return [Integer]
|
220
234
|
def get_text_effects; end
|
221
235
|
alias_method :text_effects, :get_text_effects
|
222
236
|
|
223
237
|
# Returns the URL for the content.
|
238
|
+
#
|
224
239
|
# Content with {Wx::TextAttrFlags::TEXT_ATTR_URL} style causes {Wx::RTC::RichTextCtrl} to show a hand cursor over it, and {Wx::RTC::RichTextCtrl} generates a {Wx::TextUrlEvent} when the content is clicked.
|
225
240
|
# @return [Wx::String]
|
226
241
|
def get_url; end
|
@@ -398,6 +413,7 @@ module Wx
|
|
398
413
|
alias_method :paragraph_style?, :is_paragraph_style
|
399
414
|
|
400
415
|
# Sets the paragraph alignment.
|
416
|
+
#
|
401
417
|
# See {Wx::TextAttrAlignment} enumeration values.
|
402
418
|
# Of these, {Wx::TextAttrAlignment::TEXT_ALIGNMENT_JUSTIFIED} is unimplemented. In future justification may be supported when printing or previewing, only.
|
403
419
|
# @param alignment [Wx::TextAttrAlignment]
|
@@ -412,6 +428,7 @@ module Wx
|
|
412
428
|
alias_method :background_colour=, :set_background_colour
|
413
429
|
|
414
430
|
# Sets the name of the font associated with the bullet symbol.
|
431
|
+
#
|
415
432
|
# Only valid for attributes with {Wx::TEXT_ATTR_BULLET_SYMBOL}.
|
416
433
|
# @param font [String]
|
417
434
|
# @return [void]
|
@@ -419,6 +436,7 @@ module Wx
|
|
419
436
|
alias_method :bullet_font=, :set_bullet_font
|
420
437
|
|
421
438
|
# Sets the standard bullet name, applicable if the bullet style is {Wx::TextAttrBulletStyle::TEXT_ATTR_BULLET_STYLE_STANDARD}.
|
439
|
+
#
|
422
440
|
# See {Wx::TextAttr#get_bullet_name} for a list of supported names, and how to expand the range of supported types.
|
423
441
|
# @param name [String]
|
424
442
|
# @return [void]
|
@@ -432,6 +450,7 @@ module Wx
|
|
432
450
|
alias_method :bullet_number=, :set_bullet_number
|
433
451
|
|
434
452
|
# Sets the bullet style.
|
453
|
+
#
|
435
454
|
# The {Wx::TextAttrBulletStyle} enumeration values are all supported, except for {Wx::TextAttrBulletStyle::TEXT_ATTR_BULLET_STYLE_BITMAP}.
|
436
455
|
# @param style [Integer]
|
437
456
|
# @return [void]
|
@@ -451,6 +470,7 @@ module Wx
|
|
451
470
|
alias_method :character_style_name=, :set_character_style_name
|
452
471
|
|
453
472
|
# Sets the flags determining which styles are being specified.
|
473
|
+
#
|
454
474
|
# The {Wx::TextAttrFlags} values can be passed in a bitlist.
|
455
475
|
# @param flags [Integer]
|
456
476
|
# @return [void]
|
@@ -458,6 +478,7 @@ module Wx
|
|
458
478
|
alias_method :flags=, :set_flags
|
459
479
|
|
460
480
|
# Sets the attributes for the given font.
|
481
|
+
#
|
461
482
|
# Note that {Wx::TextAttr} does not store an actual {Wx::Font} object.
|
462
483
|
# @param font [Wx::Font,Wx::FontInfo]
|
463
484
|
# @param flags [Integer]
|
@@ -513,11 +534,24 @@ module Wx
|
|
513
534
|
# @return [void]
|
514
535
|
# @overload set_font_underlined(type, colour=Wx::NULL_COLOUR)
|
515
536
|
# Sets the font underlining.
|
516
|
-
# On wxMSW, {Wx::TextAttrUnderlineType::TEXT_ATTR_UNDERLINE_DOUBLE} is shown as {Wx::TextAttrUnderlineType::TEXT_ATTR_UNDERLINE_SOLID}. There is only a limited number of colours supported, the RGB values are listed here. {Wx::TextAttrUnderlineType::TEXT_ATTR_UNDERLINE_SPECIAL} is shown as a waved line.
|
517
537
|
#
|
518
|
-
#
|
538
|
+
# <div class="wxrb-note">
|
539
|
+
# <b>Note:</b>
|
540
|
+
# <p>On WXMSW, {Wx::TextAttrUnderlineType::TEXT_ATTR_UNDERLINE_DOUBLE} is shown as {Wx::TextAttrUnderlineType::TEXT_ATTR_UNDERLINE_SOLID}. There is only a limited number of colours supported, the RGB values are listed here. {Wx::TextAttrUnderlineType::TEXT_ATTR_UNDERLINE_SPECIAL} is shown as a waved line.
|
541
|
+
# </p>
|
542
|
+
# </div>
|
519
543
|
#
|
520
|
-
#
|
544
|
+
# <div class="wxrb-note">
|
545
|
+
# <b>Note:</b>
|
546
|
+
# <p>On WXGTK, underline colour is only supported by WXGTK3. {Wx::TextAttrUnderlineType::TEXT_ATTR_UNDERLINE_SPECIAL} is shown as a waved line. GTK might overrule the colour of {Wx::TextAttrUnderlineType::TEXT_ATTR_UNDERLINE_SPECIAL}.
|
547
|
+
# </p>
|
548
|
+
# </div>
|
549
|
+
#
|
550
|
+
# <div class="wxrb-note">
|
551
|
+
# <b>Note:</b>
|
552
|
+
# <p>On WXOSX, {Wx::TextAttrUnderlineType::TEXT_ATTR_UNDERLINE_SPECIAL} is shown as a dotted line.
|
553
|
+
# </p>
|
554
|
+
# </div>
|
521
555
|
# @param type [Wx::TextAttrUnderlineType] Type of underline.
|
522
556
|
# @param colour [Wx::Colour,String,Symbol] Colour to use for underlining, text colour is used by default.
|
523
557
|
# @return [void]
|
@@ -531,6 +565,7 @@ module Wx
|
|
531
565
|
alias_method :font_weight=, :set_font_weight
|
532
566
|
|
533
567
|
# Sets the left indent and left subindent in tenths of a millimetre.
|
568
|
+
#
|
534
569
|
# The sub-indent is an offset from the left of the paragraph, and is used for all but the first line in a paragraph.
|
535
570
|
# A positive value will cause the first line to appear to the left of the subsequent lines, and a negative value will cause the first line to be indented relative to the subsequent lines.
|
536
571
|
# {Wx::RTC::RichTextBuffer} uses indentation to render a bulleted item. The left indent is the distance between the margin and the bullet. The content of the paragraph, including the first line, starts at leftMargin + leftSubIndent. So the distance between the left edge of the bullet and the left of the actual paragraph is leftSubIndent.
|
@@ -541,6 +576,7 @@ module Wx
|
|
541
576
|
alias_method :left_indent=, :set_left_indent
|
542
577
|
|
543
578
|
# Sets the line spacing.
|
579
|
+
#
|
544
580
|
# spacing is a multiple, where 10 means single-spacing, 15 means 1.5 spacing, and 20 means double spacing. The {Wx::TextAttrLineSpacing} values are defined for convenience.
|
545
581
|
# @param spacing [Integer]
|
546
582
|
# @return [void]
|
@@ -554,6 +590,7 @@ module Wx
|
|
554
590
|
alias_method :list_style_name=, :set_list_style_name
|
555
591
|
|
556
592
|
# Specifies the outline level.
|
593
|
+
#
|
557
594
|
# Zero represents normal text. At present, the outline level is not used, but may be used in future for determining list levels and for applications that need to store document structure information.
|
558
595
|
# @param level [Integer]
|
559
596
|
# @return [void]
|
@@ -591,6 +628,7 @@ module Wx
|
|
591
628
|
alias_method :right_indent=, :set_right_indent
|
592
629
|
|
593
630
|
# Sets the tab stops, expressed in tenths of a millimetre.
|
631
|
+
#
|
594
632
|
# Each stop is measured from the left margin and therefore each value must be larger than the last.
|
595
633
|
# @param tabs [Array<Integer>]
|
596
634
|
# @return [void]
|
@@ -604,6 +642,7 @@ module Wx
|
|
604
642
|
alias_method :text_colour=, :set_text_colour
|
605
643
|
|
606
644
|
# Sets the text effect bits of interest.
|
645
|
+
#
|
607
646
|
# You should also pass {Wx::TextAttrFlags::TEXT_ATTR_EFFECTS} to {Wx::TextAttr#set_flags}. See {Wx::TextAttr#set_flags} for further information.
|
608
647
|
# @param flags [Integer]
|
609
648
|
# @return [void]
|
@@ -611,6 +650,7 @@ module Wx
|
|
611
650
|
alias_method :text_effect_flags=, :set_text_effect_flags
|
612
651
|
|
613
652
|
# Sets the text effects, a bit list of styles.
|
653
|
+
#
|
614
654
|
# The {Wx::TextAttrEffects} enumeration values can be used.
|
615
655
|
# Of these, only {Wx::TextAttrEffects::TEXT_ATTR_EFFECT_CAPITALS}, {Wx::TextAttrEffects::TEXT_ATTR_EFFECT_STRIKETHROUGH}, {Wx::TextAttrEffects::TEXT_ATTR_EFFECT_SUPERSCRIPT} and {Wx::TextAttrEffects::TEXT_ATTR_EFFECT_SUBSCRIPT} are implemented.
|
616
656
|
# {Wx::TextAttrEffects::TEXT_ATTR_EFFECT_CAPITALS} capitalises text when displayed (leaving the case of the actual buffer text unchanged), and {Wx::TextAttrEffects::TEXT_ATTR_EFFECT_STRIKETHROUGH} draws a line through text.
|
@@ -621,6 +661,7 @@ module Wx
|
|
621
661
|
alias_method :text_effects=, :set_text_effects
|
622
662
|
|
623
663
|
# Sets the URL for the content.
|
664
|
+
#
|
624
665
|
# Sets the {Wx::TextAttrFlags::TEXT_ATTR_URL} style; content with this style causes {Wx::RTC::RichTextCtrl} to show a hand cursor over it, and {Wx::RTC::RichTextCtrl} generates a {Wx::TextUrlEvent} when the content is clicked.
|
625
666
|
# @param url [String]
|
626
667
|
# @return [void]
|
@@ -639,6 +680,7 @@ module Wx
|
|
639
680
|
def merge(overlay) end
|
640
681
|
|
641
682
|
# Partial equality test.
|
683
|
+
#
|
642
684
|
# If weakTest is true, attributes of this object do not have to be present if those attributes of attr are present. If weakTest is false, the function will fail if an attribute is present in attr but not in this object.
|
643
685
|
# @param attr [Wx::TextAttr]
|
644
686
|
# @param weakTest [Boolean]
|