wxruby-ruby19 1.9.8-x86-linux → 1.9.10-x86-linux
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.
- data/LICENSE +53 -0
 - data/README +297 -0
 - data/lib/wx/accessors.rb +58 -0
 - data/lib/wx/classes/acceleratortable.rb +28 -0
 - data/lib/wx/classes/animation.rb +18 -0
 - data/lib/wx/classes/app.rb +51 -0
 - data/lib/wx/classes/artprovider.rb +31 -0
 - data/lib/wx/classes/auinotebook.rb +9 -0
 - data/lib/wx/classes/bitmap.rb +56 -0
 - data/lib/wx/classes/busycursor.rb +12 -0
 - data/lib/wx/classes/checklistbox.rb +45 -0
 - data/lib/wx/classes/choice.rb +4 -0
 - data/lib/wx/classes/clientdc.rb +13 -0
 - data/lib/wx/classes/clipboard.rb +32 -0
 - data/lib/wx/classes/colour.rb +49 -0
 - data/lib/wx/classes/combobox.rb +4 -0
 - data/lib/wx/classes/commandevent.rb +7 -0
 - data/lib/wx/classes/controlwithitems.rb +10 -0
 - data/lib/wx/classes/data_object.rb +14 -0
 - data/lib/wx/classes/data_object_simple.rb +6 -0
 - data/lib/wx/classes/dataformat.rb +23 -0
 - data/lib/wx/classes/dc.rb +57 -0
 - data/lib/wx/classes/event.rb +5 -0
 - data/lib/wx/classes/evthandler.rb +1039 -0
 - data/lib/wx/classes/font.rb +118 -0
 - data/lib/wx/classes/functions.rb +44 -0
 - data/lib/wx/classes/gauge.rb +12 -0
 - data/lib/wx/classes/genericdirctrl.rb +36 -0
 - data/lib/wx/classes/grid.rb +146 -0
 - data/lib/wx/classes/hboxsizer.rb +6 -0
 - data/lib/wx/classes/helpcontroller.rb +5 -0
 - data/lib/wx/classes/helpcontrollerhelpprovider.rb +23 -0
 - data/lib/wx/classes/helpprovider.rb +15 -0
 - data/lib/wx/classes/htmlhelpcontroller.rb +5 -0
 - data/lib/wx/classes/htmlwindow.rb +14 -0
 - data/lib/wx/classes/icon.rb +32 -0
 - data/lib/wx/classes/iconbundle.rb +3 -0
 - data/lib/wx/classes/image.rb +43 -0
 - data/lib/wx/classes/imagelist.rb +3 -0
 - data/lib/wx/classes/listbox.rb +4 -0
 - data/lib/wx/classes/listctrl.rb +33 -0
 - data/lib/wx/classes/locale.rb +28 -0
 - data/lib/wx/classes/mediactrl.rb +48 -0
 - data/lib/wx/classes/menu.rb +62 -0
 - data/lib/wx/classes/menuitem.rb +7 -0
 - data/lib/wx/classes/notebook.rb +9 -0
 - data/lib/wx/classes/object.rb +14 -0
 - data/lib/wx/classes/paintdc.rb +12 -0
 - data/lib/wx/classes/point.rb +56 -0
 - data/lib/wx/classes/previewframe.rb +13 -0
 - data/lib/wx/classes/rect.rb +19 -0
 - data/lib/wx/classes/richtextctrl.rb +63 -0
 - data/lib/wx/classes/simplehelpprovider.rb +38 -0
 - data/lib/wx/classes/size.rb +58 -0
 - data/lib/wx/classes/sizer.rb +37 -0
 - data/lib/wx/classes/sound.rb +23 -0
 - data/lib/wx/classes/standardpaths.rb +9 -0
 - data/lib/wx/classes/styledtextctrl.rb +92 -0
 - data/lib/wx/classes/textctrl.rb +14 -0
 - data/lib/wx/classes/texturlevent.rb +18 -0
 - data/lib/wx/classes/timer.rb +94 -0
 - data/lib/wx/classes/toolbar.rb +27 -0
 - data/lib/wx/classes/toolbartool.rb +4 -0
 - data/lib/wx/classes/treectrl.rb +44 -0
 - data/lib/wx/classes/vboxsizer.rb +6 -0
 - data/lib/wx/classes/window.rb +89 -0
 - data/lib/wx/classes/xmlresource.rb +54 -0
 - data/lib/wx/helpers.rb +45 -0
 - data/lib/wx/keyword_ctors.rb +204 -0
 - data/lib/wx/keyword_defs.rb +558 -0
 - data/lib/wx/version.rb +3 -0
 - data/lib/wx.rb +53 -0
 - data/lib/wxruby2.so +0 -0
 - data/samples/SAMPLES-LICENSE.TXT +18 -0
 - data/samples/aui/aui.rb +1356 -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 +149 -0
 - data/samples/bigdemo/ShapedWindow.rbw +131 -0
 - data/samples/bigdemo/Sizers.rbw +543 -0
 - data/samples/bigdemo/bigdemo.rb +823 -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/ruby.png +0 -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/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 +90 -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 +60 -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 +31 -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 +173 -0
 - data/samples/bigdemo/wxFrame.rbw +53 -0
 - data/samples/bigdemo/wxGauge.rbw +71 -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 +236 -0
 - data/samples/bigdemo/wxMessageDialog.rbw +27 -0
 - data/samples/bigdemo/wxMiniFrame.rbw +70 -0
 - data/samples/bigdemo/wxMultipleChoiceDialog.rbw +32 -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 +51 -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 +256 -0
 - data/samples/caret/caret.rb +282 -0
 - data/samples/caret/mondrian.xpm +44 -0
 - data/samples/controls/controls.rb +1136 -0
 - data/samples/controls/get_item_sample.rb +87 -0
 - data/samples/controls/icons/choice.xpm +27 -0
 - data/samples/controls/icons/combo.xpm +27 -0
 - data/samples/controls/icons/gauge.xpm +27 -0
 - data/samples/controls/icons/list.xpm +27 -0
 - data/samples/controls/icons/radio.xpm +27 -0
 - data/samples/controls/icons/stattext.xpm +24 -0
 - data/samples/controls/icons/text.xpm +27 -0
 - data/samples/controls/mondrian.ico +0 -0
 - data/samples/controls/mondrian.xpm +44 -0
 - data/samples/controls/test2.bmp +0 -0
 - data/samples/dialogs/dialogs.rb +797 -0
 - data/samples/dialogs/tips.txt +18 -0
 - data/samples/dragdrop/dragdrop.rb +177 -0
 - data/samples/drawing/graphics_drawing.rb +235 -0
 - data/samples/drawing/images.rb +37 -0
 - data/samples/drawing/paperclip.png +0 -0
 - data/samples/etc/activation.rb +102 -0
 - data/samples/etc/choice.rb +67 -0
 - data/samples/etc/miniframe.rb +79 -0
 - data/samples/etc/sash.rb +130 -0
 - data/samples/etc/scrollwin.rb +110 -0
 - data/samples/etc/system_settings.rb +252 -0
 - data/samples/etc/threaded.rb +72 -0
 - data/samples/etc/toolbar_sizer_additem.rb +55 -0
 - data/samples/etc/wizard.rb +74 -0
 - data/samples/event/event.rb +182 -0
 - data/samples/event/update_ui_event.rb +70 -0
 - data/samples/grid/grid.rb +198 -0
 - data/samples/grid/gridtablebase.rb +148 -0
 - data/samples/html/html.rb +262 -0
 - data/samples/listbook/listbook.rb +174 -0
 - data/samples/listbook/listbook.xrc +370 -0
 - data/samples/mdi/mdi.rb +85 -0
 - data/samples/media/mediactrl.rb +167 -0
 - data/samples/minimal/minimal.rb +77 -0
 - data/samples/minimal/mondrian.ico +0 -0
 - data/samples/minimal/mondrian.png +0 -0
 - data/samples/minimal/nothing.rb +16 -0
 - data/samples/opengl/cube.rb +117 -0
 - data/samples/printing/mondrian.ico +0 -0
 - data/samples/printing/mondrian.xpm +44 -0
 - data/samples/printing/printing.rb +487 -0
 - data/samples/sockets/SocketPackets.rb +27 -0
 - data/samples/sockets/res/message-new.png +0 -0
 - data/samples/sockets/res/user.png +0 -0
 - data/samples/sockets/wxClient.rb +395 -0
 - data/samples/sockets/wxServer.rb +422 -0
 - data/samples/sockets/wxSocketGUI.rb +97 -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/rich_textctrl.rb +98 -0
 - data/samples/text/scintilla.rb +169 -0
 - data/samples/text/textctrl.rb +111 -0
 - data/samples/text/unicode.rb +242 -0
 - data/samples/text/utf8.txt +15 -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/treectrl.rb +1166 -0
 - data/samples/xrc/samples.xrc +46 -0
 - data/samples/xrc/xrc_sample.rb +76 -0
 - metadata +234 -220
 
