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
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/***********************************************************************
|
|
2
|
-
* $Id: markfuncs.cpp
|
|
2
|
+
* $Id: markfuncs.cpp 2381 2006-04-21 00:28:05Z lyle $
|
|
3
3
|
***********************************************************************/
|
|
4
4
|
|
|
5
5
|
#include "FXRbCommon.h"
|
|
@@ -76,6 +76,14 @@ void FXRbObject::freefunc(FXObject* self){
|
|
|
76
76
|
void FXRbIconSource::markfunc(FXIconSource* iconSource){
|
|
77
77
|
FXRbObject::markfunc(iconSource);
|
|
78
78
|
}
|
|
79
|
+
|
|
80
|
+
void FXRbTranslator::markfunc(FXTranslator* translator){
|
|
81
|
+
FXRbObject::markfunc(translator);
|
|
82
|
+
if(translator){
|
|
83
|
+
FXRbGcMark(translator->getApp());
|
|
84
|
+
FXRbGcMark(translator->getTextCodec());
|
|
85
|
+
}
|
|
86
|
+
}
|
|
79
87
|
|
|
80
88
|
void FXRbBMPIcon::markfunc(FXBMPIcon *icon){
|
|
81
89
|
FXRbIcon::markfunc(icon);
|
|
@@ -107,6 +115,11 @@ void FXRbButton::markfunc(FXButton* btn){
|
|
|
107
115
|
}
|
|
108
116
|
|
|
109
117
|
|
|
118
|
+
void FXRbKnob::markfunc(FXKnob* self){
|
|
119
|
+
FXRbFrame::markfunc(self);
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
|
|
110
123
|
void FXRbLabel::markfunc(FXLabel* self){
|
|
111
124
|
FXRbFrame::markfunc(self);
|
|
112
125
|
if(self){
|
|
@@ -128,13 +141,6 @@ void FXRbDockHandler::markfunc(FXDockHandler *dockhandler){
|
|
|
128
141
|
FXRbFrame::markfunc(dockhandler);
|
|
129
142
|
}
|
|
130
143
|
|
|
131
|
-
void FXRbDockTitle::markfunc(FXDockTitle *self){
|
|
132
|
-
FXRbDockHandler::markfunc(self);
|
|
133
|
-
if(self){
|
|
134
|
-
FXRbGcMark(self->getFont());
|
|
135
|
-
}
|
|
136
|
-
}
|
|
137
|
-
|
|
138
144
|
void FXRbDrawable::markfunc(FXDrawable* drawable){
|
|
139
145
|
FXRbId::markfunc(drawable);
|
|
140
146
|
if(drawable) FXRbGcMark(drawable->getVisual());
|
|
@@ -468,6 +474,16 @@ void FXRbListItem::freefunc(FXListItem* self){
|
|
|
468
474
|
}
|
|
469
475
|
|
|
470
476
|
|
|
477
|
+
void FXRbColorItem::markfunc(FXColorItem* self){
|
|
478
|
+
FXRbListItem::markfunc(self);
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
|
|
482
|
+
void FXRbColorItem::freefunc(FXColorItem* self){
|
|
483
|
+
delete_if_not_owned(self,reinterpret_cast<FXRbColorItem*>(0));
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
|
|
471
487
|
void FXRbList::markfunc(FXList* self){
|
|
472
488
|
FXRbScrollArea::markfunc(self);
|
|
473
489
|
if(self){
|
|
@@ -483,6 +499,11 @@ void FXRbList::markfunc(FXList* self){
|
|
|
483
499
|
}
|
|
484
500
|
|
|
485
501
|
|
|
502
|
+
void FXRbColorList::markfunc(FXColorList* self){
|
|
503
|
+
FXRbList::markfunc(self);
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
|
|
486
507
|
void FXRbTableItem::markfunc(FXTableItem* self){
|
|
487
508
|
FXRbObject::markfunc(self);
|
|
488
509
|
if(self){
|
|
@@ -503,6 +524,8 @@ void FXRbTable::markfunc(FXTable* self){
|
|
|
503
524
|
FXRbScrollArea::markfunc(self);
|
|
504
525
|
if(self){
|
|
505
526
|
FXRbGcMark(self->getFont());
|
|
527
|
+
FXRbGcMark(self->getRowHeaderFont());
|
|
528
|
+
FXRbGcMark(self->getColumnHeaderFont());
|
|
506
529
|
for(FXint row=0;row<self->getNumRows();row++){
|
|
507
530
|
for(FXint col=0;col<self->getNumColumns();col++){
|
|
508
531
|
item=self->getItem(row,col);
|
|
@@ -676,6 +699,7 @@ void FXRbIconDict::markfunc(FXIconDict* self){
|
|
|
676
699
|
|
|
677
700
|
void FXRbFileDict::markfunc(FXFileDict* self){
|
|
678
701
|
FXRbDict::markfunc(self);
|
|
702
|
+
FXRbGcMark(self->getSettings());
|
|
679
703
|
if(self){
|
|
680
704
|
if(self->no()>0){
|
|
681
705
|
FXint pos=self->first();
|
|
@@ -1500,6 +1524,12 @@ void FXRbColorBar::markfunc(FXColorBar* self){
|
|
|
1500
1524
|
}
|
|
1501
1525
|
|
|
1502
1526
|
|
|
1527
|
+
void FXRbColorRing::markfunc(FXColorRing* self){
|
|
1528
|
+
FXTRACE((100,"FXRbColorRing::markfunc() %p\n",self));
|
|
1529
|
+
FXRbFrame::markfunc(self);
|
|
1530
|
+
}
|
|
1531
|
+
|
|
1532
|
+
|
|
1503
1533
|
void FXRbColorWheel::markfunc(FXColorWheel* self){
|
|
1504
1534
|
FXTRACE((100,"FXRbColorWheel::markfunc() %p\n",self));
|
|
1505
1535
|
FXRbFrame::markfunc(self);
|
|
@@ -733,10 +733,10 @@ static VALUE _wrap_FXMDIDeleteButton_getHeightForWidth(int argc, VALUE *argv, VA
|
|
|
733
733
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIDeleteButton, 1); arg2 = NUM2INT(argv[0]);
|
|
734
734
|
result = (FXint)FXMDIDeleteButton_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
|
|
735
735
|
static VALUE _wrap_FXMDIDeleteButton_canFocus(int argc, VALUE *argv, VALUE self) {
|
|
736
|
-
FXMDIDeleteButton *arg1 = (FXMDIDeleteButton *) 0 ;
|
|
736
|
+
FXMDIDeleteButton *arg1 = (FXMDIDeleteButton *) 0 ; bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
737
737
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
738
738
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIDeleteButton, 1);
|
|
739
|
-
result = (
|
|
739
|
+
result = (bool)FXMDIDeleteButton_canFocus((FXMDIDeleteButton const *)arg1); vresult = result ? Qtrue : Qfalse;
|
|
740
740
|
return vresult; }
|
|
741
741
|
static VALUE _wrap_FXMDIDeleteButton_setFocus(int argc, VALUE *argv, VALUE self) {
|
|
742
742
|
FXMDIDeleteButton *arg1 = (FXMDIDeleteButton *) 0 ; if ((argc < 0) || (argc > 0))
|
|
@@ -805,28 +805,43 @@ static VALUE _wrap_FXMDIDeleteButton_hide(int argc, VALUE *argv, VALUE self) {
|
|
|
805
805
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
806
806
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIDeleteButton, 1); FXMDIDeleteButton_hide(arg1); return Qnil; }
|
|
807
807
|
static VALUE _wrap_FXMDIDeleteButton_isComposite(int argc, VALUE *argv, VALUE self) {
|
|
808
|
-
FXMDIDeleteButton *arg1 = (FXMDIDeleteButton *) 0 ;
|
|
808
|
+
FXMDIDeleteButton *arg1 = (FXMDIDeleteButton *) 0 ; bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
809
809
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
810
810
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIDeleteButton, 1);
|
|
811
|
-
result = (
|
|
811
|
+
result = (bool)FXMDIDeleteButton_isComposite((FXMDIDeleteButton const *)arg1); vresult = result ? Qtrue : Qfalse;
|
|
812
812
|
return vresult; }
|
|
813
813
|
static VALUE _wrap_FXMDIDeleteButton_contains(int argc, VALUE *argv, VALUE self) {
|
|
814
|
-
FXMDIDeleteButton *arg1 = (FXMDIDeleteButton *) 0 ; FXint arg2 ; FXint arg3 ;
|
|
814
|
+
FXMDIDeleteButton *arg1 = (FXMDIDeleteButton *) 0 ; FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil;
|
|
815
815
|
if ((argc < 2) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
|
|
816
816
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIDeleteButton, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
|
|
817
|
-
result = (
|
|
817
|
+
result = (bool)FXMDIDeleteButton_contains((FXMDIDeleteButton const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
|
|
818
818
|
return vresult; }
|
|
819
819
|
static VALUE _wrap_FXMDIDeleteButton_doesSaveUnder(int argc, VALUE *argv, VALUE self) {
|
|
820
|
-
FXMDIDeleteButton *arg1 = (FXMDIDeleteButton *) 0 ;
|
|
820
|
+
FXMDIDeleteButton *arg1 = (FXMDIDeleteButton *) 0 ; bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
821
821
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
822
822
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIDeleteButton, 1);
|
|
823
|
-
result = (
|
|
823
|
+
result = (bool)FXMDIDeleteButton_doesSaveUnder((FXMDIDeleteButton const *)arg1); vresult = result ? Qtrue : Qfalse;
|
|
824
824
|
return vresult; }
|
|
825
825
|
static VALUE _wrap_FXMDIDeleteButton_setBackColor(int argc, VALUE *argv, VALUE self) {
|
|
826
826
|
FXMDIDeleteButton *arg1 = (FXMDIDeleteButton *) 0 ; FXColor arg2 ; if ((argc < 1) || (argc > 1))
|
|
827
827
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
828
828
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIDeleteButton, 1); arg2 = to_FXColor(argv[0]);
|
|
829
829
|
FXMDIDeleteButton_setBackColor(arg1,arg2); return Qnil; }
|
|
830
|
+
static VALUE _wrap_FXMDIDeleteButton_tr(int argc, VALUE *argv, VALUE self) { FXMDIDeleteButton *arg1 = (FXMDIDeleteButton *) 0 ;
|
|
831
|
+
FXchar *arg2 ; FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
|
|
832
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
833
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIDeleteButton, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
|
|
834
|
+
arg3 = StringValuePtr(argv[1]); }
|
|
835
|
+
result = (FXchar *)FXMDIDeleteButton_tr((FXMDIDeleteButton const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
|
|
836
|
+
vresult = rb_str_new2(result); return vresult; }
|
|
837
|
+
static VALUE _wrap_FXMDIDeleteButton_dropEnable(int argc, VALUE *argv, VALUE self) {
|
|
838
|
+
FXMDIDeleteButton *arg1 = (FXMDIDeleteButton *) 0 ; if ((argc < 0) || (argc > 0))
|
|
839
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
840
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIDeleteButton, 1); FXMDIDeleteButton_dropEnable(arg1); return Qnil; }
|
|
841
|
+
static VALUE _wrap_FXMDIDeleteButton_dropDisable(int argc, VALUE *argv, VALUE self) {
|
|
842
|
+
FXMDIDeleteButton *arg1 = (FXMDIDeleteButton *) 0 ; if ((argc < 0) || (argc > 0))
|
|
843
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
844
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIDeleteButton, 1); FXMDIDeleteButton_dropDisable(arg1); return Qnil; }
|
|
830
845
|
static VALUE _wrap_FXMDIDeleteButton_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
831
846
|
FXMDIDeleteButton *arg1 = (FXMDIDeleteButton *) 0 ; FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1))
|
|
832
847
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
@@ -946,10 +961,10 @@ static VALUE _wrap_FXMDIRestoreButton_getHeightForWidth(int argc, VALUE *argv, V
|
|
|
946
961
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIRestoreButton, 1); arg2 = NUM2INT(argv[0]);
|
|
947
962
|
result = (FXint)FXMDIRestoreButton_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
|
|
948
963
|
static VALUE _wrap_FXMDIRestoreButton_canFocus(int argc, VALUE *argv, VALUE self) {
|
|
949
|
-
FXMDIRestoreButton *arg1 = (FXMDIRestoreButton *) 0 ;
|
|
964
|
+
FXMDIRestoreButton *arg1 = (FXMDIRestoreButton *) 0 ; bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
950
965
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
951
966
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIRestoreButton, 1);
|
|
952
|
-
result = (
|
|
967
|
+
result = (bool)FXMDIRestoreButton_canFocus((FXMDIRestoreButton const *)arg1); vresult = result ? Qtrue : Qfalse;
|
|
953
968
|
return vresult; }
|
|
954
969
|
static VALUE _wrap_FXMDIRestoreButton_setFocus(int argc, VALUE *argv, VALUE self) {
|
|
955
970
|
FXMDIRestoreButton *arg1 = (FXMDIRestoreButton *) 0 ; if ((argc < 0) || (argc > 0))
|
|
@@ -1019,28 +1034,44 @@ static VALUE _wrap_FXMDIRestoreButton_hide(int argc, VALUE *argv, VALUE self) {
|
|
|
1019
1034
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1020
1035
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIRestoreButton, 1); FXMDIRestoreButton_hide(arg1); return Qnil; }
|
|
1021
1036
|
static VALUE _wrap_FXMDIRestoreButton_isComposite(int argc, VALUE *argv, VALUE self) {
|
|
1022
|
-
FXMDIRestoreButton *arg1 = (FXMDIRestoreButton *) 0 ;
|
|
1037
|
+
FXMDIRestoreButton *arg1 = (FXMDIRestoreButton *) 0 ; bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
1023
1038
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1024
1039
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIRestoreButton, 1);
|
|
1025
|
-
result = (
|
|
1040
|
+
result = (bool)FXMDIRestoreButton_isComposite((FXMDIRestoreButton const *)arg1); vresult = result ? Qtrue : Qfalse;
|
|
1026
1041
|
return vresult; }
|
|
1027
1042
|
static VALUE _wrap_FXMDIRestoreButton_contains(int argc, VALUE *argv, VALUE self) {
|
|
1028
|
-
FXMDIRestoreButton *arg1 = (FXMDIRestoreButton *) 0 ; FXint arg2 ; FXint arg3 ;
|
|
1043
|
+
FXMDIRestoreButton *arg1 = (FXMDIRestoreButton *) 0 ; FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil;
|
|
1029
1044
|
if ((argc < 2) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
|
|
1030
1045
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIRestoreButton, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
|
|
1031
|
-
result = (
|
|
1046
|
+
result = (bool)FXMDIRestoreButton_contains((FXMDIRestoreButton const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
|
|
1032
1047
|
return vresult; }
|
|
1033
1048
|
static VALUE _wrap_FXMDIRestoreButton_doesSaveUnder(int argc, VALUE *argv, VALUE self) {
|
|
1034
|
-
FXMDIRestoreButton *arg1 = (FXMDIRestoreButton *) 0 ;
|
|
1049
|
+
FXMDIRestoreButton *arg1 = (FXMDIRestoreButton *) 0 ; bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
1035
1050
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1036
1051
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIRestoreButton, 1);
|
|
1037
|
-
result = (
|
|
1052
|
+
result = (bool)FXMDIRestoreButton_doesSaveUnder((FXMDIRestoreButton const *)arg1); vresult = result ? Qtrue : Qfalse;
|
|
1038
1053
|
return vresult; }
|
|
1039
1054
|
static VALUE _wrap_FXMDIRestoreButton_setBackColor(int argc, VALUE *argv, VALUE self) {
|
|
1040
1055
|
FXMDIRestoreButton *arg1 = (FXMDIRestoreButton *) 0 ; FXColor arg2 ; if ((argc < 1) || (argc > 1))
|
|
1041
1056
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
1042
1057
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIRestoreButton, 1); arg2 = to_FXColor(argv[0]);
|
|
1043
1058
|
FXMDIRestoreButton_setBackColor(arg1,arg2); return Qnil; }
|
|
1059
|
+
static VALUE _wrap_FXMDIRestoreButton_tr(int argc, VALUE *argv, VALUE self) {
|
|
1060
|
+
FXMDIRestoreButton *arg1 = (FXMDIRestoreButton *) 0 ; FXchar *arg2 ; FXchar *arg3 = (FXchar *) 0 ; FXchar *result;
|
|
1061
|
+
VALUE vresult = Qnil; if ((argc < 1) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
1062
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIRestoreButton, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
|
|
1063
|
+
arg3 = StringValuePtr(argv[1]); }
|
|
1064
|
+
result = (FXchar *)FXMDIRestoreButton_tr((FXMDIRestoreButton const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
|
|
1065
|
+
vresult = rb_str_new2(result); return vresult; }
|
|
1066
|
+
static VALUE _wrap_FXMDIRestoreButton_dropEnable(int argc, VALUE *argv, VALUE self) {
|
|
1067
|
+
FXMDIRestoreButton *arg1 = (FXMDIRestoreButton *) 0 ; if ((argc < 0) || (argc > 0))
|
|
1068
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1069
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIRestoreButton, 1); FXMDIRestoreButton_dropEnable(arg1); return Qnil; }
|
|
1070
|
+
static VALUE _wrap_FXMDIRestoreButton_dropDisable(int argc, VALUE *argv, VALUE self) {
|
|
1071
|
+
FXMDIRestoreButton *arg1 = (FXMDIRestoreButton *) 0 ; if ((argc < 0) || (argc > 0))
|
|
1072
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1073
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIRestoreButton, 1); FXMDIRestoreButton_dropDisable(arg1);
|
|
1074
|
+
return Qnil; }
|
|
1044
1075
|
static VALUE _wrap_FXMDIRestoreButton_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
1045
1076
|
FXMDIRestoreButton *arg1 = (FXMDIRestoreButton *) 0 ; FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1))
|
|
1046
1077
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
@@ -1160,10 +1191,10 @@ static VALUE _wrap_FXMDIMaximizeButton_getHeightForWidth(int argc, VALUE *argv,
|
|
|
1160
1191
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMaximizeButton, 1); arg2 = NUM2INT(argv[0]);
|
|
1161
1192
|
result = (FXint)FXMDIMaximizeButton_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
|
|
1162
1193
|
static VALUE _wrap_FXMDIMaximizeButton_canFocus(int argc, VALUE *argv, VALUE self) {
|
|
1163
|
-
FXMDIMaximizeButton *arg1 = (FXMDIMaximizeButton *) 0 ;
|
|
1194
|
+
FXMDIMaximizeButton *arg1 = (FXMDIMaximizeButton *) 0 ; bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
1164
1195
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1165
1196
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMaximizeButton, 1);
|
|
1166
|
-
result = (
|
|
1197
|
+
result = (bool)FXMDIMaximizeButton_canFocus((FXMDIMaximizeButton const *)arg1); vresult = result ? Qtrue : Qfalse;
|
|
1167
1198
|
return vresult; }
|
|
1168
1199
|
static VALUE _wrap_FXMDIMaximizeButton_setFocus(int argc, VALUE *argv, VALUE self) {
|
|
1169
1200
|
FXMDIMaximizeButton *arg1 = (FXMDIMaximizeButton *) 0 ; if ((argc < 0) || (argc > 0))
|
|
@@ -1234,28 +1265,45 @@ static VALUE _wrap_FXMDIMaximizeButton_hide(int argc, VALUE *argv, VALUE self) {
|
|
|
1234
1265
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1235
1266
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMaximizeButton, 1); FXMDIMaximizeButton_hide(arg1); return Qnil; }
|
|
1236
1267
|
static VALUE _wrap_FXMDIMaximizeButton_isComposite(int argc, VALUE *argv, VALUE self) {
|
|
1237
|
-
FXMDIMaximizeButton *arg1 = (FXMDIMaximizeButton *) 0 ;
|
|
1268
|
+
FXMDIMaximizeButton *arg1 = (FXMDIMaximizeButton *) 0 ; bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
1238
1269
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1239
1270
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMaximizeButton, 1);
|
|
1240
|
-
result = (
|
|
1271
|
+
result = (bool)FXMDIMaximizeButton_isComposite((FXMDIMaximizeButton const *)arg1); vresult = result ? Qtrue : Qfalse;
|
|
1241
1272
|
return vresult; }
|
|
1242
1273
|
static VALUE _wrap_FXMDIMaximizeButton_contains(int argc, VALUE *argv, VALUE self) {
|
|
1243
|
-
FXMDIMaximizeButton *arg1 = (FXMDIMaximizeButton *) 0 ; FXint arg2 ; FXint arg3 ;
|
|
1274
|
+
FXMDIMaximizeButton *arg1 = (FXMDIMaximizeButton *) 0 ; FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil;
|
|
1244
1275
|
if ((argc < 2) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
|
|
1245
1276
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMaximizeButton, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
|
|
1246
|
-
result = (
|
|
1247
|
-
|
|
1277
|
+
result = (bool)FXMDIMaximizeButton_contains((FXMDIMaximizeButton const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
|
|
1278
|
+
return vresult; }
|
|
1248
1279
|
static VALUE _wrap_FXMDIMaximizeButton_doesSaveUnder(int argc, VALUE *argv, VALUE self) {
|
|
1249
|
-
FXMDIMaximizeButton *arg1 = (FXMDIMaximizeButton *) 0 ;
|
|
1280
|
+
FXMDIMaximizeButton *arg1 = (FXMDIMaximizeButton *) 0 ; bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
1250
1281
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1251
1282
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMaximizeButton, 1);
|
|
1252
|
-
result = (
|
|
1283
|
+
result = (bool)FXMDIMaximizeButton_doesSaveUnder((FXMDIMaximizeButton const *)arg1); vresult = result ? Qtrue : Qfalse;
|
|
1253
1284
|
return vresult; }
|
|
1254
1285
|
static VALUE _wrap_FXMDIMaximizeButton_setBackColor(int argc, VALUE *argv, VALUE self) {
|
|
1255
1286
|
FXMDIMaximizeButton *arg1 = (FXMDIMaximizeButton *) 0 ; FXColor arg2 ; if ((argc < 1) || (argc > 1))
|
|
1256
1287
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
1257
1288
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMaximizeButton, 1); arg2 = to_FXColor(argv[0]);
|
|
1258
1289
|
FXMDIMaximizeButton_setBackColor(arg1,arg2); return Qnil; }
|
|
1290
|
+
static VALUE _wrap_FXMDIMaximizeButton_tr(int argc, VALUE *argv, VALUE self) {
|
|
1291
|
+
FXMDIMaximizeButton *arg1 = (FXMDIMaximizeButton *) 0 ; FXchar *arg2 ; FXchar *arg3 = (FXchar *) 0 ; FXchar *result;
|
|
1292
|
+
VALUE vresult = Qnil; if ((argc < 1) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
1293
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMaximizeButton, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
|
|
1294
|
+
arg3 = StringValuePtr(argv[1]); }
|
|
1295
|
+
result = (FXchar *)FXMDIMaximizeButton_tr((FXMDIMaximizeButton const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
|
|
1296
|
+
vresult = rb_str_new2(result); return vresult; }
|
|
1297
|
+
static VALUE _wrap_FXMDIMaximizeButton_dropEnable(int argc, VALUE *argv, VALUE self) {
|
|
1298
|
+
FXMDIMaximizeButton *arg1 = (FXMDIMaximizeButton *) 0 ; if ((argc < 0) || (argc > 0))
|
|
1299
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1300
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMaximizeButton, 1); FXMDIMaximizeButton_dropEnable(arg1);
|
|
1301
|
+
return Qnil; }
|
|
1302
|
+
static VALUE _wrap_FXMDIMaximizeButton_dropDisable(int argc, VALUE *argv, VALUE self) {
|
|
1303
|
+
FXMDIMaximizeButton *arg1 = (FXMDIMaximizeButton *) 0 ; if ((argc < 0) || (argc > 0))
|
|
1304
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1305
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMaximizeButton, 1); FXMDIMaximizeButton_dropDisable(arg1);
|
|
1306
|
+
return Qnil; }
|
|
1259
1307
|
static VALUE _wrap_FXMDIMaximizeButton_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
1260
1308
|
FXMDIMaximizeButton *arg1 = (FXMDIMaximizeButton *) 0 ; FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1))
|
|
1261
1309
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
@@ -1376,10 +1424,10 @@ static VALUE _wrap_FXMDIMinimizeButton_getHeightForWidth(int argc, VALUE *argv,
|
|
|
1376
1424
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMinimizeButton, 1); arg2 = NUM2INT(argv[0]);
|
|
1377
1425
|
result = (FXint)FXMDIMinimizeButton_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
|
|
1378
1426
|
static VALUE _wrap_FXMDIMinimizeButton_canFocus(int argc, VALUE *argv, VALUE self) {
|
|
1379
|
-
FXMDIMinimizeButton *arg1 = (FXMDIMinimizeButton *) 0 ;
|
|
1427
|
+
FXMDIMinimizeButton *arg1 = (FXMDIMinimizeButton *) 0 ; bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
1380
1428
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1381
1429
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMinimizeButton, 1);
|
|
1382
|
-
result = (
|
|
1430
|
+
result = (bool)FXMDIMinimizeButton_canFocus((FXMDIMinimizeButton const *)arg1); vresult = result ? Qtrue : Qfalse;
|
|
1383
1431
|
return vresult; }
|
|
1384
1432
|
static VALUE _wrap_FXMDIMinimizeButton_setFocus(int argc, VALUE *argv, VALUE self) {
|
|
1385
1433
|
FXMDIMinimizeButton *arg1 = (FXMDIMinimizeButton *) 0 ; if ((argc < 0) || (argc > 0))
|
|
@@ -1450,28 +1498,45 @@ static VALUE _wrap_FXMDIMinimizeButton_hide(int argc, VALUE *argv, VALUE self) {
|
|
|
1450
1498
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1451
1499
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMinimizeButton, 1); FXMDIMinimizeButton_hide(arg1); return Qnil; }
|
|
1452
1500
|
static VALUE _wrap_FXMDIMinimizeButton_isComposite(int argc, VALUE *argv, VALUE self) {
|
|
1453
|
-
FXMDIMinimizeButton *arg1 = (FXMDIMinimizeButton *) 0 ;
|
|
1501
|
+
FXMDIMinimizeButton *arg1 = (FXMDIMinimizeButton *) 0 ; bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
1454
1502
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1455
1503
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMinimizeButton, 1);
|
|
1456
|
-
result = (
|
|
1504
|
+
result = (bool)FXMDIMinimizeButton_isComposite((FXMDIMinimizeButton const *)arg1); vresult = result ? Qtrue : Qfalse;
|
|
1457
1505
|
return vresult; }
|
|
1458
1506
|
static VALUE _wrap_FXMDIMinimizeButton_contains(int argc, VALUE *argv, VALUE self) {
|
|
1459
|
-
FXMDIMinimizeButton *arg1 = (FXMDIMinimizeButton *) 0 ; FXint arg2 ; FXint arg3 ;
|
|
1507
|
+
FXMDIMinimizeButton *arg1 = (FXMDIMinimizeButton *) 0 ; FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil;
|
|
1460
1508
|
if ((argc < 2) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
|
|
1461
1509
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMinimizeButton, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
|
|
1462
|
-
result = (
|
|
1463
|
-
|
|
1510
|
+
result = (bool)FXMDIMinimizeButton_contains((FXMDIMinimizeButton const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
|
|
1511
|
+
return vresult; }
|
|
1464
1512
|
static VALUE _wrap_FXMDIMinimizeButton_doesSaveUnder(int argc, VALUE *argv, VALUE self) {
|
|
1465
|
-
FXMDIMinimizeButton *arg1 = (FXMDIMinimizeButton *) 0 ;
|
|
1513
|
+
FXMDIMinimizeButton *arg1 = (FXMDIMinimizeButton *) 0 ; bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
1466
1514
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1467
1515
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMinimizeButton, 1);
|
|
1468
|
-
result = (
|
|
1516
|
+
result = (bool)FXMDIMinimizeButton_doesSaveUnder((FXMDIMinimizeButton const *)arg1); vresult = result ? Qtrue : Qfalse;
|
|
1469
1517
|
return vresult; }
|
|
1470
1518
|
static VALUE _wrap_FXMDIMinimizeButton_setBackColor(int argc, VALUE *argv, VALUE self) {
|
|
1471
1519
|
FXMDIMinimizeButton *arg1 = (FXMDIMinimizeButton *) 0 ; FXColor arg2 ; if ((argc < 1) || (argc > 1))
|
|
1472
1520
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
1473
1521
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMinimizeButton, 1); arg2 = to_FXColor(argv[0]);
|
|
1474
1522
|
FXMDIMinimizeButton_setBackColor(arg1,arg2); return Qnil; }
|
|
1523
|
+
static VALUE _wrap_FXMDIMinimizeButton_tr(int argc, VALUE *argv, VALUE self) {
|
|
1524
|
+
FXMDIMinimizeButton *arg1 = (FXMDIMinimizeButton *) 0 ; FXchar *arg2 ; FXchar *arg3 = (FXchar *) 0 ; FXchar *result;
|
|
1525
|
+
VALUE vresult = Qnil; if ((argc < 1) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
1526
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMinimizeButton, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
|
|
1527
|
+
arg3 = StringValuePtr(argv[1]); }
|
|
1528
|
+
result = (FXchar *)FXMDIMinimizeButton_tr((FXMDIMinimizeButton const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
|
|
1529
|
+
vresult = rb_str_new2(result); return vresult; }
|
|
1530
|
+
static VALUE _wrap_FXMDIMinimizeButton_dropEnable(int argc, VALUE *argv, VALUE self) {
|
|
1531
|
+
FXMDIMinimizeButton *arg1 = (FXMDIMinimizeButton *) 0 ; if ((argc < 0) || (argc > 0))
|
|
1532
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1533
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMinimizeButton, 1); FXMDIMinimizeButton_dropEnable(arg1);
|
|
1534
|
+
return Qnil; }
|
|
1535
|
+
static VALUE _wrap_FXMDIMinimizeButton_dropDisable(int argc, VALUE *argv, VALUE self) {
|
|
1536
|
+
FXMDIMinimizeButton *arg1 = (FXMDIMinimizeButton *) 0 ; if ((argc < 0) || (argc > 0))
|
|
1537
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1538
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMinimizeButton, 1); FXMDIMinimizeButton_dropDisable(arg1);
|
|
1539
|
+
return Qnil; }
|
|
1475
1540
|
static VALUE _wrap_FXMDIMinimizeButton_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
1476
1541
|
FXMDIMinimizeButton *arg1 = (FXMDIMinimizeButton *) 0 ; FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1))
|
|
1477
1542
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
@@ -1594,10 +1659,10 @@ static VALUE _wrap_FXMDIWindowButton_getHeightForWidth(int argc, VALUE *argv, VA
|
|
|
1594
1659
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIWindowButton, 1); arg2 = NUM2INT(argv[0]);
|
|
1595
1660
|
result = (FXint)FXMDIWindowButton_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
|
|
1596
1661
|
static VALUE _wrap_FXMDIWindowButton_canFocus(int argc, VALUE *argv, VALUE self) {
|
|
1597
|
-
FXMDIWindowButton *arg1 = (FXMDIWindowButton *) 0 ;
|
|
1662
|
+
FXMDIWindowButton *arg1 = (FXMDIWindowButton *) 0 ; bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
1598
1663
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1599
1664
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIWindowButton, 1);
|
|
1600
|
-
result = (
|
|
1665
|
+
result = (bool)FXMDIWindowButton_canFocus((FXMDIWindowButton const *)arg1); vresult = result ? Qtrue : Qfalse;
|
|
1601
1666
|
return vresult; }
|
|
1602
1667
|
static VALUE _wrap_FXMDIWindowButton_setFocus(int argc, VALUE *argv, VALUE self) {
|
|
1603
1668
|
FXMDIWindowButton *arg1 = (FXMDIWindowButton *) 0 ; if ((argc < 0) || (argc > 0))
|
|
@@ -1666,28 +1731,43 @@ static VALUE _wrap_FXMDIWindowButton_hide(int argc, VALUE *argv, VALUE self) {
|
|
|
1666
1731
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1667
1732
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIWindowButton, 1); FXMDIWindowButton_hide(arg1); return Qnil; }
|
|
1668
1733
|
static VALUE _wrap_FXMDIWindowButton_isComposite(int argc, VALUE *argv, VALUE self) {
|
|
1669
|
-
FXMDIWindowButton *arg1 = (FXMDIWindowButton *) 0 ;
|
|
1734
|
+
FXMDIWindowButton *arg1 = (FXMDIWindowButton *) 0 ; bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
1670
1735
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1671
1736
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIWindowButton, 1);
|
|
1672
|
-
result = (
|
|
1737
|
+
result = (bool)FXMDIWindowButton_isComposite((FXMDIWindowButton const *)arg1); vresult = result ? Qtrue : Qfalse;
|
|
1673
1738
|
return vresult; }
|
|
1674
1739
|
static VALUE _wrap_FXMDIWindowButton_contains(int argc, VALUE *argv, VALUE self) {
|
|
1675
|
-
FXMDIWindowButton *arg1 = (FXMDIWindowButton *) 0 ; FXint arg2 ; FXint arg3 ;
|
|
1740
|
+
FXMDIWindowButton *arg1 = (FXMDIWindowButton *) 0 ; FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil;
|
|
1676
1741
|
if ((argc < 2) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
|
|
1677
1742
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIWindowButton, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
|
|
1678
|
-
result = (
|
|
1743
|
+
result = (bool)FXMDIWindowButton_contains((FXMDIWindowButton const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
|
|
1679
1744
|
return vresult; }
|
|
1680
1745
|
static VALUE _wrap_FXMDIWindowButton_doesSaveUnder(int argc, VALUE *argv, VALUE self) {
|
|
1681
|
-
FXMDIWindowButton *arg1 = (FXMDIWindowButton *) 0 ;
|
|
1746
|
+
FXMDIWindowButton *arg1 = (FXMDIWindowButton *) 0 ; bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
1682
1747
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1683
1748
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIWindowButton, 1);
|
|
1684
|
-
result = (
|
|
1749
|
+
result = (bool)FXMDIWindowButton_doesSaveUnder((FXMDIWindowButton const *)arg1); vresult = result ? Qtrue : Qfalse;
|
|
1685
1750
|
return vresult; }
|
|
1686
1751
|
static VALUE _wrap_FXMDIWindowButton_setBackColor(int argc, VALUE *argv, VALUE self) {
|
|
1687
1752
|
FXMDIWindowButton *arg1 = (FXMDIWindowButton *) 0 ; FXColor arg2 ; if ((argc < 1) || (argc > 1))
|
|
1688
1753
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
1689
1754
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIWindowButton, 1); arg2 = to_FXColor(argv[0]);
|
|
1690
1755
|
FXMDIWindowButton_setBackColor(arg1,arg2); return Qnil; }
|
|
1756
|
+
static VALUE _wrap_FXMDIWindowButton_tr(int argc, VALUE *argv, VALUE self) { FXMDIWindowButton *arg1 = (FXMDIWindowButton *) 0 ;
|
|
1757
|
+
FXchar *arg2 ; FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
|
|
1758
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
1759
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIWindowButton, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
|
|
1760
|
+
arg3 = StringValuePtr(argv[1]); }
|
|
1761
|
+
result = (FXchar *)FXMDIWindowButton_tr((FXMDIWindowButton const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
|
|
1762
|
+
vresult = rb_str_new2(result); return vresult; }
|
|
1763
|
+
static VALUE _wrap_FXMDIWindowButton_dropEnable(int argc, VALUE *argv, VALUE self) {
|
|
1764
|
+
FXMDIWindowButton *arg1 = (FXMDIWindowButton *) 0 ; if ((argc < 0) || (argc > 0))
|
|
1765
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1766
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIWindowButton, 1); FXMDIWindowButton_dropEnable(arg1); return Qnil; }
|
|
1767
|
+
static VALUE _wrap_FXMDIWindowButton_dropDisable(int argc, VALUE *argv, VALUE self) {
|
|
1768
|
+
FXMDIWindowButton *arg1 = (FXMDIWindowButton *) 0 ; if ((argc < 0) || (argc > 0))
|
|
1769
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1770
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIWindowButton, 1); FXMDIWindowButton_dropDisable(arg1); return Qnil; }
|
|
1691
1771
|
static VALUE _wrap_FXMDIWindowButton_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
1692
1772
|
FXMDIWindowButton *arg1 = (FXMDIWindowButton *) 0 ; FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1))
|
|
1693
1773
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
@@ -1789,10 +1869,10 @@ static VALUE _wrap_FXMDIMenu_getHeightForWidth(int argc, VALUE *argv, VALUE self
|
|
|
1789
1869
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
1790
1870
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMenu, 1); arg2 = NUM2INT(argv[0]);
|
|
1791
1871
|
result = (FXint)FXMDIMenu_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
|
|
1792
|
-
static VALUE _wrap_FXMDIMenu_canFocus(int argc, VALUE *argv, VALUE self) { FXMDIMenu *arg1 = (FXMDIMenu *) 0 ;
|
|
1872
|
+
static VALUE _wrap_FXMDIMenu_canFocus(int argc, VALUE *argv, VALUE self) { FXMDIMenu *arg1 = (FXMDIMenu *) 0 ; bool result;
|
|
1793
1873
|
VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1794
|
-
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMenu, 1);
|
|
1795
|
-
|
|
1874
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMenu, 1); result = (bool)FXMDIMenu_canFocus((FXMDIMenu const *)arg1);
|
|
1875
|
+
vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
1796
1876
|
static VALUE _wrap_FXMDIMenu_setFocus(int argc, VALUE *argv, VALUE self) { FXMDIMenu *arg1 = (FXMDIMenu *) 0 ;
|
|
1797
1877
|
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1798
1878
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMenu, 1); FXMDIMenu_setFocus(arg1); return Qnil; }
|
|
@@ -1847,24 +1927,36 @@ static VALUE _wrap_FXMDIMenu_show(int argc, VALUE *argv, VALUE self) { FXMDIMenu
|
|
|
1847
1927
|
static VALUE _wrap_FXMDIMenu_hide(int argc, VALUE *argv, VALUE self) { FXMDIMenu *arg1 = (FXMDIMenu *) 0 ;
|
|
1848
1928
|
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1849
1929
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMenu, 1); FXMDIMenu_hide(arg1); return Qnil; }
|
|
1850
|
-
static VALUE _wrap_FXMDIMenu_isComposite(int argc, VALUE *argv, VALUE self) { FXMDIMenu *arg1 = (FXMDIMenu *) 0 ;
|
|
1930
|
+
static VALUE _wrap_FXMDIMenu_isComposite(int argc, VALUE *argv, VALUE self) { FXMDIMenu *arg1 = (FXMDIMenu *) 0 ; bool result;
|
|
1851
1931
|
VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1852
1932
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMenu, 1);
|
|
1853
|
-
result = (
|
|
1933
|
+
result = (bool)FXMDIMenu_isComposite((FXMDIMenu const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
1854
1934
|
static VALUE _wrap_FXMDIMenu_contains(int argc, VALUE *argv, VALUE self) { FXMDIMenu *arg1 = (FXMDIMenu *) 0 ; FXint arg2 ;
|
|
1855
|
-
FXint arg3 ;
|
|
1935
|
+
FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
|
|
1856
1936
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
|
|
1857
1937
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMenu, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
|
|
1858
|
-
result = (
|
|
1859
|
-
static VALUE _wrap_FXMDIMenu_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXMDIMenu *arg1 = (FXMDIMenu *) 0 ;
|
|
1860
|
-
|
|
1861
|
-
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1938
|
+
result = (bool)FXMDIMenu_contains((FXMDIMenu const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
1939
|
+
static VALUE _wrap_FXMDIMenu_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXMDIMenu *arg1 = (FXMDIMenu *) 0 ; bool result;
|
|
1940
|
+
VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1862
1941
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMenu, 1);
|
|
1863
|
-
result = (
|
|
1942
|
+
result = (bool)FXMDIMenu_doesSaveUnder((FXMDIMenu const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
1864
1943
|
static VALUE _wrap_FXMDIMenu_setBackColor(int argc, VALUE *argv, VALUE self) { FXMDIMenu *arg1 = (FXMDIMenu *) 0 ;
|
|
1865
1944
|
FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
1866
1945
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMenu, 1); arg2 = to_FXColor(argv[0]);
|
|
1867
1946
|
FXMDIMenu_setBackColor(arg1,arg2); return Qnil; }
|
|
1947
|
+
static VALUE _wrap_FXMDIMenu_tr(int argc, VALUE *argv, VALUE self) { FXMDIMenu *arg1 = (FXMDIMenu *) 0 ; FXchar *arg2 ;
|
|
1948
|
+
FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
|
|
1949
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
1950
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMenu, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
|
|
1951
|
+
arg3 = StringValuePtr(argv[1]); }
|
|
1952
|
+
result = (FXchar *)FXMDIMenu_tr((FXMDIMenu const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
|
|
1953
|
+
vresult = rb_str_new2(result); return vresult; }
|
|
1954
|
+
static VALUE _wrap_FXMDIMenu_dropEnable(int argc, VALUE *argv, VALUE self) { FXMDIMenu *arg1 = (FXMDIMenu *) 0 ;
|
|
1955
|
+
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1956
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMenu, 1); FXMDIMenu_dropEnable(arg1); return Qnil; }
|
|
1957
|
+
static VALUE _wrap_FXMDIMenu_dropDisable(int argc, VALUE *argv, VALUE self) { FXMDIMenu *arg1 = (FXMDIMenu *) 0 ;
|
|
1958
|
+
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
1959
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMenu, 1); FXMDIMenu_dropDisable(arg1); return Qnil; }
|
|
1868
1960
|
static VALUE _wrap_FXMDIMenu_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXMDIMenu *arg1 = (FXMDIMenu *) 0 ;
|
|
1869
1961
|
FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
1870
1962
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIMenu, 1);
|
|
@@ -2160,10 +2252,10 @@ static VALUE _wrap_FXMDIClient_getHeightForWidth(int argc, VALUE *argv, VALUE se
|
|
|
2160
2252
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIClient, 1); arg2 = NUM2INT(argv[0]);
|
|
2161
2253
|
result = (FXint)FXMDIClient_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
|
|
2162
2254
|
static VALUE _wrap_FXMDIClient_canFocus(int argc, VALUE *argv, VALUE self) { FXMDIClient *arg1 = (FXMDIClient *) 0 ;
|
|
2163
|
-
|
|
2255
|
+
bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
2164
2256
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2165
2257
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIClient, 1);
|
|
2166
|
-
result = (
|
|
2258
|
+
result = (bool)FXMDIClient_canFocus((FXMDIClient const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
2167
2259
|
static VALUE _wrap_FXMDIClient_setFocus(int argc, VALUE *argv, VALUE self) { FXMDIClient *arg1 = (FXMDIClient *) 0 ;
|
|
2168
2260
|
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2169
2261
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIClient, 1); FXMDIClient_setFocus(arg1); return Qnil; }
|
|
@@ -2219,25 +2311,38 @@ static VALUE _wrap_FXMDIClient_hide(int argc, VALUE *argv, VALUE self) { FXMDICl
|
|
|
2219
2311
|
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2220
2312
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIClient, 1); FXMDIClient_hide(arg1); return Qnil; }
|
|
2221
2313
|
static VALUE _wrap_FXMDIClient_isComposite(int argc, VALUE *argv, VALUE self) { FXMDIClient *arg1 = (FXMDIClient *) 0 ;
|
|
2222
|
-
|
|
2314
|
+
bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
2223
2315
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2224
2316
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIClient, 1);
|
|
2225
|
-
result = (
|
|
2317
|
+
result = (bool)FXMDIClient_isComposite((FXMDIClient const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
2226
2318
|
static VALUE _wrap_FXMDIClient_contains(int argc, VALUE *argv, VALUE self) { FXMDIClient *arg1 = (FXMDIClient *) 0 ;
|
|
2227
|
-
FXint arg2 ; FXint arg3 ;
|
|
2319
|
+
FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
|
|
2228
2320
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
|
|
2229
2321
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIClient, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
|
|
2230
|
-
result = (
|
|
2322
|
+
result = (bool)FXMDIClient_contains((FXMDIClient const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
|
|
2231
2323
|
return vresult; }
|
|
2232
2324
|
static VALUE _wrap_FXMDIClient_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXMDIClient *arg1 = (FXMDIClient *) 0 ;
|
|
2233
|
-
|
|
2325
|
+
bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
2234
2326
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2235
2327
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIClient, 1);
|
|
2236
|
-
result = (
|
|
2328
|
+
result = (bool)FXMDIClient_doesSaveUnder((FXMDIClient const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
2237
2329
|
static VALUE _wrap_FXMDIClient_setBackColor(int argc, VALUE *argv, VALUE self) { FXMDIClient *arg1 = (FXMDIClient *) 0 ;
|
|
2238
2330
|
FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
2239
2331
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIClient, 1); arg2 = to_FXColor(argv[0]);
|
|
2240
2332
|
FXMDIClient_setBackColor(arg1,arg2); return Qnil; }
|
|
2333
|
+
static VALUE _wrap_FXMDIClient_tr(int argc, VALUE *argv, VALUE self) { FXMDIClient *arg1 = (FXMDIClient *) 0 ; FXchar *arg2 ;
|
|
2334
|
+
FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
|
|
2335
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
2336
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIClient, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
|
|
2337
|
+
arg3 = StringValuePtr(argv[1]); }
|
|
2338
|
+
result = (FXchar *)FXMDIClient_tr((FXMDIClient const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
|
|
2339
|
+
vresult = rb_str_new2(result); return vresult; }
|
|
2340
|
+
static VALUE _wrap_FXMDIClient_dropEnable(int argc, VALUE *argv, VALUE self) { FXMDIClient *arg1 = (FXMDIClient *) 0 ;
|
|
2341
|
+
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2342
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIClient, 1); FXMDIClient_dropEnable(arg1); return Qnil; }
|
|
2343
|
+
static VALUE _wrap_FXMDIClient_dropDisable(int argc, VALUE *argv, VALUE self) { FXMDIClient *arg1 = (FXMDIClient *) 0 ;
|
|
2344
|
+
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2345
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIClient, 1); FXMDIClient_dropDisable(arg1); return Qnil; }
|
|
2241
2346
|
static VALUE _wrap_FXMDIClient_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXMDIClient *arg1 = (FXMDIClient *) 0 ;
|
|
2242
2347
|
FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
2243
2348
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIClient, 1);
|
|
@@ -2734,10 +2839,10 @@ static VALUE _wrap_FXMDIChild_getHeightForWidth(int argc, VALUE *argv, VALUE sel
|
|
|
2734
2839
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
2735
2840
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIChild, 1); arg2 = NUM2INT(argv[0]);
|
|
2736
2841
|
result = (FXint)FXMDIChild_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
|
|
2737
|
-
static VALUE _wrap_FXMDIChild_canFocus(int argc, VALUE *argv, VALUE self) { FXMDIChild *arg1 = (FXMDIChild *) 0 ;
|
|
2842
|
+
static VALUE _wrap_FXMDIChild_canFocus(int argc, VALUE *argv, VALUE self) { FXMDIChild *arg1 = (FXMDIChild *) 0 ; bool result;
|
|
2738
2843
|
VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2739
2844
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIChild, 1);
|
|
2740
|
-
result = (
|
|
2845
|
+
result = (bool)FXMDIChild_canFocus((FXMDIChild const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
2741
2846
|
static VALUE _wrap_FXMDIChild_setFocus(int argc, VALUE *argv, VALUE self) { FXMDIChild *arg1 = (FXMDIChild *) 0 ;
|
|
2742
2847
|
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2743
2848
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIChild, 1); FXMDIChild_setFocus(arg1); return Qnil; }
|
|
@@ -2793,25 +2898,37 @@ static VALUE _wrap_FXMDIChild_hide(int argc, VALUE *argv, VALUE self) { FXMDIChi
|
|
|
2793
2898
|
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2794
2899
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIChild, 1); FXMDIChild_hide(arg1); return Qnil; }
|
|
2795
2900
|
static VALUE _wrap_FXMDIChild_isComposite(int argc, VALUE *argv, VALUE self) { FXMDIChild *arg1 = (FXMDIChild *) 0 ;
|
|
2796
|
-
|
|
2901
|
+
bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
2797
2902
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2798
2903
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIChild, 1);
|
|
2799
|
-
result = (
|
|
2904
|
+
result = (bool)FXMDIChild_isComposite((FXMDIChild const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
2800
2905
|
static VALUE _wrap_FXMDIChild_contains(int argc, VALUE *argv, VALUE self) { FXMDIChild *arg1 = (FXMDIChild *) 0 ; FXint arg2 ;
|
|
2801
|
-
FXint arg3 ;
|
|
2906
|
+
FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
|
|
2802
2907
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
|
|
2803
2908
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIChild, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
|
|
2804
|
-
result = (
|
|
2805
|
-
return vresult; }
|
|
2909
|
+
result = (bool)FXMDIChild_contains((FXMDIChild const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
2806
2910
|
static VALUE _wrap_FXMDIChild_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXMDIChild *arg1 = (FXMDIChild *) 0 ;
|
|
2807
|
-
|
|
2911
|
+
bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
|
|
2808
2912
|
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2809
2913
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIChild, 1);
|
|
2810
|
-
result = (
|
|
2914
|
+
result = (bool)FXMDIChild_doesSaveUnder((FXMDIChild const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
|
|
2811
2915
|
static VALUE _wrap_FXMDIChild_setBackColor(int argc, VALUE *argv, VALUE self) { FXMDIChild *arg1 = (FXMDIChild *) 0 ;
|
|
2812
2916
|
FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
2813
2917
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIChild, 1); arg2 = to_FXColor(argv[0]);
|
|
2814
2918
|
FXMDIChild_setBackColor(arg1,arg2); return Qnil; }
|
|
2919
|
+
static VALUE _wrap_FXMDIChild_tr(int argc, VALUE *argv, VALUE self) { FXMDIChild *arg1 = (FXMDIChild *) 0 ; FXchar *arg2 ;
|
|
2920
|
+
FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
|
|
2921
|
+
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
2922
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIChild, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
|
|
2923
|
+
arg3 = StringValuePtr(argv[1]); }
|
|
2924
|
+
result = (FXchar *)FXMDIChild_tr((FXMDIChild const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
|
|
2925
|
+
vresult = rb_str_new2(result); return vresult; }
|
|
2926
|
+
static VALUE _wrap_FXMDIChild_dropEnable(int argc, VALUE *argv, VALUE self) { FXMDIChild *arg1 = (FXMDIChild *) 0 ;
|
|
2927
|
+
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2928
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIChild, 1); FXMDIChild_dropEnable(arg1); return Qnil; }
|
|
2929
|
+
static VALUE _wrap_FXMDIChild_dropDisable(int argc, VALUE *argv, VALUE self) { FXMDIChild *arg1 = (FXMDIChild *) 0 ;
|
|
2930
|
+
if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
|
|
2931
|
+
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIChild, 1); FXMDIChild_dropDisable(arg1); return Qnil; }
|
|
2815
2932
|
static VALUE _wrap_FXMDIChild_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXMDIChild *arg1 = (FXMDIChild *) 0 ;
|
|
2816
2933
|
FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
|
|
2817
2934
|
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMDIChild, 1);
|
|
@@ -2912,23 +3029,23 @@ static void *_p_FXMDIWindowButtonTo_p_FXFrame(void *x) {
|
|
|
2912
3029
|
static void *_p_FXRulerTo_p_FXFrame(void *x) {
|
|
2913
3030
|
return (void *)((FXFrame *) ((FXRuler *) x));
|
|
2914
3031
|
}
|
|
3032
|
+
static void *_p_FXVerticalSeparatorTo_p_FXFrame(void *x) {
|
|
3033
|
+
return (void *)((FXFrame *) (FXSeparator *) ((FXVerticalSeparator *) x));
|
|
3034
|
+
}
|
|
2915
3035
|
static void *_p_FXSeparatorTo_p_FXFrame(void *x) {
|
|
2916
3036
|
return (void *)((FXFrame *) ((FXSeparator *) x));
|
|
2917
3037
|
}
|
|
2918
3038
|
static void *_p_FXHorizontalSeparatorTo_p_FXFrame(void *x) {
|
|
2919
3039
|
return (void *)((FXFrame *) (FXSeparator *) ((FXHorizontalSeparator *) x));
|
|
2920
3040
|
}
|
|
2921
|
-
static void *_p_FXVerticalSeparatorTo_p_FXFrame(void *x) {
|
|
2922
|
-
return (void *)((FXFrame *) (FXSeparator *) ((FXVerticalSeparator *) x));
|
|
2923
|
-
}
|
|
2924
3041
|
static void *_p_FXStatusLineTo_p_FXFrame(void *x) {
|
|
2925
3042
|
return (void *)((FXFrame *) ((FXStatusLine *) x));
|
|
2926
3043
|
}
|
|
2927
3044
|
static void *_p_FXTabItemTo_p_FXFrame(void *x) {
|
|
2928
3045
|
return (void *)((FXFrame *) (FXLabel *) ((FXTabItem *) x));
|
|
2929
3046
|
}
|
|
2930
|
-
static void *
|
|
2931
|
-
return (void *)((FXFrame *) ((
|
|
3047
|
+
static void *_p_FXKnobTo_p_FXFrame(void *x) {
|
|
3048
|
+
return (void *)((FXFrame *) ((FXKnob *) x));
|
|
2932
3049
|
}
|
|
2933
3050
|
static void *_p_FXColorWheelTo_p_FXFrame(void *x) {
|
|
2934
3051
|
return (void *)((FXFrame *) ((FXColorWheel *) x));
|
|
@@ -2957,9 +3074,6 @@ static void *_p_FXOptionMenuTo_p_FXFrame(void *x) {
|
|
|
2957
3074
|
static void *_p_FXProgressBarTo_p_FXFrame(void *x) {
|
|
2958
3075
|
return (void *)((FXFrame *) ((FXProgressBar *) x));
|
|
2959
3076
|
}
|
|
2960
|
-
static void *_p_FXDockTitleTo_p_FXFrame(void *x) {
|
|
2961
|
-
return (void *)((FXFrame *) (FXDockHandler *) ((FXDockTitle *) x));
|
|
2962
|
-
}
|
|
2963
3077
|
static void *_p_FXHeaderTo_p_FXFrame(void *x) {
|
|
2964
3078
|
return (void *)((FXFrame *) ((FXHeader *) x));
|
|
2965
3079
|
}
|
|
@@ -2987,8 +3101,8 @@ static void *_p_FXButtonTo_p_FXFrame(void *x) {
|
|
|
2987
3101
|
static void *_p_FXColorBarTo_p_FXFrame(void *x) {
|
|
2988
3102
|
return (void *)((FXFrame *) ((FXColorBar *) x));
|
|
2989
3103
|
}
|
|
2990
|
-
static void *
|
|
2991
|
-
return (void *)((
|
|
3104
|
+
static void *_p_FXColorRingTo_p_FXFrame(void *x) {
|
|
3105
|
+
return (void *)((FXFrame *) ((FXColorRing *) x));
|
|
2992
3106
|
}
|
|
2993
3107
|
static void *_p_FXShutterItemTo_p_FXId(void *x) {
|
|
2994
3108
|
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
|
|
@@ -3137,6 +3251,9 @@ static void *_p_FXGroupBoxTo_p_FXId(void *x) {
|
|
|
3137
3251
|
static void *_p_FXMenuCascadeTo_p_FXId(void *x) {
|
|
3138
3252
|
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXMenuCaption *) ((FXMenuCascade *) x));
|
|
3139
3253
|
}
|
|
3254
|
+
static void *_p_FXColorRingTo_p_FXId(void *x) {
|
|
3255
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorRing *) x));
|
|
3256
|
+
}
|
|
3140
3257
|
static void *_p_FXDockHandlerTo_p_FXId(void *x) {
|
|
3141
3258
|
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXDockHandler *) x));
|
|
3142
3259
|
}
|
|
@@ -3179,9 +3296,6 @@ static void *_p_FXFrameTo_p_FXId(void *x) {
|
|
|
3179
3296
|
static void *_p_FX7SegmentTo_p_FXId(void *x) {
|
|
3180
3297
|
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FX7Segment *) x));
|
|
3181
3298
|
}
|
|
3182
|
-
static void *_p_FXDockTitleTo_p_FXId(void *x) {
|
|
3183
|
-
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
|
|
3184
|
-
}
|
|
3185
3299
|
static void *_p_FXStatusBarTo_p_FXId(void *x) {
|
|
3186
3300
|
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
|
|
3187
3301
|
}
|
|
@@ -3194,6 +3308,9 @@ static void *_p_FXCURCursorTo_p_FXId(void *x) {
|
|
|
3194
3308
|
static void *_p_FXCursorTo_p_FXId(void *x) {
|
|
3195
3309
|
return (void *)((FXId *) ((FXCursor *) x));
|
|
3196
3310
|
}
|
|
3311
|
+
static void *_p_FXKnobTo_p_FXId(void *x) {
|
|
3312
|
+
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXFrame *) ((FXKnob *) x));
|
|
3313
|
+
}
|
|
3197
3314
|
static void *_p_FXMenuCommandTo_p_FXId(void *x) {
|
|
3198
3315
|
return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXMenuCaption *) ((FXMenuCommand *) x));
|
|
3199
3316
|
}
|
|
@@ -3302,9 +3419,6 @@ static void *_p_FXScrollPaneTo_p_FXId(void *x) {
|
|
|
3302
3419
|
static void *_p_FXDocumentTo_p_FXObject(void *x) {
|
|
3303
3420
|
return (void *)((FXObject *) ((FXDocument *) x));
|
|
3304
3421
|
}
|
|
3305
|
-
static void *_p_FXGradientBarTo_p_FXObject(void *x) {
|
|
3306
|
-
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXGradientBar *) x));
|
|
3307
|
-
}
|
|
3308
3422
|
static void *_p_FXRegistryTo_p_FXObject(void *x) {
|
|
3309
3423
|
return (void *)((FXObject *) (FXDict *)(FXSettings *) ((FXRegistry *) x));
|
|
3310
3424
|
}
|
|
@@ -3407,6 +3521,9 @@ static void *_p_FXAppTo_p_FXObject(void *x) {
|
|
|
3407
3521
|
static void *_p_FXHeaderTo_p_FXObject(void *x) {
|
|
3408
3522
|
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXHeader *) x));
|
|
3409
3523
|
}
|
|
3524
|
+
static void *_p_FXTranslatorTo_p_FXObject(void *x) {
|
|
3525
|
+
return (void *)((FXObject *) ((FXTranslator *) x));
|
|
3526
|
+
}
|
|
3410
3527
|
static void *_p_FX4SplitterTo_p_FXObject(void *x) {
|
|
3411
3528
|
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FX4Splitter *) x));
|
|
3412
3529
|
}
|
|
@@ -3476,6 +3593,9 @@ static void *_p_FXGroupBoxTo_p_FXObject(void *x) {
|
|
|
3476
3593
|
static void *_p_FXMenuCascadeTo_p_FXObject(void *x) {
|
|
3477
3594
|
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXMenuCaption *) ((FXMenuCascade *) x));
|
|
3478
3595
|
}
|
|
3596
|
+
static void *_p_FXColorRingTo_p_FXObject(void *x) {
|
|
3597
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXColorRing *) x));
|
|
3598
|
+
}
|
|
3479
3599
|
static void *_p_FXDebugTargetTo_p_FXObject(void *x) {
|
|
3480
3600
|
return (void *)((FXObject *) ((FXDebugTarget *) x));
|
|
3481
3601
|
}
|
|
@@ -3524,9 +3644,6 @@ static void *_p_FXFrameTo_p_FXObject(void *x) {
|
|
|
3524
3644
|
static void *_p_FX7SegmentTo_p_FXObject(void *x) {
|
|
3525
3645
|
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FX7Segment *) x));
|
|
3526
3646
|
}
|
|
3527
|
-
static void *_p_FXDockTitleTo_p_FXObject(void *x) {
|
|
3528
|
-
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
|
|
3529
|
-
}
|
|
3530
3647
|
static void *_p_FXStringDictTo_p_FXObject(void *x) {
|
|
3531
3648
|
return (void *)((FXObject *) (FXDict *) ((FXStringDict *) x));
|
|
3532
3649
|
}
|
|
@@ -3548,6 +3665,9 @@ static void *_p_FXCURCursorTo_p_FXObject(void *x) {
|
|
|
3548
3665
|
static void *_p_FXGIFCursorTo_p_FXObject(void *x) {
|
|
3549
3666
|
return (void *)((FXObject *) (FXId *)(FXCursor *) ((FXGIFCursor *) x));
|
|
3550
3667
|
}
|
|
3668
|
+
static void *_p_FXKnobTo_p_FXObject(void *x) {
|
|
3669
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXKnob *) x));
|
|
3670
|
+
}
|
|
3551
3671
|
static void *_p_FXMenuCommandTo_p_FXObject(void *x) {
|
|
3552
3672
|
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXMenuCaption *) ((FXMenuCommand *) x));
|
|
3553
3673
|
}
|
|
@@ -3623,12 +3743,12 @@ static void *_p_FXRulerTo_p_FXObject(void *x) {
|
|
|
3623
3743
|
static void *_p_FXDialTo_p_FXObject(void *x) {
|
|
3624
3744
|
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXFrame *) ((FXDial *) x));
|
|
3625
3745
|
}
|
|
3626
|
-
static void *_p_FXHorizontalFrameTo_p_FXObject(void *x) {
|
|
3627
|
-
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
|
|
3628
|
-
}
|
|
3629
3746
|
static void *_p_FXVerticalFrameTo_p_FXObject(void *x) {
|
|
3630
3747
|
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
|
|
3631
3748
|
}
|
|
3749
|
+
static void *_p_FXHorizontalFrameTo_p_FXObject(void *x) {
|
|
3750
|
+
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
|
|
3751
|
+
}
|
|
3632
3752
|
static void *_p_FXImageViewTo_p_FXObject(void *x) {
|
|
3633
3753
|
return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXImageView *) x));
|
|
3634
3754
|
}
|
|
@@ -3668,9 +3788,6 @@ static void *_p_FXScrollPaneTo_p_FXPopup(void *x) {
|
|
|
3668
3788
|
static void *_p_FXMDIWindowButtonTo_p_FXMenuButton(void *x) {
|
|
3669
3789
|
return (void *)((FXMenuButton *) ((FXMDIWindowButton *) x));
|
|
3670
3790
|
}
|
|
3671
|
-
static void *_p_FXGradientBarTo_p_FXWindow(void *x) {
|
|
3672
|
-
return (void *)((FXWindow *) (FXFrame *) ((FXGradientBar *) x));
|
|
3673
|
-
}
|
|
3674
3791
|
static void *_p_FXShutterItemTo_p_FXWindow(void *x) {
|
|
3675
3792
|
return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
|
|
3676
3793
|
}
|
|
@@ -3815,6 +3932,9 @@ static void *_p_FXMenuCascadeTo_p_FXWindow(void *x) {
|
|
|
3815
3932
|
static void *_p_FXGroupBoxTo_p_FXWindow(void *x) {
|
|
3816
3933
|
return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXGroupBox *) x));
|
|
3817
3934
|
}
|
|
3935
|
+
static void *_p_FXColorRingTo_p_FXWindow(void *x) {
|
|
3936
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXColorRing *) x));
|
|
3937
|
+
}
|
|
3818
3938
|
static void *_p_FXDockHandlerTo_p_FXWindow(void *x) {
|
|
3819
3939
|
return (void *)((FXWindow *) (FXFrame *) ((FXDockHandler *) x));
|
|
3820
3940
|
}
|
|
@@ -3851,12 +3971,12 @@ static void *_p_FXFrameTo_p_FXWindow(void *x) {
|
|
|
3851
3971
|
static void *_p_FX7SegmentTo_p_FXWindow(void *x) {
|
|
3852
3972
|
return (void *)((FXWindow *) (FXFrame *) ((FX7Segment *) x));
|
|
3853
3973
|
}
|
|
3854
|
-
static void *_p_FXDockTitleTo_p_FXWindow(void *x) {
|
|
3855
|
-
return (void *)((FXWindow *) (FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
|
|
3856
|
-
}
|
|
3857
3974
|
static void *_p_FXStatusBarTo_p_FXWindow(void *x) {
|
|
3858
3975
|
return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
|
|
3859
3976
|
}
|
|
3977
|
+
static void *_p_FXKnobTo_p_FXWindow(void *x) {
|
|
3978
|
+
return (void *)((FXWindow *) (FXFrame *) ((FXKnob *) x));
|
|
3979
|
+
}
|
|
3860
3980
|
static void *_p_FXMenuCommandTo_p_FXWindow(void *x) {
|
|
3861
3981
|
return (void *)((FXWindow *) (FXMenuCaption *) ((FXMenuCommand *) x));
|
|
3862
3982
|
}
|
|
@@ -4187,9 +4307,6 @@ static void *_p_FXFileStreamTo_p_FXStream(void *x) {
|
|
|
4187
4307
|
static void *_p_FXMemoryStreamTo_p_FXStream(void *x) {
|
|
4188
4308
|
return (void *)((FXStream *) ((FXMemoryStream *) x));
|
|
4189
4309
|
}
|
|
4190
|
-
static void *_p_FXGradientBarTo_p_FXDrawable(void *x) {
|
|
4191
|
-
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXGradientBar *) x));
|
|
4192
|
-
}
|
|
4193
4310
|
static void *_p_FXShutterItemTo_p_FXDrawable(void *x) {
|
|
4194
4311
|
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
|
|
4195
4312
|
}
|
|
@@ -4334,6 +4451,9 @@ static void *_p_FXGroupBoxTo_p_FXDrawable(void *x) {
|
|
|
4334
4451
|
static void *_p_FXMenuCascadeTo_p_FXDrawable(void *x) {
|
|
4335
4452
|
return (void *)((FXDrawable *) (FXWindow *)(FXMenuCaption *) ((FXMenuCascade *) x));
|
|
4336
4453
|
}
|
|
4454
|
+
static void *_p_FXColorRingTo_p_FXDrawable(void *x) {
|
|
4455
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXColorRing *) x));
|
|
4456
|
+
}
|
|
4337
4457
|
static void *_p_FXDockHandlerTo_p_FXDrawable(void *x) {
|
|
4338
4458
|
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXDockHandler *) x));
|
|
4339
4459
|
}
|
|
@@ -4370,12 +4490,12 @@ static void *_p_FXFrameTo_p_FXDrawable(void *x) {
|
|
|
4370
4490
|
static void *_p_FX7SegmentTo_p_FXDrawable(void *x) {
|
|
4371
4491
|
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FX7Segment *) x));
|
|
4372
4492
|
}
|
|
4373
|
-
static void *_p_FXDockTitleTo_p_FXDrawable(void *x) {
|
|
4374
|
-
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *)(FXDockHandler *) ((FXDockTitle *) x));
|
|
4375
|
-
}
|
|
4376
4493
|
static void *_p_FXStatusBarTo_p_FXDrawable(void *x) {
|
|
4377
4494
|
return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXHorizontalFrame *) ((FXStatusBar *) x));
|
|
4378
4495
|
}
|
|
4496
|
+
static void *_p_FXKnobTo_p_FXDrawable(void *x) {
|
|
4497
|
+
return (void *)((FXDrawable *) (FXWindow *)(FXFrame *) ((FXKnob *) x));
|
|
4498
|
+
}
|
|
4379
4499
|
static void *_p_FXMenuCommandTo_p_FXDrawable(void *x) {
|
|
4380
4500
|
return (void *)((FXDrawable *) (FXWindow *)(FXMenuCaption *) ((FXMenuCommand *) x));
|
|
4381
4501
|
}
|
|
@@ -4487,14 +4607,14 @@ static void *_p_FXMDIMenuTo_p_FXMenuPane(void *x) {
|
|
|
4487
4607
|
static void *_p_FXScrollPaneTo_p_FXMenuPane(void *x) {
|
|
4488
4608
|
return (void *)((FXMenuPane *) ((FXScrollPane *) x));
|
|
4489
4609
|
}
|
|
4490
|
-
static swig_type_info _swigt__p_FXFrame[] = {{"_p_FXFrame", 0, "FXFrame *", 0, 0, 0, 0},{"_p_FXOption", _p_FXOptionTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXMDIMinimizeButton", _p_FXMDIMinimizeButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXTriStateButton", _p_FXTriStateButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXToggleButton", _p_FXToggleButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXRadioButton", _p_FXRadioButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXMenuButton", _p_FXMenuButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXMDIWindowButton", _p_FXMDIWindowButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXCheckButton", _p_FXCheckButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXMDIDeleteButton", _p_FXMDIDeleteButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXMDIRestoreButton", _p_FXMDIRestoreButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXMDIMaximizeButton", _p_FXMDIMaximizeButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXRuler", _p_FXRulerTo_p_FXFrame, 0, 0, 0, 0, 0},{"
|
|
4610
|
+
static swig_type_info _swigt__p_FXFrame[] = {{"_p_FXFrame", 0, "FXFrame *", 0, 0, 0, 0},{"_p_FXOption", _p_FXOptionTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXDial", _p_FXDialTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXTextField", _p_FXTextFieldTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXMDIMinimizeButton", _p_FXMDIMinimizeButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXTriStateButton", _p_FXTriStateButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXToggleButton", _p_FXToggleButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXRadioButton", _p_FXRadioButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXMenuButton", _p_FXMenuButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXMDIWindowButton", _p_FXMDIWindowButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXCheckButton", _p_FXCheckButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXArrowButton", _p_FXArrowButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXMDIDeleteButton", _p_FXMDIDeleteButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXMDIRestoreButton", _p_FXMDIRestoreButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXMDIMaximizeButton", _p_FXMDIMaximizeButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXRuler", _p_FXRulerTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXStatusLine", _p_FXStatusLineTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXTabItem", _p_FXTabItemTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXColorWheel", _p_FXColorWheelTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXBitmapFrame", _p_FXBitmapFrameTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXToolBarGrip", _p_FXToolBarGripTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXDockHandler", _p_FXDockHandlerTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXImageFrame", _p_FXImageFrameTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXLabel", _p_FXLabelTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXPicker", _p_FXPickerTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXOptionMenu", _p_FXOptionMenuTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXKnob", _p_FXKnobTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXProgressBar", _p_FXProgressBarTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXHeader", _p_FXHeaderTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXColorWell", _p_FXColorWellTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXToolBarTab", _p_FXToolBarTabTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXFrame", 0, 0, 0, 0, 0, 0},{"_p_FX7Segment", _p_FX7SegmentTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXRealSlider", _p_FXRealSliderTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXSlider", _p_FXSliderTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXButton", _p_FXButtonTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXColorBar", _p_FXColorBarTo_p_FXFrame, 0, 0, 0, 0, 0},{"_p_FXColorRing", _p_FXColorRingTo_p_FXFrame, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4491
4611
|
static swig_type_info _swigt__p_FXMDIClient[] = {{"_p_FXMDIClient", 0, "FXMDIClient *", 0, 0, 0, 0},{"_p_FXMDIClient", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4492
|
-
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},{"
|
|
4612
|
+
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_FXMDIChild", _p_FXMDIChildTo_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_FXMDIMenu", _p_FXMDIMenuTo_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_FXCheckButton", _p_FXCheckButtonTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMenuButton", _p_FXMenuButtonTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMDIWindowButton", _p_FXMDIWindowButtonTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRadioButton", _p_FXRadioButtonTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXToggleButton", _p_FXToggleButtonTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTriStateButton", _p_FXTriStateButtonTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMDIDeleteButton", _p_FXMDIDeleteButtonTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMDIRestoreButton", _p_FXMDIRestoreButtonTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMDIMaximizeButton", _p_FXMDIMaximizeButtonTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMDIMinimizeButton", _p_FXMDIMinimizeButtonTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXPicker", _p_FXPickerTo_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_FX4Splitter", _p_FX4SplitterTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_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_FXMenuSeparator", _p_FXMenuSeparatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_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_FXMDIClient", _p_FXMDIClientTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXToolTip", _p_FXToolTipTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_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_FXGroupBox", _p_FXGroupBoxTo_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_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_FXButton", _p_FXButtonTo_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_FXTabItem", _p_FXTabItemTo_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_FXRealSpinner", _p_FXRealSpinnerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_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_FXStatusLine", _p_FXStatusLineTo_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_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_FXLabel", _p_FXLabelTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXOption", _p_FXOptionTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXOptionMenu", _p_FXOptionMenuTo_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_FXDirSelector", _p_FXDirSelectorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFileSelector", _p_FXFileSelectorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXColorSelector", _p_FXColorSelectorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFontSelector", _p_FXFontSelectorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXImageView", _p_FXImageViewTo_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}};
|
|
4493
4613
|
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_FXMDIMenu", _p_FXMDIMenuTo_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}};
|
|
4494
4614
|
static swig_type_info _swigt__p_FXMDIChild[] = {{"_p_FXMDIChild", 0, "FXMDIChild *", 0, 0, 0, 0},{"_p_FXMDIChild", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4495
4615
|
static swig_type_info _swigt__p_FXMDIDeleteButton[] = {{"_p_FXMDIDeleteButton", 0, "FXMDIDeleteButton *", 0, 0, 0, 0},{"_p_FXMDIDeleteButton", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4496
4616
|
static swig_type_info _swigt__p_FXMenuButton[] = {{"_p_FXMenuButton", 0, "FXMenuButton *", 0, 0, 0, 0},{"_p_FXMenuButton", 0, 0, 0, 0, 0, 0},{"_p_FXMDIWindowButton", _p_FXMDIWindowButtonTo_p_FXMenuButton, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4497
|
-
static swig_type_info _swigt__p_FXWindow[] = {{"_p_FXWindow", 0, "FXWindow *", 0, 0, 0, 0},{"
|
|
4617
|
+
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_FXMDIChild", _p_FXMDIChildTo_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_FXMDIMenu", _p_FXMDIMenuTo_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_FXCheckButton", _p_FXCheckButtonTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMenuButton", _p_FXMenuButtonTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMDIWindowButton", _p_FXMDIWindowButtonTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXRadioButton", _p_FXRadioButtonTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXToggleButton", _p_FXToggleButtonTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTriStateButton", _p_FXTriStateButtonTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMDIDeleteButton", _p_FXMDIDeleteButtonTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMDIRestoreButton", _p_FXMDIRestoreButtonTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMDIMaximizeButton", _p_FXMDIMaximizeButtonTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMDIMinimizeButton", _p_FXMDIMinimizeButtonTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXPicker", _p_FXPickerTo_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_FXMenuSeparator", _p_FXMenuSeparatorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_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_FXMDIClient", _p_FXMDIClientTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXToolTip", _p_FXToolTipTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_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_FXGroupBox", _p_FXGroupBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMenuCascade", _p_FXMenuCascadeTo_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_FXListBox", _p_FXListBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTreeListBox", _p_FXTreeListBoxTo_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_FXButton", _p_FXButtonTo_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_FXTabItem", _p_FXTabItemTo_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_FXRealSpinner", _p_FXRealSpinnerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_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_FXStatusLine", _p_FXStatusLineTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMenuCaption", _p_FXMenuCaptionTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMenuTitle", _p_FXMenuTitleTo_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_FXLabel", _p_FXLabelTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXOption", _p_FXOptionTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXOptionMenu", _p_FXOptionMenuTo_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_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXImageView", _p_FXImageViewTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXDirSelector", _p_FXDirSelectorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXFileSelector", _p_FXFileSelectorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXColorSelector", _p_FXColorSelectorTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXFontSelector", _p_FXFontSelectorTo_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}};
|
|
4498
4618
|
static swig_type_info _swigt__p_FXLabel[] = {{"_p_FXLabel", 0, "FXLabel *", 0, 0, 0, 0},{"_p_FXPicker", _p_FXPickerTo_p_FXLabel, 0, 0, 0, 0, 0},{"_p_FXMDIMinimizeButton", _p_FXMDIMinimizeButtonTo_p_FXLabel, 0, 0, 0, 0, 0},{"_p_FXMDIMaximizeButton", _p_FXMDIMaximizeButtonTo_p_FXLabel, 0, 0, 0, 0, 0},{"_p_FXMDIRestoreButton", _p_FXMDIRestoreButtonTo_p_FXLabel, 0, 0, 0, 0, 0},{"_p_FXMDIDeleteButton", _p_FXMDIDeleteButtonTo_p_FXLabel, 0, 0, 0, 0, 0},{"_p_FXTriStateButton", _p_FXTriStateButtonTo_p_FXLabel, 0, 0, 0, 0, 0},{"_p_FXToggleButton", _p_FXToggleButtonTo_p_FXLabel, 0, 0, 0, 0, 0},{"_p_FXRadioButton", _p_FXRadioButtonTo_p_FXLabel, 0, 0, 0, 0, 0},{"_p_FXMenuButton", _p_FXMenuButtonTo_p_FXLabel, 0, 0, 0, 0, 0},{"_p_FXCheckButton", _p_FXCheckButtonTo_p_FXLabel, 0, 0, 0, 0, 0},{"_p_FXMDIWindowButton", _p_FXMDIWindowButtonTo_p_FXLabel, 0, 0, 0, 0, 0},{"_p_FXLabel", 0, 0, 0, 0, 0, 0},{"_p_FXButton", _p_FXButtonTo_p_FXLabel, 0, 0, 0, 0, 0},{"_p_FXTabItem", _p_FXTabItemTo_p_FXLabel, 0, 0, 0, 0, 0},{"_p_FXOption", _p_FXOptionTo_p_FXLabel, 0, 0, 0, 0, 0},{"_p_FXOptionMenu", _p_FXOptionMenuTo_p_FXLabel, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4499
4619
|
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_FXMDIClient", _p_FXMDIClientTo_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_FXScrollWindow", _p_FXScrollWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_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_FXMDIChild", _p_FXMDIChildTo_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_FXSwitcher", _p_FXSwitcherTo_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_FXFileSelector", _p_FXFileSelectorTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXDirSelector", _p_FXDirSelectorTo_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_FXTreeListBox", _p_FXTreeListBoxTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXListBox", _p_FXListBoxTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_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},{"_p_FXMDIMenu", _p_FXMDIMenuTo_p_FXComposite, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4500
4620
|
static swig_type_info _swigt__p_FXMDIRestoreButton[] = {{"_p_FXMDIRestoreButton", 0, "FXMDIRestoreButton *", 0, 0, 0, 0},{"_p_FXMDIRestoreButton", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
@@ -4502,13 +4622,13 @@ static swig_type_info _swigt__p_FXMDIMaximizeButton[] = {{"_p_FXMDIMaximizeButto
|
|
|
4502
4622
|
static swig_type_info _swigt__p_FXMDIMinimizeButton[] = {{"_p_FXMDIMinimizeButton", 0, "FXMDIMinimizeButton *", 0, 0, 0, 0},{"_p_FXMDIMinimizeButton", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4503
4623
|
static swig_type_info _swigt__p_FXMDIWindowButton[] = {{"_p_FXMDIWindowButton", 0, "FXMDIWindowButton *", 0, 0, 0, 0},{"_p_FXMDIWindowButton", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4504
4624
|
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}};
|
|
4505
|
-
static swig_type_info _swigt__p_FXId[] = {{"_p_FXId", 0, "FXId *", 0, 0, 0, 0},{"
|
|
4625
|
+
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_FXMDIChild", _p_FXMDIChildTo_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_FXMDIMenu", _p_FXMDIMenuTo_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_FXCheckButton", _p_FXCheckButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMenuButton", _p_FXMenuButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMDIWindowButton", _p_FXMDIWindowButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXRadioButton", _p_FXRadioButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXToggleButton", _p_FXToggleButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTriStateButton", _p_FXTriStateButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMDIDeleteButton", _p_FXMDIDeleteButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMDIRestoreButton", _p_FXMDIRestoreButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMDIMaximizeButton", _p_FXMDIMaximizeButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMDIMinimizeButton", _p_FXMDIMinimizeButtonTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXPicker", _p_FXPickerTo_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_FXMenuSeparator", _p_FXMenuSeparatorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_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_FXMDIClient", _p_FXMDIClientTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXToolTip", _p_FXToolTipTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_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_FXGroupBox", _p_FXGroupBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMenuCascade", _p_FXMenuCascadeTo_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_FXListBox", _p_FXListBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTreeListBox", _p_FXTreeListBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXId", 0, 0, 0, 0, 0, 0},{"_p_FXCanvas", _p_FXCanvasTo_p_FXId, 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_FXButton", _p_FXButtonTo_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_FXTabItem", _p_FXTabItemTo_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_FXRealSpinner", _p_FXRealSpinnerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_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_FXStatusLine", _p_FXStatusLineTo_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_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_FXLabel", _p_FXLabelTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXOption", _p_FXOptionTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXOptionMenu", _p_FXOptionMenuTo_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_FXDirSelector", _p_FXDirSelectorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXFileSelector", _p_FXFileSelectorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXColorSelector", _p_FXColorSelectorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXFontSelector", _p_FXFontSelectorTo_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}};
|
|
4506
4626
|
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}};
|
|
4507
4627
|
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_FXMDIMenu", _p_FXMDIMenuTo_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}};
|
|
4508
4628
|
static swig_type_info _swigt__p_FXMDIMenu[] = {{"_p_FXMDIMenu", 0, "FXMDIMenu *", 0, 0, 0, 0},{"_p_FXMDIMenu", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4509
4629
|
static swig_type_info _swigt__p_FXButton[] = {{"_p_FXButton", 0, "FXButton *", 0, 0, 0, 0},{"_p_FXButton", 0, 0, 0, 0, 0, 0},{"_p_FXPicker", _p_FXPickerTo_p_FXButton, 0, 0, 0, 0, 0},{"_p_FXMDIDeleteButton", _p_FXMDIDeleteButtonTo_p_FXButton, 0, 0, 0, 0, 0},{"_p_FXMDIRestoreButton", _p_FXMDIRestoreButtonTo_p_FXButton, 0, 0, 0, 0, 0},{"_p_FXMDIMaximizeButton", _p_FXMDIMaximizeButtonTo_p_FXButton, 0, 0, 0, 0, 0},{"_p_FXMDIMinimizeButton", _p_FXMDIMinimizeButtonTo_p_FXButton, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4510
4630
|
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}};
|
|
4511
|
-
static swig_type_info _swigt__p_FXDrawable[] = {{"_p_FXDrawable", 0, "FXDrawable *", 0, 0, 0, 0},{"
|
|
4631
|
+
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_FXMDIChild", _p_FXMDIChildTo_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_FXMDIMenu", _p_FXMDIMenuTo_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_FXCheckButton", _p_FXCheckButtonTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMenuButton", _p_FXMenuButtonTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMDIWindowButton", _p_FXMDIWindowButtonTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRadioButton", _p_FXRadioButtonTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXToggleButton", _p_FXToggleButtonTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTriStateButton", _p_FXTriStateButtonTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMDIDeleteButton", _p_FXMDIDeleteButtonTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMDIRestoreButton", _p_FXMDIRestoreButtonTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMDIMaximizeButton", _p_FXMDIMaximizeButtonTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMDIMinimizeButton", _p_FXMDIMinimizeButtonTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXPicker", _p_FXPickerTo_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_FXMenuSeparator", _p_FXMenuSeparatorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXVerticalSeparator", _p_FXVerticalSeparatorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXHorizontalSeparator", _p_FXHorizontalSeparatorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSeparator", _p_FXSeparatorTo_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_FXMDIClient", _p_FXMDIClientTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXToolTip", _p_FXToolTipTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_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_FXGroupBox", _p_FXGroupBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMenuCascade", _p_FXMenuCascadeTo_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_FXListBox", _p_FXListBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTreeListBox", _p_FXTreeListBoxTo_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_FXButton", _p_FXButtonTo_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_FXTabItem", _p_FXTabItemTo_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_FXRealSpinner", _p_FXRealSpinnerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSpinner", _p_FXSpinnerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_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_FXStatusLine", _p_FXStatusLineTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMenuCaption", _p_FXMenuCaptionTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMenuTitle", _p_FXMenuTitleTo_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_FXLabel", _p_FXLabelTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXOption", _p_FXOptionTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXOptionMenu", _p_FXOptionMenuTo_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_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXImageView", _p_FXImageViewTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDirSelector", _p_FXDirSelectorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXFileSelector", _p_FXFileSelectorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXColorSelector", _p_FXColorSelectorTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXFontSelector", _p_FXFontSelectorTo_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}};
|
|
4512
4632
|
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}};
|
|
4513
4633
|
static swig_type_info _swigt__p_FXRegion[] = {{"_p_FXRegion", 0, "FXRegion *", 0, 0, 0, 0},{"_p_FXRegion", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
4514
4634
|
static swig_type_info _swigt__p_FXMenuPane[] = {{"_p_FXMenuPane", 0, "FXMenuPane *", 0, 0, 0, 0},{"_p_FXMenuPane", 0, 0, 0, 0, 0, 0},{"_p_FXMDIMenu", _p_FXMDIMenuTo_p_FXMenuPane, 0, 0, 0, 0, 0},{"_p_FXScrollPane", _p_FXScrollPaneTo_p_FXMenuPane, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
@@ -4595,6 +4715,9 @@ SWIGEXPORT(void) Init_mdi(void) {
|
|
|
4595
4715
|
rb_define_method(cFXMDIDeleteButton.klass, "contains", VALUEFUNC(_wrap_FXMDIDeleteButton_contains), -1);
|
|
4596
4716
|
rb_define_method(cFXMDIDeleteButton.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXMDIDeleteButton_doesSaveUnder), -1);
|
|
4597
4717
|
rb_define_method(cFXMDIDeleteButton.klass, "setBackColor", VALUEFUNC(_wrap_FXMDIDeleteButton_setBackColor), -1);
|
|
4718
|
+
rb_define_method(cFXMDIDeleteButton.klass, "tr", VALUEFUNC(_wrap_FXMDIDeleteButton_tr), -1);
|
|
4719
|
+
rb_define_method(cFXMDIDeleteButton.klass, "dropEnable", VALUEFUNC(_wrap_FXMDIDeleteButton_dropEnable), -1);
|
|
4720
|
+
rb_define_method(cFXMDIDeleteButton.klass, "dropDisable", VALUEFUNC(_wrap_FXMDIDeleteButton_dropDisable), -1);
|
|
4598
4721
|
rb_define_method(cFXMDIDeleteButton.klass, "setShape", VALUEFUNC(_wrap_FXMDIDeleteButton_setShape), -1);
|
|
4599
4722
|
rb_define_method(cFXMDIDeleteButton.klass, "clearShape", VALUEFUNC(_wrap_FXMDIDeleteButton_clearShape), -1);
|
|
4600
4723
|
cFXMDIDeleteButton.mark = (void (*)(void *)) FXRbMDIDeleteButton::markfunc;
|
|
@@ -4635,6 +4758,9 @@ SWIGEXPORT(void) Init_mdi(void) {
|
|
|
4635
4758
|
rb_define_method(cFXMDIRestoreButton.klass, "contains", VALUEFUNC(_wrap_FXMDIRestoreButton_contains), -1);
|
|
4636
4759
|
rb_define_method(cFXMDIRestoreButton.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXMDIRestoreButton_doesSaveUnder), -1);
|
|
4637
4760
|
rb_define_method(cFXMDIRestoreButton.klass, "setBackColor", VALUEFUNC(_wrap_FXMDIRestoreButton_setBackColor), -1);
|
|
4761
|
+
rb_define_method(cFXMDIRestoreButton.klass, "tr", VALUEFUNC(_wrap_FXMDIRestoreButton_tr), -1);
|
|
4762
|
+
rb_define_method(cFXMDIRestoreButton.klass, "dropEnable", VALUEFUNC(_wrap_FXMDIRestoreButton_dropEnable), -1);
|
|
4763
|
+
rb_define_method(cFXMDIRestoreButton.klass, "dropDisable", VALUEFUNC(_wrap_FXMDIRestoreButton_dropDisable), -1);
|
|
4638
4764
|
rb_define_method(cFXMDIRestoreButton.klass, "setShape", VALUEFUNC(_wrap_FXMDIRestoreButton_setShape), -1);
|
|
4639
4765
|
rb_define_method(cFXMDIRestoreButton.klass, "clearShape", VALUEFUNC(_wrap_FXMDIRestoreButton_clearShape), -1);
|
|
4640
4766
|
cFXMDIRestoreButton.mark = (void (*)(void *)) FXRbMDIRestoreButton::markfunc;
|
|
@@ -4675,6 +4801,9 @@ SWIGEXPORT(void) Init_mdi(void) {
|
|
|
4675
4801
|
rb_define_method(cFXMDIMaximizeButton.klass, "contains", VALUEFUNC(_wrap_FXMDIMaximizeButton_contains), -1);
|
|
4676
4802
|
rb_define_method(cFXMDIMaximizeButton.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXMDIMaximizeButton_doesSaveUnder), -1);
|
|
4677
4803
|
rb_define_method(cFXMDIMaximizeButton.klass, "setBackColor", VALUEFUNC(_wrap_FXMDIMaximizeButton_setBackColor), -1);
|
|
4804
|
+
rb_define_method(cFXMDIMaximizeButton.klass, "tr", VALUEFUNC(_wrap_FXMDIMaximizeButton_tr), -1);
|
|
4805
|
+
rb_define_method(cFXMDIMaximizeButton.klass, "dropEnable", VALUEFUNC(_wrap_FXMDIMaximizeButton_dropEnable), -1);
|
|
4806
|
+
rb_define_method(cFXMDIMaximizeButton.klass, "dropDisable", VALUEFUNC(_wrap_FXMDIMaximizeButton_dropDisable), -1);
|
|
4678
4807
|
rb_define_method(cFXMDIMaximizeButton.klass, "setShape", VALUEFUNC(_wrap_FXMDIMaximizeButton_setShape), -1);
|
|
4679
4808
|
rb_define_method(cFXMDIMaximizeButton.klass, "clearShape", VALUEFUNC(_wrap_FXMDIMaximizeButton_clearShape), -1);
|
|
4680
4809
|
cFXMDIMaximizeButton.mark = (void (*)(void *)) FXRbMDIMaximizeButton::markfunc;
|
|
@@ -4715,6 +4844,9 @@ SWIGEXPORT(void) Init_mdi(void) {
|
|
|
4715
4844
|
rb_define_method(cFXMDIMinimizeButton.klass, "contains", VALUEFUNC(_wrap_FXMDIMinimizeButton_contains), -1);
|
|
4716
4845
|
rb_define_method(cFXMDIMinimizeButton.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXMDIMinimizeButton_doesSaveUnder), -1);
|
|
4717
4846
|
rb_define_method(cFXMDIMinimizeButton.klass, "setBackColor", VALUEFUNC(_wrap_FXMDIMinimizeButton_setBackColor), -1);
|
|
4847
|
+
rb_define_method(cFXMDIMinimizeButton.klass, "tr", VALUEFUNC(_wrap_FXMDIMinimizeButton_tr), -1);
|
|
4848
|
+
rb_define_method(cFXMDIMinimizeButton.klass, "dropEnable", VALUEFUNC(_wrap_FXMDIMinimizeButton_dropEnable), -1);
|
|
4849
|
+
rb_define_method(cFXMDIMinimizeButton.klass, "dropDisable", VALUEFUNC(_wrap_FXMDIMinimizeButton_dropDisable), -1);
|
|
4718
4850
|
rb_define_method(cFXMDIMinimizeButton.klass, "setShape", VALUEFUNC(_wrap_FXMDIMinimizeButton_setShape), -1);
|
|
4719
4851
|
rb_define_method(cFXMDIMinimizeButton.klass, "clearShape", VALUEFUNC(_wrap_FXMDIMinimizeButton_clearShape), -1);
|
|
4720
4852
|
cFXMDIMinimizeButton.mark = (void (*)(void *)) FXRbMDIMinimizeButton::markfunc;
|
|
@@ -4755,6 +4887,9 @@ SWIGEXPORT(void) Init_mdi(void) {
|
|
|
4755
4887
|
rb_define_method(cFXMDIWindowButton.klass, "contains", VALUEFUNC(_wrap_FXMDIWindowButton_contains), -1);
|
|
4756
4888
|
rb_define_method(cFXMDIWindowButton.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXMDIWindowButton_doesSaveUnder), -1);
|
|
4757
4889
|
rb_define_method(cFXMDIWindowButton.klass, "setBackColor", VALUEFUNC(_wrap_FXMDIWindowButton_setBackColor), -1);
|
|
4890
|
+
rb_define_method(cFXMDIWindowButton.klass, "tr", VALUEFUNC(_wrap_FXMDIWindowButton_tr), -1);
|
|
4891
|
+
rb_define_method(cFXMDIWindowButton.klass, "dropEnable", VALUEFUNC(_wrap_FXMDIWindowButton_dropEnable), -1);
|
|
4892
|
+
rb_define_method(cFXMDIWindowButton.klass, "dropDisable", VALUEFUNC(_wrap_FXMDIWindowButton_dropDisable), -1);
|
|
4758
4893
|
rb_define_method(cFXMDIWindowButton.klass, "setShape", VALUEFUNC(_wrap_FXMDIWindowButton_setShape), -1);
|
|
4759
4894
|
rb_define_method(cFXMDIWindowButton.klass, "clearShape", VALUEFUNC(_wrap_FXMDIWindowButton_clearShape), -1);
|
|
4760
4895
|
cFXMDIWindowButton.mark = (void (*)(void *)) FXRbMDIWindowButton::markfunc;
|
|
@@ -4794,6 +4929,9 @@ SWIGEXPORT(void) Init_mdi(void) {
|
|
|
4794
4929
|
rb_define_method(cFXMDIMenu.klass, "contains", VALUEFUNC(_wrap_FXMDIMenu_contains), -1);
|
|
4795
4930
|
rb_define_method(cFXMDIMenu.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXMDIMenu_doesSaveUnder), -1);
|
|
4796
4931
|
rb_define_method(cFXMDIMenu.klass, "setBackColor", VALUEFUNC(_wrap_FXMDIMenu_setBackColor), -1);
|
|
4932
|
+
rb_define_method(cFXMDIMenu.klass, "tr", VALUEFUNC(_wrap_FXMDIMenu_tr), -1);
|
|
4933
|
+
rb_define_method(cFXMDIMenu.klass, "dropEnable", VALUEFUNC(_wrap_FXMDIMenu_dropEnable), -1);
|
|
4934
|
+
rb_define_method(cFXMDIMenu.klass, "dropDisable", VALUEFUNC(_wrap_FXMDIMenu_dropDisable), -1);
|
|
4797
4935
|
rb_define_method(cFXMDIMenu.klass, "setShape", VALUEFUNC(_wrap_FXMDIMenu_setShape), -1);
|
|
4798
4936
|
rb_define_method(cFXMDIMenu.klass, "clearShape", VALUEFUNC(_wrap_FXMDIMenu_clearShape), -1);
|
|
4799
4937
|
rb_define_method(cFXMDIMenu.klass, "popup", VALUEFUNC(_wrap_FXMDIMenu_popup), -1);
|
|
@@ -4888,6 +5026,9 @@ SWIGEXPORT(void) Init_mdi(void) {
|
|
|
4888
5026
|
rb_define_method(cFXMDIClient.klass, "contains", VALUEFUNC(_wrap_FXMDIClient_contains), -1);
|
|
4889
5027
|
rb_define_method(cFXMDIClient.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXMDIClient_doesSaveUnder), -1);
|
|
4890
5028
|
rb_define_method(cFXMDIClient.klass, "setBackColor", VALUEFUNC(_wrap_FXMDIClient_setBackColor), -1);
|
|
5029
|
+
rb_define_method(cFXMDIClient.klass, "tr", VALUEFUNC(_wrap_FXMDIClient_tr), -1);
|
|
5030
|
+
rb_define_method(cFXMDIClient.klass, "dropEnable", VALUEFUNC(_wrap_FXMDIClient_dropEnable), -1);
|
|
5031
|
+
rb_define_method(cFXMDIClient.klass, "dropDisable", VALUEFUNC(_wrap_FXMDIClient_dropDisable), -1);
|
|
4891
5032
|
rb_define_method(cFXMDIClient.klass, "setShape", VALUEFUNC(_wrap_FXMDIClient_setShape), -1);
|
|
4892
5033
|
rb_define_method(cFXMDIClient.klass, "clearShape", VALUEFUNC(_wrap_FXMDIClient_clearShape), -1);
|
|
4893
5034
|
rb_define_method(cFXMDIClient.klass, "setActiveChild", VALUEFUNC(_wrap_FXMDIClient_setActiveChild), -1);
|
|
@@ -5006,6 +5147,9 @@ SWIGEXPORT(void) Init_mdi(void) {
|
|
|
5006
5147
|
rb_define_method(cFXMDIChild.klass, "contains", VALUEFUNC(_wrap_FXMDIChild_contains), -1);
|
|
5007
5148
|
rb_define_method(cFXMDIChild.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXMDIChild_doesSaveUnder), -1);
|
|
5008
5149
|
rb_define_method(cFXMDIChild.klass, "setBackColor", VALUEFUNC(_wrap_FXMDIChild_setBackColor), -1);
|
|
5150
|
+
rb_define_method(cFXMDIChild.klass, "tr", VALUEFUNC(_wrap_FXMDIChild_tr), -1);
|
|
5151
|
+
rb_define_method(cFXMDIChild.klass, "dropEnable", VALUEFUNC(_wrap_FXMDIChild_dropEnable), -1);
|
|
5152
|
+
rb_define_method(cFXMDIChild.klass, "dropDisable", VALUEFUNC(_wrap_FXMDIChild_dropDisable), -1);
|
|
5009
5153
|
rb_define_method(cFXMDIChild.klass, "setShape", VALUEFUNC(_wrap_FXMDIChild_setShape), -1);
|
|
5010
5154
|
rb_define_method(cFXMDIChild.klass, "clearShape", VALUEFUNC(_wrap_FXMDIChild_clearShape), -1);
|
|
5011
5155
|
rb_define_method(cFXMDIChild.klass, "minimize", VALUEFUNC(_wrap_FXMDIChild_minimize), -1);
|