fxruby 1.4.7 → 1.6.0
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/doc/apes02.html +6 -6
- data/doc/apes03.html +11 -11
- data/doc/book.html +1 -1
- data/doc/build.html +65 -67
- data/doc/ch03s02.html +7 -7
- data/doc/ch03s03.html +18 -18
- data/doc/ch03s04.html +11 -11
- data/doc/ch03s05.html +14 -14
- data/doc/ch04s02.html +14 -14
- data/doc/ch04s03.html +15 -15
- data/doc/ch04s04.html +28 -28
- data/doc/ch05s02.html +49 -49
- data/doc/ch05s03.html +8 -8
- data/doc/clipboardtut.html +45 -57
- data/doc/cvs.html +10 -10
- data/doc/differences.html +4 -4
- data/doc/dragdroptut.html +50 -50
- data/doc/events.html +11 -11
- data/doc/examples.html +48 -48
- data/doc/gems.html +38 -38
- data/doc/goals.html +4 -4
- data/doc/implementation.html +4 -4
- data/doc/infosources.html +9 -9
- data/doc/library.html +19 -19
- data/doc/opengl.html +31 -31
- data/doc/pt01.html +1 -1
- data/doc/pt02.html +1 -1
- data/doc/scintilla.html +15 -15
- data/doc/todo.html +6 -6
- data/doc/tutorial1.html +34 -34
- data/examples/babelfish.rb +1 -1
- data/examples/bounce.rb +1 -1
- data/examples/browser.rb +2 -2
- data/examples/button.rb +1 -1
- data/examples/datatarget.rb +2 -2
- data/examples/dctest.rb +12 -12
- data/examples/dialog.rb +1 -1
- data/examples/dilbert.rb +2 -2
- data/examples/dirlist.rb +1 -1
- data/examples/dragdrop.rb +1 -1
- data/examples/dragsource.rb +1 -1
- data/examples/dropsite.rb +1 -1
- data/examples/foursplit.rb +1 -1
- data/examples/gltest.rb +2 -2
- data/examples/glviewer.rb +4 -4
- data/examples/groupbox.rb +22 -22
- data/examples/header.rb +1 -1
- data/examples/hello.rb +1 -1
- data/examples/hello2.rb +1 -1
- data/examples/iconlist.rb +1 -1
- data/examples/image.rb +2 -2
- data/examples/imageviewer.rb +1 -1
- data/examples/inputs.rb +1 -1
- data/examples/mditest.rb +2 -2
- data/examples/pig.rb +1 -1
- data/examples/raabrowser.rb +2 -2
- data/examples/ratio.rb +2 -2
- data/examples/scintilla-test.rb +2 -2
- data/examples/scribble-orig.rb +3 -3
- data/examples/scribble.rb +1 -1
- data/examples/shutter.rb +1 -1
- data/examples/splitter.rb +36 -36
- data/examples/styledtext.rb +2 -2
- data/examples/tabbook.rb +1 -1
- data/examples/table.rb +1 -1
- data/examples/textedit/commands.rb +2 -2
- data/examples/textedit/helpwindow.rb +1 -1
- data/examples/textedit/prefdialog.rb +1 -1
- data/examples/textedit/textedit.rb +5 -3
- data/ext/{fox14 → fox16}/FXRbApp.cpp +1 -1
- data/ext/{fox14 → fox16}/FXRbDataTarget.cpp +1 -1
- data/ext/{fox14 → fox16}/FXRbGLViewer.cpp +1 -1
- data/ext/{fox14 → fox16}/FXRuby.cpp +137 -39
- data/ext/{fox14 → fox16}/MANIFEST +0 -0
- data/ext/{fox14 → fox16}/core_wrap.cpp +1177 -659
- data/ext/{fox14 → fox16}/dc_wrap.cpp +110 -3
- data/ext/{fox14 → fox16}/dialogs_wrap.cpp +381 -153
- data/ext/{fox14 → fox16}/extconf.rb +8 -8
- data/ext/{fox14 → fox16}/frames_wrap.cpp +1590 -1219
- data/ext/{fox14 → fox16}/fx3d_wrap.cpp +1060 -403
- data/ext/{fox14 → fox16}/iconlist_wrap.cpp +80 -25
- data/ext/{fox14 → fox16}/icons_wrap.cpp +296 -316
- data/ext/{fox14 → fox16}/image_wrap.cpp +267 -153
- data/ext/{fox14 → fox16}/impl.cpp +29 -0
- data/ext/{fox14 → fox16}/include/FXMemoryBuffer.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRb4Splitter.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRb7Segment.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbAccelTable.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbApp.h +3 -3
- data/ext/{fox14 → fox16}/include/FXRbAppVirtuals.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbArrowButton.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbBMPIcon.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbBMPImage.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbBitmap.h +23 -5
- data/ext/{fox14 → fox16}/include/FXRbBitmapFrame.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbBitmapView.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbBitmapVirtuals.h +12 -2
- data/ext/{fox14 → fox16}/include/FXRbButton.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbCURCursor.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbCanvas.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbCheckButton.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbChoiceBox.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbColorBar.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbColorDialog.h +1 -1
- data/ext/fox16/include/FXRbColorList.h +84 -0
- data/ext/fox16/include/FXRbColorRing.h +51 -0
- data/ext/{fox14 → fox16}/include/FXRbColorSelector.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbColorWell.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbColorWheel.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbComboBox.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbCommon.h +4 -1
- data/ext/{fox14 → fox16}/include/FXRbComposite.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbCursor.h +5 -5
- data/ext/{fox14 → fox16}/include/FXRbCursorVirtuals.h +2 -2
- data/ext/{fox14 → fox16}/include/FXRbDC.h +18 -0
- data/ext/{fox14 → fox16}/include/FXRbDCPrint.h +0 -0
- data/ext/{fox14 → fox16}/include/FXRbDCVirtuals.h +9 -0
- data/ext/{fox14 → fox16}/include/FXRbDCWindow.h +0 -0
- data/ext/{fox14 → fox16}/include/FXRbDataTarget.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbDebugTarget.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbDelegator.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbDial.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbDialogBox.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbDialogBoxVirtuals.h +0 -0
- data/ext/{fox14 → fox16}/include/FXRbDict.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbDirBox.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbDirDialog.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbDirList.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbDirSelector.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbDockBar.h +13 -13
- data/ext/{fox14 → fox16}/include/FXRbDockBarVirtuals.h +3 -3
- data/ext/{fox14 → fox16}/include/FXRbDockHandler.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbDockSite.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbDockSiteVirtuals.h +0 -0
- data/ext/{fox14 → fox16}/include/FXRbDockTitle.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbDocument.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbDragCorner.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbDrawable.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbDrawableVirtuals.h +0 -0
- data/ext/{fox14 → fox16}/include/FXRbDriveBox.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbFileDialog.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbFileDict.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbFileDictVirtuals.h +0 -0
- data/ext/{fox14 → fox16}/include/FXRbFileList.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbFileSelector.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbFoldingItemVirtuals.h +0 -0
- data/ext/{fox14 → fox16}/include/FXRbFoldingList.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbFoldingListVirtuals.h +0 -0
- data/ext/fox16/include/FXRbFont.h +183 -0
- data/ext/{fox14 → fox16}/include/FXRbFontDialog.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbFontSelector.h +1 -1
- data/ext/fox16/include/FXRbFontVirtuals.h +55 -0
- data/ext/{fox14 → fox16}/include/FXRbFrame.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbGIFCursor.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbGIFIcon.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbGIFImage.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbGLCanvas.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbGLCanvasVirtuals.h +0 -0
- data/ext/{fox14 → fox16}/include/FXRbGLContext.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbGLObject.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbGLObjectVirtuals.h +0 -0
- data/ext/{fox14 → fox16}/include/FXRbGLShape.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbGLShapeVirtuals.h +0 -0
- data/ext/{fox14 → fox16}/include/FXRbGLViewer.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbGLViewerVirtuals.h +0 -0
- data/ext/{fox14 → fox16}/include/FXRbGLVisual.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbGradientBar.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbGroupBox.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbHeader.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbHeaderItemVirtuals.h +0 -0
- data/ext/{fox14 → fox16}/include/FXRbHorizontalFrame.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbICOIcon.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbICOImage.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbIcon.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbIconItemVirtuals.h +0 -0
- data/ext/{fox14 → fox16}/include/FXRbIconList.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbIconListVirtuals.h +0 -0
- data/ext/fox16/include/FXRbIconSource.h +127 -0
- data/ext/fox16/include/FXRbIconSourceVirtuals.h +37 -0
- data/ext/{fox14 → fox16}/include/FXRbId.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbIdVirtuals.h +0 -0
- data/ext/{fox14 → fox16}/include/FXRbImage.h +7 -7
- data/ext/{fox14 → fox16}/include/FXRbImageFrame.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbImageView.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbImageVirtuals.h +3 -3
- data/ext/{fox14 → fox16}/include/FXRbInputDialog.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbJPGIcon.h +2 -2
- data/ext/{fox14 → fox16}/include/FXRbJPGImage.h +2 -2
- data/ext/fox16/include/FXRbKnob.h +51 -0
- data/ext/{fox14 → fox16}/include/FXRbLabel.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbList.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbListBox.h +5 -5
- data/ext/{fox14 → fox16}/include/FXRbListBoxVirtuals.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbListItemVirtuals.h +0 -0
- data/ext/{fox14 → fox16}/include/FXRbListVirtuals.h +0 -0
- data/ext/{fox14 → fox16}/include/FXRbMDIButton.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbMDIChild.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbMDIChildVirtuals.h +0 -0
- data/ext/{fox14 → fox16}/include/FXRbMDIClient.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbMDIClientVirtuals.h +0 -0
- data/ext/{fox14 → fox16}/include/FXRbMainWindow.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbMatrix.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbMenuBar.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbMenuButton.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbMenuCaption.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbMenuCascade.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbMenuCheck.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbMenuCommand.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbMenuPane.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbMenuRadio.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbMenuSeparator.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbMenuTitle.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbMessageBox.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbObject.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbObjectVirtuals.h +0 -0
- data/ext/{fox14 → fox16}/include/FXRbOptionMenu.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbPCXIcon.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbPCXImage.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbPNGIcon.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbPNGImage.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbPPMIcon.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbPPMImage.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbPacker.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbPicker.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbPopup.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbPopupVirtuals.h +0 -0
- data/ext/{fox14 → fox16}/include/FXRbPrintDialog.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbProgressBar.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbProgressDialog.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbRGBIcon.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbRGBImage.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbRadioButton.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbRealSlider.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbRealSpinner.h +5 -5
- data/ext/fox16/include/FXRbRealSpinnerVirtuals.h +3 -0
- data/ext/{fox14 → fox16}/include/FXRbRecentFiles.h +6 -3
- data/ext/{fox14 → fox16}/include/FXRbRegistry.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbReplaceDialog.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbRootWindow.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbRuler.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbScintilla.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbScrollArea.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbScrollAreaVirtuals.h +0 -0
- data/ext/{fox14 → fox16}/include/FXRbScrollBar.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbScrollPane.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbScrollWindow.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbSearchDialog.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbSeparator.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbSettings.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbShell.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbShutter.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbShutterVirtuals.h +0 -0
- data/ext/{fox14 → fox16}/include/FXRbSlider.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbSpinner.h +5 -5
- data/ext/{fox14 → fox16}/include/FXRbSpinnerVirtuals.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbSplashWindow.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbSplitter.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbSpring.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbStatusBar.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbStatusLine.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbStream.h +7 -7
- data/ext/{fox14 → fox16}/include/FXRbStreamVirtuals.h +3 -3
- data/ext/{fox14 → fox16}/include/FXRbStringDict.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbSwitcher.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbTGAIcon.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbTGAImage.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbTIFIcon.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbTIFImage.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbTabBar.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbTabBarVirtuals.h +0 -0
- data/ext/{fox14 → fox16}/include/FXRbTabBook.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbTabItem.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbTable.h +9 -3
- data/ext/{fox14 → fox16}/include/FXRbTableItemVirtuals.h +0 -0
- data/ext/{fox14 → fox16}/include/FXRbTableVirtuals.h +3 -0
- data/ext/fox16/include/FXRbText.h +187 -0
- data/ext/{fox14 → fox16}/include/FXRbTextField.h +1 -1
- data/ext/fox16/include/FXRbTextVirtuals.h +52 -0
- data/ext/{fox14 → fox16}/include/FXRbToggleButton.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbToolBar.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbToolBarGrip.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbToolBarShell.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbToolBarTab.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbToolTip.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbTopWindow.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbTopWindowVirtuals.h +0 -0
- data/ext/fox16/include/FXRbTranslator.h +61 -0
- data/ext/fox16/include/FXRbTranslatorVirtuals.h +4 -0
- data/ext/{fox14 → fox16}/include/FXRbTreeItemVirtuals.h +0 -0
- data/ext/{fox14 → fox16}/include/FXRbTreeList.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbTreeListBox.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbTreeListBoxVirtuals.h +0 -0
- data/ext/{fox14 → fox16}/include/FXRbTreeListVirtuals.h +0 -0
- data/ext/{fox14 → fox16}/include/FXRbTriStateButton.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbVerticalFrame.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbVisual.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbWindow.h +27 -9
- data/ext/{fox14 → fox16}/include/FXRbWindowVirtuals.h +13 -4
- data/ext/{fox14 → fox16}/include/FXRbWizard.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbXBMIcon.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbXBMImage.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbXPMIcon.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRbXPMImage.h +1 -1
- data/ext/{fox14 → fox16}/include/FXRuby.h +43 -18
- data/ext/{fox14 → fox16}/include/impl.h +5 -0
- data/ext/{fox14 → fox16}/include/inlinestubs.h +29 -0
- data/ext/{fox14 → fox16}/label_wrap.cpp +319 -122
- data/ext/{fox14 → fox16}/layout_wrap.cpp +443 -153
- data/ext/{fox14 → fox16}/librb.c +0 -0
- data/ext/{fox14 → fox16}/list_wrap.cpp +660 -44
- data/ext/{fox14 → fox16}/markfuncs.cpp +38 -8
- data/ext/{fox14 → fox16}/mdi_wrap.cpp +253 -109
- data/ext/{fox14 → fox16}/menu_wrap.cpp +342 -146
- data/ext/{fox14 → fox16}/scintilla_wrap.cpp +58 -39
- data/ext/{fox14 → fox16}/table_wrap.cpp +294 -82
- data/ext/{fox14 → fox16}/text_wrap.cpp +203 -193
- data/ext/{fox14 → fox16}/treelist_wrap.cpp +125 -60
- data/ext/{fox14 → fox16}/ui_wrap.cpp +993 -714
- data/ext/{fox14 → fox16}/unregisterOwnedObjects.cpp +6 -1
- data/lib/{fox14 → fox16}/aliases.rb +119 -46
- data/lib/{fox14 → fox16}/calendar.rb +2 -2
- data/lib/{fox14 → fox16}/chore.rb +6 -22
- data/lib/{fox14 → fox16}/colors.rb +1 -1
- data/lib/{fox14 → fox16}/core.rb +122 -4
- data/lib/{fox14 → fox16}/dict.rb +0 -0
- data/lib/{fox14 → fox16}/execute_nonmodal.rb +0 -0
- data/lib/{fox14 → fox16}/glgroup.rb +4 -2
- data/lib/{fox14 → fox16}/glshapes.rb +1 -1
- data/lib/{fox14 → fox16}/input.rb +1 -1
- data/lib/{fox14 → fox16}/irb.rb +1 -1
- data/lib/{fox14 → fox16}/iterators.rb +1 -1
- data/lib/{fox14 → fox16}/keys.rb +2 -2
- data/lib/{fox14 → fox16}/missingdep.rb +1 -1
- data/lib/{fox14 → fox16}/pseudokeyboard.rb +1 -1
- data/lib/{fox14 → fox16}/pseudomouse.rb +1 -1
- data/lib/{fox14 → fox16}/responder.rb +1 -1
- data/lib/{fox14 → fox16}/responder2.rb +5 -5
- data/lib/{fox14 → fox16}/scintilla.rb +249 -12
- data/lib/{fox14 → fox16}/settings.rb +0 -0
- data/lib/{fox14 → fox16}/signal.rb +1 -1
- data/lib/{fox14 → fox16}/splashscreen.rb +2 -2
- data/lib/{fox14 → fox16}/timeout.rb +10 -37
- data/lib/{fox14 → fox16}/undolist.rb +2 -2
- data/lib/{fox14 → fox16}/version.rb +2 -2
- data/rdoc-sources/FX4Splitter.rb +24 -6
- data/rdoc-sources/FX7Segment.rb +6 -0
- data/rdoc-sources/FXAccelTable.rb +35 -0
- data/rdoc-sources/FXApp.rb +113 -1
- data/rdoc-sources/FXBMPIcon.rb +5 -0
- data/rdoc-sources/FXBMPImage.rb +5 -0
- data/rdoc-sources/FXBitmap.rb +23 -1
- data/rdoc-sources/FXCheckButton.rb +7 -0
- data/rdoc-sources/FXColorList.rb +55 -0
- data/rdoc-sources/FXColorRing.rb +49 -0
- data/rdoc-sources/FXColorWheel.rb +22 -2
- data/rdoc-sources/FXComboBox.rb +10 -0
- data/rdoc-sources/FXDC.rb +18 -0
- data/rdoc-sources/FXDial.rb +34 -1
- data/rdoc-sources/FXDirList.rb +1 -0
- data/rdoc-sources/FXDockBar.rb +21 -6
- data/rdoc-sources/FXDockHandler.rb +7 -0
- data/rdoc-sources/FXDockSite.rb +18 -0
- data/rdoc-sources/FXExtentd.rb +85 -0
- data/rdoc-sources/FXExtentf.rb +85 -0
- data/rdoc-sources/FXFileDialog.rb +11 -0
- data/rdoc-sources/FXFileDict.rb +7 -7
- data/rdoc-sources/FXFileList.rb +22 -0
- data/rdoc-sources/FXFileSelector.rb +10 -0
- data/rdoc-sources/FXFoldingList.rb +13 -2
- data/rdoc-sources/FXFont.rb +68 -62
- data/rdoc-sources/FXGIFIcon.rb +5 -0
- data/rdoc-sources/FXGIFImage.rb +5 -0
- data/rdoc-sources/FXGLViewer.rb +23 -0
- data/rdoc-sources/FXGradientBar.rb +10 -0
- data/rdoc-sources/FXHeader.rb +11 -0
- data/rdoc-sources/FXICOIcon.rb +5 -0
- data/rdoc-sources/FXICOImage.rb +5 -0
- data/rdoc-sources/FXIconList.rb +8 -0
- data/rdoc-sources/FXIconSource.rb +12 -12
- data/rdoc-sources/FXImage.rb +0 -4
- data/rdoc-sources/FXInputDialog.rb +19 -6
- data/rdoc-sources/FXJPGIcon.rb +5 -0
- data/rdoc-sources/FXJPGImage.rb +5 -0
- data/rdoc-sources/FXKnob.rb +76 -0
- data/rdoc-sources/FXList.rb +8 -0
- data/rdoc-sources/FXListBox.rb +7 -1
- data/rdoc-sources/FXMenuCaption.rb +3 -0
- data/rdoc-sources/FXMenuCheck.rb +2 -2
- data/rdoc-sources/FXMenuCommand.rb +1 -2
- data/rdoc-sources/FXMenuRadio.rb +5 -2
- data/rdoc-sources/FXOptionMenu.rb +7 -0
- data/rdoc-sources/FXPCXIcon.rb +5 -0
- data/rdoc-sources/FXPCXImage.rb +5 -0
- data/rdoc-sources/FXPNGIcon.rb +5 -0
- data/rdoc-sources/FXPNGImage.rb +5 -0
- data/rdoc-sources/FXPPMIcon.rb +5 -0
- data/rdoc-sources/FXPPMImage.rb +5 -0
- data/rdoc-sources/FXQuatd.rb +5 -12
- data/rdoc-sources/FXQuatf.rb +5 -7
- data/rdoc-sources/FXRGBIcon.rb +5 -0
- data/rdoc-sources/FXRGBImage.rb +5 -0
- data/rdoc-sources/FXRadioButton.rb +6 -0
- data/rdoc-sources/FXRanged.rb +3 -0
- data/rdoc-sources/FXRangef.rb +3 -0
- data/rdoc-sources/FXRealSlider.rb +3 -1
- data/rdoc-sources/FXRealSpinner.rb +11 -4
- data/rdoc-sources/FXRecentFiles.rb +10 -6
- data/rdoc-sources/FXRectangle.rb +12 -0
- data/rdoc-sources/FXRuler.rb +28 -0
- data/rdoc-sources/FXScrollBar.rb +9 -3
- data/rdoc-sources/FXScrollPane.rb +3 -0
- data/rdoc-sources/FXSettings.rb +26 -0
- data/rdoc-sources/FXSize.rb +65 -0
- data/rdoc-sources/FXSlider.rb +2 -0
- data/rdoc-sources/FXSphered.rb +12 -0
- data/rdoc-sources/FXSpheref.rb +12 -0
- data/rdoc-sources/FXSpinner.rb +8 -4
- data/rdoc-sources/FXTGAIcon.rb +5 -0
- data/rdoc-sources/FXTGAImage.rb +5 -0
- data/rdoc-sources/FXTIFIcon.rb +5 -0
- data/rdoc-sources/FXTIFImage.rb +5 -0
- data/rdoc-sources/FXTabBar.rb +5 -1
- data/rdoc-sources/FXTabBook.rb +3 -0
- data/rdoc-sources/FXTabItem.rb +7 -0
- data/rdoc-sources/FXTable.rb +96 -18
- data/rdoc-sources/FXText.rb +47 -12
- data/rdoc-sources/FXTextField.rb +6 -0
- data/rdoc-sources/FXToggleButton.rb +0 -1
- data/rdoc-sources/FXTopWindow.rb +44 -2
- data/rdoc-sources/FXTranslator.rb +32 -0
- data/rdoc-sources/FXTreeList.rb +8 -0
- data/rdoc-sources/FXTreeListBox.rb +20 -0
- data/rdoc-sources/{FXVec.rb → FXVec2d.rb} +28 -29
- data/rdoc-sources/FXVec2f.rb +96 -0
- data/rdoc-sources/FXVec3d.rb +113 -0
- data/rdoc-sources/FXVec3f.rb +113 -0
- data/rdoc-sources/FXVec4d.rb +129 -0
- data/rdoc-sources/FXVec4f.rb +129 -0
- data/rdoc-sources/FXWindow.rb +89 -14
- data/rdoc-sources/FXXBMIcon.rb +5 -0
- data/rdoc-sources/FXXBMImage.rb +5 -0
- data/rdoc-sources/FXXPMIcon.rb +5 -0
- data/rdoc-sources/FXXPMImage.rb +5 -0
- data/rdoc-sources/README.rdoc +1 -1
- data/tests/TC_FXAccelTable.rb +1 -1
- data/tests/TC_FXApp.rb +1 -1
- data/tests/TC_FXArc.rb +1 -1
- data/tests/TC_FXBMPIcon.rb +1 -1
- data/tests/TC_FXBMPImage.rb +1 -1
- data/tests/TC_FXButton.rb +1 -1
- data/tests/TC_FXCheckButton.rb +1 -1
- data/tests/TC_FXComboBox.rb +2 -1
- data/tests/TC_FXDC.rb +1 -1
- data/tests/TC_FXDCPrint.rb +1 -1
- data/tests/TC_FXDCWindow.rb +1 -1
- data/tests/TC_FXDataTarget.rb +1 -1
- data/tests/TC_FXDirList.rb +2 -2
- data/tests/TC_FXFileAssoc.rb +1 -1
- data/tests/TC_FXFileStream.rb +1 -1
- data/tests/TC_FXFont.rb +2 -2
- data/tests/TC_FXFontDesc.rb +15 -19
- data/tests/TC_FXGLGroup.rb +1 -1
- data/tests/TC_FXGLShape.rb +1 -1
- data/tests/TC_FXGLViewer.rb +1 -3
- data/tests/TC_FXGradientBar.rb +1 -1
- data/tests/TC_FXHeader.rb +2 -2
- data/tests/TC_FXIconDict.rb +1 -1
- data/tests/TC_FXIconList.rb +2 -2
- data/tests/TC_FXId.rb +2 -2
- data/tests/TC_FXImage.rb +1 -1
- data/tests/TC_FXLight.rb +1 -1
- data/tests/TC_FXList.rb +2 -12
- data/tests/TC_FXListBox.rb +2 -2
- data/tests/TC_FXMat4f.rb +1 -1
- data/tests/TC_FXMaterial.rb +2 -2
- data/tests/TC_FXMemoryStream.rb +1 -1
- data/tests/TC_FXMenuCheck.rb +1 -1
- data/tests/TC_FXMenuCommand.rb +15 -1
- data/tests/TC_FXMenuRadio.rb +1 -1
- data/tests/TC_FXPoint.rb +1 -1
- data/tests/TC_FXQuatf.rb +1 -1
- data/tests/TC_FXRadioButton.rb +1 -1
- data/tests/TC_FXRangef.rb +1 -1
- data/tests/TC_FXRectangle.rb +1 -1
- data/tests/TC_FXRegion.rb +1 -1
- data/tests/TC_FXRegistry.rb +1 -1
- data/tests/TC_FXScrollArea.rb +1 -1
- data/tests/TC_FXScrollWindow.rb +1 -1
- data/tests/TC_FXSegment.rb +1 -1
- data/tests/TC_FXSettings.rb +1 -1
- data/tests/TC_FXShell.rb +1 -1
- data/tests/TC_FXSize.rb +1 -1
- data/tests/TC_FXStream.rb +1 -1
- data/tests/TC_FXTable.rb +33 -1
- data/tests/TC_FXTableItem.rb +2 -2
- data/tests/TC_FXText.rb +2 -2
- data/tests/TC_FXTopWindow.rb +1 -1
- data/tests/TC_FXTreeList.rb +2 -2
- data/tests/TC_FXTreeListBox.rb +2 -2
- data/tests/TC_FXUndoList.rb +2 -2
- data/tests/TC_FXVec2d.rb +6 -6
- data/tests/TC_FXVec2f.rb +5 -5
- data/tests/TC_FXVec3d.rb +5 -5
- data/tests/TC_FXVec3f.rb +5 -5
- data/tests/TC_FXVec4f.rb +3 -3
- data/tests/TC_FXViewport.rb +1 -1
- data/tests/TC_FXXBMIcon.rb +1 -1
- data/tests/TC_FXXBMImage.rb +1 -1
- data/tests/TC_FXXPMIcon.rb +1 -1
- data/tests/TC_FXXPMImage.rb +1 -1
- data/tests/TC_Misc.rb +1 -1
- data/tests/TC_downcast.rb +1 -1
- data/tests/TS_All.rb +1 -2
- data/tests/stress1.rb +5 -5
- data/tests/stress2.rb +1 -1
- data/tests/stress3.rb +1 -1
- data/tests/testcase.rb +1 -1
- metadata +294 -280
- data/doc/changes.html +0 -433
- data/ext/fox14/include/FXRbFont.h +0 -70
- data/ext/fox14/include/FXRbIconSource.h +0 -127
- data/ext/fox14/include/FXRbIconSourceVirtuals.h +0 -37
- data/ext/fox14/include/FXRbRealSpinnerVirtuals.h +0 -3
- data/ext/fox14/include/FXRbText.h +0 -94
- data/ext/fox14/include/FXRbTextVirtuals.h +0 -9
- data/rdoc-sources/FXMat4.rb +0 -171
- data/rdoc-sources/FXVec4.rb +0 -91
|
@@ -773,10 +773,10 @@ static VALUE _wrap_FXMenuPane_getHeightForWidth(int argc, VALUE *argv, VALUE sel
|
|
|
773
773
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
774
774
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuPane, 1); arg2 = NUM2INT(argv[0]);
|
|
775
775
|
result = (FXint)FXMenuPane_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
|
|
776
|
-
static VALUE _wrap_FXMenuPane_canFocus(int argc, VALUE *argv, VALUE self) { FXMenuPane *arg1 = (FXMenuPane *) 0 ;
|
|
776
|
+
static VALUE _wrap_FXMenuPane_canFocus(int argc, VALUE *argv, VALUE self) { FXMenuPane *arg1 = (FXMenuPane *) 0 ; bool result;
|
|
777
777
|
VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
778
778
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuPane, 1);
|
|
779
|
-
result = (
|
|
779
|
+
result = (bool)FXMenuPane_canFocus((FXMenuPane const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
780
780
|
static VALUE _wrap_FXMenuPane_setFocus(int argc, VALUE *argv, VALUE self) { FXMenuPane *arg1 = (FXMenuPane *) 0 ;
|
|
781
781
|
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
782
782
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuPane, 1); FXMenuPane_setFocus(arg1); return Qnil; }
|
|
@@ -832,25 +832,37 @@ static VALUE _wrap_FXMenuPane_hide(int argc, VALUE *argv, VALUE self) { FXMenuPa
|
|
|
832
832
|
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
833
833
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuPane, 1); FXMenuPane_hide(arg1); return Qnil; }
|
|
834
834
|
static VALUE _wrap_FXMenuPane_isComposite(int argc, VALUE *argv, VALUE self) { FXMenuPane *arg1 = (FXMenuPane *) 0 ;
|
|
835
|
-
|
|
835
|
+
bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
836
836
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
837
837
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuPane, 1);
|
|
838
|
-
result = (
|
|
838
|
+
result = (bool)FXMenuPane_isComposite((FXMenuPane const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
839
839
|
static VALUE _wrap_FXMenuPane_contains(int argc, VALUE *argv, VALUE self) { FXMenuPane *arg1 = (FXMenuPane *) 0 ; FXint arg2 ;
|
|
840
|
-
FXint arg3 ;
|
|
840
|
+
FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
|
|
841
841
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
|
|
842
842
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuPane, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
|
|
843
|
-
result = (
|
|
844
|
-
return vresult; }
|
|
843
|
+
result = (bool)FXMenuPane_contains((FXMenuPane const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
845
844
|
static VALUE _wrap_FXMenuPane_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXMenuPane *arg1 = (FXMenuPane *) 0 ;
|
|
846
|
-
|
|
845
|
+
bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
847
846
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
848
847
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuPane, 1);
|
|
849
|
-
result = (
|
|
848
|
+
result = (bool)FXMenuPane_doesSaveUnder((FXMenuPane const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
850
849
|
static VALUE _wrap_FXMenuPane_setBackColor(int argc, VALUE *argv, VALUE self) { FXMenuPane *arg1 = (FXMenuPane *) 0 ;
|
|
851
850
|
FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
852
851
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuPane, 1); arg2 = to_FXColor(argv[0]);
|
|
853
852
|
FXMenuPane_setBackColor(arg1,arg2); return Qnil; }
|
|
853
|
+
static VALUE _wrap_FXMenuPane_tr(int argc, VALUE *argv, VALUE self) { FXMenuPane *arg1 = (FXMenuPane *) 0 ; FXchar *arg2 ;
|
|
854
|
+
FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
|
|
855
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
856
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuPane, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
|
|
857
|
+
arg3 = StringValuePtr(argv[1]); }
|
|
858
|
+
result = (FXchar *)FXMenuPane_tr((FXMenuPane const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
|
|
859
|
+
vresult = rb_str_new2(result); return vresult; }
|
|
860
|
+
static VALUE _wrap_FXMenuPane_dropEnable(int argc, VALUE *argv, VALUE self) { FXMenuPane *arg1 = (FXMenuPane *) 0 ;
|
|
861
|
+
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
862
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuPane, 1); FXMenuPane_dropEnable(arg1); return Qnil; }
|
|
863
|
+
static VALUE _wrap_FXMenuPane_dropDisable(int argc, VALUE *argv, VALUE self) { FXMenuPane *arg1 = (FXMenuPane *) 0 ;
|
|
864
|
+
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
865
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuPane, 1); FXMenuPane_dropDisable(arg1); return Qnil; }
|
|
854
866
|
static VALUE _wrap_FXMenuPane_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXMenuPane *arg1 = (FXMenuPane *) 0 ;
|
|
855
867
|
FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
856
868
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuPane, 1);
|
|
@@ -896,24 +908,12 @@ static VALUE _wrap_FXMenuPane_popup(int argc, VALUE *argv, VALUE self) { FXMenuP
|
|
|
896
908
|
static VALUE _wrap_FXMenuPane_popdown(int argc, VALUE *argv, VALUE self) { FXMenuPane *arg1 = (FXMenuPane *) 0 ;
|
|
897
909
|
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
898
910
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuPane, 1); FXMenuPane_popdown(arg1); return Qnil; }
|
|
899
|
-
static VALUE _wrap_FXScrollPane_onUpdIncrement(int argc, VALUE *argv, VALUE self) { FXScrollPane *arg1 = (FXScrollPane *) 0 ;
|
|
900
|
-
FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
|
|
901
|
-
if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
|
|
902
|
-
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollPane, 1);
|
|
903
|
-
SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
|
|
904
|
-
result = (long)(arg1)->onUpdIncrement(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
|
|
905
911
|
static VALUE _wrap_FXScrollPane_onCmdIncrement(int argc, VALUE *argv, VALUE self) { FXScrollPane *arg1 = (FXScrollPane *) 0 ;
|
|
906
912
|
FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
|
|
907
913
|
if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
|
|
908
914
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollPane, 1);
|
|
909
915
|
SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
|
|
910
916
|
result = (long)(arg1)->onCmdIncrement(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
|
|
911
|
-
static VALUE _wrap_FXScrollPane_onUpdDecrement(int argc, VALUE *argv, VALUE self) { FXScrollPane *arg1 = (FXScrollPane *) 0 ;
|
|
912
|
-
FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
|
|
913
|
-
if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
|
|
914
|
-
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollPane, 1);
|
|
915
|
-
SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
|
|
916
|
-
result = (long)(arg1)->onUpdDecrement(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
|
|
917
917
|
static VALUE _wrap_FXScrollPane_onCmdDecrement(int argc, VALUE *argv, VALUE self) { FXScrollPane *arg1 = (FXScrollPane *) 0 ;
|
|
918
918
|
FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
|
|
919
919
|
if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
|
|
@@ -936,6 +936,15 @@ static VALUE _wrap_new_FXScrollPane(int argc, VALUE *argv, VALUE self) { FXWindo
|
|
|
936
936
|
SWIG_ConvertPtr(argv[0], (void **) &arg1, SWIGTYPE_p_FXWindow, 1); arg2 = NUM2INT(argv[1]); if (argc > 2) {
|
|
937
937
|
arg3 = NUM2UINT(argv[2]); } { result = (FXScrollPane *)new_FXScrollPane(arg1,arg2,arg3);
|
|
938
938
|
DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result); if(rb_block_given_p()){ rb_yield(self); } } return self; }
|
|
939
|
+
static VALUE _wrap_FXScrollPane_numVisible(int argc, VALUE *argv, VALUE self) { FXScrollPane *arg1 = (FXScrollPane *) 0 ;
|
|
940
|
+
FXint result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
941
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
942
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollPane, 1);
|
|
943
|
+
result = (FXint)((FXScrollPane const *)arg1)->getNumVisible(); vresult = INT2NUM(result); return vresult; }
|
|
944
|
+
static VALUE _wrap_FXScrollPane_numVisiblee___(int argc, VALUE *argv, VALUE self) { FXScrollPane *arg1 = (FXScrollPane *) 0 ;
|
|
945
|
+
FXint arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
946
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollPane, 1); arg2 = NUM2INT(argv[0]); (arg1)->setNumVisible(arg2);
|
|
947
|
+
return Qnil; }
|
|
939
948
|
static VALUE _wrap_FXScrollPane_getTopItem(int argc, VALUE *argv, VALUE self) { FXScrollPane *arg1 = (FXScrollPane *) 0 ;
|
|
940
949
|
FXint result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
941
950
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
@@ -993,10 +1002,10 @@ static VALUE _wrap_FXScrollPane_getHeightForWidth(int argc, VALUE *argv, VALUE s
|
|
|
993
1002
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollPane, 1); arg2 = NUM2INT(argv[0]);
|
|
994
1003
|
result = (FXint)FXScrollPane_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
|
|
995
1004
|
static VALUE _wrap_FXScrollPane_canFocus(int argc, VALUE *argv, VALUE self) { FXScrollPane *arg1 = (FXScrollPane *) 0 ;
|
|
996
|
-
|
|
1005
|
+
bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
997
1006
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
998
1007
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollPane, 1);
|
|
999
|
-
result = (
|
|
1008
|
+
result = (bool)FXScrollPane_canFocus((FXScrollPane const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
1000
1009
|
static VALUE _wrap_FXScrollPane_setFocus(int argc, VALUE *argv, VALUE self) { FXScrollPane *arg1 = (FXScrollPane *) 0 ;
|
|
1001
1010
|
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1002
1011
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollPane, 1); FXScrollPane_setFocus(arg1); return Qnil; }
|
|
@@ -1052,25 +1061,38 @@ static VALUE _wrap_FXScrollPane_hide(int argc, VALUE *argv, VALUE self) { FXScro
|
|
|
1052
1061
|
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1053
1062
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollPane, 1); FXScrollPane_hide(arg1); return Qnil; }
|
|
1054
1063
|
static VALUE _wrap_FXScrollPane_isComposite(int argc, VALUE *argv, VALUE self) { FXScrollPane *arg1 = (FXScrollPane *) 0 ;
|
|
1055
|
-
|
|
1064
|
+
bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
1056
1065
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1057
1066
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollPane, 1);
|
|
1058
|
-
result = (
|
|
1067
|
+
result = (bool)FXScrollPane_isComposite((FXScrollPane const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
1059
1068
|
static VALUE _wrap_FXScrollPane_contains(int argc, VALUE *argv, VALUE self) { FXScrollPane *arg1 = (FXScrollPane *) 0 ;
|
|
1060
|
-
FXint arg2 ; FXint arg3 ;
|
|
1069
|
+
FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
|
|
1061
1070
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
|
|
1062
1071
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollPane, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
|
|
1063
|
-
result = (
|
|
1072
|
+
result = (bool)FXScrollPane_contains((FXScrollPane const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
|
|
1064
1073
|
return vresult; }
|
|
1065
1074
|
static VALUE _wrap_FXScrollPane_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXScrollPane *arg1 = (FXScrollPane *) 0 ;
|
|
1066
|
-
|
|
1075
|
+
bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
1067
1076
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1068
1077
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollPane, 1);
|
|
1069
|
-
result = (
|
|
1078
|
+
result = (bool)FXScrollPane_doesSaveUnder((FXScrollPane const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
1070
1079
|
static VALUE _wrap_FXScrollPane_setBackColor(int argc, VALUE *argv, VALUE self) { FXScrollPane *arg1 = (FXScrollPane *) 0 ;
|
|
1071
1080
|
FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
1072
1081
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollPane, 1); arg2 = to_FXColor(argv[0]);
|
|
1073
1082
|
FXScrollPane_setBackColor(arg1,arg2); return Qnil; }
|
|
1083
|
+
static VALUE _wrap_FXScrollPane_tr(int argc, VALUE *argv, VALUE self) { FXScrollPane *arg1 = (FXScrollPane *) 0 ; FXchar *arg2 ;
|
|
1084
|
+
FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
|
|
1085
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
1086
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollPane, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
|
|
1087
|
+
arg3 = StringValuePtr(argv[1]); }
|
|
1088
|
+
result = (FXchar *)FXScrollPane_tr((FXScrollPane const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
|
|
1089
|
+
vresult = rb_str_new2(result); return vresult; }
|
|
1090
|
+
static VALUE _wrap_FXScrollPane_dropEnable(int argc, VALUE *argv, VALUE self) { FXScrollPane *arg1 = (FXScrollPane *) 0 ;
|
|
1091
|
+
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1092
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollPane, 1); FXScrollPane_dropEnable(arg1); return Qnil; }
|
|
1093
|
+
static VALUE _wrap_FXScrollPane_dropDisable(int argc, VALUE *argv, VALUE self) { FXScrollPane *arg1 = (FXScrollPane *) 0 ;
|
|
1094
|
+
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1095
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollPane, 1); FXScrollPane_dropDisable(arg1); return Qnil; }
|
|
1074
1096
|
static VALUE _wrap_FXScrollPane_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXScrollPane *arg1 = (FXScrollPane *) 0 ;
|
|
1075
1097
|
FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
1076
1098
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollPane, 1);
|
|
@@ -1171,12 +1193,31 @@ static VALUE _wrap_FXMenuCaption_onCmdGetHelp(int argc, VALUE *argv, VALUE self)
|
|
|
1171
1193
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCaption, 1);
|
|
1172
1194
|
SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
|
|
1173
1195
|
result = (long)(arg1)->onCmdGetHelp(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
|
|
1196
|
+
static VALUE _wrap_FXMenuCaption_onCmdSetTip(int argc, VALUE *argv, VALUE self) { FXMenuCaption *arg1 = (FXMenuCaption *) 0 ;
|
|
1197
|
+
FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; FXString value4 ;
|
|
1198
|
+
VALUE vresult = Qnil; if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
|
|
1199
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCaption, 1);
|
|
1200
|
+
SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); {
|
|
1201
|
+
value4 = FXString(STR2CSTR(argv[2])); arg4 = (void *) &value4; } result = (long)(arg1)->onCmdSetTip(arg2,arg3,arg4);
|
|
1202
|
+
vresult = INT2NUM(result); return vresult; }
|
|
1203
|
+
static VALUE _wrap_FXMenuCaption_onCmdGetTip(int argc, VALUE *argv, VALUE self) { FXMenuCaption *arg1 = (FXMenuCaption *) 0 ;
|
|
1204
|
+
FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
|
|
1205
|
+
if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
|
|
1206
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCaption, 1);
|
|
1207
|
+
SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
|
|
1208
|
+
result = (long)(arg1)->onCmdGetTip(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
|
|
1174
1209
|
static VALUE _wrap_FXMenuCaption_onQueryHelp(int argc, VALUE *argv, VALUE self) { FXMenuCaption *arg1 = (FXMenuCaption *) 0 ;
|
|
1175
1210
|
FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
|
|
1176
1211
|
if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
|
|
1177
1212
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCaption, 1);
|
|
1178
1213
|
SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
|
|
1179
1214
|
result = (long)(arg1)->onQueryHelp(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
|
|
1215
|
+
static VALUE _wrap_FXMenuCaption_onQueryTip(int argc, VALUE *argv, VALUE self) { FXMenuCaption *arg1 = (FXMenuCaption *) 0 ;
|
|
1216
|
+
FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
|
|
1217
|
+
if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
|
|
1218
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCaption, 1);
|
|
1219
|
+
SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
|
|
1220
|
+
result = (long)(arg1)->onQueryTip(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
|
|
1180
1221
|
#ifdef HAVE_RB_DEFINE_ALLOC_FUNC
|
|
1181
1222
|
static VALUE _wrap_FXMenuCaption_allocate(VALUE self) {
|
|
1182
1223
|
#else
|
|
@@ -1294,6 +1335,17 @@ static VALUE _wrap_FXMenuCaption_getHelpText(int argc, VALUE *argv, VALUE self)
|
|
|
1294
1335
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCaption, 1); {
|
|
1295
1336
|
FXString const &_result_ref = ((FXMenuCaption const *)arg1)->getHelpText(); result = (FXString *) &_result_ref; }
|
|
1296
1337
|
vresult = rb_str_new2(result->text()); return vresult; }
|
|
1338
|
+
static VALUE _wrap_FXMenuCaption_tipTexte___(int argc, VALUE *argv, VALUE self) { FXMenuCaption *arg1 = (FXMenuCaption *) 0 ;
|
|
1339
|
+
FXString *arg2 = 0 ; SwigValueWrapper<FXString > p2 ; if ((argc < 1) || (argc > 1))
|
|
1340
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
1341
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCaption, 1); p2 = to_FXString(argv[0]); arg2 = &p2;
|
|
1342
|
+
(arg1)->setTipText((FXString const &)*arg2); return Qnil; }
|
|
1343
|
+
static VALUE _wrap_FXMenuCaption_tipText(int argc, VALUE *argv, VALUE self) { FXMenuCaption *arg1 = (FXMenuCaption *) 0 ;
|
|
1344
|
+
FXString *result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
1345
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1346
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCaption, 1); {
|
|
1347
|
+
FXString const &_result_ref = ((FXMenuCaption const *)arg1)->getTipText(); result = (FXString *) &_result_ref; }
|
|
1348
|
+
vresult = rb_str_new2(result->text()); return vresult; }
|
|
1297
1349
|
static void
|
|
1298
1350
|
free_FXMenuCaption(FXMenuCaption *arg1) {
|
|
1299
1351
|
delete arg1;
|
|
@@ -1342,10 +1394,10 @@ static VALUE _wrap_FXMenuCaption_getHeightForWidth(int argc, VALUE *argv, VALUE
|
|
|
1342
1394
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCaption, 1); arg2 = NUM2INT(argv[0]);
|
|
1343
1395
|
result = (FXint)FXMenuCaption_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
|
|
1344
1396
|
static VALUE _wrap_FXMenuCaption_canFocus(int argc, VALUE *argv, VALUE self) { FXMenuCaption *arg1 = (FXMenuCaption *) 0 ;
|
|
1345
|
-
|
|
1397
|
+
bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
1346
1398
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1347
1399
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCaption, 1);
|
|
1348
|
-
result = (
|
|
1400
|
+
result = (bool)FXMenuCaption_canFocus((FXMenuCaption const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
1349
1401
|
static VALUE _wrap_FXMenuCaption_setFocus(int argc, VALUE *argv, VALUE self) { FXMenuCaption *arg1 = (FXMenuCaption *) 0 ;
|
|
1350
1402
|
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1351
1403
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCaption, 1); FXMenuCaption_setFocus(arg1); return Qnil; }
|
|
@@ -1401,26 +1453,38 @@ static VALUE _wrap_FXMenuCaption_hide(int argc, VALUE *argv, VALUE self) { FXMen
|
|
|
1401
1453
|
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1402
1454
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCaption, 1); FXMenuCaption_hide(arg1); return Qnil; }
|
|
1403
1455
|
static VALUE _wrap_FXMenuCaption_isComposite(int argc, VALUE *argv, VALUE self) { FXMenuCaption *arg1 = (FXMenuCaption *) 0 ;
|
|
1404
|
-
|
|
1456
|
+
bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
1405
1457
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1406
1458
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCaption, 1);
|
|
1407
|
-
result = (
|
|
1459
|
+
result = (bool)FXMenuCaption_isComposite((FXMenuCaption const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
1408
1460
|
static VALUE _wrap_FXMenuCaption_contains(int argc, VALUE *argv, VALUE self) { FXMenuCaption *arg1 = (FXMenuCaption *) 0 ;
|
|
1409
|
-
FXint arg2 ; FXint arg3 ;
|
|
1461
|
+
FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
|
|
1410
1462
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
|
|
1411
1463
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCaption, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
|
|
1412
|
-
result = (
|
|
1464
|
+
result = (bool)FXMenuCaption_contains((FXMenuCaption const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
|
|
1413
1465
|
return vresult; }
|
|
1414
1466
|
static VALUE _wrap_FXMenuCaption_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXMenuCaption *arg1 = (FXMenuCaption *) 0 ;
|
|
1415
|
-
|
|
1467
|
+
bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
1416
1468
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1417
1469
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCaption, 1);
|
|
1418
|
-
result = (
|
|
1419
|
-
return vresult; }
|
|
1470
|
+
result = (bool)FXMenuCaption_doesSaveUnder((FXMenuCaption const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
1420
1471
|
static VALUE _wrap_FXMenuCaption_setBackColor(int argc, VALUE *argv, VALUE self) { FXMenuCaption *arg1 = (FXMenuCaption *) 0 ;
|
|
1421
1472
|
FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
1422
1473
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCaption, 1); arg2 = to_FXColor(argv[0]);
|
|
1423
1474
|
FXMenuCaption_setBackColor(arg1,arg2); return Qnil; }
|
|
1475
|
+
static VALUE _wrap_FXMenuCaption_tr(int argc, VALUE *argv, VALUE self) { FXMenuCaption *arg1 = (FXMenuCaption *) 0 ;
|
|
1476
|
+
FXchar *arg2 ; FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
|
|
1477
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
1478
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCaption, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
|
|
1479
|
+
arg3 = StringValuePtr(argv[1]); }
|
|
1480
|
+
result = (FXchar *)FXMenuCaption_tr((FXMenuCaption const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
|
|
1481
|
+
vresult = rb_str_new2(result); return vresult; }
|
|
1482
|
+
static VALUE _wrap_FXMenuCaption_dropEnable(int argc, VALUE *argv, VALUE self) { FXMenuCaption *arg1 = (FXMenuCaption *) 0 ;
|
|
1483
|
+
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1484
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCaption, 1); FXMenuCaption_dropEnable(arg1); return Qnil; }
|
|
1485
|
+
static VALUE _wrap_FXMenuCaption_dropDisable(int argc, VALUE *argv, VALUE self) { FXMenuCaption *arg1 = (FXMenuCaption *) 0 ;
|
|
1486
|
+
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1487
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCaption, 1); FXMenuCaption_dropDisable(arg1); return Qnil; }
|
|
1424
1488
|
static VALUE _wrap_FXMenuCaption_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
1425
1489
|
FXMenuCaption *arg1 = (FXMenuCaption *) 0 ; FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1))
|
|
1426
1490
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
@@ -1548,11 +1612,10 @@ static VALUE _wrap_FXMenuSeparator_getHeightForWidth(int argc, VALUE *argv, VALU
|
|
|
1548
1612
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuSeparator, 1); arg2 = NUM2INT(argv[0]);
|
|
1549
1613
|
result = (FXint)FXMenuSeparator_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
|
|
1550
1614
|
static VALUE _wrap_FXMenuSeparator_canFocus(int argc, VALUE *argv, VALUE self) { FXMenuSeparator *arg1 = (FXMenuSeparator *) 0 ;
|
|
1551
|
-
|
|
1615
|
+
bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
1552
1616
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1553
1617
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuSeparator, 1);
|
|
1554
|
-
result = (
|
|
1555
|
-
return vresult; }
|
|
1618
|
+
result = (bool)FXMenuSeparator_canFocus((FXMenuSeparator const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
1556
1619
|
static VALUE _wrap_FXMenuSeparator_setFocus(int argc, VALUE *argv, VALUE self) { FXMenuSeparator *arg1 = (FXMenuSeparator *) 0 ;
|
|
1557
1620
|
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1558
1621
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuSeparator, 1); FXMenuSeparator_setFocus(arg1); return Qnil; }
|
|
@@ -1611,28 +1674,43 @@ static VALUE _wrap_FXMenuSeparator_hide(int argc, VALUE *argv, VALUE self) { FXM
|
|
|
1611
1674
|
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1612
1675
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuSeparator, 1); FXMenuSeparator_hide(arg1); return Qnil; }
|
|
1613
1676
|
static VALUE _wrap_FXMenuSeparator_isComposite(int argc, VALUE *argv, VALUE self) {
|
|
1614
|
-
FXMenuSeparator *arg1 = (FXMenuSeparator *) 0 ;
|
|
1677
|
+
FXMenuSeparator *arg1 = (FXMenuSeparator *) 0 ; bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
1615
1678
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1616
1679
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuSeparator, 1);
|
|
1617
|
-
result = (
|
|
1680
|
+
result = (bool)FXMenuSeparator_isComposite((FXMenuSeparator const *)arg1); vresult = result ? Qtrue : Qfalse;
|
|
1618
1681
|
return vresult; }
|
|
1619
1682
|
static VALUE _wrap_FXMenuSeparator_contains(int argc, VALUE *argv, VALUE self) { FXMenuSeparator *arg1 = (FXMenuSeparator *) 0 ;
|
|
1620
|
-
FXint arg2 ; FXint arg3 ;
|
|
1683
|
+
FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
|
|
1621
1684
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
|
|
1622
1685
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuSeparator, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
|
|
1623
|
-
result = (
|
|
1686
|
+
result = (bool)FXMenuSeparator_contains((FXMenuSeparator const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
|
|
1624
1687
|
return vresult; }
|
|
1625
1688
|
static VALUE _wrap_FXMenuSeparator_doesSaveUnder(int argc, VALUE *argv, VALUE self) {
|
|
1626
|
-
FXMenuSeparator *arg1 = (FXMenuSeparator *) 0 ;
|
|
1689
|
+
FXMenuSeparator *arg1 = (FXMenuSeparator *) 0 ; bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
1627
1690
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1628
1691
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuSeparator, 1);
|
|
1629
|
-
result = (
|
|
1692
|
+
result = (bool)FXMenuSeparator_doesSaveUnder((FXMenuSeparator const *)arg1); vresult = result ? Qtrue : Qfalse;
|
|
1630
1693
|
return vresult; }
|
|
1631
1694
|
static VALUE _wrap_FXMenuSeparator_setBackColor(int argc, VALUE *argv, VALUE self) {
|
|
1632
1695
|
FXMenuSeparator *arg1 = (FXMenuSeparator *) 0 ; FXColor arg2 ; if ((argc < 1) || (argc > 1))
|
|
1633
1696
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
1634
1697
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuSeparator, 1); arg2 = to_FXColor(argv[0]);
|
|
1635
1698
|
FXMenuSeparator_setBackColor(arg1,arg2); return Qnil; }
|
|
1699
|
+
static VALUE _wrap_FXMenuSeparator_tr(int argc, VALUE *argv, VALUE self) { FXMenuSeparator *arg1 = (FXMenuSeparator *) 0 ;
|
|
1700
|
+
FXchar *arg2 ; FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
|
|
1701
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
1702
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuSeparator, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
|
|
1703
|
+
arg3 = StringValuePtr(argv[1]); }
|
|
1704
|
+
result = (FXchar *)FXMenuSeparator_tr((FXMenuSeparator const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
|
|
1705
|
+
vresult = rb_str_new2(result); return vresult; }
|
|
1706
|
+
static VALUE _wrap_FXMenuSeparator_dropEnable(int argc, VALUE *argv, VALUE self) {
|
|
1707
|
+
FXMenuSeparator *arg1 = (FXMenuSeparator *) 0 ; if ((argc < 0) || (argc > 0))
|
|
1708
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1709
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuSeparator, 1); FXMenuSeparator_dropEnable(arg1); return Qnil; }
|
|
1710
|
+
static VALUE _wrap_FXMenuSeparator_dropDisable(int argc, VALUE *argv, VALUE self) {
|
|
1711
|
+
FXMenuSeparator *arg1 = (FXMenuSeparator *) 0 ; if ((argc < 0) || (argc > 0))
|
|
1712
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1713
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuSeparator, 1); FXMenuSeparator_dropDisable(arg1); return Qnil; }
|
|
1636
1714
|
static VALUE _wrap_FXMenuSeparator_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
1637
1715
|
FXMenuSeparator *arg1 = (FXMenuSeparator *) 0 ; FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1))
|
|
1638
1716
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
@@ -1839,10 +1917,10 @@ static VALUE _wrap_FXMenuTitle_getHeightForWidth(int argc, VALUE *argv, VALUE se
|
|
|
1839
1917
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuTitle, 1); arg2 = NUM2INT(argv[0]);
|
|
1840
1918
|
result = (FXint)FXMenuTitle_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
|
|
1841
1919
|
static VALUE _wrap_FXMenuTitle_canFocus(int argc, VALUE *argv, VALUE self) { FXMenuTitle *arg1 = (FXMenuTitle *) 0 ;
|
|
1842
|
-
|
|
1920
|
+
bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
1843
1921
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1844
1922
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuTitle, 1);
|
|
1845
|
-
result = (
|
|
1923
|
+
result = (bool)FXMenuTitle_canFocus((FXMenuTitle const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
1846
1924
|
static VALUE _wrap_FXMenuTitle_setFocus(int argc, VALUE *argv, VALUE self) { FXMenuTitle *arg1 = (FXMenuTitle *) 0 ;
|
|
1847
1925
|
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1848
1926
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuTitle, 1); FXMenuTitle_setFocus(arg1); return Qnil; }
|
|
@@ -1898,25 +1976,38 @@ static VALUE _wrap_FXMenuTitle_hide(int argc, VALUE *argv, VALUE self) { FXMenuT
|
|
|
1898
1976
|
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1899
1977
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuTitle, 1); FXMenuTitle_hide(arg1); return Qnil; }
|
|
1900
1978
|
static VALUE _wrap_FXMenuTitle_isComposite(int argc, VALUE *argv, VALUE self) { FXMenuTitle *arg1 = (FXMenuTitle *) 0 ;
|
|
1901
|
-
|
|
1979
|
+
bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
1902
1980
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1903
1981
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuTitle, 1);
|
|
1904
|
-
result = (
|
|
1982
|
+
result = (bool)FXMenuTitle_isComposite((FXMenuTitle const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
1905
1983
|
static VALUE _wrap_FXMenuTitle_contains(int argc, VALUE *argv, VALUE self) { FXMenuTitle *arg1 = (FXMenuTitle *) 0 ;
|
|
1906
|
-
FXint arg2 ; FXint arg3 ;
|
|
1984
|
+
FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
|
|
1907
1985
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
|
|
1908
1986
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuTitle, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
|
|
1909
|
-
result = (
|
|
1987
|
+
result = (bool)FXMenuTitle_contains((FXMenuTitle const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
|
|
1910
1988
|
return vresult; }
|
|
1911
1989
|
static VALUE _wrap_FXMenuTitle_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXMenuTitle *arg1 = (FXMenuTitle *) 0 ;
|
|
1912
|
-
|
|
1990
|
+
bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
1913
1991
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1914
1992
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuTitle, 1);
|
|
1915
|
-
result = (
|
|
1993
|
+
result = (bool)FXMenuTitle_doesSaveUnder((FXMenuTitle const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
1916
1994
|
static VALUE _wrap_FXMenuTitle_setBackColor(int argc, VALUE *argv, VALUE self) { FXMenuTitle *arg1 = (FXMenuTitle *) 0 ;
|
|
1917
1995
|
FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
1918
1996
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuTitle, 1); arg2 = to_FXColor(argv[0]);
|
|
1919
1997
|
FXMenuTitle_setBackColor(arg1,arg2); return Qnil; }
|
|
1998
|
+
static VALUE _wrap_FXMenuTitle_tr(int argc, VALUE *argv, VALUE self) { FXMenuTitle *arg1 = (FXMenuTitle *) 0 ; FXchar *arg2 ;
|
|
1999
|
+
FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
|
|
2000
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
2001
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuTitle, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
|
|
2002
|
+
arg3 = StringValuePtr(argv[1]); }
|
|
2003
|
+
result = (FXchar *)FXMenuTitle_tr((FXMenuTitle const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
|
|
2004
|
+
vresult = rb_str_new2(result); return vresult; }
|
|
2005
|
+
static VALUE _wrap_FXMenuTitle_dropEnable(int argc, VALUE *argv, VALUE self) { FXMenuTitle *arg1 = (FXMenuTitle *) 0 ;
|
|
2006
|
+
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2007
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuTitle, 1); FXMenuTitle_dropEnable(arg1); return Qnil; }
|
|
2008
|
+
static VALUE _wrap_FXMenuTitle_dropDisable(int argc, VALUE *argv, VALUE self) { FXMenuTitle *arg1 = (FXMenuTitle *) 0 ;
|
|
2009
|
+
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2010
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuTitle, 1); FXMenuTitle_dropDisable(arg1); return Qnil; }
|
|
1920
2011
|
static VALUE _wrap_FXMenuTitle_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXMenuTitle *arg1 = (FXMenuTitle *) 0 ;
|
|
1921
2012
|
FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
1922
2013
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuTitle, 1);
|
|
@@ -2098,10 +2189,10 @@ static VALUE _wrap_FXMenuCascade_getHeightForWidth(int argc, VALUE *argv, VALUE
|
|
|
2098
2189
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCascade, 1); arg2 = NUM2INT(argv[0]);
|
|
2099
2190
|
result = (FXint)FXMenuCascade_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
|
|
2100
2191
|
static VALUE _wrap_FXMenuCascade_canFocus(int argc, VALUE *argv, VALUE self) { FXMenuCascade *arg1 = (FXMenuCascade *) 0 ;
|
|
2101
|
-
|
|
2192
|
+
bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
2102
2193
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2103
2194
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCascade, 1);
|
|
2104
|
-
result = (
|
|
2195
|
+
result = (bool)FXMenuCascade_canFocus((FXMenuCascade const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
2105
2196
|
static VALUE _wrap_FXMenuCascade_setFocus(int argc, VALUE *argv, VALUE self) { FXMenuCascade *arg1 = (FXMenuCascade *) 0 ;
|
|
2106
2197
|
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2107
2198
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCascade, 1); FXMenuCascade_setFocus(arg1); return Qnil; }
|
|
@@ -2157,26 +2248,38 @@ static VALUE _wrap_FXMenuCascade_hide(int argc, VALUE *argv, VALUE self) { FXMen
|
|
|
2157
2248
|
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2158
2249
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCascade, 1); FXMenuCascade_hide(arg1); return Qnil; }
|
|
2159
2250
|
static VALUE _wrap_FXMenuCascade_isComposite(int argc, VALUE *argv, VALUE self) { FXMenuCascade *arg1 = (FXMenuCascade *) 0 ;
|
|
2160
|
-
|
|
2251
|
+
bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
2161
2252
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2162
2253
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCascade, 1);
|
|
2163
|
-
result = (
|
|
2254
|
+
result = (bool)FXMenuCascade_isComposite((FXMenuCascade const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
2164
2255
|
static VALUE _wrap_FXMenuCascade_contains(int argc, VALUE *argv, VALUE self) { FXMenuCascade *arg1 = (FXMenuCascade *) 0 ;
|
|
2165
|
-
FXint arg2 ; FXint arg3 ;
|
|
2256
|
+
FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
|
|
2166
2257
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
|
|
2167
2258
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCascade, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
|
|
2168
|
-
result = (
|
|
2259
|
+
result = (bool)FXMenuCascade_contains((FXMenuCascade const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
|
|
2169
2260
|
return vresult; }
|
|
2170
2261
|
static VALUE _wrap_FXMenuCascade_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXMenuCascade *arg1 = (FXMenuCascade *) 0 ;
|
|
2171
|
-
|
|
2262
|
+
bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
2172
2263
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2173
2264
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCascade, 1);
|
|
2174
|
-
result = (
|
|
2175
|
-
return vresult; }
|
|
2265
|
+
result = (bool)FXMenuCascade_doesSaveUnder((FXMenuCascade const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
2176
2266
|
static VALUE _wrap_FXMenuCascade_setBackColor(int argc, VALUE *argv, VALUE self) { FXMenuCascade *arg1 = (FXMenuCascade *) 0 ;
|
|
2177
2267
|
FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
2178
2268
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCascade, 1); arg2 = to_FXColor(argv[0]);
|
|
2179
2269
|
FXMenuCascade_setBackColor(arg1,arg2); return Qnil; }
|
|
2270
|
+
static VALUE _wrap_FXMenuCascade_tr(int argc, VALUE *argv, VALUE self) { FXMenuCascade *arg1 = (FXMenuCascade *) 0 ;
|
|
2271
|
+
FXchar *arg2 ; FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
|
|
2272
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
2273
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCascade, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
|
|
2274
|
+
arg3 = StringValuePtr(argv[1]); }
|
|
2275
|
+
result = (FXchar *)FXMenuCascade_tr((FXMenuCascade const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
|
|
2276
|
+
vresult = rb_str_new2(result); return vresult; }
|
|
2277
|
+
static VALUE _wrap_FXMenuCascade_dropEnable(int argc, VALUE *argv, VALUE self) { FXMenuCascade *arg1 = (FXMenuCascade *) 0 ;
|
|
2278
|
+
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2279
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCascade, 1); FXMenuCascade_dropEnable(arg1); return Qnil; }
|
|
2280
|
+
static VALUE _wrap_FXMenuCascade_dropDisable(int argc, VALUE *argv, VALUE self) { FXMenuCascade *arg1 = (FXMenuCascade *) 0 ;
|
|
2281
|
+
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2282
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCascade, 1); FXMenuCascade_dropDisable(arg1); return Qnil; }
|
|
2180
2283
|
static VALUE _wrap_FXMenuCascade_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
2181
2284
|
FXMenuCascade *arg1 = (FXMenuCascade *) 0 ; FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1))
|
|
2182
2285
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
@@ -2354,10 +2457,10 @@ static VALUE _wrap_FXMenuCommand_getHeightForWidth(int argc, VALUE *argv, VALUE
|
|
|
2354
2457
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCommand, 1); arg2 = NUM2INT(argv[0]);
|
|
2355
2458
|
result = (FXint)FXMenuCommand_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
|
|
2356
2459
|
static VALUE _wrap_FXMenuCommand_canFocus(int argc, VALUE *argv, VALUE self) { FXMenuCommand *arg1 = (FXMenuCommand *) 0 ;
|
|
2357
|
-
|
|
2460
|
+
bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
2358
2461
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2359
2462
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCommand, 1);
|
|
2360
|
-
result = (
|
|
2463
|
+
result = (bool)FXMenuCommand_canFocus((FXMenuCommand const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
2361
2464
|
static VALUE _wrap_FXMenuCommand_setFocus(int argc, VALUE *argv, VALUE self) { FXMenuCommand *arg1 = (FXMenuCommand *) 0 ;
|
|
2362
2465
|
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2363
2466
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCommand, 1); FXMenuCommand_setFocus(arg1); return Qnil; }
|
|
@@ -2413,26 +2516,38 @@ static VALUE _wrap_FXMenuCommand_hide(int argc, VALUE *argv, VALUE self) { FXMen
|
|
|
2413
2516
|
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2414
2517
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCommand, 1); FXMenuCommand_hide(arg1); return Qnil; }
|
|
2415
2518
|
static VALUE _wrap_FXMenuCommand_isComposite(int argc, VALUE *argv, VALUE self) { FXMenuCommand *arg1 = (FXMenuCommand *) 0 ;
|
|
2416
|
-
|
|
2519
|
+
bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
2417
2520
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2418
2521
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCommand, 1);
|
|
2419
|
-
result = (
|
|
2522
|
+
result = (bool)FXMenuCommand_isComposite((FXMenuCommand const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
2420
2523
|
static VALUE _wrap_FXMenuCommand_contains(int argc, VALUE *argv, VALUE self) { FXMenuCommand *arg1 = (FXMenuCommand *) 0 ;
|
|
2421
|
-
FXint arg2 ; FXint arg3 ;
|
|
2524
|
+
FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
|
|
2422
2525
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
|
|
2423
2526
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCommand, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
|
|
2424
|
-
result = (
|
|
2527
|
+
result = (bool)FXMenuCommand_contains((FXMenuCommand const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
|
|
2425
2528
|
return vresult; }
|
|
2426
2529
|
static VALUE _wrap_FXMenuCommand_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXMenuCommand *arg1 = (FXMenuCommand *) 0 ;
|
|
2427
|
-
|
|
2530
|
+
bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
2428
2531
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2429
2532
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCommand, 1);
|
|
2430
|
-
result = (
|
|
2431
|
-
return vresult; }
|
|
2533
|
+
result = (bool)FXMenuCommand_doesSaveUnder((FXMenuCommand const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
2432
2534
|
static VALUE _wrap_FXMenuCommand_setBackColor(int argc, VALUE *argv, VALUE self) { FXMenuCommand *arg1 = (FXMenuCommand *) 0 ;
|
|
2433
2535
|
FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
2434
2536
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCommand, 1); arg2 = to_FXColor(argv[0]);
|
|
2435
2537
|
FXMenuCommand_setBackColor(arg1,arg2); return Qnil; }
|
|
2538
|
+
static VALUE _wrap_FXMenuCommand_tr(int argc, VALUE *argv, VALUE self) { FXMenuCommand *arg1 = (FXMenuCommand *) 0 ;
|
|
2539
|
+
FXchar *arg2 ; FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
|
|
2540
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
2541
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCommand, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
|
|
2542
|
+
arg3 = StringValuePtr(argv[1]); }
|
|
2543
|
+
result = (FXchar *)FXMenuCommand_tr((FXMenuCommand const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
|
|
2544
|
+
vresult = rb_str_new2(result); return vresult; }
|
|
2545
|
+
static VALUE _wrap_FXMenuCommand_dropEnable(int argc, VALUE *argv, VALUE self) { FXMenuCommand *arg1 = (FXMenuCommand *) 0 ;
|
|
2546
|
+
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2547
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCommand, 1); FXMenuCommand_dropEnable(arg1); return Qnil; }
|
|
2548
|
+
static VALUE _wrap_FXMenuCommand_dropDisable(int argc, VALUE *argv, VALUE self) { FXMenuCommand *arg1 = (FXMenuCommand *) 0 ;
|
|
2549
|
+
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2550
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCommand, 1); FXMenuCommand_dropDisable(arg1); return Qnil; }
|
|
2436
2551
|
static VALUE _wrap_FXMenuCommand_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
2437
2552
|
FXMenuCommand *arg1 = (FXMenuCommand *) 0 ; FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1))
|
|
2438
2553
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
@@ -2661,10 +2776,10 @@ static VALUE _wrap_FXMenuBar_getHeightForWidth(int argc, VALUE *argv, VALUE self
|
|
|
2661
2776
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
2662
2777
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuBar, 1); arg2 = NUM2INT(argv[0]);
|
|
2663
2778
|
result = (FXint)FXMenuBar_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
|
|
2664
|
-
static VALUE _wrap_FXMenuBar_canFocus(int argc, VALUE *argv, VALUE self) { FXMenuBar *arg1 = (FXMenuBar *) 0 ;
|
|
2779
|
+
static VALUE _wrap_FXMenuBar_canFocus(int argc, VALUE *argv, VALUE self) { FXMenuBar *arg1 = (FXMenuBar *) 0 ; bool result;
|
|
2665
2780
|
VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2666
|
-
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuBar, 1);
|
|
2667
|
-
|
|
2781
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuBar, 1); result = (bool)FXMenuBar_canFocus((FXMenuBar const *)arg1);
|
|
2782
|
+
vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
2668
2783
|
static VALUE _wrap_FXMenuBar_setFocus(int argc, VALUE *argv, VALUE self) { FXMenuBar *arg1 = (FXMenuBar *) 0 ;
|
|
2669
2784
|
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2670
2785
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuBar, 1); FXMenuBar_setFocus(arg1); return Qnil; }
|
|
@@ -2719,24 +2834,36 @@ static VALUE _wrap_FXMenuBar_show(int argc, VALUE *argv, VALUE self) { FXMenuBar
|
|
|
2719
2834
|
static VALUE _wrap_FXMenuBar_hide(int argc, VALUE *argv, VALUE self) { FXMenuBar *arg1 = (FXMenuBar *) 0 ;
|
|
2720
2835
|
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2721
2836
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuBar, 1); FXMenuBar_hide(arg1); return Qnil; }
|
|
2722
|
-
static VALUE _wrap_FXMenuBar_isComposite(int argc, VALUE *argv, VALUE self) { FXMenuBar *arg1 = (FXMenuBar *) 0 ;
|
|
2837
|
+
static VALUE _wrap_FXMenuBar_isComposite(int argc, VALUE *argv, VALUE self) { FXMenuBar *arg1 = (FXMenuBar *) 0 ; bool result;
|
|
2723
2838
|
VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2724
2839
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuBar, 1);
|
|
2725
|
-
result = (
|
|
2840
|
+
result = (bool)FXMenuBar_isComposite((FXMenuBar const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
2726
2841
|
static VALUE _wrap_FXMenuBar_contains(int argc, VALUE *argv, VALUE self) { FXMenuBar *arg1 = (FXMenuBar *) 0 ; FXint arg2 ;
|
|
2727
|
-
FXint arg3 ;
|
|
2842
|
+
FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
|
|
2728
2843
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
|
|
2729
2844
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuBar, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
|
|
2730
|
-
result = (
|
|
2731
|
-
static VALUE _wrap_FXMenuBar_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXMenuBar *arg1 = (FXMenuBar *) 0 ;
|
|
2732
|
-
|
|
2733
|
-
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2845
|
+
result = (bool)FXMenuBar_contains((FXMenuBar const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
2846
|
+
static VALUE _wrap_FXMenuBar_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXMenuBar *arg1 = (FXMenuBar *) 0 ; bool result;
|
|
2847
|
+
VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2734
2848
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuBar, 1);
|
|
2735
|
-
result = (
|
|
2849
|
+
result = (bool)FXMenuBar_doesSaveUnder((FXMenuBar const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
2736
2850
|
static VALUE _wrap_FXMenuBar_setBackColor(int argc, VALUE *argv, VALUE self) { FXMenuBar *arg1 = (FXMenuBar *) 0 ;
|
|
2737
2851
|
FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
2738
2852
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuBar, 1); arg2 = to_FXColor(argv[0]);
|
|
2739
2853
|
FXMenuBar_setBackColor(arg1,arg2); return Qnil; }
|
|
2854
|
+
static VALUE _wrap_FXMenuBar_tr(int argc, VALUE *argv, VALUE self) { FXMenuBar *arg1 = (FXMenuBar *) 0 ; FXchar *arg2 ;
|
|
2855
|
+
FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
|
|
2856
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
2857
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuBar, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
|
|
2858
|
+
arg3 = StringValuePtr(argv[1]); }
|
|
2859
|
+
result = (FXchar *)FXMenuBar_tr((FXMenuBar const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
|
|
2860
|
+
vresult = rb_str_new2(result); return vresult; }
|
|
2861
|
+
static VALUE _wrap_FXMenuBar_dropEnable(int argc, VALUE *argv, VALUE self) { FXMenuBar *arg1 = (FXMenuBar *) 0 ;
|
|
2862
|
+
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2863
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuBar, 1); FXMenuBar_dropEnable(arg1); return Qnil; }
|
|
2864
|
+
static VALUE _wrap_FXMenuBar_dropDisable(int argc, VALUE *argv, VALUE self) { FXMenuBar *arg1 = (FXMenuBar *) 0 ;
|
|
2865
|
+
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2866
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuBar, 1); FXMenuBar_dropDisable(arg1); return Qnil; }
|
|
2740
2867
|
static VALUE _wrap_FXMenuBar_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXMenuBar *arg1 = (FXMenuBar *) 0 ;
|
|
2741
2868
|
FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
2742
2869
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuBar, 1);
|
|
@@ -2771,38 +2898,43 @@ static VALUE _wrap_FXMenuBar_clearShape(int argc, VALUE *argv, VALUE self) { FXM
|
|
|
2771
2898
|
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2772
2899
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuBar, 1); FXMenuBar_clearShape(arg1); return Qnil; }
|
|
2773
2900
|
static VALUE _wrap_FXMenuBar_dock__SWIG_0(int argc, VALUE *argv, VALUE self) { FXMenuBar *arg1 = (FXMenuBar *) 0 ;
|
|
2774
|
-
FXDockSite *arg2 = (FXDockSite *) 0 ; FXWindow *arg3 = (FXWindow *) 0 ;
|
|
2775
|
-
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
2901
|
+
FXDockSite *arg2 = (FXDockSite *) 0 ; FXWindow *arg3 = (FXWindow *) 0 ; FXbool arg4 = (FXbool) 0 ;
|
|
2902
|
+
if ((argc < 1) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
2776
2903
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuBar, 1);
|
|
2777
2904
|
SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXDockSite, 1); if (argc > 1) {
|
|
2778
|
-
SWIG_ConvertPtr(argv[1], (void **) &arg3, SWIGTYPE_p_FXWindow, 1); }
|
|
2905
|
+
SWIG_ConvertPtr(argv[1], (void **) &arg3, SWIGTYPE_p_FXWindow, 1); } if (argc > 2) { arg4 = to_FXbool(argv[2]); }
|
|
2906
|
+
FXMenuBar_dock(arg1,arg2,arg3,arg4); return Qnil; }
|
|
2779
2907
|
static VALUE _wrap_FXMenuBar_dock__SWIG_1(int argc, VALUE *argv, VALUE self) { FXMenuBar *arg1 = (FXMenuBar *) 0 ;
|
|
2780
|
-
FXDockSite *arg2 = (FXDockSite *) 0 ; FXint arg3 ; FXint arg4 ; if ((argc <
|
|
2781
|
-
rb_raise(rb_eArgError, "wrong # of arguments(%d for
|
|
2908
|
+
FXDockSite *arg2 = (FXDockSite *) 0 ; FXint arg3 ; FXint arg4 ; FXbool arg5 ; if ((argc < 4) || (argc > 4))
|
|
2909
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 4)",argc);
|
|
2782
2910
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuBar, 1);
|
|
2783
2911
|
SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXDockSite, 1); arg3 = NUM2INT(argv[1]); arg4 = NUM2INT(argv[2]);
|
|
2784
|
-
FXMenuBar_dock(arg1,arg2,arg3,arg4); return Qnil; }
|
|
2785
|
-
static VALUE _wrap_FXMenuBar_dock(int nargs, VALUE *args, VALUE self) { int argc; VALUE argv[
|
|
2786
|
-
argv[0] = self; for (ii = 1; (ii < argc) && (ii <
|
|
2912
|
+
arg5 = to_FXbool(argv[3]); FXMenuBar_dock(arg1,arg2,arg3,arg4,arg5); return Qnil; }
|
|
2913
|
+
static VALUE _wrap_FXMenuBar_dock(int nargs, VALUE *args, VALUE self) { int argc; VALUE argv[6]; int ii; argc = nargs + 1;
|
|
2914
|
+
argv[0] = self; for (ii = 1; (ii < argc) && (ii < 5); ii++) { argv[ii] = args[ii-1]; } if ((argc >= 2) && (argc <= 4)) {
|
|
2787
2915
|
int _v; { void *ptr;
|
|
2788
2916
|
_v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXMenuBar, 0) != -1)) ? 1 : 0; }
|
|
2789
2917
|
if (_v) { { void *ptr;
|
|
2790
2918
|
_v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXDockSite, 0) != -1)) ? 1 : 0; }
|
|
2791
2919
|
if (_v) { if (argc <= 2) { return _wrap_FXMenuBar_dock__SWIG_0(nargs, args, self);} { void *ptr;
|
|
2792
2920
|
_v = (NIL_P(argv[2]) || (TYPE(argv[2]) == T_DATA && SWIG_ConvertPtr(argv[2], &ptr, SWIGTYPE_p_FXWindow, 0) != -1)) ? 1 : 0; }
|
|
2793
|
-
if (_v) { return _wrap_FXMenuBar_dock__SWIG_0(nargs, args, self);}
|
|
2921
|
+
if (_v) { if (argc <= 3) { return _wrap_FXMenuBar_dock__SWIG_0(nargs, args, self);} {
|
|
2922
|
+
_v = (argv[3] == Qtrue || argv[3] == Qfalse) ? 1 : 0; } if (_v) {
|
|
2923
|
+
return _wrap_FXMenuBar_dock__SWIG_0(nargs, args, self);} } } } } if (argc == 5) { int _v; {
|
|
2794
2924
|
void *ptr;
|
|
2795
2925
|
_v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXMenuBar, 0) != -1)) ? 1 : 0; }
|
|
2796
2926
|
if (_v) { { void *ptr;
|
|
2797
2927
|
_v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXDockSite, 0) != -1)) ? 1 : 0; }
|
|
2798
2928
|
if (_v) { { _v = ((TYPE(argv[2]) == T_FIXNUM) || (TYPE(argv[2]) == T_BIGNUM)) ? 1 : 0; } if (_v) { {
|
|
2799
|
-
_v = ((TYPE(argv[3]) == T_FIXNUM) || (TYPE(argv[3]) == T_BIGNUM)) ? 1 : 0; } if (_v) {
|
|
2800
|
-
|
|
2929
|
+
_v = ((TYPE(argv[3]) == T_FIXNUM) || (TYPE(argv[3]) == T_BIGNUM)) ? 1 : 0; } if (_v) { {
|
|
2930
|
+
_v = (argv[4] == Qtrue || argv[4] == Qfalse) ? 1 : 0; } if (_v) {
|
|
2931
|
+
return _wrap_FXMenuBar_dock__SWIG_1(nargs, args, self);} } } } } }
|
|
2801
2932
|
rb_raise(rb_eArgError, "No matching function for overloaded 'FXMenuBar_dock'"); return Qnil; }
|
|
2802
2933
|
static VALUE _wrap_FXMenuBar_undock(int argc, VALUE *argv, VALUE self) { FXMenuBar *arg1 = (FXMenuBar *) 0 ; FXint arg2 ;
|
|
2803
|
-
FXint arg3 ; if ((argc < 2) || (argc >
|
|
2934
|
+
FXint arg3 ; FXbool arg4 = (FXbool) 0 ; if ((argc < 2) || (argc > 3))
|
|
2935
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
|
|
2804
2936
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuBar, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
|
|
2805
|
-
FXMenuBar_undock(arg1,arg2,arg3); return Qnil; }
|
|
2937
|
+
if (argc > 2) { arg4 = to_FXbool(argv[2]); } FXMenuBar_undock(arg1,arg2,arg3,arg4); return Qnil; }
|
|
2806
2938
|
static VALUE _wrap_FXMenuCheck_onPaint(int argc, VALUE *argv, VALUE self) { FXMenuCheck *arg1 = (FXMenuCheck *) 0 ;
|
|
2807
2939
|
FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
|
|
2808
2940
|
if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
|
|
@@ -2977,10 +3109,10 @@ static VALUE _wrap_FXMenuCheck_getHeightForWidth(int argc, VALUE *argv, VALUE se
|
|
|
2977
3109
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCheck, 1); arg2 = NUM2INT(argv[0]);
|
|
2978
3110
|
result = (FXint)FXMenuCheck_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
|
|
2979
3111
|
static VALUE _wrap_FXMenuCheck_canFocus(int argc, VALUE *argv, VALUE self) { FXMenuCheck *arg1 = (FXMenuCheck *) 0 ;
|
|
2980
|
-
|
|
3112
|
+
bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
2981
3113
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2982
3114
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCheck, 1);
|
|
2983
|
-
result = (
|
|
3115
|
+
result = (bool)FXMenuCheck_canFocus((FXMenuCheck const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
2984
3116
|
static VALUE _wrap_FXMenuCheck_setFocus(int argc, VALUE *argv, VALUE self) { FXMenuCheck *arg1 = (FXMenuCheck *) 0 ;
|
|
2985
3117
|
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2986
3118
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCheck, 1); FXMenuCheck_setFocus(arg1); return Qnil; }
|
|
@@ -3036,25 +3168,38 @@ static VALUE _wrap_FXMenuCheck_hide(int argc, VALUE *argv, VALUE self) { FXMenuC
|
|
|
3036
3168
|
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
3037
3169
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCheck, 1); FXMenuCheck_hide(arg1); return Qnil; }
|
|
3038
3170
|
static VALUE _wrap_FXMenuCheck_isComposite(int argc, VALUE *argv, VALUE self) { FXMenuCheck *arg1 = (FXMenuCheck *) 0 ;
|
|
3039
|
-
|
|
3171
|
+
bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
3040
3172
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
3041
3173
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCheck, 1);
|
|
3042
|
-
result = (
|
|
3174
|
+
result = (bool)FXMenuCheck_isComposite((FXMenuCheck const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
3043
3175
|
static VALUE _wrap_FXMenuCheck_contains(int argc, VALUE *argv, VALUE self) { FXMenuCheck *arg1 = (FXMenuCheck *) 0 ;
|
|
3044
|
-
FXint arg2 ; FXint arg3 ;
|
|
3176
|
+
FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
|
|
3045
3177
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
|
|
3046
3178
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCheck, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
|
|
3047
|
-
result = (
|
|
3179
|
+
result = (bool)FXMenuCheck_contains((FXMenuCheck const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
|
|
3048
3180
|
return vresult; }
|
|
3049
3181
|
static VALUE _wrap_FXMenuCheck_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXMenuCheck *arg1 = (FXMenuCheck *) 0 ;
|
|
3050
|
-
|
|
3182
|
+
bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
3051
3183
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
3052
3184
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCheck, 1);
|
|
3053
|
-
result = (
|
|
3185
|
+
result = (bool)FXMenuCheck_doesSaveUnder((FXMenuCheck const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
3054
3186
|
static VALUE _wrap_FXMenuCheck_setBackColor(int argc, VALUE *argv, VALUE self) { FXMenuCheck *arg1 = (FXMenuCheck *) 0 ;
|
|
3055
3187
|
FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
3056
3188
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCheck, 1); arg2 = to_FXColor(argv[0]);
|
|
3057
3189
|
FXMenuCheck_setBackColor(arg1,arg2); return Qnil; }
|
|
3190
|
+
static VALUE _wrap_FXMenuCheck_tr(int argc, VALUE *argv, VALUE self) { FXMenuCheck *arg1 = (FXMenuCheck *) 0 ; FXchar *arg2 ;
|
|
3191
|
+
FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
|
|
3192
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
3193
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCheck, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
|
|
3194
|
+
arg3 = StringValuePtr(argv[1]); }
|
|
3195
|
+
result = (FXchar *)FXMenuCheck_tr((FXMenuCheck const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
|
|
3196
|
+
vresult = rb_str_new2(result); return vresult; }
|
|
3197
|
+
static VALUE _wrap_FXMenuCheck_dropEnable(int argc, VALUE *argv, VALUE self) { FXMenuCheck *arg1 = (FXMenuCheck *) 0 ;
|
|
3198
|
+
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
3199
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCheck, 1); FXMenuCheck_dropEnable(arg1); return Qnil; }
|
|
3200
|
+
static VALUE _wrap_FXMenuCheck_dropDisable(int argc, VALUE *argv, VALUE self) { FXMenuCheck *arg1 = (FXMenuCheck *) 0 ;
|
|
3201
|
+
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
3202
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCheck, 1); FXMenuCheck_dropDisable(arg1); return Qnil; }
|
|
3058
3203
|
static VALUE _wrap_FXMenuCheck_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXMenuCheck *arg1 = (FXMenuCheck *) 0 ;
|
|
3059
3204
|
FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
3060
3205
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuCheck, 1);
|
|
@@ -3265,10 +3410,10 @@ static VALUE _wrap_FXMenuRadio_getHeightForWidth(int argc, VALUE *argv, VALUE se
|
|
|
3265
3410
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuRadio, 1); arg2 = NUM2INT(argv[0]);
|
|
3266
3411
|
result = (FXint)FXMenuRadio_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
|
|
3267
3412
|
static VALUE _wrap_FXMenuRadio_canFocus(int argc, VALUE *argv, VALUE self) { FXMenuRadio *arg1 = (FXMenuRadio *) 0 ;
|
|
3268
|
-
|
|
3413
|
+
bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
3269
3414
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
3270
3415
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuRadio, 1);
|
|
3271
|
-
result = (
|
|
3416
|
+
result = (bool)FXMenuRadio_canFocus((FXMenuRadio const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
3272
3417
|
static VALUE _wrap_FXMenuRadio_setFocus(int argc, VALUE *argv, VALUE self) { FXMenuRadio *arg1 = (FXMenuRadio *) 0 ;
|
|
3273
3418
|
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
3274
3419
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuRadio, 1); FXMenuRadio_setFocus(arg1); return Qnil; }
|
|
@@ -3324,25 +3469,38 @@ static VALUE _wrap_FXMenuRadio_hide(int argc, VALUE *argv, VALUE self) { FXMenuR
|
|
|
3324
3469
|
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
3325
3470
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuRadio, 1); FXMenuRadio_hide(arg1); return Qnil; }
|
|
3326
3471
|
static VALUE _wrap_FXMenuRadio_isComposite(int argc, VALUE *argv, VALUE self) { FXMenuRadio *arg1 = (FXMenuRadio *) 0 ;
|
|
3327
|
-
|
|
3472
|
+
bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
3328
3473
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
3329
3474
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuRadio, 1);
|
|
3330
|
-
result = (
|
|
3475
|
+
result = (bool)FXMenuRadio_isComposite((FXMenuRadio const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
3331
3476
|
static VALUE _wrap_FXMenuRadio_contains(int argc, VALUE *argv, VALUE self) { FXMenuRadio *arg1 = (FXMenuRadio *) 0 ;
|
|
3332
|
-
FXint arg2 ; FXint arg3 ;
|
|
3477
|
+
FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
|
|
3333
3478
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
|
|
3334
3479
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuRadio, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
|
|
3335
|
-
result = (
|
|
3480
|
+
result = (bool)FXMenuRadio_contains((FXMenuRadio const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
|
|
3336
3481
|
return vresult; }
|
|
3337
3482
|
static VALUE _wrap_FXMenuRadio_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXMenuRadio *arg1 = (FXMenuRadio *) 0 ;
|
|
3338
|
-
|
|
3483
|
+
bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
3339
3484
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
3340
3485
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuRadio, 1);
|
|
3341
|
-
result = (
|
|
3486
|
+
result = (bool)FXMenuRadio_doesSaveUnder((FXMenuRadio const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
3342
3487
|
static VALUE _wrap_FXMenuRadio_setBackColor(int argc, VALUE *argv, VALUE self) { FXMenuRadio *arg1 = (FXMenuRadio *) 0 ;
|
|
3343
3488
|
FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
3344
3489
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuRadio, 1); arg2 = to_FXColor(argv[0]);
|
|
3345
3490
|
FXMenuRadio_setBackColor(arg1,arg2); return Qnil; }
|
|
3491
|
+
static VALUE _wrap_FXMenuRadio_tr(int argc, VALUE *argv, VALUE self) { FXMenuRadio *arg1 = (FXMenuRadio *) 0 ; FXchar *arg2 ;
|
|
3492
|
+
FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
|
|
3493
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
3494
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuRadio, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
|
|
3495
|
+
arg3 = StringValuePtr(argv[1]); }
|
|
3496
|
+
result = (FXchar *)FXMenuRadio_tr((FXMenuRadio const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
|
|
3497
|
+
vresult = rb_str_new2(result); return vresult; }
|
|
3498
|
+
static VALUE _wrap_FXMenuRadio_dropEnable(int argc, VALUE *argv, VALUE self) { FXMenuRadio *arg1 = (FXMenuRadio *) 0 ;
|
|
3499
|
+
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
3500
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuRadio, 1); FXMenuRadio_dropEnable(arg1); return Qnil; }
|
|
3501
|
+
static VALUE _wrap_FXMenuRadio_dropDisable(int argc, VALUE *argv, VALUE self) { FXMenuRadio *arg1 = (FXMenuRadio *) 0 ;
|
|
3502
|
+
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
3503
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuRadio, 1); FXMenuRadio_dropDisable(arg1); return Qnil; }
|
|
3346
3504
|
static VALUE _wrap_FXMenuRadio_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXMenuRadio *arg1 = (FXMenuRadio *) 0 ;
|
|
3347
3505
|
FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
3348
3506
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMenuRadio, 1);
|
|
@@ -3384,9 +3542,6 @@ static VALUE _wrap_FXMenuRadio_clearShape(int argc, VALUE *argv, VALUE self) { F
|
|
|
3384
3542
|
static void *_p_FXMenuBarTo_p_FXToolBar(void *x) {
|
|
3385
3543
|
return (void *)((FXToolBar *) ((FXMenuBar *) x));
|
|
3386
3544
|
}
|
|
3387
|
-
static void *_p_FXGradientBarTo_p_FXId(void *x) {
|
|
3388
|
-
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXGradientBar *) x));
|
|
3389
|
-
}
|
|
3390
3545
|
static void *_p_FXShutterItemTo_p_FXId(void *x) {
|
|
3391
3546
|
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
|
|
3392
3547
|
}
|
|
@@ -3492,6 +3647,9 @@ static void *_p_FXGroupBoxTo_p_FXId(void *x) {
|
|
|
3492
3647
|
static void *_p_FXMenuCascadeTo_p_FXId(void *x) {
|
|
3493
3648
|
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXMenuCaption *) ((FXMenuCascade *) x));
|
|
3494
3649
|
}
|
|
3650
|
+
static void *_p_FXColorRingTo_p_FXId(void *x) {
|
|
3651
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorRing *) x));
|
|
3652
|
+
}
|
|
3495
3653
|
static void *_p_FXDockHandlerTo_p_FXId(void *x) {
|
|
3496
3654
|
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXDockHandler *) x));
|
|
3497
3655
|
}
|
|
@@ -3528,9 +3686,6 @@ static void *_p_FXFrameTo_p_FXId(void *x) {
|
|
|
3528
3686
|
static void *_p_FX7SegmentTo_p_FXId(void *x) {
|
|
3529
3687
|
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FX7Segment *) x));
|
|
3530
3688
|
}
|
|
3531
|
-
static void *_p_FXDockTitleTo_p_FXId(void *x) {
|
|
3532
|
-
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
|
|
3533
|
-
}
|
|
3534
3689
|
static void *_p_FXStatusBarTo_p_FXId(void *x) {
|
|
3535
3690
|
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
|
|
3536
3691
|
}
|
|
@@ -3543,6 +3698,9 @@ static void *_p_FXCURCursorTo_p_FXId(void *x) {
|
|
|
3543
3698
|
static void *_p_FXCursorTo_p_FXId(void *x) {
|
|
3544
3699
|
return (void *)((FXId *) ((FXCursor *) x));
|
|
3545
3700
|
}
|
|
3701
|
+
static void *_p_FXKnobTo_p_FXId(void *x) {
|
|
3702
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXKnob *) x));
|
|
3703
|
+
}
|
|
3546
3704
|
static void *_p_FXMenuCommandTo_p_FXId(void *x) {
|
|
3547
3705
|
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXMenuCaption *) ((FXMenuCommand *) x));
|
|
3548
3706
|
}
|
|
@@ -3642,9 +3800,6 @@ static void *_p_FXScrollPaneTo_p_FXId(void *x) {
|
|
|
3642
3800
|
static void *_p_FXDocumentTo_p_FXObject(void *x) {
|
|
3643
3801
|
return (void *)((FXObject *) ((FXDocument *) x));
|
|
3644
3802
|
}
|
|
3645
|
-
static void *_p_FXGradientBarTo_p_FXObject(void *x) {
|
|
3646
|
-
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXGradientBar *) x));
|
|
3647
|
-
}
|
|
3648
3803
|
static void *_p_FXRegistryTo_p_FXObject(void *x) {
|
|
3649
3804
|
return (void *)((FXObject *) (FXDict *)(FXSettings *) ((FXRegistry *) x));
|
|
3650
3805
|
}
|
|
@@ -3708,6 +3863,9 @@ static void *_p_FXAppTo_p_FXObject(void *x) {
|
|
|
3708
3863
|
static void *_p_FXHeaderTo_p_FXObject(void *x) {
|
|
3709
3864
|
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXHeader *) x));
|
|
3710
3865
|
}
|
|
3866
|
+
static void *_p_FXTranslatorTo_p_FXObject(void *x) {
|
|
3867
|
+
return (void *)((FXObject *) ((FXTranslator *) x));
|
|
3868
|
+
}
|
|
3711
3869
|
static void *_p_FX4SplitterTo_p_FXObject(void *x) {
|
|
3712
3870
|
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FX4Splitter *) x));
|
|
3713
3871
|
}
|
|
@@ -3774,6 +3932,9 @@ static void *_p_FXGroupBoxTo_p_FXObject(void *x) {
|
|
|
3774
3932
|
static void *_p_FXMenuCascadeTo_p_FXObject(void *x) {
|
|
3775
3933
|
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXMenuCaption *) ((FXMenuCascade *) x));
|
|
3776
3934
|
}
|
|
3935
|
+
static void *_p_FXColorRingTo_p_FXObject(void *x) {
|
|
3936
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorRing *) x));
|
|
3937
|
+
}
|
|
3777
3938
|
static void *_p_FXDebugTargetTo_p_FXObject(void *x) {
|
|
3778
3939
|
return (void *)((FXObject *) ((FXDebugTarget *) x));
|
|
3779
3940
|
}
|
|
@@ -3816,9 +3977,6 @@ static void *_p_FXFrameTo_p_FXObject(void *x) {
|
|
|
3816
3977
|
static void *_p_FX7SegmentTo_p_FXObject(void *x) {
|
|
3817
3978
|
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FX7Segment *) x));
|
|
3818
3979
|
}
|
|
3819
|
-
static void *_p_FXDockTitleTo_p_FXObject(void *x) {
|
|
3820
|
-
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
|
|
3821
|
-
}
|
|
3822
3980
|
static void *_p_FXStringDictTo_p_FXObject(void *x) {
|
|
3823
3981
|
return (void *)((FXObject *) (FXDict *) ((FXStringDict *) x));
|
|
3824
3982
|
}
|
|
@@ -3840,6 +3998,9 @@ static void *_p_FXCURCursorTo_p_FXObject(void *x) {
|
|
|
3840
3998
|
static void *_p_FXGIFCursorTo_p_FXObject(void *x) {
|
|
3841
3999
|
return (void *)((FXObject *) (FXId *)(FXCursor *) ((FXGIFCursor *) x));
|
|
3842
4000
|
}
|
|
4001
|
+
static void *_p_FXKnobTo_p_FXObject(void *x) {
|
|
4002
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXKnob *) x));
|
|
4003
|
+
}
|
|
3843
4004
|
static void *_p_FXMenuCommandTo_p_FXObject(void *x) {
|
|
3844
4005
|
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXMenuCaption *) ((FXMenuCommand *) x));
|
|
3845
4006
|
}
|
|
@@ -3906,12 +4067,12 @@ static void *_p_FXRulerTo_p_FXObject(void *x) {
|
|
|
3906
4067
|
static void *_p_FXDialTo_p_FXObject(void *x) {
|
|
3907
4068
|
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXDial *) x));
|
|
3908
4069
|
}
|
|
3909
|
-
static void *_p_FXHorizontalFrameTo_p_FXObject(void *x) {
|
|
3910
|
-
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
|
|
3911
|
-
}
|
|
3912
4070
|
static void *_p_FXVerticalFrameTo_p_FXObject(void *x) {
|
|
3913
4071
|
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
|
|
3914
4072
|
}
|
|
4073
|
+
static void *_p_FXHorizontalFrameTo_p_FXObject(void *x) {
|
|
4074
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
|
|
4075
|
+
}
|
|
3915
4076
|
static void *_p_FXImageViewTo_p_FXObject(void *x) {
|
|
3916
4077
|
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXImageView *) x));
|
|
3917
4078
|
}
|
|
@@ -3966,9 +4127,6 @@ static void *_p_FXMenuBarTo_p_FXDockBar(void *x) {
|
|
|
3966
4127
|
static void *_p_FXToolBarTo_p_FXDockBar(void *x) {
|
|
3967
4128
|
return (void *)((FXDockBar *) ((FXToolBar *) x));
|
|
3968
4129
|
}
|
|
3969
|
-
static void *_p_FXGradientBarTo_p_FXWindow(void *x) {
|
|
3970
|
-
return (void *)((FXWindow *) (FXFrame *) ((FXGradientBar *) x));
|
|
3971
|
-
}
|
|
3972
4130
|
static void *_p_FXShutterItemTo_p_FXWindow(void *x) {
|
|
3973
4131
|
return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
|
|
3974
4132
|
}
|
|
@@ -4071,6 +4229,9 @@ static void *_p_FXMenuCascadeTo_p_FXWindow(void *x) {
|
|
|
4071
4229
|
static void *_p_FXGroupBoxTo_p_FXWindow(void *x) {
|
|
4072
4230
|
return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXGroupBox *) x));
|
|
4073
4231
|
}
|
|
4232
|
+
static void *_p_FXColorRingTo_p_FXWindow(void *x) {
|
|
4233
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXColorRing *) x));
|
|
4234
|
+
}
|
|
4074
4235
|
static void *_p_FXDockHandlerTo_p_FXWindow(void *x) {
|
|
4075
4236
|
return (void *)((FXWindow *) (FXFrame *) ((FXDockHandler *) x));
|
|
4076
4237
|
}
|
|
@@ -4101,12 +4262,12 @@ static void *_p_FXFrameTo_p_FXWindow(void *x) {
|
|
|
4101
4262
|
static void *_p_FX7SegmentTo_p_FXWindow(void *x) {
|
|
4102
4263
|
return (void *)((FXWindow *) (FXFrame *) ((FX7Segment *) x));
|
|
4103
4264
|
}
|
|
4104
|
-
static void *_p_FXDockTitleTo_p_FXWindow(void *x) {
|
|
4105
|
-
return (void *)((FXWindow *) (FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
|
|
4106
|
-
}
|
|
4107
4265
|
static void *_p_FXStatusBarTo_p_FXWindow(void *x) {
|
|
4108
4266
|
return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
|
|
4109
4267
|
}
|
|
4268
|
+
static void *_p_FXKnobTo_p_FXWindow(void *x) {
|
|
4269
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXKnob *) x));
|
|
4270
|
+
}
|
|
4110
4271
|
static void *_p_FXMenuCommandTo_p_FXWindow(void *x) {
|
|
4111
4272
|
return (void *)((FXWindow *) (FXMenuCaption *) ((FXMenuCommand *) x));
|
|
4112
4273
|
}
|
|
@@ -4356,9 +4517,6 @@ static void *_p_FXFileStreamTo_p_FXStream(void *x) {
|
|
|
4356
4517
|
static void *_p_FXMemoryStreamTo_p_FXStream(void *x) {
|
|
4357
4518
|
return (void *)((FXStream *) ((FXMemoryStream *) x));
|
|
4358
4519
|
}
|
|
4359
|
-
static void *_p_FXGradientBarTo_p_FXDrawable(void *x) {
|
|
4360
|
-
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXGradientBar *) x));
|
|
4361
|
-
}
|
|
4362
4520
|
static void *_p_FXShutterItemTo_p_FXDrawable(void *x) {
|
|
4363
4521
|
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
|
|
4364
4522
|
}
|
|
@@ -4461,6 +4619,9 @@ static void *_p_FXGroupBoxTo_p_FXDrawable(void *x) {
|
|
|
4461
4619
|
static void *_p_FXMenuCascadeTo_p_FXDrawable(void *x) {
|
|
4462
4620
|
return (void *)((FXDrawable *) (FXWindow *)(FXMenuCaption *) ((FXMenuCascade *) x));
|
|
4463
4621
|
}
|
|
4622
|
+
static void *_p_FXColorRingTo_p_FXDrawable(void *x) {
|
|
4623
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorRing *) x));
|
|
4624
|
+
}
|
|
4464
4625
|
static void *_p_FXDockHandlerTo_p_FXDrawable(void *x) {
|
|
4465
4626
|
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXDockHandler *) x));
|
|
4466
4627
|
}
|
|
@@ -4491,12 +4652,12 @@ static void *_p_FXFrameTo_p_FXDrawable(void *x) {
|
|
|
4491
4652
|
static void *_p_FX7SegmentTo_p_FXDrawable(void *x) {
|
|
4492
4653
|
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FX7Segment *) x));
|
|
4493
4654
|
}
|
|
4494
|
-
static void *_p_FXDockTitleTo_p_FXDrawable(void *x) {
|
|
4495
|
-
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
|
|
4496
|
-
}
|
|
4497
4655
|
static void *_p_FXStatusBarTo_p_FXDrawable(void *x) {
|
|
4498
4656
|
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
|
|
4499
4657
|
}
|
|
4658
|
+
static void *_p_FXKnobTo_p_FXDrawable(void *x) {
|
|
4659
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXKnob *) x));
|
|
4660
|
+
}
|
|
4500
4661
|
static void *_p_FXMenuCommandTo_p_FXDrawable(void *x) {
|
|
4501
4662
|
return (void *)((FXDrawable *) (FXWindow *)(FXMenuCaption *) ((FXMenuCommand *) x));
|
|
4502
4663
|
}
|
|
@@ -4682,22 +4843,22 @@ static void *_p_FXScrollPaneTo_p_FXMenuPane(void *x) {
|
|
|
4682
4843
|
}
|
|
4683
4844
|
static swig_type_info _swigt__p_FXToolBar[] = {{"_p_FXToolBar", 0, "FXToolBar *", 0, 0, 0, 0},{"_p_FXMenuBar", _p_FXMenuBarTo_p_FXToolBar, 0, 0, 0, 0, 0},{"_p_FXToolBar", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4684
4845
|
static swig_type_info _swigt__p_FXDockSite[] = {{"_p_FXDockSite", 0, "FXDockSite *", 0, 0, 0, 0},{"_p_FXDockSite", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4685
|
-
static swig_type_info _swigt__p_FXObject[] = {{"_p_FXObject", 0, "FXObject *", 0, 0, 0, 0},{"_p_FXDocument", _p_FXDocumentTo_p_FXObject, 0, 0, 0, 0, 0},{"
|
|
4846
|
+
static swig_type_info _swigt__p_FXObject[] = {{"_p_FXObject", 0, "FXObject *", 0, 0, 0, 0},{"_p_FXDocument", _p_FXDocumentTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRegistry", _p_FXRegistryTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXHeaderItem", _p_FXHeaderItemTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXColorBar", _p_FXColorBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMenuCheck", _p_FXMenuCheckTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTabBar", _p_FXTabBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXToolBarTab", _p_FXToolBarTabTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDriveBox", _p_FXDriveBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXIconDict", _p_FXIconDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFileDict", _p_FXFileDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRecentFiles", _p_FXRecentFilesTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollCorner", _p_FXScrollCornerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDrawable", _p_FXDrawableTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMenuPane", _p_FXMenuPaneTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFont", _p_FXFontTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXHeader", _p_FXHeaderTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTranslator", _p_FXTranslatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTabBook", _p_FXTabBookTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXApp", _p_FXAppTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXImageFrame", _p_FXImageFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMenuSeparator", _p_FXMenuSeparatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXKnob", _p_FXKnobTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXProgressBar", _p_FXProgressBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXToolTip", _p_FXToolTipTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDict", _p_FXDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXBitmapFrame", _p_FXBitmapFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSlider", _p_FXSliderTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRealSlider", _p_FXRealSliderTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSettings", _p_FXSettingsTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDockSite", _p_FXDockSiteTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMenuCascade", _p_FXMenuCascadeTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXColorRing", _p_FXColorRingTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDataTarget", _p_FXDataTargetTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDebugTarget", _p_FXDebugTargetTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDockHandler", _p_FXDockHandlerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTreeListBox", _p_FXTreeListBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXListBox", _p_FXListBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXCanvas", _p_FXCanvasTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXId", _p_FXIdTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXToolBarGrip", _p_FXToolBarGripTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollBar", _p_FXScrollBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXVisual", _p_FXVisualTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FX7Segment", _p_FX7SegmentTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXStringDict", _p_FXStringDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDelegator", _p_FXDelegatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXAccelTable", _p_FXAccelTableTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXObject", 0, 0, 0, 0, 0, 0},{"_p_FXCursor", _p_FXCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXCURCursor", _p_FXCURCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXGIFCursor", _p_FXGIFCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMenuCommand", _p_FXMenuCommandTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRealSpinner", _p_FXRealSpinnerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMenuBar", _p_FXMenuBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMenuCaption", _p_FXMenuCaptionTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMenuTitle", _p_FXMenuTitleTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDockBar", _p_FXDockBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMenuRadio", _p_FXMenuRadioTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXColorWell", _p_FXColorWellTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDragCorner", _p_FXDragCornerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRuler", _p_FXRulerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXImageView", _p_FXImageViewTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFontSelector", _p_FXFontSelectorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXColorSelector", _p_FXColorSelectorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFileSelector", _p_FXFileSelectorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDirSelector", _p_FXDirSelectorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXToolBarShell", _p_FXToolBarShellTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXToolBar", _p_FXToolBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollPane", _p_FXScrollPaneTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDirBox", _p_FXDirBoxTo_p_FXObject, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4686
4847
|
static swig_type_info _swigt__p_FXPopup[] = {{"_p_FXPopup", 0, "FXPopup *", 0, 0, 0, 0},{"_p_FXPopup", 0, 0, 0, 0, 0, 0},{"_p_FXMenuPane", _p_FXMenuPaneTo_p_FXPopup, 0, 0, 0, 0, 0},{"_p_FXScrollPane", _p_FXScrollPaneTo_p_FXPopup, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4687
4848
|
static swig_type_info _swigt__p_FXMenuCaption[] = {{"_p_FXMenuCaption", 0, "FXMenuCaption *", 0, 0, 0, 0},{"_p_FXMenuCaption", 0, 0, 0, 0, 0, 0},{"_p_FXMenuCommand", _p_FXMenuCommandTo_p_FXMenuCaption, 0, 0, 0, 0, 0},{"_p_FXMenuCheck", _p_FXMenuCheckTo_p_FXMenuCaption, 0, 0, 0, 0, 0},{"_p_FXMenuRadio", _p_FXMenuRadioTo_p_FXMenuCaption, 0, 0, 0, 0, 0},{"_p_FXMenuTitle", _p_FXMenuTitleTo_p_FXMenuCaption, 0, 0, 0, 0, 0},{"_p_FXMenuCascade", _p_FXMenuCascadeTo_p_FXMenuCaption, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4688
4849
|
static swig_type_info _swigt__p_FXDockBar[] = {{"_p_FXDockBar", 0, "FXDockBar *", 0, 0, 0, 0},{"_p_FXMenuBar", _p_FXMenuBarTo_p_FXDockBar, 0, 0, 0, 0, 0},{"_p_FXDockBar", 0, 0, 0, 0, 0, 0},{"_p_FXToolBar", _p_FXToolBarTo_p_FXDockBar, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4689
|
-
static swig_type_info _swigt__p_FXWindow[] = {{"_p_FXWindow", 0, "FXWindow *", 0, 0, 0, 0},{"
|
|
4850
|
+
static swig_type_info _swigt__p_FXWindow[] = {{"_p_FXWindow", 0, "FXWindow *", 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXColorBar", _p_FXColorBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMenuCheck", _p_FXMenuCheckTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTabBar", _p_FXTabBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXToolBarTab", _p_FXToolBarTabTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDriveBox", _p_FXDriveBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollCorner", _p_FXScrollCornerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMenuPane", _p_FXMenuPaneTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXHeader", _p_FXHeaderTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTabBook", _p_FXTabBookTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXImageFrame", _p_FXImageFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMenuSeparator", _p_FXMenuSeparatorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXKnob", _p_FXKnobTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXProgressBar", _p_FXProgressBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXToolTip", _p_FXToolTipTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXBitmapFrame", _p_FXBitmapFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSlider", _p_FXSliderTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXRealSlider", _p_FXRealSliderTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDockSite", _p_FXDockSiteTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMenuCascade", _p_FXMenuCascadeTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXColorRing", _p_FXColorRingTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDockHandler", _p_FXDockHandlerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTreeListBox", _p_FXTreeListBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXListBox", _p_FXListBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXCanvas", _p_FXCanvasTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXToolBarGrip", _p_FXToolBarGripTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollBar", _p_FXScrollBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FX7Segment", _p_FX7SegmentTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMenuCommand", _p_FXMenuCommandTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXRealSpinner", _p_FXRealSpinnerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMenuCaption", _p_FXMenuCaptionTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXWindow", 0, 0, 0, 0, 0, 0},{"_p_FXMenuBar", _p_FXMenuBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMenuTitle", _p_FXMenuTitleTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDockBar", _p_FXDockBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMenuRadio", _p_FXMenuRadioTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXColorWell", _p_FXColorWellTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDragCorner", _p_FXDragCornerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXRuler", _p_FXRulerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXImageView", _p_FXImageViewTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXFontSelector", _p_FXFontSelectorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXColorSelector", _p_FXColorSelectorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXFileSelector", _p_FXFileSelectorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDirSelector", _p_FXDirSelectorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXToolBarShell", _p_FXToolBarShellTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXToolBar", _p_FXToolBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollPane", _p_FXScrollPaneTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDirBox", _p_FXDirBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4690
4851
|
static swig_type_info _swigt__p_FXComposite[] = {{"_p_FXComposite", 0, "FXComposite *", 0, 0, 0, 0},{"_p_FXDriveBox", _p_FXDriveBoxTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXMenuPane", _p_FXMenuPaneTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXMenuBar", _p_FXMenuBarTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXToolBar", _p_FXToolBarTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXComposite", 0, 0, 0, 0, 0, 0},{"_p_FXToolTip", _p_FXToolTipTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXTabBook", _p_FXTabBookTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXRealSpinner", _p_FXRealSpinnerTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXDirBox", _p_FXDirBoxTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXDirSelector", _p_FXDirSelectorTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXFileSelector", _p_FXFileSelectorTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXColorSelector", _p_FXColorSelectorTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXFontSelector", _p_FXFontSelectorTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXDockSite", _p_FXDockSiteTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXListBox", _p_FXListBoxTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXTreeListBox", _p_FXTreeListBoxTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXDockBar", _p_FXDockBarTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXTabBar", _p_FXTabBarTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXImageView", _p_FXImageViewTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXScrollPane", _p_FXScrollPaneTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXToolBarShell", _p_FXToolBarShellTo_p_FXComposite, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4691
4852
|
static swig_type_info _swigt__p_FXScrollPane[] = {{"_p_FXScrollPane", 0, "FXScrollPane *", 0, 0, 0, 0},{"_p_FXScrollPane", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4692
4853
|
static swig_type_info _swigt__p_FXBitmap[] = {{"_p_FXBitmap", 0, "FXBitmap *", 0, 0, 0, 0},{"_p_FXBitmap", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4693
|
-
static swig_type_info _swigt__p_FXId[] = {{"_p_FXId", 0, "FXId *", 0, 0, 0, 0},{"
|
|
4854
|
+
static swig_type_info _swigt__p_FXId[] = {{"_p_FXId", 0, "FXId *", 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXColorBar", _p_FXColorBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMenuCheck", _p_FXMenuCheckTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTabBar", _p_FXTabBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXToolBarTab", _p_FXToolBarTabTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDriveBox", _p_FXDriveBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXScrollCorner", _p_FXScrollCornerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDrawable", _p_FXDrawableTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMenuPane", _p_FXMenuPaneTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXFont", _p_FXFontTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXHeader", _p_FXHeaderTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTabBook", _p_FXTabBookTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXImageFrame", _p_FXImageFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMenuSeparator", _p_FXMenuSeparatorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXKnob", _p_FXKnobTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXProgressBar", _p_FXProgressBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXToolTip", _p_FXToolTipTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXBitmapFrame", _p_FXBitmapFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSlider", _p_FXSliderTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXRealSlider", _p_FXRealSliderTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDockSite", _p_FXDockSiteTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMenuCascade", _p_FXMenuCascadeTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXColorRing", _p_FXColorRingTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDockHandler", _p_FXDockHandlerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTreeListBox", _p_FXTreeListBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXListBox", _p_FXListBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXCanvas", _p_FXCanvasTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXId", 0, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXToolBarGrip", _p_FXToolBarGripTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXScrollBar", _p_FXScrollBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXVisual", _p_FXVisualTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FX7Segment", _p_FX7SegmentTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXCursor", _p_FXCursorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXCURCursor", _p_FXCURCursorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXGIFCursor", _p_FXGIFCursorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMenuCommand", _p_FXMenuCommandTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXRealSpinner", _p_FXRealSpinnerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMenuBar", _p_FXMenuBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMenuCaption", _p_FXMenuCaptionTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMenuTitle", _p_FXMenuTitleTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDockBar", _p_FXDockBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMenuRadio", _p_FXMenuRadioTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXColorWell", _p_FXColorWellTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDragCorner", _p_FXDragCornerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXRuler", _p_FXRulerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXImageView", _p_FXImageViewTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXFontSelector", _p_FXFontSelectorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXColorSelector", _p_FXColorSelectorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXFileSelector", _p_FXFileSelectorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDirSelector", _p_FXDirSelectorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXToolBarShell", _p_FXToolBarShellTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXToolBar", _p_FXToolBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXScrollPane", _p_FXScrollPaneTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDirBox", _p_FXDirBoxTo_p_FXId, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4694
4855
|
static swig_type_info _swigt__p_FXFont[] = {{"_p_FXFont", 0, "FXFont *", 0, 0, 0, 0},{"_p_FXFont", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4695
4856
|
static swig_type_info _swigt__p_FXShell[] = {{"_p_FXShell", 0, "FXShell *", 0, 0, 0, 0},{"_p_FXShell", 0, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXShell, 0, 0, 0, 0, 0},{"_p_FXMenuPane", _p_FXMenuPaneTo_p_FXShell, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXShell, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXShell, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXShell, 0, 0, 0, 0, 0},{"_p_FXToolTip", _p_FXToolTipTo_p_FXShell, 0, 0, 0, 0, 0},{"_p_FXToolBarShell", _p_FXToolBarShellTo_p_FXShell, 0, 0, 0, 0, 0},{"_p_FXScrollPane", _p_FXScrollPaneTo_p_FXShell, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4696
4857
|
static swig_type_info _swigt__p_FXMenuTitle[] = {{"_p_FXMenuTitle", 0, "FXMenuTitle *", 0, 0, 0, 0},{"_p_FXMenuTitle", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4697
4858
|
static swig_type_info _swigt__p_FXMenuSeparator[] = {{"_p_FXMenuSeparator", 0, "FXMenuSeparator *", 0, 0, 0, 0},{"_p_FXMenuSeparator", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4698
4859
|
static swig_type_info _swigt__p_FXMenuRadio[] = {{"_p_FXMenuRadio", 0, "FXMenuRadio *", 0, 0, 0, 0},{"_p_FXMenuRadio", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4699
4860
|
static swig_type_info _swigt__p_FXStream[] = {{"_p_FXStream", 0, "FXStream *", 0, 0, 0, 0},{"_p_FXFileStream", _p_FXFileStreamTo_p_FXStream, 0, 0, 0, 0, 0},{"_p_FXMemoryStream", _p_FXMemoryStreamTo_p_FXStream, 0, 0, 0, 0, 0},{"_p_FXStream", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4700
|
-
static swig_type_info _swigt__p_FXDrawable[] = {{"_p_FXDrawable", 0, "FXDrawable *", 0, 0, 0, 0},{"
|
|
4861
|
+
static swig_type_info _swigt__p_FXDrawable[] = {{"_p_FXDrawable", 0, "FXDrawable *", 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXColorBar", _p_FXColorBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMenuCheck", _p_FXMenuCheckTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTabBar", _p_FXTabBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXToolBarTab", _p_FXToolBarTabTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDriveBox", _p_FXDriveBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollCorner", _p_FXScrollCornerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDrawable", 0, 0, 0, 0, 0, 0},{"_p_FXMenuPane", _p_FXMenuPaneTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXHeader", _p_FXHeaderTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTabBook", _p_FXTabBookTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXImageFrame", _p_FXImageFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMenuSeparator", _p_FXMenuSeparatorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXKnob", _p_FXKnobTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXProgressBar", _p_FXProgressBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXToolTip", _p_FXToolTipTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXBitmapFrame", _p_FXBitmapFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSlider", _p_FXSliderTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRealSlider", _p_FXRealSliderTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDockSite", _p_FXDockSiteTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMenuCascade", _p_FXMenuCascadeTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXColorRing", _p_FXColorRingTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDockHandler", _p_FXDockHandlerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTreeListBox", _p_FXTreeListBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXListBox", _p_FXListBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXCanvas", _p_FXCanvasTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXToolBarGrip", _p_FXToolBarGripTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollBar", _p_FXScrollBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FX7Segment", _p_FX7SegmentTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMenuCommand", _p_FXMenuCommandTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRealSpinner", _p_FXRealSpinnerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMenuCaption", _p_FXMenuCaptionTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMenuBar", _p_FXMenuBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMenuTitle", _p_FXMenuTitleTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDockBar", _p_FXDockBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMenuRadio", _p_FXMenuRadioTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXColorWell", _p_FXColorWellTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDragCorner", _p_FXDragCornerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRuler", _p_FXRulerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXImageView", _p_FXImageViewTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXFontSelector", _p_FXFontSelectorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXColorSelector", _p_FXColorSelectorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXFileSelector", _p_FXFileSelectorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDirSelector", _p_FXDirSelectorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXToolBarShell", _p_FXToolBarShellTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXToolBar", _p_FXToolBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollPane", _p_FXScrollPaneTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDirBox", _p_FXDirBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4701
4862
|
static swig_type_info _swigt__p_FXPacker[] = {{"_p_FXPacker", 0, "FXPacker *", 0, 0, 0, 0},{"_p_FXToolBar", _p_FXToolBarTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXDockSite", _p_FXDockSiteTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXListBox", _p_FXListBoxTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXTreeListBox", _p_FXTreeListBoxTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXComboBox", _p_FXComboBoxTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXDockBar", _p_FXDockBarTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXDirBox", _p_FXDirBoxTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXTabBar", _p_FXTabBarTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXTabBook", _p_FXTabBookTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXPacker", 0, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXRealSpinner", _p_FXRealSpinnerTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXDirSelector", _p_FXDirSelectorTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXFileSelector", _p_FXFileSelectorTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXColorSelector", _p_FXColorSelectorTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXFontSelector", _p_FXFontSelectorTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXMenuBar", _p_FXMenuBarTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXDriveBox", _p_FXDriveBoxTo_p_FXPacker, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXPacker, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4702
4863
|
static swig_type_info _swigt__p_FXIcon[] = {{"_p_FXIcon", 0, "FXIcon *", 0, 0, 0, 0},{"_p_FXIcon", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4703
4864
|
static swig_type_info _swigt__p_FXMenuCascade[] = {{"_p_FXMenuCascade", 0, "FXMenuCascade *", 0, 0, 0, 0},{"_p_FXMenuCascade", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
@@ -4789,6 +4950,9 @@ SWIGEXPORT(void) Init_menu(void) {
|
|
|
4789
4950
|
rb_define_method(cFXMenuPane.klass, "contains", VALUEFUNC(_wrap_FXMenuPane_contains), -1);
|
|
4790
4951
|
rb_define_method(cFXMenuPane.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXMenuPane_doesSaveUnder), -1);
|
|
4791
4952
|
rb_define_method(cFXMenuPane.klass, "setBackColor", VALUEFUNC(_wrap_FXMenuPane_setBackColor), -1);
|
|
4953
|
+
rb_define_method(cFXMenuPane.klass, "tr", VALUEFUNC(_wrap_FXMenuPane_tr), -1);
|
|
4954
|
+
rb_define_method(cFXMenuPane.klass, "dropEnable", VALUEFUNC(_wrap_FXMenuPane_dropEnable), -1);
|
|
4955
|
+
rb_define_method(cFXMenuPane.klass, "dropDisable", VALUEFUNC(_wrap_FXMenuPane_dropDisable), -1);
|
|
4792
4956
|
rb_define_method(cFXMenuPane.klass, "setShape", VALUEFUNC(_wrap_FXMenuPane_setShape), -1);
|
|
4793
4957
|
rb_define_method(cFXMenuPane.klass, "clearShape", VALUEFUNC(_wrap_FXMenuPane_clearShape), -1);
|
|
4794
4958
|
rb_define_method(cFXMenuPane.klass, "popup", VALUEFUNC(_wrap_FXMenuPane_popup), -1);
|
|
@@ -4803,13 +4967,13 @@ SWIGEXPORT(void) Init_menu(void) {
|
|
|
4803
4967
|
SWIG_TypeClientData(SWIGTYPE_p_FXScrollPane, (void *) &cFXScrollPane);
|
|
4804
4968
|
rb_define_alloc_func(cFXScrollPane.klass, _wrap_FXScrollPane_allocate);
|
|
4805
4969
|
rb_define_method(cFXScrollPane.klass, "initialize", VALUEFUNC(_wrap_new_FXScrollPane), -1);
|
|
4806
|
-
rb_define_method(cFXScrollPane.klass, "onUpdIncrement", VALUEFUNC(_wrap_FXScrollPane_onUpdIncrement), -1);
|
|
4807
4970
|
rb_define_method(cFXScrollPane.klass, "onCmdIncrement", VALUEFUNC(_wrap_FXScrollPane_onCmdIncrement), -1);
|
|
4808
|
-
rb_define_method(cFXScrollPane.klass, "onUpdDecrement", VALUEFUNC(_wrap_FXScrollPane_onUpdDecrement), -1);
|
|
4809
4971
|
rb_define_method(cFXScrollPane.klass, "onCmdDecrement", VALUEFUNC(_wrap_FXScrollPane_onCmdDecrement), -1);
|
|
4810
4972
|
rb_define_const(cFXScrollPane.klass,"ID_SCROLL_DN", INT2NUM(FXScrollPane::ID_SCROLL_DN));
|
|
4811
4973
|
rb_define_const(cFXScrollPane.klass,"ID_SCROLL_UP", INT2NUM(FXScrollPane::ID_SCROLL_UP));
|
|
4812
4974
|
rb_define_const(cFXScrollPane.klass,"ID_LAST", INT2NUM(FXScrollPane::ID_LAST));
|
|
4975
|
+
rb_define_method(cFXScrollPane.klass, "numVisible", VALUEFUNC(_wrap_FXScrollPane_numVisible), -1);
|
|
4976
|
+
rb_define_method(cFXScrollPane.klass, "numVisible=", VALUEFUNC(_wrap_FXScrollPane_numVisiblee___), -1);
|
|
4813
4977
|
rb_define_method(cFXScrollPane.klass, "getTopItem", VALUEFUNC(_wrap_FXScrollPane_getTopItem), -1);
|
|
4814
4978
|
rb_define_method(cFXScrollPane.klass, "setTopItem", VALUEFUNC(_wrap_FXScrollPane_setTopItem), -1);
|
|
4815
4979
|
rb_define_method(cFXScrollPane.klass, "save", VALUEFUNC(_wrap_FXScrollPane_save), -1);
|
|
@@ -4842,6 +5006,9 @@ SWIGEXPORT(void) Init_menu(void) {
|
|
|
4842
5006
|
rb_define_method(cFXScrollPane.klass, "contains", VALUEFUNC(_wrap_FXScrollPane_contains), -1);
|
|
4843
5007
|
rb_define_method(cFXScrollPane.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXScrollPane_doesSaveUnder), -1);
|
|
4844
5008
|
rb_define_method(cFXScrollPane.klass, "setBackColor", VALUEFUNC(_wrap_FXScrollPane_setBackColor), -1);
|
|
5009
|
+
rb_define_method(cFXScrollPane.klass, "tr", VALUEFUNC(_wrap_FXScrollPane_tr), -1);
|
|
5010
|
+
rb_define_method(cFXScrollPane.klass, "dropEnable", VALUEFUNC(_wrap_FXScrollPane_dropEnable), -1);
|
|
5011
|
+
rb_define_method(cFXScrollPane.klass, "dropDisable", VALUEFUNC(_wrap_FXScrollPane_dropDisable), -1);
|
|
4845
5012
|
rb_define_method(cFXScrollPane.klass, "setShape", VALUEFUNC(_wrap_FXScrollPane_setShape), -1);
|
|
4846
5013
|
rb_define_method(cFXScrollPane.klass, "clearShape", VALUEFUNC(_wrap_FXScrollPane_clearShape), -1);
|
|
4847
5014
|
rb_define_method(cFXScrollPane.klass, "popup", VALUEFUNC(_wrap_FXScrollPane_popup), -1);
|
|
@@ -4863,7 +5030,10 @@ SWIGEXPORT(void) Init_menu(void) {
|
|
|
4863
5030
|
rb_define_method(cFXMenuCaption.klass, "onCmdGetIconValue", VALUEFUNC(_wrap_FXMenuCaption_onCmdGetIconValue), -1);
|
|
4864
5031
|
rb_define_method(cFXMenuCaption.klass, "onCmdSetHelp", VALUEFUNC(_wrap_FXMenuCaption_onCmdSetHelp), -1);
|
|
4865
5032
|
rb_define_method(cFXMenuCaption.klass, "onCmdGetHelp", VALUEFUNC(_wrap_FXMenuCaption_onCmdGetHelp), -1);
|
|
5033
|
+
rb_define_method(cFXMenuCaption.klass, "onCmdSetTip", VALUEFUNC(_wrap_FXMenuCaption_onCmdSetTip), -1);
|
|
5034
|
+
rb_define_method(cFXMenuCaption.klass, "onCmdGetTip", VALUEFUNC(_wrap_FXMenuCaption_onCmdGetTip), -1);
|
|
4866
5035
|
rb_define_method(cFXMenuCaption.klass, "onQueryHelp", VALUEFUNC(_wrap_FXMenuCaption_onQueryHelp), -1);
|
|
5036
|
+
rb_define_method(cFXMenuCaption.klass, "onQueryTip", VALUEFUNC(_wrap_FXMenuCaption_onQueryTip), -1);
|
|
4867
5037
|
rb_define_method(cFXMenuCaption.klass, "setText", VALUEFUNC(_wrap_FXMenuCaption_setText), -1);
|
|
4868
5038
|
rb_define_method(cFXMenuCaption.klass, "getText", VALUEFUNC(_wrap_FXMenuCaption_getText), -1);
|
|
4869
5039
|
rb_define_method(cFXMenuCaption.klass, "setIcon", VALUEFUNC(_wrap_FXMenuCaption_setIcon), -1);
|
|
@@ -4884,6 +5054,8 @@ SWIGEXPORT(void) Init_menu(void) {
|
|
|
4884
5054
|
rb_define_method(cFXMenuCaption.klass, "getShadowColor", VALUEFUNC(_wrap_FXMenuCaption_getShadowColor), -1);
|
|
4885
5055
|
rb_define_method(cFXMenuCaption.klass, "setHelpText", VALUEFUNC(_wrap_FXMenuCaption_setHelpText), -1);
|
|
4886
5056
|
rb_define_method(cFXMenuCaption.klass, "getHelpText", VALUEFUNC(_wrap_FXMenuCaption_getHelpText), -1);
|
|
5057
|
+
rb_define_method(cFXMenuCaption.klass, "tipText=", VALUEFUNC(_wrap_FXMenuCaption_tipTexte___), -1);
|
|
5058
|
+
rb_define_method(cFXMenuCaption.klass, "tipText", VALUEFUNC(_wrap_FXMenuCaption_tipText), -1);
|
|
4887
5059
|
rb_define_method(cFXMenuCaption.klass, "save", VALUEFUNC(_wrap_FXMenuCaption_save), -1);
|
|
4888
5060
|
rb_define_method(cFXMenuCaption.klass, "load", VALUEFUNC(_wrap_FXMenuCaption_load), -1);
|
|
4889
5061
|
rb_define_method(cFXMenuCaption.klass, "create", VALUEFUNC(_wrap_FXMenuCaption_create), -1);
|
|
@@ -4914,6 +5086,9 @@ SWIGEXPORT(void) Init_menu(void) {
|
|
|
4914
5086
|
rb_define_method(cFXMenuCaption.klass, "contains", VALUEFUNC(_wrap_FXMenuCaption_contains), -1);
|
|
4915
5087
|
rb_define_method(cFXMenuCaption.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXMenuCaption_doesSaveUnder), -1);
|
|
4916
5088
|
rb_define_method(cFXMenuCaption.klass, "setBackColor", VALUEFUNC(_wrap_FXMenuCaption_setBackColor), -1);
|
|
5089
|
+
rb_define_method(cFXMenuCaption.klass, "tr", VALUEFUNC(_wrap_FXMenuCaption_tr), -1);
|
|
5090
|
+
rb_define_method(cFXMenuCaption.klass, "dropEnable", VALUEFUNC(_wrap_FXMenuCaption_dropEnable), -1);
|
|
5091
|
+
rb_define_method(cFXMenuCaption.klass, "dropDisable", VALUEFUNC(_wrap_FXMenuCaption_dropDisable), -1);
|
|
4917
5092
|
rb_define_method(cFXMenuCaption.klass, "setShape", VALUEFUNC(_wrap_FXMenuCaption_setShape), -1);
|
|
4918
5093
|
rb_define_method(cFXMenuCaption.klass, "clearShape", VALUEFUNC(_wrap_FXMenuCaption_clearShape), -1);
|
|
4919
5094
|
cFXMenuCaption.mark = (void (*)(void *)) FXRbMenuCaption::markfunc;
|
|
@@ -4961,6 +5136,9 @@ SWIGEXPORT(void) Init_menu(void) {
|
|
|
4961
5136
|
rb_define_method(cFXMenuSeparator.klass, "contains", VALUEFUNC(_wrap_FXMenuSeparator_contains), -1);
|
|
4962
5137
|
rb_define_method(cFXMenuSeparator.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXMenuSeparator_doesSaveUnder), -1);
|
|
4963
5138
|
rb_define_method(cFXMenuSeparator.klass, "setBackColor", VALUEFUNC(_wrap_FXMenuSeparator_setBackColor), -1);
|
|
5139
|
+
rb_define_method(cFXMenuSeparator.klass, "tr", VALUEFUNC(_wrap_FXMenuSeparator_tr), -1);
|
|
5140
|
+
rb_define_method(cFXMenuSeparator.klass, "dropEnable", VALUEFUNC(_wrap_FXMenuSeparator_dropEnable), -1);
|
|
5141
|
+
rb_define_method(cFXMenuSeparator.klass, "dropDisable", VALUEFUNC(_wrap_FXMenuSeparator_dropDisable), -1);
|
|
4964
5142
|
rb_define_method(cFXMenuSeparator.klass, "setShape", VALUEFUNC(_wrap_FXMenuSeparator_setShape), -1);
|
|
4965
5143
|
rb_define_method(cFXMenuSeparator.klass, "clearShape", VALUEFUNC(_wrap_FXMenuSeparator_clearShape), -1);
|
|
4966
5144
|
cFXMenuSeparator.mark = (void (*)(void *)) FXRbMenuSeparator::markfunc;
|
|
@@ -5017,6 +5195,9 @@ SWIGEXPORT(void) Init_menu(void) {
|
|
|
5017
5195
|
rb_define_method(cFXMenuTitle.klass, "contains", VALUEFUNC(_wrap_FXMenuTitle_contains), -1);
|
|
5018
5196
|
rb_define_method(cFXMenuTitle.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXMenuTitle_doesSaveUnder), -1);
|
|
5019
5197
|
rb_define_method(cFXMenuTitle.klass, "setBackColor", VALUEFUNC(_wrap_FXMenuTitle_setBackColor), -1);
|
|
5198
|
+
rb_define_method(cFXMenuTitle.klass, "tr", VALUEFUNC(_wrap_FXMenuTitle_tr), -1);
|
|
5199
|
+
rb_define_method(cFXMenuTitle.klass, "dropEnable", VALUEFUNC(_wrap_FXMenuTitle_dropEnable), -1);
|
|
5200
|
+
rb_define_method(cFXMenuTitle.klass, "dropDisable", VALUEFUNC(_wrap_FXMenuTitle_dropDisable), -1);
|
|
5020
5201
|
rb_define_method(cFXMenuTitle.klass, "setShape", VALUEFUNC(_wrap_FXMenuTitle_setShape), -1);
|
|
5021
5202
|
rb_define_method(cFXMenuTitle.klass, "clearShape", VALUEFUNC(_wrap_FXMenuTitle_clearShape), -1);
|
|
5022
5203
|
cFXMenuTitle.mark = (void (*)(void *)) FXRbMenuTitle::markfunc;
|
|
@@ -5071,6 +5252,9 @@ SWIGEXPORT(void) Init_menu(void) {
|
|
|
5071
5252
|
rb_define_method(cFXMenuCascade.klass, "contains", VALUEFUNC(_wrap_FXMenuCascade_contains), -1);
|
|
5072
5253
|
rb_define_method(cFXMenuCascade.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXMenuCascade_doesSaveUnder), -1);
|
|
5073
5254
|
rb_define_method(cFXMenuCascade.klass, "setBackColor", VALUEFUNC(_wrap_FXMenuCascade_setBackColor), -1);
|
|
5255
|
+
rb_define_method(cFXMenuCascade.klass, "tr", VALUEFUNC(_wrap_FXMenuCascade_tr), -1);
|
|
5256
|
+
rb_define_method(cFXMenuCascade.klass, "dropEnable", VALUEFUNC(_wrap_FXMenuCascade_dropEnable), -1);
|
|
5257
|
+
rb_define_method(cFXMenuCascade.klass, "dropDisable", VALUEFUNC(_wrap_FXMenuCascade_dropDisable), -1);
|
|
5074
5258
|
rb_define_method(cFXMenuCascade.klass, "setShape", VALUEFUNC(_wrap_FXMenuCascade_setShape), -1);
|
|
5075
5259
|
rb_define_method(cFXMenuCascade.klass, "clearShape", VALUEFUNC(_wrap_FXMenuCascade_clearShape), -1);
|
|
5076
5260
|
cFXMenuCascade.mark = (void (*)(void *)) FXRbMenuCascade::markfunc;
|
|
@@ -5122,6 +5306,9 @@ SWIGEXPORT(void) Init_menu(void) {
|
|
|
5122
5306
|
rb_define_method(cFXMenuCommand.klass, "contains", VALUEFUNC(_wrap_FXMenuCommand_contains), -1);
|
|
5123
5307
|
rb_define_method(cFXMenuCommand.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXMenuCommand_doesSaveUnder), -1);
|
|
5124
5308
|
rb_define_method(cFXMenuCommand.klass, "setBackColor", VALUEFUNC(_wrap_FXMenuCommand_setBackColor), -1);
|
|
5309
|
+
rb_define_method(cFXMenuCommand.klass, "tr", VALUEFUNC(_wrap_FXMenuCommand_tr), -1);
|
|
5310
|
+
rb_define_method(cFXMenuCommand.klass, "dropEnable", VALUEFUNC(_wrap_FXMenuCommand_dropEnable), -1);
|
|
5311
|
+
rb_define_method(cFXMenuCommand.klass, "dropDisable", VALUEFUNC(_wrap_FXMenuCommand_dropDisable), -1);
|
|
5125
5312
|
rb_define_method(cFXMenuCommand.klass, "setShape", VALUEFUNC(_wrap_FXMenuCommand_setShape), -1);
|
|
5126
5313
|
rb_define_method(cFXMenuCommand.klass, "clearShape", VALUEFUNC(_wrap_FXMenuCommand_clearShape), -1);
|
|
5127
5314
|
cFXMenuCommand.mark = (void (*)(void *)) FXRbMenuCommand::markfunc;
|
|
@@ -5169,6 +5356,9 @@ SWIGEXPORT(void) Init_menu(void) {
|
|
|
5169
5356
|
rb_define_method(cFXMenuBar.klass, "contains", VALUEFUNC(_wrap_FXMenuBar_contains), -1);
|
|
5170
5357
|
rb_define_method(cFXMenuBar.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXMenuBar_doesSaveUnder), -1);
|
|
5171
5358
|
rb_define_method(cFXMenuBar.klass, "setBackColor", VALUEFUNC(_wrap_FXMenuBar_setBackColor), -1);
|
|
5359
|
+
rb_define_method(cFXMenuBar.klass, "tr", VALUEFUNC(_wrap_FXMenuBar_tr), -1);
|
|
5360
|
+
rb_define_method(cFXMenuBar.klass, "dropEnable", VALUEFUNC(_wrap_FXMenuBar_dropEnable), -1);
|
|
5361
|
+
rb_define_method(cFXMenuBar.klass, "dropDisable", VALUEFUNC(_wrap_FXMenuBar_dropDisable), -1);
|
|
5172
5362
|
rb_define_method(cFXMenuBar.klass, "setShape", VALUEFUNC(_wrap_FXMenuBar_setShape), -1);
|
|
5173
5363
|
rb_define_method(cFXMenuBar.klass, "clearShape", VALUEFUNC(_wrap_FXMenuBar_clearShape), -1);
|
|
5174
5364
|
rb_define_method(cFXMenuBar.klass, "dock", VALUEFUNC(_wrap_FXMenuBar_dock), -1);
|
|
@@ -5229,6 +5419,9 @@ SWIGEXPORT(void) Init_menu(void) {
|
|
|
5229
5419
|
rb_define_method(cFXMenuCheck.klass, "contains", VALUEFUNC(_wrap_FXMenuCheck_contains), -1);
|
|
5230
5420
|
rb_define_method(cFXMenuCheck.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXMenuCheck_doesSaveUnder), -1);
|
|
5231
5421
|
rb_define_method(cFXMenuCheck.klass, "setBackColor", VALUEFUNC(_wrap_FXMenuCheck_setBackColor), -1);
|
|
5422
|
+
rb_define_method(cFXMenuCheck.klass, "tr", VALUEFUNC(_wrap_FXMenuCheck_tr), -1);
|
|
5423
|
+
rb_define_method(cFXMenuCheck.klass, "dropEnable", VALUEFUNC(_wrap_FXMenuCheck_dropEnable), -1);
|
|
5424
|
+
rb_define_method(cFXMenuCheck.klass, "dropDisable", VALUEFUNC(_wrap_FXMenuCheck_dropDisable), -1);
|
|
5232
5425
|
rb_define_method(cFXMenuCheck.klass, "setShape", VALUEFUNC(_wrap_FXMenuCheck_setShape), -1);
|
|
5233
5426
|
rb_define_method(cFXMenuCheck.klass, "clearShape", VALUEFUNC(_wrap_FXMenuCheck_clearShape), -1);
|
|
5234
5427
|
cFXMenuCheck.mark = 0;
|
|
@@ -5287,6 +5480,9 @@ SWIGEXPORT(void) Init_menu(void) {
|
|
|
5287
5480
|
rb_define_method(cFXMenuRadio.klass, "contains", VALUEFUNC(_wrap_FXMenuRadio_contains), -1);
|
|
5288
5481
|
rb_define_method(cFXMenuRadio.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXMenuRadio_doesSaveUnder), -1);
|
|
5289
5482
|
rb_define_method(cFXMenuRadio.klass, "setBackColor", VALUEFUNC(_wrap_FXMenuRadio_setBackColor), -1);
|
|
5483
|
+
rb_define_method(cFXMenuRadio.klass, "tr", VALUEFUNC(_wrap_FXMenuRadio_tr), -1);
|
|
5484
|
+
rb_define_method(cFXMenuRadio.klass, "dropEnable", VALUEFUNC(_wrap_FXMenuRadio_dropEnable), -1);
|
|
5485
|
+
rb_define_method(cFXMenuRadio.klass, "dropDisable", VALUEFUNC(_wrap_FXMenuRadio_dropDisable), -1);
|
|
5290
5486
|
rb_define_method(cFXMenuRadio.klass, "setShape", VALUEFUNC(_wrap_FXMenuRadio_setShape), -1);
|
|
5291
5487
|
rb_define_method(cFXMenuRadio.klass, "clearShape", VALUEFUNC(_wrap_FXMenuRadio_clearShape), -1);
|
|
5292
5488
|
cFXMenuRadio.mark = 0;
|