| 
         @@ -0,0 +1,32 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            class Wx::Clipboard
         
     | 
| 
      
 2 
     | 
    
         
            +
              # See if we like these better
         
     | 
| 
      
 3 
     | 
    
         
            +
              alias :place :set_data
         
     | 
| 
      
 4 
     | 
    
         
            +
              alias :fetch :get_data
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
              class << self
         
     | 
| 
      
 7 
     | 
    
         
            +
                # This is provided internally by the SWIG interface file, but all
         
     | 
| 
      
 8 
     | 
    
         
            +
                # public access should be via Clipboard.open; see below
         
     | 
| 
      
 9 
     | 
    
         
            +
                private :get_global_clipboard
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
                # Class method to provide access to the clipboard within a ruby
         
     | 
| 
      
 12 
     | 
    
         
            +
                # block. Tests that the clipboard could be accessed, and ensures
         
     | 
| 
      
 13 
     | 
    
         
            +
                # that it is closed when the block is finished.
         
     | 
| 
      
 14 
     | 
    
         
            +
                def open
         
     | 
| 
      
 15 
     | 
    
         
            +
                  clip = nil
         
     | 
| 
      
 16 
     | 
    
         
            +
                  # Trying to access the segfault outside main_loop will segfault on
         
     | 
| 
      
 17 
     | 
    
         
            +
                  # some platforms (eg, GTK)
         
     | 
