wxruby3 0.9.0.pre.beta.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.yardopts +13 -0
- data/CREDITS.md +52 -0
- data/LICENSE +21 -0
- data/README.md +139 -0
- data/bin/wxruby +9 -0
- data/ext/mkrf_conf_srcgem.rb +64 -0
- data/ext/wxruby3/include/wxruby-runtime.h +104 -0
- data/ext/wxruby3/swig/RubyStockObjects.i +62 -0
- data/ext/wxruby3/swig/common.i +110 -0
- data/ext/wxruby3/swig/custom/rubyprimtypes.swg +225 -0
- data/ext/wxruby3/swig/custom/rubytracking.swg +60 -0
- data/ext/wxruby3/swig/custom/swig3/rubyrun.swg +456 -0
- data/ext/wxruby3/swig/custom/swig4/rubyrun.swg +459 -0
- data/ext/wxruby3/swig/mark_free_impl.i +377 -0
- data/ext/wxruby3/swig/memory_management.i +142 -0
- data/ext/wxruby3/swig/typedefs.i +27 -0
- data/ext/wxruby3/swig/wx.i +282 -0
- data/ext/wxruby3/swig/wx.rc +19 -0
- data/ext/wxruby3/wxruby.ico +0 -0
- data/lib/wx/accessors.rb +63 -0
- data/lib/wx/aui/auimanager.rb +17 -0
- data/lib/wx/aui/auinotebook.rb +9 -0
- data/lib/wx/aui/require.rb +9 -0
- data/lib/wx/aui.rb +14 -0
- data/lib/wx/core/acceleratortable.rb +28 -0
- data/lib/wx/core/animation.rb +18 -0
- data/lib/wx/core/app.rb +89 -0
- data/lib/wx/core/artprovider.rb +31 -0
- data/lib/wx/core/bitmap.rb +59 -0
- data/lib/wx/core/busycursor.rb +12 -0
- data/lib/wx/core/choice.rb +4 -0
- data/lib/wx/core/choicedlg.rb +54 -0
- data/lib/wx/core/clientdc.rb +13 -0
- data/lib/wx/core/clipboard.rb +56 -0
- data/lib/wx/core/collapsible_pane.rb +12 -0
- data/lib/wx/core/colour.rb +34 -0
- data/lib/wx/core/combobox.rb +4 -0
- data/lib/wx/core/controlwithitems.rb +10 -0
- data/lib/wx/core/data_object.rb +10 -0
- data/lib/wx/core/dataformat.rb +26 -0
- data/lib/wx/core/dc.rb +68 -0
- data/lib/wx/core/dialog.rb +50 -0
- data/lib/wx/core/enum.rb +28 -0
- data/lib/wx/core/event.rb +16 -0
- data/lib/wx/core/evthandler.rb +253 -0
- data/lib/wx/core/ext.rb +58 -0
- data/lib/wx/core/font.rb +22 -0
- data/lib/wx/core/functions.rb +44 -0
- data/lib/wx/core/gauge.rb +12 -0
- data/lib/wx/core/genericdirctrl.rb +36 -0
- data/lib/wx/core/hboxsizer.rb +6 -0
- data/lib/wx/core/helpcontroller.rb +5 -0
- data/lib/wx/core/helpcontrollerhelpprovider.rb +24 -0
- data/lib/wx/core/helpprovider.rb +15 -0
- data/lib/wx/core/icon.rb +40 -0
- data/lib/wx/core/image.rb +68 -0
- data/lib/wx/core/imagelist.rb +3 -0
- data/lib/wx/core/listbox.rb +4 -0
- data/lib/wx/core/listctrl.rb +33 -0
- data/lib/wx/core/locale.rb +73 -0
- data/lib/wx/core/log.rb +20 -0
- data/lib/wx/core/menu.rb +78 -0
- data/lib/wx/core/menu_bar.rb +20 -0
- data/lib/wx/core/menuitem.rb +7 -0
- data/lib/wx/core/notebook.rb +9 -0
- data/lib/wx/core/object.rb +14 -0
- data/lib/wx/core/pen_info.rb +11 -0
- data/lib/wx/core/platform_info.rb +13 -0
- data/lib/wx/core/point.rb +92 -0
- data/lib/wx/core/real_point.rb +92 -0
- data/lib/wx/core/rect.rb +57 -0
- data/lib/wx/core/simplehelpprovider.rb +38 -0
- data/lib/wx/core/size.rb +86 -0
- data/lib/wx/core/sizer.rb +43 -0
- data/lib/wx/core/splash_screen.rb +44 -0
- data/lib/wx/core/textctrl.rb +8 -0
- data/lib/wx/core/timer.rb +104 -0
- data/lib/wx/core/toolbar.rb +37 -0
- data/lib/wx/core/toolbartool.rb +4 -0
- data/lib/wx/core/treectrl.rb +46 -0
- data/lib/wx/core/validator.rb +8 -0
- data/lib/wx/core/variant.rb +62 -0
- data/lib/wx/core/vboxsizer.rb +6 -0
- data/lib/wx/core/window.rb +95 -0
- data/lib/wx/core/window_update_locker.rb +12 -0
- data/lib/wx/core/xmlresource.rb +56 -0
- data/lib/wx/core.rb +61 -0
- data/lib/wx/doc/aui/auimanager.rb +12 -0
- data/lib/wx/doc/aui/auinotebook.rb +9 -0
- data/lib/wx/doc/colour_dialog.rb +15 -0
- data/lib/wx/doc/core.rb +11 -0
- data/lib/wx/doc/dc.rb +49 -0
- data/lib/wx/doc/enum.rb +88 -0
- data/lib/wx/doc/evthandler.rb +87 -0
- data/lib/wx/doc/extra/00_starting.md +154 -0
- data/lib/wx/doc/extra/01_packages.md +179 -0
- data/lib/wx/doc/extra/02_lifecycles.md +116 -0
- data/lib/wx/doc/extra/03_dialogs.md +57 -0
- data/lib/wx/doc/extra/04_enums.md +143 -0
- data/lib/wx/doc/extra/05_event-handling.md +166 -0
- data/lib/wx/doc/extra/06_geometry.md +56 -0
- data/lib/wx/doc/extra/07_colour_and_font.md +52 -0
- data/lib/wx/doc/extra/08_extensions.md +144 -0
- data/lib/wx/doc/extra/09_exceptions.md +54 -0
- data/lib/wx/doc/functions.rb +221 -0
- data/lib/wx/doc/gdi_common.rb +181 -0
- data/lib/wx/doc/grid/grid.rb +20 -0
- data/lib/wx/doc/help_controller.rb +14 -0
- data/lib/wx/doc/html/html_help_controller.rb +8 -0
- data/lib/wx/doc/pg/events.rb +15 -0
- data/lib/wx/doc/pg/pg_property.rb +8 -0
- data/lib/wx/doc/pg/pgeditor.rb +21 -0
- data/lib/wx/doc/pg/property_grid.rb +48 -0
- data/lib/wx/doc/pg/property_grid_interface.rb +64 -0
- data/lib/wx/doc/prt/page_setup_dialog.rb +15 -0
- data/lib/wx/doc/prt/print_data.rb +9 -0
- data/lib/wx/doc/prt/print_dialog.rb +26 -0
- data/lib/wx/doc/prt/printer.rb +15 -0
- data/lib/wx/doc/rbn/ribbon_bar.rb +9 -0
- data/lib/wx/doc/rbn/ribbon_button_bar.rb +9 -0
- data/lib/wx/doc/rbn/ribbon_gallery.rb +9 -0
- data/lib/wx/doc/rbn/ribbon_tool_bar.rb +9 -0
- data/lib/wx/doc/rtc/richtext_printing.rb +14 -0
- data/lib/wx/doc/screen_dc.rb +10 -0
- data/lib/wx/doc/stock_objects.rb +98 -0
- data/lib/wx/doc/stream.rb +38 -0
- data/lib/wx/doc/system_settings.rb +29 -0
- data/lib/wx/doc/treebook.rb +9 -0
- data/lib/wx/doc/variant.rb +163 -0
- data/lib/wx/doc/xml_resource.rb +19 -0
- data/lib/wx/global_const.rb +84 -0
- data/lib/wx/grid/grid.rb +7 -0
- data/lib/wx/grid/keyword_defs.rb +10 -0
- data/lib/wx/grid/require.rb +9 -0
- data/lib/wx/grid.rb +14 -0
- data/lib/wx/helpers.rb +65 -0
- data/lib/wx/html/htmlhelpcontroller.rb +6 -0
- data/lib/wx/html/htmlwindow.rb +19 -0
- data/lib/wx/html/keyword_defs.rb +22 -0
- data/lib/wx/html/require.rb +10 -0
- data/lib/wx/html.rb +15 -0
- data/lib/wx/keyword_ctors.rb +226 -0
- data/lib/wx/keyword_defs.rb +487 -0
- data/lib/wx/pg/events.rb +14 -0
- data/lib/wx/pg/keyword_defs.rb +15 -0
- data/lib/wx/pg/pg_editor.rb +13 -0
- data/lib/wx/pg/pg_properties.rb +24 -0
- data/lib/wx/pg/pg_property.rb +27 -0
- data/lib/wx/pg/property_grid.rb +71 -0
- data/lib/wx/pg/property_grid_interface.rb +46 -0
- data/lib/wx/pg/require.rb +12 -0
- data/lib/wx/pg.rb +14 -0
- data/lib/wx/prt/keyword_defs.rb +8 -0
- data/lib/wx/prt/page_setup_dialog.rb +15 -0
- data/lib/wx/prt/previewframe.rb +13 -0
- data/lib/wx/prt/require.rb +8 -0
- data/lib/wx/prt.rb +14 -0
- data/lib/wx/rbn/events.rb +4 -0
- data/lib/wx/rbn/keyword_defs.rb +43 -0
- data/lib/wx/rbn/require.rb +12 -0
- data/lib/wx/rbn/ribbon_art_provider.rb +10 -0
- data/lib/wx/rbn/ribbon_bar.rb +12 -0
- data/lib/wx/rbn/ribbon_button_bar.rb +26 -0
- data/lib/wx/rbn/ribbon_control.rb +25 -0
- data/lib/wx/rbn/ribbon_gallery.rb +26 -0
- data/lib/wx/rbn/ribbon_page.rb +15 -0
- data/lib/wx/rbn/ribbon_panel.rb +15 -0
- data/lib/wx/rbn/ribbon_tool_bar.rb +26 -0
- data/lib/wx/rbn.rb +14 -0
- data/lib/wx/rtc/ext.rb +15 -0
- data/lib/wx/rtc/keyword_defs.rb +17 -0
- data/lib/wx/rtc/require.rb +8 -0
- data/lib/wx/rtc.rb +15 -0
- data/lib/wx/stc/keyword_defs.rb +8 -0
- data/lib/wx/stc/require.rb +7 -0
- data/lib/wx/stc.rb +14 -0
- data/lib/wx/version.rb +3 -0
- data/lib/wx/wxruby/base.rb +87 -0
- data/lib/wx/wxruby/cmd/sampler.rb +68 -0
- data/lib/wx/wxruby/cmd/test.rb +27 -0
- data/lib/wx.rb +14 -0
- data/rakelib/build.rake +62 -0
- data/rakelib/build.rb +141 -0
- data/rakelib/config.rake +48 -0
- data/rakelib/configure.rb +131 -0
- data/rakelib/doc.rake +21 -0
- data/rakelib/doc.rb +35 -0
- data/rakelib/install.rake +30 -0
- data/rakelib/install.rb +220 -0
- data/rakelib/lib/config/cygwin.rb +6 -0
- data/rakelib/lib/config/linux.rb +78 -0
- data/rakelib/lib/config/macosx.rb +6 -0
- data/rakelib/lib/config/mingw.rb +133 -0
- data/rakelib/lib/config/netbsd.rb +6 -0
- data/rakelib/lib/config/unixish.rb +187 -0
- data/rakelib/lib/config.rb +673 -0
- data/rakelib/lib/core/include/enum.inc +306 -0
- data/rakelib/lib/core/include/funcall.inc +277 -0
- data/rakelib/lib/core/include/init.inc +95 -0
- data/rakelib/lib/core/mapping.rb +1116 -0
- data/rakelib/lib/core/package.rb +634 -0
- data/rakelib/lib/core/parameter.rb +222 -0
- data/rakelib/lib/core/spec.rb +468 -0
- data/rakelib/lib/core/spec_helper.rb +405 -0
- data/rakelib/lib/director/about_dialog_info.rb +24 -0
- data/rakelib/lib/director/accelerator.rb +88 -0
- data/rakelib/lib/director/animation.rb +84 -0
- data/rakelib/lib/director/animation_ctrl.rb +24 -0
- data/rakelib/lib/director/any_button.rb +34 -0
- data/rakelib/lib/director/app.rb +420 -0
- data/rakelib/lib/director/art_provider.rb +124 -0
- data/rakelib/lib/director/aui_dock_art.rb +23 -0
- data/rakelib/lib/director/aui_floating_frame.rb +26 -0
- data/rakelib/lib/director/aui_manager.rb +114 -0
- data/rakelib/lib/director/aui_manager_event.rb +22 -0
- data/rakelib/lib/director/aui_mdi_child_frame.rb +50 -0
- data/rakelib/lib/director/aui_mdi_client_window.rb +23 -0
- data/rakelib/lib/director/aui_mdi_parent_frame.rb +26 -0
- data/rakelib/lib/director/aui_notebook.rb +77 -0
- data/rakelib/lib/director/aui_notebook_event.rb +23 -0
- data/rakelib/lib/director/aui_pane_info.rb +102 -0
- data/rakelib/lib/director/aui_tab_art.rb +47 -0
- data/rakelib/lib/director/aui_tab_ctrl.rb +121 -0
- data/rakelib/lib/director/aui_toolbar.rb +22 -0
- data/rakelib/lib/director/aui_toolbar_art.rb +24 -0
- data/rakelib/lib/director/aui_toolbar_event.rb +23 -0
- data/rakelib/lib/director/aui_toolbar_item.rb +21 -0
- data/rakelib/lib/director/bitmap.rb +87 -0
- data/rakelib/lib/director/book_ctrls.rb +104 -0
- data/rakelib/lib/director/brush.rb +28 -0
- data/rakelib/lib/director/busy_info.rb +71 -0
- data/rakelib/lib/director/button.rb +22 -0
- data/rakelib/lib/director/calendar_ctrl.rb +98 -0
- data/rakelib/lib/director/calendar_date_attr.rb +22 -0
- data/rakelib/lib/director/caret.rb +31 -0
- data/rakelib/lib/director/check_listbox.rb +33 -0
- data/rakelib/lib/director/choice.rb +32 -0
- data/rakelib/lib/director/clipboard.rb +37 -0
- data/rakelib/lib/director/collapsible_pane.rb +22 -0
- data/rakelib/lib/director/collapsible_pane_event.rb +22 -0
- data/rakelib/lib/director/colour.rb +64 -0
- data/rakelib/lib/director/colour_picker_ctrl.rb +22 -0
- data/rakelib/lib/director/combobox.rb +37 -0
- data/rakelib/lib/director/control.rb +22 -0
- data/rakelib/lib/director/ctrl_with_items.rb +68 -0
- data/rakelib/lib/director/cursor.rb +28 -0
- data/rakelib/lib/director/data_format.rb +31 -0
- data/rakelib/lib/director/data_object.rb +64 -0
- data/rakelib/lib/director/date_event.rb +141 -0
- data/rakelib/lib/director/date_picker_ctrl.rb +39 -0
- data/rakelib/lib/director/dc.rb +52 -0
- data/rakelib/lib/director/defs.rb +139 -0
- data/rakelib/lib/director/derived_dc.rb +64 -0
- data/rakelib/lib/director/dialog.rb +214 -0
- data/rakelib/lib/director/dir_filterlist_ctrl.rb +29 -0
- data/rakelib/lib/director/dir_picker_ctrl.rb +22 -0
- data/rakelib/lib/director/drag_image.rb +20 -0
- data/rakelib/lib/director/dragdrop.rb +61 -0
- data/rakelib/lib/director/editable_listbox.rb +21 -0
- data/rakelib/lib/director/event.rb +171 -0
- data/rakelib/lib/director/event_handler.rb +410 -0
- data/rakelib/lib/director/events.rb +39 -0
- data/rakelib/lib/director/file_picker_ctrl.rb +22 -0
- data/rakelib/lib/director/find_dialog_event.rb +22 -0
- data/rakelib/lib/director/find_replace_data.rb +20 -0
- data/rakelib/lib/director/font.rb +138 -0
- data/rakelib/lib/director/font_data.rb +22 -0
- data/rakelib/lib/director/font_picker_ctrl.rb +22 -0
- data/rakelib/lib/director/frame.rb +74 -0
- data/rakelib/lib/director/fs_file.rb +353 -0
- data/rakelib/lib/director/functions.rb +284 -0
- data/rakelib/lib/director/gdi_object.rb +21 -0
- data/rakelib/lib/director/gdicommon.rb +94 -0
- data/rakelib/lib/director/generic_dirctrl.rb +24 -0
- data/rakelib/lib/director/graphics_context.rb +143 -0
- data/rakelib/lib/director/graphics_object.rb +69 -0
- data/rakelib/lib/director/grid_cell_attr.rb +53 -0
- data/rakelib/lib/director/grid_cell_editor.rb +434 -0
- data/rakelib/lib/director/grid_cell_renderer.rb +132 -0
- data/rakelib/lib/director/grid_ctrl.rb +390 -0
- data/rakelib/lib/director/grid_range_select_event.rb +23 -0
- data/rakelib/lib/director/grid_table_base.rb +63 -0
- data/rakelib/lib/director/grid_table_message.rb +20 -0
- data/rakelib/lib/director/help_controller.rb +75 -0
- data/rakelib/lib/director/help_provider.rb +103 -0
- data/rakelib/lib/director/html_cell.rb +36 -0
- data/rakelib/lib/director/html_easy_printing.rb +45 -0
- data/rakelib/lib/director/html_event.rb +24 -0
- data/rakelib/lib/director/html_help_data.rb +43 -0
- data/rakelib/lib/director/html_help_frame.rb +25 -0
- data/rakelib/lib/director/html_listbox.rb +54 -0
- data/rakelib/lib/director/html_printout.rb +47 -0
- data/rakelib/lib/director/html_window.rb +114 -0
- data/rakelib/lib/director/icon.rb +33 -0
- data/rakelib/lib/director/image.rb +111 -0
- data/rakelib/lib/director/image_list.rb +21 -0
- data/rakelib/lib/director/list_ctrl.rb +197 -0
- data/rakelib/lib/director/listbox.rb +32 -0
- data/rakelib/lib/director/locale.rb +35 -0
- data/rakelib/lib/director/log.rb +32 -0
- data/rakelib/lib/director/mdi_frame.rb +36 -0
- data/rakelib/lib/director/media_ctrl.rb +22 -0
- data/rakelib/lib/director/menu.rb +92 -0
- data/rakelib/lib/director/menu_bar.rb +28 -0
- data/rakelib/lib/director/menu_item.rb +36 -0
- data/rakelib/lib/director/mouse_state.rb +21 -0
- data/rakelib/lib/director/numeric_property_validator.rb +38 -0
- data/rakelib/lib/director/object.rb +32 -0
- data/rakelib/lib/director/page_setup_dialog.rb +30 -0
- data/rakelib/lib/director/palette.rb +25 -0
- data/rakelib/lib/director/panel.rb +22 -0
- data/rakelib/lib/director/pen.rb +174 -0
- data/rakelib/lib/director/pgarray_editor_dialog.rb +64 -0
- data/rakelib/lib/director/pgcell.rb +68 -0
- data/rakelib/lib/director/pgeditor.rb +154 -0
- data/rakelib/lib/director/pgmulti_button.rb +22 -0
- data/rakelib/lib/director/pgproperties.rb +216 -0
- data/rakelib/lib/director/pgproperty.rb +207 -0
- data/rakelib/lib/director/pgvalidation_info.rb +24 -0
- data/rakelib/lib/director/pickerbase.rb +22 -0
- data/rakelib/lib/director/platform_info.rb +49 -0
- data/rakelib/lib/director/popup_window.rb +23 -0
- data/rakelib/lib/director/preview_frame.rb +39 -0
- data/rakelib/lib/director/print_data.rb +33 -0
- data/rakelib/lib/director/print_dialog.rb +36 -0
- data/rakelib/lib/director/printer.rb +61 -0
- data/rakelib/lib/director/property_grid.rb +174 -0
- data/rakelib/lib/director/property_grid_event.rb +23 -0
- data/rakelib/lib/director/property_grid_interface.rb +227 -0
- data/rakelib/lib/director/property_grid_manager.rb +90 -0
- data/rakelib/lib/director/property_grid_page.rb +76 -0
- data/rakelib/lib/director/property_grid_page_state.rb +32 -0
- data/rakelib/lib/director/radio_box.rb +39 -0
- data/rakelib/lib/director/region.rb +25 -0
- data/rakelib/lib/director/ribbon_art_provider.rb +154 -0
- data/rakelib/lib/director/ribbon_bar.rb +24 -0
- data/rakelib/lib/director/ribbon_bar_event.rb +22 -0
- data/rakelib/lib/director/ribbon_button_bar.rb +37 -0
- data/rakelib/lib/director/ribbon_button_bar_event.rb +40 -0
- data/rakelib/lib/director/ribbon_ctrl.rb +28 -0
- data/rakelib/lib/director/ribbon_gallery.rb +33 -0
- data/rakelib/lib/director/ribbon_gallery_event.rb +27 -0
- data/rakelib/lib/director/ribbon_page.rb +21 -0
- data/rakelib/lib/director/ribbon_panel.rb +22 -0
- data/rakelib/lib/director/ribbon_panel_event.rb +22 -0
- data/rakelib/lib/director/ribbon_tool_bar.rb +146 -0
- data/rakelib/lib/director/ribbon_tool_bar_event.rb +22 -0
- data/rakelib/lib/director/richtext_buffer.rb +46 -0
- data/rakelib/lib/director/richtext_ctrl.rb +63 -0
- data/rakelib/lib/director/richtext_event.rb +25 -0
- data/rakelib/lib/director/richtext_file_handler.rb +42 -0
- data/rakelib/lib/director/richtext_header_footer_data.rb +21 -0
- data/rakelib/lib/director/richtext_printing.rb +44 -0
- data/rakelib/lib/director/sash_layout_event.rb +22 -0
- data/rakelib/lib/director/sash_layout_window.rb +23 -0
- data/rakelib/lib/director/sash_window.rb +23 -0
- data/rakelib/lib/director/scrolled_t.rb +67 -0
- data/rakelib/lib/director/sizer.rb +67 -0
- data/rakelib/lib/director/sizer_item.rb +35 -0
- data/rakelib/lib/director/splash_screen.rb +24 -0
- data/rakelib/lib/director/splitter_event.rb +28 -0
- data/rakelib/lib/director/splitter_window.rb +25 -0
- data/rakelib/lib/director/static_bitmap.rb +24 -0
- data/rakelib/lib/director/static_box.rb +26 -0
- data/rakelib/lib/director/status_bar.rb +86 -0
- data/rakelib/lib/director/styled_text_ctrl.rb +82 -0
- data/rakelib/lib/director/styled_text_event.rb +25 -0
- data/rakelib/lib/director/system_options.rb +22 -0
- data/rakelib/lib/director/system_settings.rb +47 -0
- data/rakelib/lib/director/task_bar_icon.rb +77 -0
- data/rakelib/lib/director/text_attr.rb +22 -0
- data/rakelib/lib/director/text_entry.rb +26 -0
- data/rakelib/lib/director/text_validator.rb +47 -0
- data/rakelib/lib/director/textctrl.rb +80 -0
- data/rakelib/lib/director/time_picker_ctrl.rb +24 -0
- data/rakelib/lib/director/timer.rb +37 -0
- data/rakelib/lib/director/tip_provider.rb +44 -0
- data/rakelib/lib/director/toggle_button.rb +22 -0
- data/rakelib/lib/director/tool_bar.rb +62 -0
- data/rakelib/lib/director/tool_tip.rb +20 -0
- data/rakelib/lib/director/top_level_window.rb +105 -0
- data/rakelib/lib/director/tree_ctrl.rb +411 -0
- data/rakelib/lib/director/tree_event.rb +78 -0
- data/rakelib/lib/director/utils.rb +55 -0
- data/rakelib/lib/director/validator.rb +44 -0
- data/rakelib/lib/director/variant.rb +549 -0
- data/rakelib/lib/director/vlistbox.rb +46 -0
- data/rakelib/lib/director/vscrolled_window.rb +59 -0
- data/rakelib/lib/director/window.rb +296 -0
- data/rakelib/lib/director/window_disabler.rb +44 -0
- data/rakelib/lib/director/with_images.rb +65 -0
- data/rakelib/lib/director/wizard_page.rb +35 -0
- data/rakelib/lib/director/xml_node.rb +48 -0
- data/rakelib/lib/director/xml_resource.rb +141 -0
- data/rakelib/lib/director.rb +487 -0
- data/rakelib/lib/ext/enum_chain.rb +22 -0
- data/rakelib/lib/extractor/class.rb +384 -0
- data/rakelib/lib/extractor/enum.rb +94 -0
- data/rakelib/lib/extractor/function.rb +377 -0
- data/rakelib/lib/extractor/module.rb +140 -0
- data/rakelib/lib/extractor/variable.rb +145 -0
- data/rakelib/lib/extractor.rb +438 -0
- data/rakelib/lib/generate/analyzer.rb +593 -0
- data/rakelib/lib/generate/base.rb +37 -0
- data/rakelib/lib/generate/doc.rb +833 -0
- data/rakelib/lib/generate/interface.rb +742 -0
- data/rakelib/lib/generate/rakedep.rb +130 -0
- data/rakelib/lib/specs/interfaces.rb +324 -0
- data/rakelib/lib/streams.rb +206 -0
- data/rakelib/lib/swig_runner.rb +682 -0
- data/rakelib/lib/typemap/array_int_selections.rb +57 -0
- data/rakelib/lib/typemap/common.rb +613 -0
- data/rakelib/lib/typemap/data_format.rb +76 -0
- data/rakelib/lib/typemap/data_object_data.rb +99 -0
- data/rakelib/lib/typemap/datetime.rb +64 -0
- data/rakelib/lib/typemap/grid_client_data.rb +55 -0
- data/rakelib/lib/typemap/grid_coords.rb +65 -0
- data/rakelib/lib/typemap/html_cell.rb +57 -0
- data/rakelib/lib/typemap/io_streams.rb +162 -0
- data/rakelib/lib/typemap/pgcell.rb +35 -0
- data/rakelib/lib/typemap/pgeditor.rb +35 -0
- data/rakelib/lib/typemap/pgprop_arg.rb +74 -0
- data/rakelib/lib/typemap/pgproperty.rb +35 -0
- data/rakelib/lib/typemap/points_list.rb +124 -0
- data/rakelib/lib/typemap/richtext.rb +67 -0
- data/rakelib/lib/typemap/tree_itemid.rb +49 -0
- data/rakelib/lib/util/string.rb +141 -0
- data/rakelib/prepost.rake +91 -0
- data/rakelib/prepost.rb +26 -0
- data/rakelib/run.rake +49 -0
- data/rakelib/yard/templates/default/fulldoc/html/css/wxruby3.css +7 -0
- data/rakelib/yard/templates/default/layout/html/setup.rb +5 -0
- data/rakelib/yard/yard/relative_markdown_links/version.rb +8 -0
- data/rakelib/yard/yard/relative_markdown_links.rb +39 -0
- data/rakelib/yard/yard-custom-templates.rb +2 -0
- data/rakelib/yard/yard-relative_markdown_links.rb +4 -0
- data/samples/art/wxruby-128x128.png +0 -0
- data/samples/art/wxruby-256x256.png +0 -0
- data/samples/art/wxruby-64x64.png +0 -0
- data/samples/art/wxruby.ico +0 -0
- data/samples/art/wxruby.png +0 -0
- data/samples/aui/aui.rb +1321 -0
- data/samples/aui/tn_aui.png +0 -0
- data/samples/bigdemo/About.rbw +39 -0
- data/samples/bigdemo/ColorPanel.rbw +23 -0
- data/samples/bigdemo/GridSimple.rbw +78 -0
- data/samples/bigdemo/MDIDemo.rbw +57 -0
- data/samples/bigdemo/PopupMenu.rbw +146 -0
- data/samples/bigdemo/ShapedWindow.rbw +128 -0
- data/samples/bigdemo/Sizers.rbw +541 -0
- data/samples/bigdemo/bigdemo.rb +810 -0
- data/samples/bigdemo/demoTemplate.rbw +33 -0
- 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/choice.xpm +27 -0
- data/samples/bigdemo/icons/combo.bmp +0 -0
- data/samples/bigdemo/icons/combo.xpm +27 -0
- data/samples/bigdemo/icons/copy.xpm +25 -0
- data/samples/bigdemo/icons/cut.xpm +24 -0
- data/samples/bigdemo/icons/gauge.bmp +0 -0
- data/samples/bigdemo/icons/gauge.xpm +27 -0
- data/samples/bigdemo/icons/help.xpm +25 -0
- data/samples/bigdemo/icons/list.bmp +0 -0
- data/samples/bigdemo/icons/list.xpm +27 -0
- data/samples/bigdemo/icons/mondrian.ico +0 -0
- data/samples/bigdemo/icons/mondrian.xpm +44 -0
- data/samples/bigdemo/icons/new.xpm +24 -0
- data/samples/bigdemo/icons/ogl.ico +0 -0
- data/samples/bigdemo/icons/ogl.xpm +45 -0
- data/samples/bigdemo/icons/open.xpm +26 -0
- data/samples/bigdemo/icons/paste.bmp +0 -0
- data/samples/bigdemo/icons/paste.xpm +38 -0
- data/samples/bigdemo/icons/pointy.png +0 -0
- data/samples/bigdemo/icons/preview.xpm +26 -0
- data/samples/bigdemo/icons/print.xpm +26 -0
- data/samples/bigdemo/icons/radio.bmp +0 -0
- data/samples/bigdemo/icons/radio.xpm +27 -0
- data/samples/bigdemo/icons/robert.xpm +415 -0
- data/samples/bigdemo/icons/sashtest.ico +0 -0
- data/samples/bigdemo/icons/save.xpm +25 -0
- data/samples/bigdemo/icons/smiles.bmp +0 -0
- data/samples/bigdemo/icons/smiles.xpm +39 -0
- data/samples/bigdemo/icons/smiley.ico +0 -0
- data/samples/bigdemo/icons/smiley.xpm +42 -0
- data/samples/bigdemo/icons/stattext.xpm +24 -0
- data/samples/bigdemo/icons/test2.bmp +0 -0
- data/samples/bigdemo/icons/test2.png +0 -0
- data/samples/bigdemo/icons/test2.xpm +79 -0
- data/samples/bigdemo/icons/text.bmp +0 -0
- data/samples/bigdemo/icons/text.xpm +27 -0
- data/samples/bigdemo/icons/tog1.bmp +0 -0
- data/samples/bigdemo/icons/tog1.xpm +38 -0
- data/samples/bigdemo/icons/tog2.bmp +0 -0
- data/samples/bigdemo/icons/tog2.xpm +38 -0
- 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 +25 -0
- data/samples/bigdemo/icons/wxwin32x32.png +0 -0
- data/samples/bigdemo/icons/wxwin48x48.png +0 -0
- data/samples/bigdemo/run.rb +91 -0
- data/samples/bigdemo/tips.txt +7 -0
- data/samples/bigdemo/utils.rb +12 -0
- data/samples/bigdemo/wxArtProvider.rbw +281 -0
- data/samples/bigdemo/wxBitmapButton.rbw +65 -0
- data/samples/bigdemo/wxButton.rbw +64 -0
- data/samples/bigdemo/wxCalendarCtrl.rbw +59 -0
- data/samples/bigdemo/wxCheckBox.rbw +50 -0
- data/samples/bigdemo/wxCheckListBox.rbw +65 -0
- data/samples/bigdemo/wxChoice.rbw +47 -0
- data/samples/bigdemo/wxChoicebook.rbw +78 -0
- data/samples/bigdemo/wxColourDialog.rbw +33 -0
- data/samples/bigdemo/wxComboBox.rbw +77 -0
- data/samples/bigdemo/wxCursor.rbw +136 -0
- data/samples/bigdemo/wxDialog.rbw +74 -0
- data/samples/bigdemo/wxDirDialog.rbw +29 -0
- data/samples/bigdemo/wxDragImage.rbw +70 -0
- data/samples/bigdemo/wxFileDialog.rbw +37 -0
- data/samples/bigdemo/wxFileDialog_Save.rbw +35 -0
- data/samples/bigdemo/wxFindReplaceDialog.rbw +82 -0
- data/samples/bigdemo/wxFontDialog.rbw +200 -0
- data/samples/bigdemo/wxFrame.rbw +53 -0
- data/samples/bigdemo/wxGauge.rbw +65 -0
- data/samples/bigdemo/wxGenericDirCtrl.rbw +74 -0
- data/samples/bigdemo/wxGrid.rbw +66 -0
- data/samples/bigdemo/wxHtmlHelpController.rbw +52 -0
- data/samples/bigdemo/wxListBox.rbw +140 -0
- data/samples/bigdemo/wxListCtrl_virtual.rbw +112 -0
- data/samples/bigdemo/wxMDIWindows.rbw +50 -0
- data/samples/bigdemo/wxMenu.rbw +247 -0
- data/samples/bigdemo/wxMessageDialog.rbw +27 -0
- data/samples/bigdemo/wxMiniFrame.rbw +70 -0
- data/samples/bigdemo/wxMultipleChoiceDialog.rbw +29 -0
- data/samples/bigdemo/wxNotebook.rbw +136 -0
- data/samples/bigdemo/wxProgressDialog.rbw +43 -0
- data/samples/bigdemo/wxRadioBox.rbw +72 -0
- data/samples/bigdemo/wxRadioButton.rbw +125 -0
- data/samples/bigdemo/wxSashWindow.rbw +141 -0
- data/samples/bigdemo/wxScrolledMessageDialog.rbw +57 -0
- data/samples/bigdemo/wxScrolledWindow.rbw +199 -0
- data/samples/bigdemo/wxSingleChoiceDialog.rbw +33 -0
- data/samples/bigdemo/wxSlider.rbw +42 -0
- data/samples/bigdemo/wxSpinButton.rbw +50 -0
- data/samples/bigdemo/wxSpinCtrl.rbw +51 -0
- data/samples/bigdemo/wxSplitterWindow.rbw +63 -0
- data/samples/bigdemo/wxStaticBitmap.rbw +47 -0
- data/samples/bigdemo/wxStaticText.rbw +55 -0
- data/samples/bigdemo/wxStatusBar.rbw +126 -0
- data/samples/bigdemo/wxTextCtrl.rbw +149 -0
- data/samples/bigdemo/wxTextEntryDialog.rbw +31 -0
- data/samples/bigdemo/wxToggleButton.rbw +49 -0
- data/samples/bigdemo/wxToolBar.rbw +131 -0
- data/samples/bigdemo/wxTreeCtrl.rbw +191 -0
- data/samples/calendar/calendar.rb +363 -0
- data/samples/calendar/tn_calendar.png +0 -0
- data/samples/caret/caret.rb +293 -0
- data/samples/caret/mondrian.xpm +44 -0
- data/samples/caret/tn_caret.png +0 -0
- data/samples/controls/books.rb +183 -0
- data/samples/controls/choice.xpm +27 -0
- data/samples/controls/combo.xpm +27 -0
- data/samples/controls/controls.rb +1143 -0
- data/samples/controls/gauge.xpm +27 -0
- data/samples/controls/get_item_sample.rb +117 -0
- data/samples/controls/list.xpm +27 -0
- data/samples/controls/mondrian.ico +0 -0
- data/samples/controls/mondrian.xpm +44 -0
- data/samples/controls/radio.xpm +27 -0
- data/samples/controls/stattext.xpm +24 -0
- data/samples/controls/test2.bmp +0 -0
- data/samples/controls/text.xpm +27 -0
- data/samples/controls/tn_books.png +0 -0
- data/samples/controls/tn_controls.png +0 -0
- data/samples/controls/tn_get_item_sample.png +0 -0
- data/samples/dialogs/dialogs.rb +879 -0
- data/samples/dialogs/tips.txt +18 -0
- data/samples/dialogs/tn_dialogs.png +0 -0
- data/samples/dialogs/tn_wizard.png +0 -0
- data/samples/dialogs/wizard.rb +89 -0
- data/samples/dragdrop/dragdrop.rb +200 -0
- data/samples/dragdrop/tn_dragdrop.png +0 -0
- data/samples/drawing/SVGlogo24.xpm +310 -0
- data/samples/drawing/bitmap.rb +76 -0
- data/samples/drawing/bitmap_image.rb +131 -0
- data/samples/drawing/graphics_drawing.rb +257 -0
- data/samples/drawing/maths_images.rb +327 -0
- data/samples/drawing/rmagic_bitmap_image.rb +139 -0
- data/samples/drawing/ruby-logo.jpg +0 -0
- data/samples/drawing/svgtest.rb +373 -0
- data/samples/drawing/tn_bitmap.png +0 -0
- data/samples/drawing/tn_bitmap_image.png +0 -0
- data/samples/drawing/tn_graphics_drawing.png +0 -0
- data/samples/drawing/tn_maths_images.png +0 -0
- data/samples/drawing/tn_rmagic_bitmap_image.png +0 -0
- data/samples/drawing/tn_svgtest.png +0 -0
- data/samples/etc/choice.rb +82 -0
- data/samples/etc/miniframe.rb +92 -0
- data/samples/etc/sash.rb +140 -0
- data/samples/etc/scrollwin.rb +120 -0
- data/samples/etc/system_settings.rb +263 -0
- data/samples/etc/tn_choice.png +0 -0
- data/samples/etc/tn_miniframe.png +0 -0
- data/samples/etc/tn_sash.png +0 -0
- data/samples/etc/tn_scrollwin.png +0 -0
- data/samples/etc/tn_system_settings.png +0 -0
- data/samples/event/activation.rb +129 -0
- data/samples/event/event.rb +220 -0
- data/samples/event/threaded.rb +141 -0
- data/samples/event/tn_activation.png +0 -0
- data/samples/event/tn_event.png +0 -0
- data/samples/event/tn_threaded.png +0 -0
- data/samples/event/tn_update_ui_event.png +0 -0
- data/samples/event/update_ui_event.rb +91 -0
- data/samples/grid/grid.rb +224 -0
- data/samples/grid/gridtablebase.rb +178 -0
- data/samples/grid/tn_grid.png +0 -0
- data/samples/grid/tn_gridtablebase.png +0 -0
- data/samples/html/8859_2.htm +14 -0
- data/samples/html/cp1250.htm +19 -0
- data/samples/html/foo.png +0 -0
- data/samples/html/html.rb +278 -0
- data/samples/html/i18n.gif +0 -0
- data/samples/html/imagemap.htm +20 -0
- data/samples/html/imagemap.png +0 -0
- data/samples/html/listtest.htm +28 -0
- data/samples/html/pic.png +0 -0
- data/samples/html/pic2.bmp +0 -0
- data/samples/html/regres.htm +20 -0
- data/samples/html/subsup.html +42 -0
- data/samples/html/tables.htm +255 -0
- data/samples/html/test.htm +375 -0
- data/samples/html/tn_html.png +0 -0
- data/samples/mdi/mdi.rb +118 -0
- data/samples/mdi/tn_mdi.png +0 -0
- data/samples/minimal/minimal.rb +95 -0
- data/samples/minimal/mondrian.ico +0 -0
- data/samples/minimal/mondrian.png +0 -0
- data/samples/minimal/nothing.rb +38 -0
- data/samples/minimal/tn_minimal.png +0 -0
- data/samples/minimal/tn_nothing.png +0 -0
- data/samples/printing/mondrian.ico +0 -0
- data/samples/printing/mondrian.xpm +44 -0
- data/samples/printing/printing.rb +499 -0
- data/samples/printing/printing2.rb +251 -0
- data/samples/printing/sample-text.txt +213 -0
- data/samples/printing/tn_printing.png +0 -0
- data/samples/printing/tn_printing2.png +0 -0
- data/samples/propgrid/propgrid.rb +2711 -0
- data/samples/propgrid/propgrid_minimal.rb +107 -0
- data/samples/propgrid/sample_props.rb +434 -0
- data/samples/propgrid/tn_propgrid.png +0 -0
- data/samples/propgrid/tn_propgrid_minimal.png +0 -0
- data/samples/ribbon/align_center.xpm +21 -0
- data/samples/ribbon/align_left.xpm +21 -0
- data/samples/ribbon/align_right.xpm +21 -0
- data/samples/ribbon/aui_style.xpm +53 -0
- data/samples/ribbon/auto_crop_selection.xpm +55 -0
- data/samples/ribbon/auto_crop_selection_small.xpm +33 -0
- data/samples/ribbon/circle.xpm +38 -0
- data/samples/ribbon/circle_small.xpm +22 -0
- data/samples/ribbon/colours.xpm +25 -0
- data/samples/ribbon/cross.xpm +38 -0
- data/samples/ribbon/empty.xpm +23 -0
- data/samples/ribbon/expand_selection_h.xpm +46 -0
- data/samples/ribbon/expand_selection_v.xpm +46 -0
- data/samples/ribbon/eye.xpm +26 -0
- data/samples/ribbon/hexagon.xpm +38 -0
- data/samples/ribbon/msw_style.xpm +65 -0
- data/samples/ribbon/position_left.xpm +22 -0
- data/samples/ribbon/position_top.xpm +22 -0
- data/samples/ribbon/ribbon.rb +900 -0
- data/samples/ribbon/ribbon.xpm +54 -0
- data/samples/ribbon/selection_panel.xpm +23 -0
- data/samples/ribbon/square.xpm +38 -0
- data/samples/ribbon/tn_ribbon.png +0 -0
- data/samples/ribbon/triangle.xpm +38 -0
- data/samples/sample.xpm +475 -0
- data/samples/sampler/back.xpm +21 -0
- data/samples/sampler/copy.xpm +44 -0
- data/samples/sampler/cut.xpm +46 -0
- data/samples/sampler/editor.rb +560 -0
- data/samples/sampler/ext.rb +51 -0
- data/samples/sampler/filesave.xpm +42 -0
- data/samples/sampler/find.xpm +62 -0
- data/samples/sampler/findrepl.xpm +63 -0
- data/samples/sampler/forward.xpm +21 -0
- data/samples/sampler/paste.xpm +46 -0
- data/samples/sampler/play.xpm +24 -0
- data/samples/sampler/redo.xpm +58 -0
- data/samples/sampler/sample.rb +347 -0
- data/samples/sampler/stc_editor.rb +321 -0
- data/samples/sampler/txt_editor.rb +130 -0
- data/samples/sampler/undo.xpm +58 -0
- data/samples/sampler.rb +394 -0
- data/samples/splash/mobile.xpm +1835 -0
- data/samples/splash/splash.png +0 -0
- data/samples/splash/splash.rb +164 -0
- data/samples/splash/tn_splash.png +0 -0
- data/samples/text/document-open.png +0 -0
- data/samples/text/document-save.png +0 -0
- data/samples/text/edit-copy.png +0 -0
- data/samples/text/edit-cut.png +0 -0
- data/samples/text/edit-paste.png +0 -0
- data/samples/text/edit-redo.png +0 -0
- data/samples/text/edit-undo.png +0 -0
- data/samples/text/format-text-bold.png +0 -0
- data/samples/text/format-text-italic.png +0 -0
- data/samples/text/format-text-underline.png +0 -0
- data/samples/text/mondrian.ico +0 -0
- data/samples/text/mondrian.xpm +44 -0
- data/samples/text/preferences-desktop-font.png +0 -0
- data/samples/text/rich_textctrl.rb +326 -0
- data/samples/text/scintilla.rb +179 -0
- data/samples/text/textctrl.rb +124 -0
- data/samples/text/tn_rich_textctrl.png +0 -0
- data/samples/text/tn_scintilla.png +0 -0
- data/samples/text/tn_textctrl.png +0 -0
- data/samples/text/tn_unicode.png +0 -0
- data/samples/text/unicode.rb +238 -0
- data/samples/text/utf8.txt +15 -0
- data/samples/treectrl/checked.xpm +54 -0
- data/samples/treectrl/icon1.xpm +79 -0
- data/samples/treectrl/icon2.xpm +53 -0
- data/samples/treectrl/icon3.xpm +79 -0
- data/samples/treectrl/icon4.xpm +43 -0
- data/samples/treectrl/icon5.xpm +79 -0
- data/samples/treectrl/state1.xpm +145 -0
- data/samples/treectrl/state2.xpm +144 -0
- data/samples/treectrl/state3.xpm +142 -0
- data/samples/treectrl/state4.xpm +145 -0
- data/samples/treectrl/state5.xpm +85 -0
- data/samples/treectrl/tn_treectrl.png +0 -0
- data/samples/treectrl/treectrl.rb +1720 -0
- data/samples/treectrl/unchecked.xpm +30 -0
- data/samples/xrc/custom_dialog.xrc +46 -0
- data/samples/xrc/custom_xrc_sample.rb +84 -0
- data/samples/xrc/samples.xrc +46 -0
- data/samples/xrc/tn_xrc_sample.png +0 -0
- data/samples/xrc/xrc_sample.rb +86 -0
- data/tests/test_basic.rb +20 -0
- data/tests/test_clipboard.rb +241 -0
- data/tests/test_dialog.rb +28 -0
- data/tests/test_event_handling.rb +103 -0
- data/tests/test_events.rb +45 -0
- data/tests/test_geometry.rb +141 -0
- data/tests/test_intl.rb +107 -0
- data/tests/test_item_data.rb +120 -0
- data/tests/test_variant.rb +151 -0
- data/tests/testapp.rb +40 -0
- data/tests/testapp_noframe.rb +28 -0
- metadata +874 -0
|
@@ -0,0 +1,226 @@
|
|
|
1
|
+
# WxRuby Extensions - Keyword Constructors for wxRuby3
|
|
2
|
+
# Copyright (c) M.J.N. Corino, The Netherlands
|
|
3
|
+
# Adapted from wxRuby2.
|
|
4
|
+
|
|
5
|
+
module Wx
|
|
6
|
+
# = WxSugar - Keyword Constructors Classes
|
|
7
|
+
#
|
|
8
|
+
# This extension defines the keyword parameters for +new+ methods for
|
|
9
|
+
# widgets, windows and frames. It's for use with *Keyword Constructors*
|
|
10
|
+
# and is no use on its own - except if you are looking for a bug or want
|
|
11
|
+
# to add a missing class.
|
|
12
|
+
#
|
|
13
|
+
# For each class, the parameters *must* be declared in the order that
|
|
14
|
+
# they are supplied to wxRuby. A parameter is specified by a symbol
|
|
15
|
+
# name, and, optionally, a default argument which will be of whatever type
|
|
16
|
+
# the wxRuby core library accepts.
|
|
17
|
+
# To support complex (context dependent) defaults and/or autoconversion
|
|
18
|
+
# of arguments for backwards the specified default can also be a lambda
|
|
19
|
+
# or a proc accepting a single argument. This argument will be the
|
|
20
|
+
# value of the specified parameter (or nil) and the lambda or proc
|
|
21
|
+
# should return the constructed or converted argument value to be used.
|
|
22
|
+
#
|
|
23
|
+
# Some common parameters to constructors such as size, position, title,
|
|
24
|
+
# id and so forth always have a standard default argumnet, which is
|
|
25
|
+
# defined in keyword_ctors. In these cases, it is not necessary to
|
|
26
|
+
# supply the default argument in the definition.
|
|
27
|
+
@defined_kw_classes = {}
|
|
28
|
+
|
|
29
|
+
# accepts a string unadorned name of a WxWidgets class, and block, which
|
|
30
|
+
# defines the constructor parameters and style flags for that class.
|
|
31
|
+
# If the named class exists in the available WxRuby, the block is run and
|
|
32
|
+
# the class may use keyword constructors. If the class is not available, the
|
|
33
|
+
# block is ignored.
|
|
34
|
+
def self.define_keyword_ctors(klass, &block)
|
|
35
|
+
klass_name = ::String === klass ? klass : klass.name
|
|
36
|
+
# check this class hasn't already been defined
|
|
37
|
+
if @defined_kw_classes[klass_name]
|
|
38
|
+
raise ArgumentError, "Keyword ctor for #{klass_name} already defined"
|
|
39
|
+
else
|
|
40
|
+
@defined_kw_classes[klass_name] = true
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
begin
|
|
44
|
+
klass = Wx::const_get(klass_name)
|
|
45
|
+
rescue NameError
|
|
46
|
+
STDERR.puts "WARNING: cannot define keyword ctor for #{klass_name}" if Wx::DEBUG
|
|
47
|
+
return nil
|
|
48
|
+
end if ::String === klass
|
|
49
|
+
# If the klass inherited from a class which already has keyword ctor defined
|
|
50
|
+
# it will already have a param_spec class attribute defined.
|
|
51
|
+
# We need to clear it here because we're going to define a new param_spec for
|
|
52
|
+
# this specific derivative.
|
|
53
|
+
unless klass.respond_to?(:param_spec)
|
|
54
|
+
klass.include Wx::KeywordConstructor::ParamSpec
|
|
55
|
+
end
|
|
56
|
+
klass.param_spec = []
|
|
57
|
+
klass.include Wx::KeywordConstructor
|
|
58
|
+
klass.instance_eval(&block)
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
module KeywordConstructor
|
|
62
|
+
|
|
63
|
+
# This module defines an inheritable class attribute like the ones defined
|
|
64
|
+
# by the Rails #class_attribute method.
|
|
65
|
+
module ParamSpec
|
|
66
|
+
def self.included(mod)
|
|
67
|
+
mod.class_eval do
|
|
68
|
+
def self.param_spec
|
|
69
|
+
nil
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
def self.param_spec?
|
|
73
|
+
!!param_spec
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
def self.param_spec=(val)
|
|
77
|
+
singleton_class.class_eval do
|
|
78
|
+
if method_defined?(:param_spec) || private_method_defined?(:param_spec)
|
|
79
|
+
begin
|
|
80
|
+
remove_method(:param_spec);
|
|
81
|
+
rescue NameError;
|
|
82
|
+
end
|
|
83
|
+
end
|
|
84
|
+
define_method(:param_spec) { val }
|
|
85
|
+
end
|
|
86
|
+
|
|
87
|
+
if singleton_class?
|
|
88
|
+
class_eval do
|
|
89
|
+
if method_defined?(:param_spec) || private_method_defined?(:param_spec)
|
|
90
|
+
begin
|
|
91
|
+
remove_method(:param_spec);
|
|
92
|
+
rescue NameError;
|
|
93
|
+
end
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
def param_spec
|
|
97
|
+
defined?(@param_spec) ? @param_spec : singleton_class.param_spec
|
|
98
|
+
end
|
|
99
|
+
end
|
|
100
|
+
end
|
|
101
|
+
val
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
if method_defined?(:param_spec) || private_method_defined?(:param_spec)
|
|
105
|
+
begin
|
|
106
|
+
remove_method(:param_spec);
|
|
107
|
+
rescue NameError;
|
|
108
|
+
end
|
|
109
|
+
end
|
|
110
|
+
|
|
111
|
+
def param_spec
|
|
112
|
+
defined?(@param_spec) ? @param_spec : self.class.param_spec
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
def param_spec?
|
|
116
|
+
!!param_spec
|
|
117
|
+
end
|
|
118
|
+
end
|
|
119
|
+
end
|
|
120
|
+
end
|
|
121
|
+
|
|
122
|
+
# This module adds the class methods needed to define and use keyword ctors.
|
|
123
|
+
module ClassMethods
|
|
124
|
+
|
|
125
|
+
# Common Wx constructor argument keywords, with their default values.
|
|
126
|
+
STANDARD_DEFAULTS = {
|
|
127
|
+
:id => Wx::StandardID::ID_ANY,
|
|
128
|
+
:size => Wx::DEFAULT_SIZE,
|
|
129
|
+
:pos => Wx::DEFAULT_POSITION,
|
|
130
|
+
:style => 0,
|
|
131
|
+
:title => '',
|
|
132
|
+
:validator => Wx::DEFAULT_VALIDATOR,
|
|
133
|
+
:choices => [] # for Choice, ComboBox etc
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
# Adds a list of named parameters *params* to the parameter
|
|
137
|
+
# specification for this Wx class's constructor. Each parameter
|
|
138
|
+
# should be specified as a either a common known symbol, such as
|
|
139
|
+
# +:size+ or +:pos:+ or +:style:+ (corresponding to the common
|
|
140
|
+
# constructor arguments in WxWidgets API), or a single-key with the
|
|
141
|
+
# key the name of the argument, and the value a default value.
|
|
142
|
+
#
|
|
143
|
+
# Parameters should be specified in the order they occur in the Wx
|
|
144
|
+
# API constructor
|
|
145
|
+
def wx_ctor_params(*params)
|
|
146
|
+
self.param_spec += params.map do | param |
|
|
147
|
+
param.kind_of?(Hash) ?
|
|
148
|
+
Parameter[ param.keys.first, param.values.first ] :
|
|
149
|
+
Parameter[ param, STANDARD_DEFAULTS[param] ]
|
|
150
|
+
end
|
|
151
|
+
end
|
|
152
|
+
|
|
153
|
+
def args_as_list(*mixed_args)
|
|
154
|
+
Wx::args_as_list(param_spec, *mixed_args)
|
|
155
|
+
end
|
|
156
|
+
|
|
157
|
+
def args_as_hash(*mixed_args)
|
|
158
|
+
kwa = mixed_args.last.kind_of?(Hash) ? mixed_args.pop : {}
|
|
159
|
+
param_spec.zip(mixed_args) do | param, arg |
|
|
160
|
+
kwa[param.name] = arg if arg
|
|
161
|
+
end
|
|
162
|
+
kwa
|
|
163
|
+
end
|
|
164
|
+
|
|
165
|
+
def describe_constructor(txt = '')
|
|
166
|
+
param_spec.inject(txt) do | desc, param |
|
|
167
|
+
if Proc === param.default_or_proc
|
|
168
|
+
desc << ":#{param.name} => (#{param.default_or_proc.call(nil).class.name})\n"
|
|
169
|
+
else
|
|
170
|
+
desc << ":#{param.name} => (#{param.default_or_proc.class.name})\n"
|
|
171
|
+
end
|
|
172
|
+
end
|
|
173
|
+
end
|
|
174
|
+
end
|
|
175
|
+
|
|
176
|
+
def self.included(klass)
|
|
177
|
+
klass.extend ClassMethods
|
|
178
|
+
|
|
179
|
+
# This defines the overridden ctor that accepts and use the keyword param specs.
|
|
180
|
+
klass.module_eval do
|
|
181
|
+
|
|
182
|
+
alias :pre_wx_kwctor_init :initialize
|
|
183
|
+
|
|
184
|
+
# The new definition of initialize; accepts a parent arg
|
|
185
|
+
# mixed_args, which may zero or more position args, optionally
|
|
186
|
+
# terminated with hash keyword args, and an optional block
|
|
187
|
+
def initialize(parent = :default_ctor, *mixed_args, &block)
|
|
188
|
+
# allow zero-args ctor for use with XRC
|
|
189
|
+
if parent == :default_ctor
|
|
190
|
+
pre_wx_kwctor_init
|
|
191
|
+
return
|
|
192
|
+
end
|
|
193
|
+
|
|
194
|
+
begin
|
|
195
|
+
real_args = [ parent ] + self.class.args_as_list(*mixed_args)
|
|
196
|
+
pre_wx_kwctor_init(*real_args)
|
|
197
|
+
rescue => err
|
|
198
|
+
msg = "Error initializing #{self.inspect}\n"+
|
|
199
|
+
" : #{err.message} \n" +
|
|
200
|
+
"Provided are #{real_args} \n" +
|
|
201
|
+
"Correct parameters for #{self.class.name}.new are:\n" +
|
|
202
|
+
self.class.describe_constructor()
|
|
203
|
+
|
|
204
|
+
new_err = err.class.new(msg)
|
|
205
|
+
new_err.set_backtrace(caller)
|
|
206
|
+
Kernel.raise new_err
|
|
207
|
+
end
|
|
208
|
+
|
|
209
|
+
# If a block was given, pass the newly created Window instance
|
|
210
|
+
# into it; use block
|
|
211
|
+
if block
|
|
212
|
+
if block.arity == -1 or block.arity == 0
|
|
213
|
+
self.instance_eval(&block)
|
|
214
|
+
elsif block.arity == 1
|
|
215
|
+
block.call(self)
|
|
216
|
+
else
|
|
217
|
+
Kernel.raise ArgumentError,
|
|
218
|
+
"Block to initialize should accept a single argument or none"
|
|
219
|
+
end
|
|
220
|
+
end
|
|
221
|
+
end
|
|
222
|
+
end
|
|
223
|
+
end
|
|
224
|
+
|
|
225
|
+
end
|
|
226
|
+
end
|
|
@@ -0,0 +1,487 @@
|
|
|
1
|
+
# Wx keyword ctor definitions for core classes
|
|
2
|
+
# Copyright (c) M.J.N. Corino, The Netherlands
|
|
3
|
+
# Adapted from wxRuby2.
|
|
4
|
+
|
|
5
|
+
# Window : base class for all widgets and frames
|
|
6
|
+
Wx::define_keyword_ctors('Window') do
|
|
7
|
+
wx_ctor_params :id, :pos, :size, :style
|
|
8
|
+
wx_ctor_params :name => 'window'
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
### FRAMES
|
|
12
|
+
|
|
13
|
+
# wxTopLevelWindow ABSTRACT: Any top level window, dialog or frame
|
|
14
|
+
|
|
15
|
+
# Normal frame
|
|
16
|
+
Wx::define_keyword_ctors('Frame') do
|
|
17
|
+
wx_ctor_params :id, :title, :pos, :size, :style => Wx::DEFAULT_FRAME_STYLE
|
|
18
|
+
wx_ctor_params :name => 'frame'
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
# MDI child frame
|
|
22
|
+
Wx::define_keyword_ctors('MDIChildFrame') do
|
|
23
|
+
wx_ctor_params :id, :title, :pos, :size, :style => Wx::DEFAULT_FRAME_STYLE
|
|
24
|
+
wx_ctor_params :name => 'frame'
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
# MDI parent frame
|
|
28
|
+
Wx::define_keyword_ctors('MDIParentFrame') do
|
|
29
|
+
wx_ctor_params :id, :title, :pos, :size
|
|
30
|
+
wx_ctor_params :style => Wx::DEFAULT_FRAME_STYLE|Wx::VSCROLL|Wx::HSCROLL
|
|
31
|
+
wx_ctor_params :name => 'frame'
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
# wxMiniFrame A frame with a small title bar
|
|
35
|
+
Wx::define_keyword_ctors('MiniFrame') do
|
|
36
|
+
wx_ctor_params :id, :title, :pos, :size
|
|
37
|
+
wx_ctor_params :style => Wx::DEFAULT_FRAME_STYLE
|
|
38
|
+
wx_ctor_params :name => 'frame'
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
# wxPropertySheetDialog Property sheet dialog
|
|
42
|
+
# wxTipWindow Shows text in a small window
|
|
43
|
+
|
|
44
|
+
# wxWizard A wizard dialog
|
|
45
|
+
Wx::define_keyword_ctors('Wizard') do
|
|
46
|
+
wx_ctor_params :id
|
|
47
|
+
wx_ctor_params :title
|
|
48
|
+
wx_ctor_params :bitmap
|
|
49
|
+
wx_ctor_params :pos # NB - no size argument for this class
|
|
50
|
+
wx_ctor_params :style => Wx::DEFAULT_DIALOG_STYLE
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
# MISCELLANEOUS WINDOWS
|
|
55
|
+
|
|
56
|
+
# OpenGL Canvas
|
|
57
|
+
Wx::define_keyword_ctors('GLCanvas') do
|
|
58
|
+
wx_ctor_params :id
|
|
59
|
+
wx_ctor_params :pos, :size, :style => Wx::FULL_REPAINT_ON_RESIZE
|
|
60
|
+
wx_ctor_params :name => 'GLCanvas'
|
|
61
|
+
wx_ctor_params :attrib_list => [Wx::GL_RGBA, Wx::GL_DOUBLEBUFFER]
|
|
62
|
+
wx_ctor_params :palette => Wx::NULL_PALETTE
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
# A window whose colour changes according to current user settings
|
|
66
|
+
Wx::define_keyword_ctors('Panel') do
|
|
67
|
+
wx_ctor_params :id, :pos, :size, :style => Wx::TAB_TRAVERSAL
|
|
68
|
+
wx_ctor_params :name => 'panel'
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
# wxScrolledWindow Window with automatically managed scrollbars
|
|
72
|
+
Wx::define_keyword_ctors('ScrolledWindow') do
|
|
73
|
+
wx_ctor_params :id, :pos, :size, :style => Wx::VSCROLL|Wx::HSCROLL
|
|
74
|
+
wx_ctor_params :name => 'scrolledWindow'
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
# Window which can be split vertically or horizontally
|
|
78
|
+
Wx::define_keyword_ctors('SplitterWindow') do
|
|
79
|
+
wx_ctor_params :id, :pos, :size, :style => Wx::SP_3D
|
|
80
|
+
wx_ctor_params :name => 'splitterWindow'
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
# Implements the status bar on a frame
|
|
84
|
+
Wx::define_keyword_ctors('StatusBar') do
|
|
85
|
+
wx_ctor_params :id, :style => Wx::STB_SIZEGRIP
|
|
86
|
+
wx_ctor_params :name => 'statusBar'
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
# Toolbar class
|
|
90
|
+
Wx::define_keyword_ctors('ToolBar') do
|
|
91
|
+
wx_ctor_params :id, :pos, :size, :style => Wx::TB_HORIZONTAL|Wx::NO_BORDER
|
|
92
|
+
wx_ctor_params :name => 'toolBar' # not as documented in Wx 2.6.3
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
# ToolBarTool class
|
|
96
|
+
Wx::define_keyword_ctors('ToolBarTool') do
|
|
97
|
+
# By default we want Wx to generate an id for us, thus it doesn't
|
|
98
|
+
# respect the wxWidgets default constructor value which is
|
|
99
|
+
# ID_SEPARATOR
|
|
100
|
+
wx_ctor_params :id => Wx::ID_ANY
|
|
101
|
+
wx_ctor_params :label => ''
|
|
102
|
+
wx_ctor_params :bitmap
|
|
103
|
+
wx_ctor_params :disabled_bitmap => Wx::NULL_BITMAP
|
|
104
|
+
wx_ctor_params :kind => Wx::ItemKind::ITEM_NORMAL
|
|
105
|
+
wx_ctor_params :data => nil
|
|
106
|
+
wx_ctor_params :short_help => ''
|
|
107
|
+
wx_ctor_params :long_help => ''
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
# Similar to notebook but using choice control
|
|
111
|
+
Wx::define_keyword_ctors('Choicebook') do
|
|
112
|
+
wx_ctor_params :id, :pos, :size, :style, :name => 'choiceBook'
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
# Notebook class
|
|
116
|
+
Wx::define_keyword_ctors('Notebook') do
|
|
117
|
+
wx_ctor_params :id, :pos, :size, :style, :name => 'noteBook'
|
|
118
|
+
end
|
|
119
|
+
|
|
120
|
+
# Similar to notebook but using list control
|
|
121
|
+
Wx::define_keyword_ctors('Listbook') do
|
|
122
|
+
wx_ctor_params :id, :pos, :size, :style, :name => 'listBook'
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
# Similar to notebook but using toolbar
|
|
126
|
+
Wx::define_keyword_ctors('Toolbook') do
|
|
127
|
+
wx_ctor_params :id, :pos, :size, :style, :name => 'toolBook'
|
|
128
|
+
end
|
|
129
|
+
|
|
130
|
+
# Similar to notebook but using tree control
|
|
131
|
+
Wx::define_keyword_ctors('Treebook') do
|
|
132
|
+
wx_ctor_params :id, :pos, :size, :style, :name => 'treeBook'
|
|
133
|
+
end
|
|
134
|
+
|
|
135
|
+
# wxSashWindow: Window with four optional sashes that can be dragged
|
|
136
|
+
Wx::define_keyword_ctors('SashWindow') do
|
|
137
|
+
wx_ctor_params :id, :pos, :size
|
|
138
|
+
wx_ctor_params :style => Wx::CLIP_CHILDREN|Wx::SW_3D
|
|
139
|
+
wx_ctor_params :name => 'sashWindow'
|
|
140
|
+
end
|
|
141
|
+
|
|
142
|
+
# wxSashLayoutWindow: Window that can be involved in an IDE-like layout
|
|
143
|
+
# arrangement
|
|
144
|
+
Wx::define_keyword_ctors('SashLayoutWindow') do
|
|
145
|
+
wx_ctor_params :id, :pos, :size
|
|
146
|
+
wx_ctor_params :style => Wx::CLIP_CHILDREN|Wx::SW_3D
|
|
147
|
+
wx_ctor_params :name => 'layoutWindow'
|
|
148
|
+
end
|
|
149
|
+
|
|
150
|
+
# wxVScrolledWindow: As wxScrolledWindow but supports lines of variable height
|
|
151
|
+
|
|
152
|
+
# wxWizardPage: A base class for the page in wizard dialog.
|
|
153
|
+
Wx::define_keyword_ctors('WizardPage') do
|
|
154
|
+
wx_ctor_params :bitmap => Wx::NULL_BITMAP
|
|
155
|
+
end
|
|
156
|
+
|
|
157
|
+
# wxWizardPageSimple: A page in wizard dialog.
|
|
158
|
+
Wx::define_keyword_ctors('WizardPageSimple') do
|
|
159
|
+
wx_ctor_params :prev => nil
|
|
160
|
+
wx_ctor_params :next => nil
|
|
161
|
+
wx_ctor_params :bitmap
|
|
162
|
+
end
|
|
163
|
+
|
|
164
|
+
### DIALOGS
|
|
165
|
+
# wxDialog Base class for common dialogs
|
|
166
|
+
Wx::define_keyword_ctors('Dialog') do
|
|
167
|
+
wx_ctor_params :id, :title => ''
|
|
168
|
+
wx_ctor_params :pos, :size, :style => Wx::DEFAULT_DIALOG_STYLE
|
|
169
|
+
wx_ctor_params :name => 'dialogBox'
|
|
170
|
+
end
|
|
171
|
+
|
|
172
|
+
# wxColourDialog Colour chooser dialog
|
|
173
|
+
Wx::define_keyword_ctors('ColourDialog') do
|
|
174
|
+
wx_ctor_params :colour_data => nil
|
|
175
|
+
end
|
|
176
|
+
|
|
177
|
+
# wxDirDialog Directory selector dialog
|
|
178
|
+
Wx::define_keyword_ctors('DirDialog') do
|
|
179
|
+
wx_ctor_params :message => 'Choose a directory'
|
|
180
|
+
wx_ctor_params :default_path => ''
|
|
181
|
+
wx_ctor_params :style => Wx::DD_DEFAULT_STYLE
|
|
182
|
+
wx_ctor_params :pos, :size, :name => 'wxDirCtrl'
|
|
183
|
+
end
|
|
184
|
+
|
|
185
|
+
# wxFileDialog File selector dialog
|
|
186
|
+
Wx::define_keyword_ctors('FileDialog') do
|
|
187
|
+
wx_ctor_params :message => 'Choose a file'
|
|
188
|
+
wx_ctor_params :default_dir => ''
|
|
189
|
+
wx_ctor_params :default_file => ''
|
|
190
|
+
wx_ctor_params :wildcard => '*.*'
|
|
191
|
+
wx_ctor_params :style => Wx::FD_DEFAULT_STYLE
|
|
192
|
+
wx_ctor_params :pos, :size, :name => 'filedlg'
|
|
193
|
+
end
|
|
194
|
+
|
|
195
|
+
# wxFindReplaceDialog Text search/replace dialog
|
|
196
|
+
Wx::define_keyword_ctors('FindReplaceDialog') do
|
|
197
|
+
wx_ctor_params :find_replace_data => Wx::FindReplaceData.new()
|
|
198
|
+
wx_ctor_params :title => 'findReplaceDialog'
|
|
199
|
+
wx_ctor_params :style
|
|
200
|
+
end
|
|
201
|
+
|
|
202
|
+
# Dialog to get one or more selections from a list
|
|
203
|
+
Wx::define_keyword_ctors('MultiChoiceDialog') do
|
|
204
|
+
wx_ctor_params :message => ''
|
|
205
|
+
wx_ctor_params :caption => ''
|
|
206
|
+
wx_ctor_params :choices => []
|
|
207
|
+
wx_ctor_params :style => Wx::DEFAULT_DIALOG_STYLE|Wx::RESIZE_BORDER|
|
|
208
|
+
Wx::OK|Wx::CANCEL|Wx::CENTRE
|
|
209
|
+
wx_ctor_params :pos
|
|
210
|
+
end
|
|
211
|
+
|
|
212
|
+
# Dialog to get a single selection from a list and return the string
|
|
213
|
+
Wx::define_keyword_ctors('SingleChoiceDialog') do
|
|
214
|
+
wx_ctor_params :message => ''
|
|
215
|
+
wx_ctor_params :caption => ''
|
|
216
|
+
wx_ctor_params :choices => []
|
|
217
|
+
wx_ctor_params :data => nil
|
|
218
|
+
wx_ctor_params :style => Wx::DEFAULT_DIALOG_STYLE|Wx::RESIZE_BORDER|
|
|
219
|
+
Wx::OK|Wx::CANCEL|Wx::CENTRE
|
|
220
|
+
wx_ctor_params :pos
|
|
221
|
+
end
|
|
222
|
+
|
|
223
|
+
# Dialog to get a single line of text from the user
|
|
224
|
+
Wx::define_keyword_ctors('TextEntryDialog') do
|
|
225
|
+
wx_ctor_params :message => ''
|
|
226
|
+
wx_ctor_params :caption => 'Please enter text'
|
|
227
|
+
wx_ctor_params :default_value => ''
|
|
228
|
+
wx_ctor_params :style => Wx::OK|Wx::CANCEL|Wx::CENTRE
|
|
229
|
+
wx_ctor_params :pos
|
|
230
|
+
end
|
|
231
|
+
|
|
232
|
+
# wxPasswordEntryDialog Dialog to get a password from the user
|
|
233
|
+
# Wx::define_keyword_ctors('PasswordEntryDialog') do
|
|
234
|
+
# wx_ctor_params :message => ''
|
|
235
|
+
# wx_ctor_params :caption => 'Enter password'
|
|
236
|
+
# wx_ctor_params :default_value => ''
|
|
237
|
+
# wx_ctor_params :style => Wx::OK|Wx::CANCEL|Wx::CENTRE
|
|
238
|
+
# wx_ctor_params :pos
|
|
239
|
+
# end
|
|
240
|
+
|
|
241
|
+
# wxFontDialog Font chooser dialog
|
|
242
|
+
# wxPageSetupDialog Standard page setup dialog
|
|
243
|
+
Wx::define_keyword_ctors('PageSetupDialog') do
|
|
244
|
+
wx_ctor_params :data
|
|
245
|
+
end
|
|
246
|
+
|
|
247
|
+
# Simple message box dialog
|
|
248
|
+
Wx::define_keyword_ctors('MessageDialog') do
|
|
249
|
+
wx_ctor_params :message => ''
|
|
250
|
+
wx_ctor_params :caption => 'Message box'
|
|
251
|
+
wx_ctor_params :style => Wx::OK|Wx::CANCEL
|
|
252
|
+
wx_ctor_params :pos
|
|
253
|
+
end
|
|
254
|
+
|
|
255
|
+
# Property editing dialog
|
|
256
|
+
Wx::define_keyword_ctors('PropertySheetDialog') do
|
|
257
|
+
wx_ctor_params :id, :title
|
|
258
|
+
wx_ctor_params :pos, :size, :style => Wx::DEFAULT_DIALOG_STYLE
|
|
259
|
+
wx_ctor_params :name => 'propertySheetDialog'
|
|
260
|
+
end
|
|
261
|
+
|
|
262
|
+
### CONTROLS
|
|
263
|
+
|
|
264
|
+
# Push button control, displaying text
|
|
265
|
+
Wx::define_keyword_ctors('Button') do
|
|
266
|
+
wx_ctor_params :id, :label => ''
|
|
267
|
+
wx_ctor_params :pos, :size, :style
|
|
268
|
+
wx_ctor_params :validator, :name => 'button'
|
|
269
|
+
end
|
|
270
|
+
|
|
271
|
+
# Push button control, displaying a bitmap
|
|
272
|
+
Wx::define_keyword_ctors('BitmapButton') do
|
|
273
|
+
wx_ctor_params :id
|
|
274
|
+
wx_ctor_params :bitmap
|
|
275
|
+
wx_ctor_params :pos, :size, :style => Wx::BU_AUTODRAW
|
|
276
|
+
wx_ctor_params :validator, :name => 'button'
|
|
277
|
+
end
|
|
278
|
+
|
|
279
|
+
# A button which stays pressed when clicked by user.
|
|
280
|
+
Wx::define_keyword_ctors('ToggleButton') do
|
|
281
|
+
wx_ctor_params :id, :label, :pos, :size, :style
|
|
282
|
+
wx_ctor_params :validator, :name => 'checkBox'
|
|
283
|
+
end
|
|
284
|
+
|
|
285
|
+
# Control showing an entire calendar month
|
|
286
|
+
Wx::define_keyword_ctors('CalendarCtrl') do
|
|
287
|
+
wx_ctor_params :id, :date => Time.now()
|
|
288
|
+
wx_ctor_params :pos, :size, :style => Wx::CAL_SHOW_HOLIDAYS
|
|
289
|
+
wx_ctor_params :name => 'calendar'
|
|
290
|
+
end
|
|
291
|
+
|
|
292
|
+
# Checkbox control
|
|
293
|
+
Wx::define_keyword_ctors('CheckBox') do
|
|
294
|
+
wx_ctor_params :id, :label => ''
|
|
295
|
+
wx_ctor_params :pos, :size, :style
|
|
296
|
+
wx_ctor_params :validator, :name => 'checkBox'
|
|
297
|
+
end
|
|
298
|
+
|
|
299
|
+
# A listbox with a checkbox to the left of each item
|
|
300
|
+
Wx::define_keyword_ctors('CheckListBox') do
|
|
301
|
+
wx_ctor_params :id, :pos, :size, :choices, :style
|
|
302
|
+
wx_ctor_params :validator, :name => 'listBox'
|
|
303
|
+
end
|
|
304
|
+
|
|
305
|
+
# wxChoice Choice control (a combobox without the editable area)
|
|
306
|
+
Wx::define_keyword_ctors('Choice') do
|
|
307
|
+
wx_ctor_params :id, :pos, :size, :choices, :style
|
|
308
|
+
wx_ctor_params :validator, :name => 'choice'
|
|
309
|
+
end
|
|
310
|
+
|
|
311
|
+
# wxComboBox A choice with an editable area
|
|
312
|
+
Wx::define_keyword_ctors('ComboBox') do
|
|
313
|
+
wx_ctor_params :id, :value => ''
|
|
314
|
+
wx_ctor_params :pos, :size, :choices => []
|
|
315
|
+
wx_ctor_params :style
|
|
316
|
+
wx_ctor_params :validator, :name => 'comboBox'
|
|
317
|
+
end
|
|
318
|
+
|
|
319
|
+
# wxBitmapComboBox A choice with an editable area
|
|
320
|
+
Wx::define_keyword_ctors('BitmapComboBox') do
|
|
321
|
+
wx_ctor_params :id, :value => ''
|
|
322
|
+
wx_ctor_params :pos, :size, :choices => []
|
|
323
|
+
wx_ctor_params :style
|
|
324
|
+
wx_ctor_params :validator, :name => 'comboBox'
|
|
325
|
+
end
|
|
326
|
+
|
|
327
|
+
# wxDatePickerCtrl Small date picker control
|
|
328
|
+
|
|
329
|
+
# wxGauge A control to represent a varying quantity, such as time
|
|
330
|
+
# remaining
|
|
331
|
+
Wx::define_keyword_ctors('Gauge') do
|
|
332
|
+
wx_ctor_params :id, :range, :pos, :size, :style => Wx::GA_HORIZONTAL
|
|
333
|
+
wx_ctor_params :validator, :name => 'gauge'
|
|
334
|
+
end
|
|
335
|
+
|
|
336
|
+
# wxGenericDirCtrl A control for displaying a directory tree
|
|
337
|
+
Wx::define_keyword_ctors('GenericDirCtrl') do
|
|
338
|
+
# TODO :dir => Wx::DIR_DIALOG_DEFAULT_FOLDER_STR
|
|
339
|
+
wx_ctor_params :id, :dir => ''
|
|
340
|
+
wx_ctor_params :pos, :size,
|
|
341
|
+
:style => Wx::DIRCTRL_3D_INTERNAL|Wx::SUNKEN_BORDER
|
|
342
|
+
wx_ctor_params :filter => ''
|
|
343
|
+
wx_ctor_params :default_filter => 0
|
|
344
|
+
wx_ctor_params :name => 'genericDirCtrl'
|
|
345
|
+
end
|
|
346
|
+
|
|
347
|
+
# wxListCtrl A control for displaying lists of strings and/or icons, plus a multicolumn report view
|
|
348
|
+
Wx::define_keyword_ctors('ListCtrl') do
|
|
349
|
+
wx_ctor_params :id, :pos, :size, :style => Wx::LC_ICON
|
|
350
|
+
wx_ctor_params :validator, :name => 'listCtrl'
|
|
351
|
+
end
|
|
352
|
+
|
|
353
|
+
# wxListView A simpler interface (facade for wxListCtrl in report mode
|
|
354
|
+
|
|
355
|
+
# wxTreeCtrl Tree (hierarchy) control
|
|
356
|
+
Wx::define_keyword_ctors('TreeCtrl') do
|
|
357
|
+
wx_ctor_params :id, :pos, :size, :style => Wx::TR_DEFAULT_STYLE
|
|
358
|
+
wx_ctor_params :validator, :name => 'treeCtrl'
|
|
359
|
+
end
|
|
360
|
+
|
|
361
|
+
# wxSpinCtrl A spin control - i.e. spin button and text control
|
|
362
|
+
Wx::define_keyword_ctors('SpinCtrl') do
|
|
363
|
+
wx_ctor_params :id, :value => ''
|
|
364
|
+
wx_ctor_params :pos, :size, :style => Wx::SP_ARROW_KEYS
|
|
365
|
+
wx_ctor_params :min => 0
|
|
366
|
+
wx_ctor_params :max => 100
|
|
367
|
+
wx_ctor_params :initial => 0
|
|
368
|
+
wx_ctor_params :name => 'spinCtrl'
|
|
369
|
+
end
|
|
370
|
+
|
|
371
|
+
# One or more lines of non-editable text
|
|
372
|
+
Wx::define_keyword_ctors('StaticText') do
|
|
373
|
+
wx_ctor_params :id, :label, :pos, :size, :style, :name => 'staticText'
|
|
374
|
+
end
|
|
375
|
+
|
|
376
|
+
Wx::define_keyword_ctors('StaticBox') do
|
|
377
|
+
wx_ctor_params :id, :label, :pos, :size, :style, :name => 'staticBox'
|
|
378
|
+
end
|
|
379
|
+
|
|
380
|
+
Wx::define_keyword_ctors('StaticLine') do
|
|
381
|
+
wx_ctor_params :id, :pos, :size, :style => Wx::LI_HORIZONTAL
|
|
382
|
+
wx_ctor_params :name => 'staticBox'
|
|
383
|
+
end
|
|
384
|
+
|
|
385
|
+
# wxStaticBitmap A control to display a bitmap
|
|
386
|
+
Wx::define_keyword_ctors('StaticBitmap') do
|
|
387
|
+
wx_ctor_params :id
|
|
388
|
+
# autoconvert Bitmaps to BitmapBundles for downward compatibility
|
|
389
|
+
wx_ctor_params :label
|
|
390
|
+
wx_ctor_params :pos, :size, :style, :name => Wx::StaticBitmapNameStr
|
|
391
|
+
end
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
# wxRadioBox A group of radio buttons
|
|
395
|
+
Wx::define_keyword_ctors('RadioBox') do
|
|
396
|
+
wx_ctor_params :id, :label => ''
|
|
397
|
+
wx_ctor_params :pos, :size, :choices => []
|
|
398
|
+
wx_ctor_params :major_dimension => 0
|
|
399
|
+
wx_ctor_params :style => Wx::RA_SPECIFY_COLS
|
|
400
|
+
wx_ctor_params :validator, :name => 'radioBox'
|
|
401
|
+
end
|
|
402
|
+
|
|
403
|
+
# wxRadioButton: A round button used with others in a mutually exclusive way
|
|
404
|
+
Wx::define_keyword_ctors('RadioButton') do
|
|
405
|
+
wx_ctor_params :id, :label => ''
|
|
406
|
+
wx_ctor_params :pos, :size, :style => 0
|
|
407
|
+
wx_ctor_params :validator, :name => 'radioButton'
|
|
408
|
+
end
|
|
409
|
+
|
|
410
|
+
# wxSlider A slider that can be dragged by the user
|
|
411
|
+
Wx::define_keyword_ctors('Slider') do
|
|
412
|
+
wx_ctor_params :id, :value => 0
|
|
413
|
+
wx_ctor_params :min_value, :max_value
|
|
414
|
+
wx_ctor_params :pos, :size, :style => Wx::SL_HORIZONTAL
|
|
415
|
+
wx_ctor_params :validator, :name => 'slider'
|
|
416
|
+
end
|
|
417
|
+
|
|
418
|
+
# wxSpinButton - Has two small up and down (or left and right) arrow buttons
|
|
419
|
+
Wx::define_keyword_ctors('SpinButton') do
|
|
420
|
+
wx_ctor_params :id, :pos, :size, :style => Wx::SP_HORIZONTAL
|
|
421
|
+
wx_ctor_params :name => 'spinButton'
|
|
422
|
+
end
|
|
423
|
+
|
|
424
|
+
# wxScrollBar - standalone scrollbar with arrows and thumb
|
|
425
|
+
Wx::define_keyword_ctors('ScrollBar') do
|
|
426
|
+
wx_ctor_params :id, :pos, :size, :style => Wx::SB_HORIZONTAL
|
|
427
|
+
wx_ctor_params :validator, :name => 'scrollBar'
|
|
428
|
+
end
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
# wxVListBox A listbox supporting variable height rows
|
|
432
|
+
|
|
433
|
+
# wxTextCtrl Single or multiline text editing control
|
|
434
|
+
Wx::define_keyword_ctors('TextCtrl') do
|
|
435
|
+
wx_ctor_params :id, :value => ''
|
|
436
|
+
wx_ctor_params :pos, :size, :style
|
|
437
|
+
wx_ctor_params :validator, :name => 'textCtrl'
|
|
438
|
+
end
|
|
439
|
+
|
|
440
|
+
# wxHyperTextCtrl - display a clickable URL
|
|
441
|
+
Wx::define_keyword_ctors('HyperlinkCtrl') do
|
|
442
|
+
wx_ctor_params :id, :label => ''
|
|
443
|
+
wx_ctor_params :url => ''
|
|
444
|
+
wx_ctor_params :pos, :size, :style => 0
|
|
445
|
+
wx_ctor_params :name => 'hyperlink'
|
|
446
|
+
end
|
|
447
|
+
|
|
448
|
+
Wx::define_keyword_ctors('CollapsiblePane') do
|
|
449
|
+
wx_ctor_params :id, :label => ''
|
|
450
|
+
wx_ctor_params :pos, :size, :style => 0
|
|
451
|
+
wx_ctor_params :validator, :name => 'collapsiblePane'
|
|
452
|
+
end
|
|
453
|
+
|
|
454
|
+
Wx::define_keyword_ctors('MediaCtrl') do
|
|
455
|
+
wx_ctor_params :id, :filename => ''
|
|
456
|
+
wx_ctor_params :pos, :size, :style => 0
|
|
457
|
+
wx_ctor_params :backend => ''
|
|
458
|
+
wx_ctor_params :validator, :name => 'mediaCtrl'
|
|
459
|
+
end
|
|
460
|
+
|
|
461
|
+
Wx::define_keyword_ctors('SearchCtrl') do
|
|
462
|
+
wx_ctor_params :id, :value => ''
|
|
463
|
+
wx_ctor_params :pos, :size, :style => 0
|
|
464
|
+
wx_ctor_params :validator, :name => 'searchCtrl'
|
|
465
|
+
end
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
Wx::define_keyword_ctors('AnimationCtrl') do
|
|
469
|
+
wx_ctor_params :id, :anim
|
|
470
|
+
wx_ctor_params :pos, :size, :style => Wx::AC_DEFAULT_STYLE
|
|
471
|
+
wx_ctor_params :name => 'animationCtrl'
|
|
472
|
+
end
|
|
473
|
+
|
|
474
|
+
Wx::define_keyword_ctors('VScrolledWindow') do
|
|
475
|
+
wx_ctor_params :id, :pos, :size, :style, :name => 'VScrolledWindowNameStr'
|
|
476
|
+
end
|
|
477
|
+
|
|
478
|
+
Wx::define_keyword_ctors('VListBox') do
|
|
479
|
+
wx_ctor_params :id, :pos, :size, :style, :name => 'VListBoxNameStr'
|
|
480
|
+
end
|
|
481
|
+
|
|
482
|
+
Wx::define_keyword_ctors('DatePickerCtrl') do
|
|
483
|
+
wx_ctor_params :id, :dt, :pos, :size, :style, :validator, :name => 'dateCtrl'
|
|
484
|
+
end
|
|
485
|
+
|
|
486
|
+
# FIXME - SymbolPickerDialog is hard to because the parent argument is
|
|
487
|
+
# in a strange place.
|