| 
      
 18 
     | 
    
         
            +
                  unless Wx::const_defined?(:THE_APP)
         
     | 
| 
      
 19 
     | 
    
         
            +
                    raise RuntimeError, 
         
     | 
| 
      
 20 
     | 
    
         
            +
                          "The clipboard can only be accessed when the App is running"
         
     | 
| 
      
 21 
     | 
    
         
            +
                  end
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
                  clip = get_global_clipboard
         
     | 
| 
      
 24 
     | 
    
         
            +
                  unless clip.open
         
     | 
| 
      
 25 
     | 
    
         
            +
                    Kernel.raise "Could not open clipboard"
         
     | 
| 
      
 26 
     | 
    
         
            +
                  end
         
     | 
| 
      
 27 
     | 
    
         
            +
                  yield clip
         
     | 
| 
      
 28 
     | 
    
         
            +
                 ensure
         
     | 
| 
      
 29 
     | 
    
         
            +
                   clip.close if clip
         
     | 
| 
      
 30 
     | 
    
         
            +
                end
         
     | 
| 
      
 31 
     | 
    
         
            +
              end
         
     | 
| 
      
 32 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,49 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            class Wx::Colour
         
     | 
| 
      
 2 
     | 
    
         
            +
              # Redefine the initialize method so it raises an exception if an
         
     | 
| 
      
 3 
     | 
    
         
            +
              # invalid colour value is given. This might be an unknown colour
         
     | 
| 
      
 4 
     | 
    
         
            +
              # string (eg 'dark blue') or out-of-bounds integer values (<0 or >255)
         
     | 
| 
      
 5 
     | 
    
         
            +
              wx_init = self.instance_method(:initialize)
         
     | 
| 
      
 6 
     | 
    
         
            +
              define_method(:initialize) do | *args |
         
     | 
| 
      
 7 
     | 
    
         
            +
                begin
         
     | 
| 
      
 8 
     | 
    
         
            +
                  wx_init.bind(self).call(*args)
         
     | 
| 
      
 9 
     | 
    
         
            +
                # Invalid integer values raise SWIG 'no matching func'
         
     | 
| 
      
 10 
     | 
    
         
            +
                rescue ArgumentError 
         
     | 
| 
      
 11 
     | 
    
         
            +
                  Kernel.raise ArgumentError, "Invalid colour values #{args.inspect}"
         
     | 
| 
      
 12 
     | 
    
         
            +
                end
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
                if not is_ok
         
     | 
| 
      
 15 
     | 
    
         
            +
                  Kernel.raise ArgumentError, "Invalid colour values #{args.inspect}"
         
     | 
| 
      
 16 
     | 
    
         
            +
                end
         
     | 
| 
      
 17 
     | 
    
         
            +
              end
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
              # Standard colours, corresponding to WxWidgets stock colours.
         
     | 
| 
      
 20 
     | 
    
         
            +
              Wx::WHITE = new(255, 255, 255)
         
     | 
| 
      
 21 
     | 
    
         
            +
              Wx::BLACK = new(0, 0, 0)
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
              Wx::RED   = new(255, 0, 0)
         
     | 
| 
      
 24 
     | 
    
         
            +
              Wx::GREEN = new(0, 255, 0)
         
     | 
| 
      
 25 
     | 
    
         
            +
              Wx::BLUE  = new(0, 0, 255)
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
              Wx::YELLOW  = new(255, 255, 0)
         
     | 
| 
      
 28 
     | 
    
         
            +
              Wx::MAGENTA = new(255, 0, 255)
         
     | 
| 
      
 29 
     | 
    
         
            +
              Wx::CYAN    = new(0, 255, 255)
         
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
      
 31 
     | 
    
         
            +
              Wx::LIGHT_GREY = new(192, 192, 192)
         
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
      
 33 
     | 
    
         
            +
              # Colours are equal to one another if they have the same red, green
         
     | 
| 
      
 34 
     | 
    
         
            +
              # and blue intensity, and the same alpha
         
     | 
| 
      
 35 
     | 
    
         
            +
              def ==(other)
         
     | 
| 
      
 36 
     | 
    
         
            +
                case other
         
     | 
| 
      
 37 
     | 
    
         
            +
                when Wx::Colour
         
     | 
| 
      
 38 
     | 
    
         
            +
                  [  self.red,  self.green,  self.blue,  self.alpha ] == 
         
     | 
| 
      
 39 
     | 
    
         
            +
                  [ other.red, other.green, other.blue, other.alpha ]
         
     | 
| 
      
 40 
     | 
    
         
            +
                else
         
     | 
| 
      
 41 
     | 
    
         
            +
                  false
         
     | 
| 
      
 42 
     | 
    
         
            +
                end
         
     | 
| 
      
 43 
     | 
    
         
            +
              end
         
     | 
| 
      
 44 
     | 
    
         
            +
             
     | 
| 
      
 45 
     | 
    
         
            +
              # More informative output for inspect etc
         
     | 
| 
      
 46 
     | 
    
         
            +
              def to_s
         
     | 
| 
      
 47 
     | 
    
         
            +
                "#<Wx::Colour: (#{red}, #{green}, #{blue} *#{alpha})>"
         
     | 
| 
      
 48 
     | 
    
         
            +
              end
         
     | 
| 
      
 49 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,7 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # Class representing interactions with controls such as ListBox
         
     | 
| 
      
 2 
     | 
    
         
            +
            class Wx::CommandEvent
         
     | 
| 
      
 3 
     | 
    
         
            +
              # get_int and get_selection are already synonyms, but neither name
         
     | 
| 
      
 4 
     | 
    
         
            +
              # accurately describes what the method does as the event may be a
         
     | 
| 
      
 5 
     | 
    
         
            +
              # (de)selection or a check in a CheckListBox
         
     | 
| 
      
 6 
     | 
    
         
            +
              alias :get_index :get_int
         
     | 
| 
      
 7 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,10 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # Superclass of a variety of controls that display lists of items (eg
         
     | 
| 
      
 2 
     | 
    
         
            +
            # Choice, ListBox, CheckListBox)
         
     | 
| 
      
 3 
     | 
    
         
            +
            class Wx::ControlWithItems
         
     | 
| 
      
 4 
     | 
    
         
            +
              # Make these ruby enumerables so find, find_all, map etc are available 
         
     | 
| 
      
 5 
     | 
    
         
            +
              include Enumerable
         
     | 
| 
      
 6 
     | 
    
         
            +
              # Passes each valid item index into the passed block
         
     | 
| 
      
 7 
     | 
    
         
            +
              def each
         
     | 
| 
      
 8 
     | 
    
         
            +
                0.upto(get_count - 1) { | i | yield i }
         
     | 
| 
      
 9 
     | 
    
         
            +
              end
         
     | 
| 
      
 10 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,14 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # Provide some default implementations of these to make life easier
         
     | 
| 
      
 2 
     | 
    
         
            +
            class Wx::DataObject
         
     | 
| 
      
 3 
     | 
    
         
            +
              def get_preferred_format(direction)
         
     | 
| 
      
 4 
     | 
    
         
            +
                get_all_formats(direction).first
         
     | 
| 
      
 5 
     | 
    
         
            +
              end
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
              def get_format_count(direction)
         
     | 
| 
      
 8 
     | 
    
         
            +
                get_all_formats(direction).length
         
     | 
| 
      
 9 
     | 
    
         
            +
              end
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
              def get_data_size(format)
         
     | 
| 
      
 12 
     | 
    
         
            +
                get_data_here(format).size
         
     | 
| 
      
 13 
     | 
    
         
            +
              end
         
     | 
| 
      
 14 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,23 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # Make this easier to use for multi-typed data objects. Comparison
         
     | 
| 
      
 2 
     | 
    
         
            +
            # doesn't work correctly in the SWIG binding
         
     | 
| 
      
 3 
     | 
    
         
            +
            class Wx::DataFormat
         
     | 
| 
      
 4 
     | 
    
         
            +
              def ==(other)
         
     | 
| 
      
 5 
     | 
    
         
            +
                if self.get_type > Wx::DATA_FORMAT_ID_INVALID
         
     | 
| 
      
 6 
     | 
    
         
            +
                  self.get_type == other.get_type
         
     | 
| 
      
 7 
     | 
    
         
            +
                else
         
     | 
| 
      
 8 
     | 
    
         
            +
                  self.id == other.id
         
     | 
| 
      
 9 
     | 
    
         
            +
                end
         
     | 
| 
      
 10 
     | 
    
         
            +
              end
         
     | 
| 
      
 11 
     | 
    
         
            +
            end
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
            # Provide pre-cooked data formats for the standard types
         
     | 
| 
      
 14 
     | 
    
         
            +
            module Wx
         
     | 
| 
      
 15 
     | 
    
         
            +
              DF_TEXT        = DataFormat.new( DATA_FORMAT_ID_TEXT )
         
     | 
| 
      
 16 
     | 
    
         
            +
              DF_BITMAP      = DataFormat.new( DATA_FORMAT_ID_BITMAP )
         
     | 
| 
      
 17 
     | 
    
         
            +
              if Wx::PLATFORM != 'WXGTK'
         
     | 
| 
      
 18 
     | 
    
         
            +
                DF_METAFILE    = DataFormat.new( DATA_FORMAT_ID_METAFILE )
         
     | 
| 
      
 19 
     | 
    
         
            +
              end
         
     | 
| 
      
 20 
     | 
    
         
            +
              DF_FILENAME    = DataFormat.new( DATA_FORMAT_ID_FILENAME )
         
     | 
| 
      
 21 
     | 
    
         
            +
              DF_UNICODETEXT = DataFormat.new( DATA_FORMAT_ID_UNICODETEXT )
         
     | 
| 
      
 22 
     | 
    
         
            +
              # DF_HTML is only supported on Windows + MSVC, so don't offer it
         
     | 
| 
      
 23 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,57 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # Class for drawing primitives and bitmaps on various outputs (screen, paper)
         
     | 
| 
      
 2 
     | 
    
         
            +
            class Wx::DC
         
     | 
| 
      
 3 
     | 
    
         
            +
             # Several methods accept an array of Wx::Point objects. In line with
         
     | 
| 
      
 4 
     | 
    
         
            +
              # the rest of the wxRuby API, allow these points to be specified as
         
     | 
| 
      
 5 
     | 
    
         
            +
              # simple two-element arrays [x, y]. 
         
     | 
| 
      
 6 
     | 
    
         
            +
              def __convert_point_array(arr)
         
     | 
| 
      
 7 
     | 
    
         
            +
                if arr.all? { | x | x.kind_of?(Wx::Point) }
         
     | 
| 
      
 8 
     | 
    
         
            +
                  return arr
         
     | 
| 
      
 9 
     | 
    
         
            +
                end
         
     | 
| 
      
 10 
     | 
    
         
            +
                arr.map do | x |
         
     | 
| 
      
 11 
     | 
    
         
            +
                  case x
         
     | 
| 
      
 12 
     | 
    
         
            +
                  when Wx::Point
         
     | 
| 
      
 13 
     | 
    
         
            +
                    x
         
     | 
| 
      
 14 
     | 
    
         
            +
                  when Array
         
     | 
| 
      
 15 
     | 
    
         
            +
                    if x.length != 2
         
     | 
| 
      
 16 
     | 
    
         
            +
                      msg = "Wrong number of elements in point array item, should be two"
         
     | 
| 
      
 17 
     | 
    
         
            +
                      err = ArgumentError.new(msg)
         
     | 
| 
      
 18 
     | 
    
         
            +
                      err.set_backtrace(caller[2..-1])
         
     | 
| 
      
 19 
     | 
    
         
            +
                      Kernel.raise(err)
         
     | 
| 
      
 20 
     | 
    
         
            +
                    end
         
     | 
| 
      
 21 
     | 
    
         
            +
                    Wx::Point.new(x[0], x[1])
         
     | 
| 
      
 22 
     | 
    
         
            +
                  else
         
     | 
| 
      
 23 
     | 
    
         
            +
                    msg = "Wrong type of item #{x.inspect} in point array"
         
     | 
| 
      
 24 
     | 
    
         
            +
                    err = ArgumentError.new(msg)
         
     | 
| 
      
 25 
     | 
    
         
            +
                    err.set_backtrace(caller[2..-1])
         
     | 
| 
      
 26 
     | 
    
         
            +
                    Kernel.raise(err)
         
     | 
| 
      
 27 
     | 
    
         
            +
                  end
         
     | 
| 
      
 28 
     | 
    
         
            +
                end
         
     | 
| 
      
 29 
     | 
    
         
            +
              end
         
     | 
| 
      
 30 
     | 
    
         
            +
              private :__convert_point_array
         
     | 
| 
      
 31 
     | 
    
         
            +
             
     | 
| 
      
 32 
     | 
    
         
            +
              wx_draw_lines = self.instance_method(:draw_lines)
         
     | 
| 
      
 33 
     | 
    
         
            +
              define_method(:draw_lines) do | *args |
         
     | 
| 
      
 34 
     | 
    
         
            +
                args[0] = __convert_point_array(args[0])
         
     | 
| 
      
 35 
     | 
    
         
            +
                wx_draw_lines.bind(self).call(*args)
         
     | 
| 
      
 36 
     | 
    
         
            +
              end
         
     | 
| 
      
 37 
     | 
    
         
            +
             
     | 
| 
      
 38 
     | 
    
         
            +
              wx_draw_polygon = self.instance_method(:draw_polygon)
         
     | 
| 
      
 39 
     | 
    
         
            +
              define_method(:draw_polygon) do | *args |
         
     | 
| 
      
 40 
     | 
    
         
            +
                args[0] = __convert_point_array(args[0])
         
     | 
| 
      
 41 
     | 
    
         
            +
                wx_draw_polygon.bind(self).call(*args)
         
     | 
| 
      
 42 
     | 
    
         
            +
              end
         
     | 
| 
      
 43 
     | 
    
         
            +
             
     | 
| 
      
 44 
     | 
    
         
            +
              wx_draw_poly_polygon = self.instance_method(:draw_poly_polygon)
         
     | 
| 
      
 45 
     | 
    
         
            +
              define_method(:draw_poly_polygon) do | *args |
         
     | 
| 
      
 46 
     | 
    
         
            +
                args[0].map! do | arr |
         
     | 
| 
      
 47 
     | 
    
         
            +
                  __convert_point_array(arr)
         
     | 
| 
      
 48 
     | 
    
         
            +
                end
         
     | 
| 
      
 49 
     | 
    
         
            +
                wx_draw_poly_polygon.bind(self).call(*args)
         
     | 
| 
      
 50 
     | 
    
         
            +
              end
         
     | 
| 
      
 51 
     | 
    
         
            +
             
     | 
| 
      
 52 
     | 
    
         
            +
              wx_draw_spline = self.instance_method(:draw_spline)
         
     | 
| 
      
 53 
     | 
    
         
            +
              define_method(:draw_spline) do | *args |
         
     | 
| 
      
 54 
     | 
    
         
            +
                args[0] = __convert_point_array(args[0])
         
     | 
| 
      
 55 
     | 
    
         
            +
                wx_draw_spline.bind(self).call(*args)
         
     | 
| 
      
 56 
     | 
    
         
            +
              end
         
     | 
| 
      
 57 
     | 
    
         
            +
            end
         
     |