qtbindings 4.6.3.0-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.txt +9 -0
- data/CMakeLists.txt +22 -0
- data/COPYING.LIB.txt +510 -0
- data/COPYING.txt +286 -0
- data/KNOWN_ISSUES.txt +20 -0
- data/README.txt +92 -0
- data/Rakefile +96 -0
- data/TODO.txt +2 -0
- data/bin/1.8/rbrcc.exe +0 -0
- data/bin/1.8/rbuic4.exe +0 -0
- data/bin/1.8/smokeapi.exe +0 -0
- data/bin/1.8/smokedeptool.exe +0 -0
- data/bin/1.9/rbrcc.exe +0 -0
- data/bin/1.9/rbuic4.exe +0 -0
- data/bin/1.9/smokeapi.exe +0 -0
- data/bin/1.9/smokedeptool.exe +0 -0
- data/bin/Qt3Support4.dll +0 -0
- data/bin/QtAssistantClient4.dll +0 -0
- data/bin/QtCLucene4.dll +0 -0
- data/bin/QtCore4.dll +0 -0
- data/bin/QtDesigner4.dll +0 -0
- data/bin/QtDesignerComponents4.dll +0 -0
- data/bin/QtGui4.dll +0 -0
- data/bin/QtHelp4.dll +0 -0
- data/bin/QtMultimedia4.dll +0 -0
- data/bin/QtNetwork4.dll +0 -0
- data/bin/QtOpenGL4.dll +0 -0
- data/bin/QtScript4.dll +0 -0
- data/bin/QtScriptTools4.dll +0 -0
- data/bin/QtSql4.dll +0 -0
- data/bin/QtSvg4.dll +0 -0
- data/bin/QtTest4.dll +0 -0
- data/bin/QtWebKit4.dll +0 -0
- data/bin/QtXml4.dll +0 -0
- data/bin/QtXmlPatterns4.dll +0 -0
- data/bin/libgcc_s_dw2-1.dll +0 -0
- data/bin/mingwm10.dll +0 -0
- data/bin/phonon4.dll +0 -0
- data/bin/plugins/arthurplugin.dll +0 -0
- data/bin/plugins/containerextension.dll +0 -0
- data/bin/plugins/customwidgetplugin.dll +0 -0
- data/bin/plugins/phononwidgets.dll +0 -0
- data/bin/plugins/qcncodecs4.dll +0 -0
- data/bin/plugins/qgif4.dll +0 -0
- data/bin/plugins/qglgraphicssystem4.dll +0 -0
- data/bin/plugins/qico4.dll +0 -0
- data/bin/plugins/qjpcodecs4.dll +0 -0
- data/bin/plugins/qjpeg4.dll +0 -0
- data/bin/plugins/qkrcodecs4.dll +0 -0
- data/bin/plugins/qmng4.dll +0 -0
- data/bin/plugins/qsqlite4.dll +0 -0
- data/bin/plugins/qsqlodbc4.dll +0 -0
- data/bin/plugins/qsvg4.dll +0 -0
- data/bin/plugins/qsvgicon4.dll +0 -0
- data/bin/plugins/qt3supportwidgets.dll +0 -0
- data/bin/plugins/qtaccessiblecompatwidgets4.dll +0 -0
- data/bin/plugins/qtaccessiblewidgets4.dll +0 -0
- data/bin/plugins/qtiff4.dll +0 -0
- data/bin/plugins/qtracegraphicssystem4.dll +0 -0
- data/bin/plugins/qtwcodecs4.dll +0 -0
- data/bin/plugins/qwebview.dll +0 -0
- data/bin/plugins/taskmenuextension.dll +0 -0
- data/bin/plugins/worldtimeclockplugin.dll +0 -0
- data/bin/rbqtapi +152 -0
- data/bin/rbrcc +18 -0
- data/bin/rbuic4 +18 -0
- data/bin/smokeapi +18 -0
- data/bin/smokedeptool +18 -0
- data/examples/base/kicons.rb +54 -0
- data/examples/base/rui.rb +21 -0
- data/examples/designer/calculatorbuilder/calculatorbuilder.qrc +5 -0
- data/examples/designer/calculatorbuilder/calculatorform.rb +60 -0
- data/examples/designer/calculatorbuilder/calculatorform.ui +299 -0
- data/examples/designer/calculatorbuilder/main.rb +34 -0
- data/examples/designer/calculatorbuilder/makefile +2 -0
- data/examples/designer/calculatorform/calculatorform.rb +46 -0
- data/examples/designer/calculatorform/calculatorform.ui +277 -0
- data/examples/designer/calculatorform/main.rb +32 -0
- data/examples/designer/calculatorform/makefile +3 -0
- data/examples/desktop/screenshot/main.rb +32 -0
- data/examples/desktop/screenshot/screenshot.rb +156 -0
- data/examples/desktop/systray/images/bad.svg +64 -0
- data/examples/desktop/systray/images/heart.svg +55 -0
- data/examples/desktop/systray/images/trash.svg +58 -0
- data/examples/desktop/systray/main.rb +41 -0
- data/examples/desktop/systray/makefile +2 -0
- data/examples/desktop/systray/systray.qrc +7 -0
- data/examples/desktop/systray/window.rb +223 -0
- data/examples/dialogs/complexwizard/complexwizard.rb +140 -0
- data/examples/dialogs/complexwizard/licensewizard.rb +294 -0
- data/examples/dialogs/complexwizard/main.rb +31 -0
- data/examples/dialogs/configdialog/configdialog.rb +109 -0
- data/examples/dialogs/configdialog/images/config.png +0 -0
- data/examples/dialogs/configdialog/images/query.png +0 -0
- data/examples/dialogs/configdialog/images/update.png +0 -0
- data/examples/dialogs/configdialog/main.rb +31 -0
- data/examples/dialogs/configdialog/pages.rb +140 -0
- data/examples/dialogs/extension/finddialog.rb +89 -0
- data/examples/dialogs/extension/main.rb +31 -0
- data/examples/dialogs/findfiles/main.rb +32 -0
- data/examples/dialogs/findfiles/window.rb +177 -0
- data/examples/dialogs/simplewizard/classwizard.rb +374 -0
- data/examples/dialogs/simplewizard/main.rb +31 -0
- data/examples/dialogs/simplewizard/simplewizard.rb +110 -0
- data/examples/dialogs/standarddialogs/dialog.rb +340 -0
- data/examples/dialogs/standarddialogs/main.rb +31 -0
- data/examples/dialogs/tabdialog/main.rb +38 -0
- data/examples/dialogs/tabdialog/tabdialog.rb +178 -0
- data/examples/draganddrop/draggableicons/dragwidget.rb +125 -0
- data/examples/draganddrop/draggableicons/images/boat.png +0 -0
- data/examples/draganddrop/draggableicons/images/car.png +0 -0
- data/examples/draganddrop/draggableicons/images/house.png +0 -0
- data/examples/draganddrop/draggableicons/main.rb +41 -0
- data/examples/draganddrop/draggabletext/draglabel.rb +51 -0
- data/examples/draganddrop/draggabletext/dragwidget.rb +94 -0
- data/examples/draganddrop/draggabletext/main.rb +33 -0
- data/examples/draganddrop/draggabletext/words.txt +41 -0
- data/examples/draganddrop/dropsite/dropsitewidget.rb +98 -0
- data/examples/draganddrop/dropsite/dropsitewindow.rb +114 -0
- data/examples/draganddrop/dropsite/main.rb +33 -0
- data/examples/draganddrop/fridgemagnets/draglabel.rb +78 -0
- data/examples/draganddrop/fridgemagnets/dragwidget.rb +130 -0
- data/examples/draganddrop/fridgemagnets/main.rb +33 -0
- data/examples/draganddrop/fridgemagnets/words.txt +48 -0
- data/examples/draganddrop/puzzle/example.jpg +0 -0
- data/examples/draganddrop/puzzle/main.rb +33 -0
- data/examples/draganddrop/puzzle/mainwindow.rb +136 -0
- data/examples/draganddrop/puzzle/pieceslist.rb +95 -0
- data/examples/draganddrop/puzzle/puzzlewidget.rb +190 -0
- data/examples/graphicsview/collidingmice/images/cheese.jpg +0 -0
- data/examples/graphicsview/collidingmice/main.rb +53 -0
- data/examples/graphicsview/collidingmice/makefile +2 -0
- data/examples/graphicsview/collidingmice/mice.qrc +5 -0
- data/examples/graphicsview/collidingmice/mouse.rb +176 -0
- data/examples/graphicsview/dragdroprobot/coloritem.rb +86 -0
- data/examples/graphicsview/dragdroprobot/images/head.png +0 -0
- data/examples/graphicsview/dragdroprobot/main.rb +57 -0
- data/examples/graphicsview/dragdroprobot/makefile +2 -0
- data/examples/graphicsview/dragdroprobot/robot.qrc +5 -0
- data/examples/graphicsview/dragdroprobot/robot.rb +246 -0
- data/examples/itemviews/chart/chart.qrc +5 -0
- data/examples/itemviews/chart/main.rb +33 -0
- data/examples/itemviews/chart/mainwindow.rb +151 -0
- data/examples/itemviews/chart/makefile +2 -0
- data/examples/itemviews/chart/mydata.cht +8 -0
- data/examples/itemviews/chart/pieview.rb +516 -0
- data/examples/itemviews/chart/qtdata.cht +14 -0
- data/examples/itemviews/dirview/main.rb +39 -0
- data/examples/itemviews/pixelator/imagemodel.rb +51 -0
- data/examples/itemviews/pixelator/images.qrc +5 -0
- data/examples/itemviews/pixelator/images/qt.png +0 -0
- data/examples/itemviews/pixelator/main.rb +34 -0
- data/examples/itemviews/pixelator/mainwindow.rb +218 -0
- data/examples/itemviews/pixelator/makefile +3 -0
- data/examples/itemviews/pixelator/pixeldelegate.rb +67 -0
- data/examples/itemviews/puzzle/example.jpg +0 -0
- data/examples/itemviews/puzzle/main.rb +36 -0
- data/examples/itemviews/puzzle/mainwindow.rb +143 -0
- data/examples/itemviews/puzzle/piecesmodel.rb +174 -0
- data/examples/itemviews/puzzle/puzzlewidget.rb +192 -0
- data/examples/itemviews/simpledommodel/domitem.rb +62 -0
- data/examples/itemviews/simpledommodel/dommodel.rb +139 -0
- data/examples/itemviews/simpledommodel/main.rb +33 -0
- data/examples/itemviews/simpledommodel/mainwindow.rb +66 -0
- data/examples/itemviews/simpletreemodel/default.txt +40 -0
- data/examples/itemviews/simpletreemodel/main.rb +41 -0
- data/examples/itemviews/simpletreemodel/makefile +2 -0
- data/examples/itemviews/simpletreemodel/simpletreemodel.qrc +5 -0
- data/examples/itemviews/simpletreemodel/treeitem.rb +67 -0
- data/examples/itemviews/simpletreemodel/treemodel.rb +164 -0
- data/examples/itemviews/sortingmodel/default.txt +40 -0
- data/examples/itemviews/sortingmodel/main.rb +53 -0
- data/examples/itemviews/sortingmodel/treeitem.rb +73 -0
- data/examples/itemviews/sortingmodel/treemodel.rb +166 -0
- data/examples/itemviews/spinboxdelegate/main.rb +47 -0
- data/examples/itemviews/spinboxdelegate/spinboxdelegate.rb +62 -0
- data/examples/killerfilter/killerfilter.rb +55 -0
- data/examples/layouts/basiclayouts/dialog.rb +110 -0
- data/examples/layouts/basiclayouts/main.rb +31 -0
- data/examples/layouts/borderlayout/borderlayout.rb +190 -0
- data/examples/layouts/borderlayout/main.rb +32 -0
- data/examples/layouts/borderlayout/window.rb +52 -0
- data/examples/layouts/flowlayouts/flowlayout.rb +108 -0
- data/examples/layouts/flowlayouts/main.rb +32 -0
- data/examples/layouts/flowlayouts/window.rb +43 -0
- data/examples/mainwindows/application/images/copy.png +0 -0
- data/examples/mainwindows/application/images/cut.png +0 -0
- data/examples/mainwindows/application/images/new.png +0 -0
- data/examples/mainwindows/application/images/open.png +0 -0
- data/examples/mainwindows/application/images/paste.png +0 -0
- data/examples/mainwindows/application/images/save.png +0 -0
- data/examples/mainwindows/application/main.rb +32 -0
- data/examples/mainwindows/application/mainwindow.rb +285 -0
- data/examples/mainwindows/dockwidgets/images/new.png +0 -0
- data/examples/mainwindows/dockwidgets/images/print.png +0 -0
- data/examples/mainwindows/dockwidgets/images/save.png +0 -0
- data/examples/mainwindows/dockwidgets/images/undo.png +0 -0
- data/examples/mainwindows/dockwidgets/main.rb +32 -0
- data/examples/mainwindows/dockwidgets/mainwindow.rb +302 -0
- data/examples/mainwindows/mdi/images/copy.png +0 -0
- data/examples/mainwindows/mdi/images/cut.png +0 -0
- data/examples/mainwindows/mdi/images/new.png +0 -0
- data/examples/mainwindows/mdi/images/open.png +0 -0
- data/examples/mainwindows/mdi/images/paste.png +0 -0
- data/examples/mainwindows/mdi/images/save.png +0 -0
- data/examples/mainwindows/mdi/main.rb +32 -0
- data/examples/mainwindows/mdi/mainwindow.rb +363 -0
- data/examples/mainwindows/mdi/mdichild.rb +152 -0
- data/examples/mainwindows/menus/main.rb +32 -0
- data/examples/mainwindows/menus/mainwindow.rb +327 -0
- data/examples/mainwindows/recentfiles/main.rb +32 -0
- data/examples/mainwindows/recentfiles/mainwindow.rb +258 -0
- data/examples/mainwindows/sdi/images/copy.png +0 -0
- data/examples/mainwindows/sdi/images/cut.png +0 -0
- data/examples/mainwindows/sdi/images/new.png +0 -0
- data/examples/mainwindows/sdi/images/open.png +0 -0
- data/examples/mainwindows/sdi/images/paste.png +0 -0
- data/examples/mainwindows/sdi/images/save.png +0 -0
- data/examples/mainwindows/sdi/main.rb +32 -0
- data/examples/mainwindows/sdi/mainwindow.rb +335 -0
- data/examples/network/broadcastreceiver/main.rb +32 -0
- data/examples/network/broadcastreceiver/receiver.rb +64 -0
- data/examples/network/broadcastsender/main.rb +32 -0
- data/examples/network/broadcastsender/sender.rb +70 -0
- data/examples/network/fortuneclient/client.rb +150 -0
- data/examples/network/fortuneclient/main.rb +32 -0
- data/examples/network/fortuneserver/main.rb +32 -0
- data/examples/network/fortuneserver/server.rb +88 -0
- data/examples/network/ftp/ftpwindow.rb +254 -0
- data/examples/network/ftp/images/cdtoparent.png +0 -0
- data/examples/network/ftp/images/dir.png +0 -0
- data/examples/network/ftp/images/file.png +0 -0
- data/examples/network/ftp/main.rb +32 -0
- data/examples/network/http/httpwindow.rb +187 -0
- data/examples/network/http/main.rb +32 -0
- data/examples/network/loopback/dialog.rb +163 -0
- data/examples/network/loopback/main.rb +32 -0
- data/examples/opengl/grabber/glwidget.rb +265 -0
- data/examples/opengl/grabber/main.rb +32 -0
- data/examples/opengl/grabber/mainwindow.rb +189 -0
- data/examples/opengl/hellogl/glwidget.rb +226 -0
- data/examples/opengl/hellogl/main.rb +32 -0
- data/examples/opengl/hellogl/window.rb +66 -0
- data/examples/opengl/textures/glwidget.rb +151 -0
- data/examples/opengl/textures/images/side1.png +0 -0
- data/examples/opengl/textures/images/side2.png +0 -0
- data/examples/opengl/textures/images/side3.png +0 -0
- data/examples/opengl/textures/images/side4.png +0 -0
- data/examples/opengl/textures/images/side5.png +0 -0
- data/examples/opengl/textures/images/side6.png +0 -0
- data/examples/opengl/textures/main.rb +32 -0
- data/examples/opengl/textures/window.rb +77 -0
- data/examples/painting/basicdrawing/images/brick.png +0 -0
- data/examples/painting/basicdrawing/images/qt-logo.png +0 -0
- data/examples/painting/basicdrawing/main.rb +32 -0
- data/examples/painting/basicdrawing/renderarea.rb +166 -0
- data/examples/painting/basicdrawing/window.rb +215 -0
- data/examples/painting/concentriccircles/circlewidget.rb +88 -0
- data/examples/painting/concentriccircles/main.rb +32 -0
- data/examples/painting/concentriccircles/window.rb +72 -0
- data/examples/painting/fontsampler/main.rb +32 -0
- data/examples/painting/fontsampler/mainwindow.rb +368 -0
- data/examples/painting/fontsampler/mainwindowbase.ui +136 -0
- data/examples/painting/fontsampler/makefile +8 -0
- data/examples/painting/fontsampler/previewdialog.rb +256 -0
- data/examples/painting/fontsampler/previewdialogbase.ui +224 -0
- data/examples/painting/fontsampler/previewlabel.rb +43 -0
- data/examples/painting/imagecomposition/imagecomposer.rb +152 -0
- data/examples/painting/imagecomposition/imagecomposition.qrc +6 -0
- data/examples/painting/imagecomposition/images/background.png +0 -0
- data/examples/painting/imagecomposition/images/blackrectangle.png +0 -0
- data/examples/painting/imagecomposition/images/butterfly.png +0 -0
- data/examples/painting/imagecomposition/images/checker.png +0 -0
- data/examples/painting/imagecomposition/main.rb +33 -0
- data/examples/painting/imagecomposition/makefile +2 -0
- data/examples/painting/painterpaths/main.rb +32 -0
- data/examples/painting/painterpaths/renderarea.rb +97 -0
- data/examples/painting/painterpaths/window.rb +247 -0
- data/examples/painting/svgviewer/files/bubbles.svg +212 -0
- data/examples/painting/svgviewer/files/cubic.svg +77 -0
- data/examples/painting/svgviewer/files/spheres.svg +79 -0
- data/examples/painting/svgviewer/main.rb +38 -0
- data/examples/painting/svgviewer/mainwindow.rb +99 -0
- data/examples/painting/svgviewer/makefile +2 -0
- data/examples/painting/svgviewer/svgview.rb +156 -0
- data/examples/painting/svgviewer/svgviewer.qrc +6 -0
- data/examples/painting/svgviewer/svgwindow.rb +87 -0
- data/examples/painting/transformations/main.rb +32 -0
- data/examples/painting/transformations/renderarea.rb +127 -0
- data/examples/painting/transformations/window.rb +153 -0
- data/examples/passivepopup/passivepopup.rb +38 -0
- data/examples/qdbus/chat/chat.rb +146 -0
- data/examples/qdbus/chat/chat_adaptor.rb +12 -0
- data/examples/qdbus/chat/chat_interface.rb +13 -0
- data/examples/qdbus/chat/chatmainwindow.ui +184 -0
- data/examples/qdbus/chat/chatsetnickname.ui +145 -0
- data/examples/qdbus/chat/makefile +8 -0
- data/examples/qdbus/complexpingpong/complexping.rb +92 -0
- data/examples/qdbus/complexpingpong/complexpong.rb +83 -0
- data/examples/qdbus/complexpingpong/ping-common.rb +1 -0
- data/examples/qdbus/listnames/listnames.rb +69 -0
- data/examples/qdbus/pingpong/ping-common.rb +1 -0
- data/examples/qdbus/pingpong/ping.rb +52 -0
- data/examples/qdbus/pingpong/pong.rb +55 -0
- data/examples/qdbus/remotecontrolledcar/car/car.rb +151 -0
- data/examples/qdbus/remotecontrolledcar/car/main.rb +50 -0
- data/examples/qdbus/remotecontrolledcar/controller/controller.rb +66 -0
- data/examples/qdbus/remotecontrolledcar/controller/controller.ui +61 -0
- data/examples/qdbus/remotecontrolledcar/controller/main.rb +32 -0
- data/examples/qdbus/remotecontrolledcar/controller/makefile +2 -0
- data/examples/qtscribble/scribble.rb +270 -0
- data/examples/richtext/calendar/main.rb +33 -0
- data/examples/richtext/calendar/mainwindow.rb +173 -0
- data/examples/richtext/orderform/detailsdialog.rb +130 -0
- data/examples/richtext/orderform/main.rb +34 -0
- data/examples/richtext/orderform/mainwindow.rb +194 -0
- data/examples/richtext/syntaxhighlighter/examples/example +79 -0
- data/examples/richtext/syntaxhighlighter/highlighter.rb +90 -0
- data/examples/richtext/syntaxhighlighter/main.rb +34 -0
- data/examples/richtext/syntaxhighlighter/mainwindow.rb +105 -0
- data/examples/ruboids/Manifest +26 -0
- data/examples/ruboids/README +53 -0
- data/examples/ruboids/TODO +29 -0
- data/examples/ruboids/boids.properties +33 -0
- data/examples/ruboids/generateManifest.rb +42 -0
- data/examples/ruboids/index.html +147 -0
- data/examples/ruboids/release.rb +152 -0
- data/examples/ruboids/ruboids/Boid.rb +141 -0
- data/examples/ruboids/ruboids/BoidView.rb +159 -0
- data/examples/ruboids/ruboids/Camera.rb +24 -0
- data/examples/ruboids/ruboids/CameraDialog.rb +218 -0
- data/examples/ruboids/ruboids/Canvas.rb +143 -0
- data/examples/ruboids/ruboids/Cloud.rb +61 -0
- data/examples/ruboids/ruboids/CloudView.rb +54 -0
- data/examples/ruboids/ruboids/Flock.rb +47 -0
- data/examples/ruboids/ruboids/Graphics.rb +278 -0
- data/examples/ruboids/ruboids/Params.rb +87 -0
- data/examples/ruboids/ruboids/Point.rb +153 -0
- data/examples/ruboids/ruboids/Thing.rb +34 -0
- data/examples/ruboids/ruboids/Triangle.rb +21 -0
- data/examples/ruboids/ruboids/View.rb +88 -0
- data/examples/ruboids/ruboids/World.rb +82 -0
- data/examples/ruboids/ruboids/WorldWindow.rb +52 -0
- data/examples/ruboids/ruboids/info.rb +12 -0
- data/examples/ruboids/ruboids/ruboids.rb +29 -0
- data/examples/run_all.rb +14 -0
- data/examples/textedit/textedit.rb +150 -0
- data/examples/tutorial/t1/t1.rb +10 -0
- data/examples/tutorial/t10/cannon.rb +72 -0
- data/examples/tutorial/t10/lcdrange.rb +45 -0
- data/examples/tutorial/t10/t10.rb +55 -0
- data/examples/tutorial/t11/cannon.rb +124 -0
- data/examples/tutorial/t11/lcdrange.rb +45 -0
- data/examples/tutorial/t11/t11.rb +65 -0
- data/examples/tutorial/t12/cannon.rb +158 -0
- data/examples/tutorial/t12/lcdrange.rb +59 -0
- data/examples/tutorial/t12/t12.rb +66 -0
- data/examples/tutorial/t13/cannon.rb +208 -0
- data/examples/tutorial/t13/gamebrd.rb +113 -0
- data/examples/tutorial/t13/lcdrange.rb +60 -0
- data/examples/tutorial/t13/t13.rb +11 -0
- data/examples/tutorial/t14/cannon.rb +263 -0
- data/examples/tutorial/t14/gamebrd.rb +123 -0
- data/examples/tutorial/t14/lcdrange.rb +63 -0
- data/examples/tutorial/t14/t14.rb +11 -0
- data/examples/tutorial/t2/t2.rb +16 -0
- data/examples/tutorial/t3/t3.rb +18 -0
- data/examples/tutorial/t4/t4.rb +25 -0
- data/examples/tutorial/t5/t5.rb +37 -0
- data/examples/tutorial/t6/t6.rb +52 -0
- data/examples/tutorial/t7/lcdrange.rb +32 -0
- data/examples/tutorial/t7/t7.rb +42 -0
- data/examples/tutorial/t8/cannon.rb +38 -0
- data/examples/tutorial/t8/lcdrange.rb +45 -0
- data/examples/tutorial/t8/t8.rb +43 -0
- data/examples/tutorial/t9/cannon.rb +45 -0
- data/examples/tutorial/t9/lcdrange.rb +46 -0
- data/examples/tutorial/t9/t9.rb +43 -0
- data/examples/widgets/analogclock/analogclock.rb +94 -0
- data/examples/widgets/analogclock/main.rb +9 -0
- data/examples/widgets/calculator/button.rb +45 -0
- data/examples/widgets/calculator/calculator.rb +382 -0
- data/examples/widgets/calculator/main.rb +32 -0
- data/examples/widgets/charactermap/characterwidget.rb +110 -0
- data/examples/widgets/charactermap/main.rb +32 -0
- data/examples/widgets/charactermap/mainwindow.rb +118 -0
- data/examples/widgets/digitalclock/digitalclock.rb +30 -0
- data/examples/widgets/digitalclock/main.rb +9 -0
- data/examples/widgets/groupbox/main.rb +32 -0
- data/examples/widgets/groupbox/window.rb +134 -0
- data/examples/widgets/icons/iconpreviewarea.rb +111 -0
- data/examples/widgets/icons/iconsizespinbox.rb +39 -0
- data/examples/widgets/icons/imagedelegate.rb +73 -0
- data/examples/widgets/icons/images/designer.png +0 -0
- data/examples/widgets/icons/images/find_disabled.png +0 -0
- data/examples/widgets/icons/images/find_normal.png +0 -0
- data/examples/widgets/icons/images/monkey_off_128x128.png +0 -0
- data/examples/widgets/icons/images/monkey_off_16x16.png +0 -0
- data/examples/widgets/icons/images/monkey_off_32x32.png +0 -0
- data/examples/widgets/icons/images/monkey_off_64x64.png +0 -0
- data/examples/widgets/icons/images/monkey_on_128x128.png +0 -0
- data/examples/widgets/icons/images/monkey_on_16x16.png +0 -0
- data/examples/widgets/icons/images/monkey_on_32x32.png +0 -0
- data/examples/widgets/icons/images/monkey_on_64x64.png +0 -0
- data/examples/widgets/icons/images/qtopia_16x16.png +0 -0
- data/examples/widgets/icons/images/qtopia_32x32.png +0 -0
- data/examples/widgets/icons/images/qtopia_48x48.png +0 -0
- data/examples/widgets/icons/main.rb +32 -0
- data/examples/widgets/icons/mainwindow.rb +351 -0
- data/examples/widgets/imageviewer/imageviewer.rb +219 -0
- data/examples/widgets/imageviewer/main.rb +32 -0
- data/examples/widgets/lineedits/main.rb +32 -0
- data/examples/widgets/lineedits/window.rb +199 -0
- data/examples/widgets/movie/images/open.png +0 -0
- data/examples/widgets/movie/images/pause.png +0 -0
- data/examples/widgets/movie/images/play.png +0 -0
- data/examples/widgets/movie/images/quit.png +0 -0
- data/examples/widgets/movie/images/stop.png +0 -0
- data/examples/widgets/movie/main.rb +32 -0
- data/examples/widgets/movie/movieplayer.rb +201 -0
- data/examples/widgets/movie/movies/fire.mng +0 -0
- data/examples/widgets/screenshot/main.rb +32 -0
- data/examples/widgets/screenshot/screenshot.rb +155 -0
- data/examples/widgets/scribble/main.rb +32 -0
- data/examples/widgets/scribble/mainwindow.rb +202 -0
- data/examples/widgets/scribble/scribblearea.rb +154 -0
- data/examples/widgets/sliders/main.rb +32 -0
- data/examples/widgets/sliders/slidersgroup.rb +97 -0
- data/examples/widgets/sliders/window.rb +124 -0
- data/examples/widgets/spinboxes/main.rb +32 -0
- data/examples/widgets/spinboxes/window.rb +213 -0
- data/examples/widgets/tetrix/main.rb +33 -0
- data/examples/widgets/tetrix/tetrixboard.rb +346 -0
- data/examples/widgets/tetrix/tetrixpiece.rb +135 -0
- data/examples/widgets/tetrix/tetrixwindow.rb +88 -0
- data/examples/widgets/tooltips/images/circle.png +0 -0
- data/examples/widgets/tooltips/images/square.png +0 -0
- data/examples/widgets/tooltips/images/triangle.png +0 -0
- data/examples/widgets/tooltips/main.rb +32 -0
- data/examples/widgets/tooltips/shapeitem.rb +31 -0
- data/examples/widgets/tooltips/sortingbox.rb +222 -0
- data/examples/widgets/wiggly/dialog.rb +48 -0
- data/examples/widgets/wiggly/main.rb +9 -0
- data/examples/widgets/wiggly/wigglywidget.rb +76 -0
- data/examples/widgets/windowflags/controllerwindow.rb +195 -0
- data/examples/widgets/windowflags/main.rb +32 -0
- data/examples/widgets/windowflags/previewwindow.rb +103 -0
- data/examples/xml/dombookmarks/frank.xbel +230 -0
- data/examples/xml/dombookmarks/jennifer.xbel +93 -0
- data/examples/xml/dombookmarks/main.rb +34 -0
- data/examples/xml/dombookmarks/mainwindow.rb +129 -0
- data/examples/xml/dombookmarks/xbeltree.rb +172 -0
- data/examples/xml/saxbookmarks/frank.xbel +230 -0
- data/examples/xml/saxbookmarks/jennifer.xbel +93 -0
- data/examples/xml/saxbookmarks/main.rb +34 -0
- data/examples/xml/saxbookmarks/mainwindow.rb +144 -0
- data/examples/xml/saxbookmarks/xbelgenerator.rb +95 -0
- data/examples/xml/saxbookmarks/xbelhandler.rb +122 -0
- data/ext/CMakeLists.txt +22 -0
- data/ext/cmake/modules/CMakeCSharpCompiler.cmake.in +7 -0
- data/ext/cmake/modules/CMakeCSharpInformation.cmake +366 -0
- data/ext/cmake/modules/CMakeDetermineCSharpCompiler.cmake +85 -0
- data/ext/cmake/modules/CMakeTestCSharpCompiler.cmake +1 -0
- data/ext/cmake/modules/CheckCXXSourceCompiles.cmake +68 -0
- data/ext/cmake/modules/FindMono.cmake +36 -0
- data/ext/cmake/modules/FindPHP5.cmake +179 -0
- data/ext/cmake/modules/FindPerlMore.cmake +78 -0
- data/ext/cmake/modules/FindQScintilla.cmake +57 -0
- data/ext/cmake/modules/FindQt4.cmake +1271 -0
- data/ext/cmake/modules/FindQwt5.cmake +104 -0
- data/ext/cmake/modules/FindRuby.cmake +261 -0
- data/ext/cmake/modules/FindSmoke.cmake +78 -0
- data/ext/cmake/modules/HandleImportedTargetsInCMakeRequiredLibraries.cmake +85 -0
- data/ext/cmake/modules/MacroLogFeature.cmake +146 -0
- data/ext/cmake/modules/MacroOptionalAddBindings.cmake +47 -0
- data/ext/cmake/modules/MacroOptionalFindPackage.cmake +48 -0
- data/ext/cmake/modules/MacroPushRequiredVars.cmake +47 -0
- data/ext/cmake/modules/Qt4ConfigDependentSettings.cmake +384 -0
- data/ext/cmake/modules/Qt4Macros.cmake +414 -0
- data/ext/generator/CMakeLists.txt +38 -0
- data/ext/generator/generator_export.h +31 -0
- data/ext/generator/generatorenvironment.cpp +52 -0
- data/ext/generator/generatorenvironment.h +35 -0
- data/ext/generator/generatorpreprocessor.cpp +242 -0
- data/ext/generator/generatorpreprocessor.h +83 -0
- data/ext/generator/generators/CMakeLists.txt +4 -0
- data/ext/generator/generators/dump/CMakeLists.txt +10 -0
- data/ext/generator/generators/dump/generator_dump.cpp +36 -0
- data/ext/generator/generators/smoke/CMakeLists.txt +13 -0
- data/ext/generator/generators/smoke/generator_smoke.cpp +233 -0
- data/ext/generator/generators/smoke/globals.h +138 -0
- data/ext/generator/generators/smoke/helpers.cpp +773 -0
- data/ext/generator/generators/smoke/writeClasses.cpp +502 -0
- data/ext/generator/generators/smoke/writeSmokeDataFile.cpp +729 -0
- data/ext/generator/generatorvisitor.cpp +922 -0
- data/ext/generator/generatorvisitor.h +119 -0
- data/ext/generator/main.cpp +239 -0
- data/ext/generator/name_compiler.cpp +205 -0
- data/ext/generator/name_compiler.h +76 -0
- data/ext/generator/options.cpp +32 -0
- data/ext/generator/options.h +45 -0
- data/ext/generator/parser/CMakeLists.txt +41 -0
- data/ext/generator/parser/ast.cpp +21 -0
- data/ext/generator/parser/ast.h +923 -0
- data/ext/generator/parser/astutilities.h +65 -0
- data/ext/generator/parser/codegenerator.cpp +867 -0
- data/ext/generator/parser/codegenerator.h +180 -0
- data/ext/generator/parser/codemodel_fwd.h +76 -0
- data/ext/generator/parser/commentformatter.cpp +54 -0
- data/ext/generator/parser/commentformatter.h +45 -0
- data/ext/generator/parser/commentparser.cpp +109 -0
- data/ext/generator/parser/commentparser.h +84 -0
- data/ext/generator/parser/control.cpp +40 -0
- data/ext/generator/parser/control.h +51 -0
- data/ext/generator/parser/cppparser_export.h +33 -0
- data/ext/generator/parser/default_visitor.cpp +470 -0
- data/ext/generator/parser/default_visitor.h +116 -0
- data/ext/generator/parser/dumptree.cpp +146 -0
- data/ext/generator/parser/dumptree.h +50 -0
- data/ext/generator/parser/indexedstring.cpp +213 -0
- data/ext/generator/parser/indexedstring.h +147 -0
- data/ext/generator/parser/kdevelop-parser-rev +1 -0
- data/ext/generator/parser/kdevvarlengtharray.h +346 -0
- data/ext/generator/parser/lexer.cpp +963 -0
- data/ext/generator/parser/lexer.h +308 -0
- data/ext/generator/parser/listnode.cpp +20 -0
- data/ext/generator/parser/listnode.h +97 -0
- data/ext/generator/parser/memorypool.cpp +20 -0
- data/ext/generator/parser/memorypool.h +41 -0
- data/ext/generator/parser/name_compiler.cpp +190 -0
- data/ext/generator/parser/name_compiler.h +77 -0
- data/ext/generator/parser/parser.cpp +4706 -0
- data/ext/generator/parser/parser.h +300 -0
- data/ext/generator/parser/parsesession.cpp +105 -0
- data/ext/generator/parser/parsesession.h +87 -0
- data/ext/generator/parser/problem.h +21 -0
- data/ext/generator/parser/rpp/CMakeLists.txt +39 -0
- data/ext/generator/parser/rpp/Makefile.am +13 -0
- data/ext/generator/parser/rpp/anchor.h +51 -0
- data/ext/generator/parser/rpp/appendedlist.h +363 -0
- data/ext/generator/parser/rpp/chartools.cpp +126 -0
- data/ext/generator/parser/rpp/chartools.h +90 -0
- data/ext/generator/parser/rpp/macrorepository.cpp +44 -0
- data/ext/generator/parser/rpp/macrorepository.h +59 -0
- data/ext/generator/parser/rpp/pp-configuration +86 -0
- data/ext/generator/parser/rpp/pp-engine.cpp +1216 -0
- data/ext/generator/parser/rpp/pp-engine.h +267 -0
- data/ext/generator/parser/rpp/pp-environment.cpp +271 -0
- data/ext/generator/parser/rpp/pp-environment.h +119 -0
- data/ext/generator/parser/rpp/pp-internal.cpp +38 -0
- data/ext/generator/parser/rpp/pp-internal.h +37 -0
- data/ext/generator/parser/rpp/pp-location.cpp +191 -0
- data/ext/generator/parser/rpp/pp-location.h +89 -0
- data/ext/generator/parser/rpp/pp-macro-expander.cpp +568 -0
- data/ext/generator/parser/rpp/pp-macro-expander.cpp.orig +558 -0
- data/ext/generator/parser/rpp/pp-macro-expander.h +130 -0
- data/ext/generator/parser/rpp/pp-macro.cpp +153 -0
- data/ext/generator/parser/rpp/pp-macro.h +176 -0
- data/ext/generator/parser/rpp/pp-scanner.cpp +310 -0
- data/ext/generator/parser/rpp/pp-scanner.h +97 -0
- data/ext/generator/parser/rpp/pp-stream.cpp +425 -0
- data/ext/generator/parser/rpp/pp-stream.h +183 -0
- data/ext/generator/parser/rpp/preprocessor.cpp +65 -0
- data/ext/generator/parser/rpp/preprocessor.h +80 -0
- data/ext/generator/parser/rpp/rpp.pri +2 -0
- data/ext/generator/parser/rpp/test/t001.cpp +23 -0
- data/ext/generator/parser/rpp/test/t002.cpp +15 -0
- data/ext/generator/parser/rpp/test/t003.cpp +10 -0
- data/ext/generator/parser/rpp/test/t004.cpp +9 -0
- data/ext/generator/parser/rpp/test/t005.cpp +10 -0
- data/ext/generator/parser/rpp/test/t006.cpp +10 -0
- data/ext/generator/parser/rpp/test/t007.cpp +6 -0
- data/ext/generator/parser/rpp/test/t008.cpp +6 -0
- data/ext/generator/parser/rpp/test/t009.cpp +5 -0
- data/ext/generator/parser/rpp/test/t010.cpp +15 -0
- data/ext/generator/parser/rpp/test/t011.cpp +9 -0
- data/ext/generator/parser/rpp/tests/CMakeLists.txt +13 -0
- data/ext/generator/parser/rpp/tests/main.cpp +69 -0
- data/ext/generator/parser/rxx.pri +50 -0
- data/ext/generator/parser/rxx_allocator.h +128 -0
- data/ext/generator/parser/safetycounter.h +57 -0
- data/ext/generator/parser/simplecursor.h +74 -0
- data/ext/generator/parser/stringhelpers.cpp +577 -0
- data/ext/generator/parser/stringhelpers.h +118 -0
- data/ext/generator/parser/symbol.h +140 -0
- data/ext/generator/parser/tests/CMakeLists.txt +30 -0
- data/ext/generator/parser/tests/test_generator.cpp +259 -0
- data/ext/generator/parser/tests/test_parser.cpp +474 -0
- data/ext/generator/parser/tests/test_pool.cpp +109 -0
- data/ext/generator/parser/tests/test_pool.h +35 -0
- data/ext/generator/parser/tests/testconfig.h.cmake +4 -0
- data/ext/generator/parser/tokens.cpp +364 -0
- data/ext/generator/parser/tokens.h +147 -0
- data/ext/generator/parser/type_compiler.cpp +135 -0
- data/ext/generator/parser/type_compiler.h +68 -0
- data/ext/generator/parser/visitor.cpp +115 -0
- data/ext/generator/parser/visitor.h +138 -0
- data/ext/generator/type.cpp +195 -0
- data/ext/generator/type.h +497 -0
- data/ext/generator/type_compiler.cpp +275 -0
- data/ext/generator/type_compiler.h +80 -0
- data/ext/ruby/CMakeLists.txt +63 -0
- data/ext/ruby/qtruby/AUTHORS +54 -0
- data/ext/ruby/qtruby/CMakeLists.txt +4 -0
- data/ext/ruby/qtruby/COPYING +355 -0
- data/ext/ruby/qtruby/COPYING.LIB +510 -0
- data/ext/ruby/qtruby/ChangeLog +3732 -0
- data/ext/ruby/qtruby/INSTALL +79 -0
- data/ext/ruby/qtruby/README +264 -0
- data/ext/ruby/qtruby/TODO +8 -0
- data/ext/ruby/qtruby/bin/CMakeLists.txt +1 -0
- data/ext/ruby/qtruby/bin/rbqtapi +152 -0
- data/ext/ruby/qtruby/examples/base/kicons.rb +54 -0
- data/ext/ruby/qtruby/examples/base/rui.rb +21 -0
- data/ext/ruby/qtruby/examples/designer/calculatorbuilder/calculatorbuilder.qrc +5 -0
- data/ext/ruby/qtruby/examples/designer/calculatorbuilder/calculatorform.rb +60 -0
- data/ext/ruby/qtruby/examples/designer/calculatorbuilder/calculatorform.ui +299 -0
- data/ext/ruby/qtruby/examples/designer/calculatorbuilder/main.rb +33 -0
- data/ext/ruby/qtruby/examples/designer/calculatorbuilder/makefile +2 -0
- data/ext/ruby/qtruby/examples/designer/calculatorform/calculatorform.rb +46 -0
- data/ext/ruby/qtruby/examples/designer/calculatorform/calculatorform.ui +277 -0
- data/ext/ruby/qtruby/examples/designer/calculatorform/main.rb +32 -0
- data/ext/ruby/qtruby/examples/designer/calculatorform/makefile +3 -0
- data/ext/ruby/qtruby/examples/desktop/screenshot/main.rb +32 -0
- data/ext/ruby/qtruby/examples/desktop/screenshot/screenshot.rb +156 -0
- data/ext/ruby/qtruby/examples/desktop/systray/images/bad.svg +64 -0
- data/ext/ruby/qtruby/examples/desktop/systray/images/heart.svg +55 -0
- data/ext/ruby/qtruby/examples/desktop/systray/images/trash.svg +58 -0
- data/ext/ruby/qtruby/examples/desktop/systray/main.rb +41 -0
- data/ext/ruby/qtruby/examples/desktop/systray/makefile +2 -0
- data/ext/ruby/qtruby/examples/desktop/systray/systray.qrc +7 -0
- data/ext/ruby/qtruby/examples/desktop/systray/window.rb +223 -0
- data/ext/ruby/qtruby/examples/dialogs/complexwizard/complexwizard.rb +140 -0
- data/ext/ruby/qtruby/examples/dialogs/complexwizard/licensewizard.rb +294 -0
- data/ext/ruby/qtruby/examples/dialogs/complexwizard/main.rb +31 -0
- data/ext/ruby/qtruby/examples/dialogs/configdialog/configdialog.rb +109 -0
- data/ext/ruby/qtruby/examples/dialogs/configdialog/images/config.png +0 -0
- data/ext/ruby/qtruby/examples/dialogs/configdialog/images/query.png +0 -0
- data/ext/ruby/qtruby/examples/dialogs/configdialog/images/update.png +0 -0
- data/ext/ruby/qtruby/examples/dialogs/configdialog/main.rb +31 -0
- data/ext/ruby/qtruby/examples/dialogs/configdialog/pages.rb +140 -0
- data/ext/ruby/qtruby/examples/dialogs/extension/finddialog.rb +89 -0
- data/ext/ruby/qtruby/examples/dialogs/extension/main.rb +31 -0
- data/ext/ruby/qtruby/examples/dialogs/findfiles/main.rb +32 -0
- data/ext/ruby/qtruby/examples/dialogs/findfiles/window.rb +177 -0
- data/ext/ruby/qtruby/examples/dialogs/simplewizard/classwizard.rb +374 -0
- data/ext/ruby/qtruby/examples/dialogs/simplewizard/main.rb +31 -0
- data/ext/ruby/qtruby/examples/dialogs/simplewizard/simplewizard.rb +110 -0
- data/ext/ruby/qtruby/examples/dialogs/standarddialogs/dialog.rb +340 -0
- data/ext/ruby/qtruby/examples/dialogs/standarddialogs/main.rb +31 -0
- data/ext/ruby/qtruby/examples/dialogs/tabdialog/main.rb +38 -0
- data/ext/ruby/qtruby/examples/dialogs/tabdialog/tabdialog.rb +178 -0
- data/ext/ruby/qtruby/examples/draganddrop/draggableicons/dragwidget.rb +125 -0
- data/ext/ruby/qtruby/examples/draganddrop/draggableicons/images/boat.png +0 -0
- data/ext/ruby/qtruby/examples/draganddrop/draggableicons/images/car.png +0 -0
- data/ext/ruby/qtruby/examples/draganddrop/draggableicons/images/house.png +0 -0
- data/ext/ruby/qtruby/examples/draganddrop/draggableicons/main.rb +41 -0
- data/ext/ruby/qtruby/examples/draganddrop/draggabletext/draglabel.rb +51 -0
- data/ext/ruby/qtruby/examples/draganddrop/draggabletext/dragwidget.rb +94 -0
- data/ext/ruby/qtruby/examples/draganddrop/draggabletext/main.rb +33 -0
- data/ext/ruby/qtruby/examples/draganddrop/draggabletext/words.txt +41 -0
- data/ext/ruby/qtruby/examples/draganddrop/dropsite/dropsitewidget.rb +98 -0
- data/ext/ruby/qtruby/examples/draganddrop/dropsite/dropsitewindow.rb +114 -0
- data/ext/ruby/qtruby/examples/draganddrop/dropsite/main.rb +33 -0
- data/ext/ruby/qtruby/examples/draganddrop/fridgemagnets/draglabel.rb +78 -0
- data/ext/ruby/qtruby/examples/draganddrop/fridgemagnets/dragwidget.rb +130 -0
- data/ext/ruby/qtruby/examples/draganddrop/fridgemagnets/main.rb +33 -0
- data/ext/ruby/qtruby/examples/draganddrop/fridgemagnets/words.txt +48 -0
- data/ext/ruby/qtruby/examples/draganddrop/puzzle/example.jpg +0 -0
- data/ext/ruby/qtruby/examples/draganddrop/puzzle/main.rb +33 -0
- data/ext/ruby/qtruby/examples/draganddrop/puzzle/mainwindow.rb +136 -0
- data/ext/ruby/qtruby/examples/draganddrop/puzzle/pieceslist.rb +95 -0
- data/ext/ruby/qtruby/examples/draganddrop/puzzle/puzzlewidget.rb +190 -0
- data/ext/ruby/qtruby/examples/graphicsview/collidingmice/images/cheese.jpg +0 -0
- data/ext/ruby/qtruby/examples/graphicsview/collidingmice/main.rb +53 -0
- data/ext/ruby/qtruby/examples/graphicsview/collidingmice/makefile +2 -0
- data/ext/ruby/qtruby/examples/graphicsview/collidingmice/mice.qrc +5 -0
- data/ext/ruby/qtruby/examples/graphicsview/collidingmice/mouse.rb +176 -0
- data/ext/ruby/qtruby/examples/graphicsview/dragdroprobot/coloritem.rb +86 -0
- data/ext/ruby/qtruby/examples/graphicsview/dragdroprobot/images/head.png +0 -0
- data/ext/ruby/qtruby/examples/graphicsview/dragdroprobot/main.rb +57 -0
- data/ext/ruby/qtruby/examples/graphicsview/dragdroprobot/makefile +2 -0
- data/ext/ruby/qtruby/examples/graphicsview/dragdroprobot/robot.qrc +5 -0
- data/ext/ruby/qtruby/examples/graphicsview/dragdroprobot/robot.rb +246 -0
- data/ext/ruby/qtruby/examples/itemviews/chart/chart.qrc +5 -0
- data/ext/ruby/qtruby/examples/itemviews/chart/main.rb +33 -0
- data/ext/ruby/qtruby/examples/itemviews/chart/mainwindow.rb +151 -0
- data/ext/ruby/qtruby/examples/itemviews/chart/makefile +2 -0
- data/ext/ruby/qtruby/examples/itemviews/chart/mydata.cht +8 -0
- data/ext/ruby/qtruby/examples/itemviews/chart/pieview.rb +516 -0
- data/ext/ruby/qtruby/examples/itemviews/chart/qtdata.cht +14 -0
- data/ext/ruby/qtruby/examples/itemviews/dirview/main.rb +39 -0
- data/ext/ruby/qtruby/examples/itemviews/pixelator/imagemodel.rb +51 -0
- data/ext/ruby/qtruby/examples/itemviews/pixelator/images.qrc +5 -0
- data/ext/ruby/qtruby/examples/itemviews/pixelator/images/qt.png +0 -0
- data/ext/ruby/qtruby/examples/itemviews/pixelator/main.rb +34 -0
- data/ext/ruby/qtruby/examples/itemviews/pixelator/mainwindow.rb +218 -0
- data/ext/ruby/qtruby/examples/itemviews/pixelator/makefile +3 -0
- data/ext/ruby/qtruby/examples/itemviews/pixelator/pixeldelegate.rb +67 -0
- data/ext/ruby/qtruby/examples/itemviews/puzzle/example.jpg +0 -0
- data/ext/ruby/qtruby/examples/itemviews/puzzle/main.rb +36 -0
- data/ext/ruby/qtruby/examples/itemviews/puzzle/mainwindow.rb +143 -0
- data/ext/ruby/qtruby/examples/itemviews/puzzle/piecesmodel.rb +174 -0
- data/ext/ruby/qtruby/examples/itemviews/puzzle/puzzlewidget.rb +192 -0
- data/ext/ruby/qtruby/examples/itemviews/simpledommodel/domitem.rb +62 -0
- data/ext/ruby/qtruby/examples/itemviews/simpledommodel/dommodel.rb +139 -0
- data/ext/ruby/qtruby/examples/itemviews/simpledommodel/main.rb +33 -0
- data/ext/ruby/qtruby/examples/itemviews/simpledommodel/mainwindow.rb +66 -0
- data/ext/ruby/qtruby/examples/itemviews/simpletreemodel/default.txt +40 -0
- data/ext/ruby/qtruby/examples/itemviews/simpletreemodel/main.rb +41 -0
- data/ext/ruby/qtruby/examples/itemviews/simpletreemodel/makefile +2 -0
- data/ext/ruby/qtruby/examples/itemviews/simpletreemodel/simpletreemodel.qrc +5 -0
- data/ext/ruby/qtruby/examples/itemviews/simpletreemodel/treeitem.rb +67 -0
- data/ext/ruby/qtruby/examples/itemviews/simpletreemodel/treemodel.rb +164 -0
- data/ext/ruby/qtruby/examples/itemviews/sortingmodel/default.txt +40 -0
- data/ext/ruby/qtruby/examples/itemviews/sortingmodel/main.rb +53 -0
- data/ext/ruby/qtruby/examples/itemviews/sortingmodel/treeitem.rb +73 -0
- data/ext/ruby/qtruby/examples/itemviews/sortingmodel/treemodel.rb +166 -0
- data/ext/ruby/qtruby/examples/itemviews/spinboxdelegate/main.rb +47 -0
- data/ext/ruby/qtruby/examples/itemviews/spinboxdelegate/spinboxdelegate.rb +62 -0
- data/ext/ruby/qtruby/examples/killerfilter/killerfilter.rb +55 -0
- data/ext/ruby/qtruby/examples/layouts/basiclayouts/dialog.rb +110 -0
- data/ext/ruby/qtruby/examples/layouts/basiclayouts/main.rb +31 -0
- data/ext/ruby/qtruby/examples/layouts/borderlayout/borderlayout.rb +190 -0
- data/ext/ruby/qtruby/examples/layouts/borderlayout/main.rb +32 -0
- data/ext/ruby/qtruby/examples/layouts/borderlayout/window.rb +52 -0
- data/ext/ruby/qtruby/examples/layouts/flowlayouts/flowlayout.rb +108 -0
- data/ext/ruby/qtruby/examples/layouts/flowlayouts/main.rb +32 -0
- data/ext/ruby/qtruby/examples/layouts/flowlayouts/window.rb +43 -0
- data/ext/ruby/qtruby/examples/mainwindows/application/images/copy.png +0 -0
- data/ext/ruby/qtruby/examples/mainwindows/application/images/cut.png +0 -0
- data/ext/ruby/qtruby/examples/mainwindows/application/images/new.png +0 -0
- data/ext/ruby/qtruby/examples/mainwindows/application/images/open.png +0 -0
- data/ext/ruby/qtruby/examples/mainwindows/application/images/paste.png +0 -0
- data/ext/ruby/qtruby/examples/mainwindows/application/images/save.png +0 -0
- data/ext/ruby/qtruby/examples/mainwindows/application/main.rb +32 -0
- data/ext/ruby/qtruby/examples/mainwindows/application/mainwindow.rb +285 -0
- data/ext/ruby/qtruby/examples/mainwindows/dockwidgets/images/new.png +0 -0
- data/ext/ruby/qtruby/examples/mainwindows/dockwidgets/images/print.png +0 -0
- data/ext/ruby/qtruby/examples/mainwindows/dockwidgets/images/save.png +0 -0
- data/ext/ruby/qtruby/examples/mainwindows/dockwidgets/images/undo.png +0 -0
- data/ext/ruby/qtruby/examples/mainwindows/dockwidgets/main.rb +32 -0
- data/ext/ruby/qtruby/examples/mainwindows/dockwidgets/mainwindow.rb +302 -0
- data/ext/ruby/qtruby/examples/mainwindows/mdi/images/copy.png +0 -0
- data/ext/ruby/qtruby/examples/mainwindows/mdi/images/cut.png +0 -0
- data/ext/ruby/qtruby/examples/mainwindows/mdi/images/new.png +0 -0
- data/ext/ruby/qtruby/examples/mainwindows/mdi/images/open.png +0 -0
- data/ext/ruby/qtruby/examples/mainwindows/mdi/images/paste.png +0 -0
- data/ext/ruby/qtruby/examples/mainwindows/mdi/images/save.png +0 -0
- data/ext/ruby/qtruby/examples/mainwindows/mdi/main.rb +32 -0
- data/ext/ruby/qtruby/examples/mainwindows/mdi/mainwindow.rb +363 -0
- data/ext/ruby/qtruby/examples/mainwindows/mdi/mdichild.rb +152 -0
- data/ext/ruby/qtruby/examples/mainwindows/menus/main.rb +32 -0
- data/ext/ruby/qtruby/examples/mainwindows/menus/mainwindow.rb +327 -0
- data/ext/ruby/qtruby/examples/mainwindows/recentfiles/main.rb +32 -0
- data/ext/ruby/qtruby/examples/mainwindows/recentfiles/mainwindow.rb +258 -0
- data/ext/ruby/qtruby/examples/mainwindows/sdi/images/copy.png +0 -0
- data/ext/ruby/qtruby/examples/mainwindows/sdi/images/cut.png +0 -0
- data/ext/ruby/qtruby/examples/mainwindows/sdi/images/new.png +0 -0
- data/ext/ruby/qtruby/examples/mainwindows/sdi/images/open.png +0 -0
- data/ext/ruby/qtruby/examples/mainwindows/sdi/images/paste.png +0 -0
- data/ext/ruby/qtruby/examples/mainwindows/sdi/images/save.png +0 -0
- data/ext/ruby/qtruby/examples/mainwindows/sdi/main.rb +32 -0
- data/ext/ruby/qtruby/examples/mainwindows/sdi/mainwindow.rb +335 -0
- data/ext/ruby/qtruby/examples/network/broadcastreceiver/main.rb +32 -0
- data/ext/ruby/qtruby/examples/network/broadcastreceiver/receiver.rb +64 -0
- data/ext/ruby/qtruby/examples/network/broadcastsender/main.rb +32 -0
- data/ext/ruby/qtruby/examples/network/broadcastsender/sender.rb +70 -0
- data/ext/ruby/qtruby/examples/network/fortuneclient/client.rb +150 -0
- data/ext/ruby/qtruby/examples/network/fortuneclient/main.rb +32 -0
- data/ext/ruby/qtruby/examples/network/fortuneserver/main.rb +32 -0
- data/ext/ruby/qtruby/examples/network/fortuneserver/server.rb +88 -0
- data/ext/ruby/qtruby/examples/network/ftp/ftpwindow.rb +254 -0
- data/ext/ruby/qtruby/examples/network/ftp/images/cdtoparent.png +0 -0
- data/ext/ruby/qtruby/examples/network/ftp/images/dir.png +0 -0
- data/ext/ruby/qtruby/examples/network/ftp/images/file.png +0 -0
- data/ext/ruby/qtruby/examples/network/ftp/main.rb +32 -0
- data/ext/ruby/qtruby/examples/network/http/httpwindow.rb +187 -0
- data/ext/ruby/qtruby/examples/network/http/main.rb +32 -0
- data/ext/ruby/qtruby/examples/network/loopback/dialog.rb +163 -0
- data/ext/ruby/qtruby/examples/network/loopback/main.rb +32 -0
- data/ext/ruby/qtruby/examples/opengl/grabber/glwidget.rb +265 -0
- data/ext/ruby/qtruby/examples/opengl/grabber/main.rb +32 -0
- data/ext/ruby/qtruby/examples/opengl/grabber/mainwindow.rb +189 -0
- data/ext/ruby/qtruby/examples/opengl/hellogl/glwidget.rb +226 -0
- data/ext/ruby/qtruby/examples/opengl/hellogl/main.rb +32 -0
- data/ext/ruby/qtruby/examples/opengl/hellogl/window.rb +66 -0
- data/ext/ruby/qtruby/examples/opengl/textures/glwidget.rb +151 -0
- data/ext/ruby/qtruby/examples/opengl/textures/images/side1.png +0 -0
- data/ext/ruby/qtruby/examples/opengl/textures/images/side2.png +0 -0
- data/ext/ruby/qtruby/examples/opengl/textures/images/side3.png +0 -0
- data/ext/ruby/qtruby/examples/opengl/textures/images/side4.png +0 -0
- data/ext/ruby/qtruby/examples/opengl/textures/images/side5.png +0 -0
- data/ext/ruby/qtruby/examples/opengl/textures/images/side6.png +0 -0
- data/ext/ruby/qtruby/examples/opengl/textures/main.rb +32 -0
- data/ext/ruby/qtruby/examples/opengl/textures/window.rb +77 -0
- data/ext/ruby/qtruby/examples/painting/basicdrawing/images/brick.png +0 -0
- data/ext/ruby/qtruby/examples/painting/basicdrawing/images/qt-logo.png +0 -0
- data/ext/ruby/qtruby/examples/painting/basicdrawing/main.rb +32 -0
- data/ext/ruby/qtruby/examples/painting/basicdrawing/renderarea.rb +166 -0
- data/ext/ruby/qtruby/examples/painting/basicdrawing/window.rb +215 -0
- data/ext/ruby/qtruby/examples/painting/concentriccircles/circlewidget.rb +88 -0
- data/ext/ruby/qtruby/examples/painting/concentriccircles/main.rb +32 -0
- data/ext/ruby/qtruby/examples/painting/concentriccircles/window.rb +72 -0
- data/ext/ruby/qtruby/examples/painting/fontsampler/main.rb +32 -0
- data/ext/ruby/qtruby/examples/painting/fontsampler/mainwindow.rb +368 -0
- data/ext/ruby/qtruby/examples/painting/fontsampler/mainwindowbase.ui +136 -0
- data/ext/ruby/qtruby/examples/painting/fontsampler/makefile +8 -0
- data/ext/ruby/qtruby/examples/painting/fontsampler/previewdialog.rb +256 -0
- data/ext/ruby/qtruby/examples/painting/fontsampler/previewdialogbase.ui +224 -0
- data/ext/ruby/qtruby/examples/painting/fontsampler/previewlabel.rb +43 -0
- data/ext/ruby/qtruby/examples/painting/imagecomposition/imagecomposer.rb +152 -0
- data/ext/ruby/qtruby/examples/painting/imagecomposition/imagecomposition.qrc +6 -0
- data/ext/ruby/qtruby/examples/painting/imagecomposition/images/background.png +0 -0
- data/ext/ruby/qtruby/examples/painting/imagecomposition/images/blackrectangle.png +0 -0
- data/ext/ruby/qtruby/examples/painting/imagecomposition/images/butterfly.png +0 -0
- data/ext/ruby/qtruby/examples/painting/imagecomposition/images/checker.png +0 -0
- data/ext/ruby/qtruby/examples/painting/imagecomposition/main.rb +33 -0
- data/ext/ruby/qtruby/examples/painting/imagecomposition/makefile +2 -0
- data/ext/ruby/qtruby/examples/painting/painterpaths/main.rb +32 -0
- data/ext/ruby/qtruby/examples/painting/painterpaths/renderarea.rb +97 -0
- data/ext/ruby/qtruby/examples/painting/painterpaths/window.rb +247 -0
- data/ext/ruby/qtruby/examples/painting/svgviewer/files/bubbles.svg +212 -0
- data/ext/ruby/qtruby/examples/painting/svgviewer/files/cubic.svg +77 -0
- data/ext/ruby/qtruby/examples/painting/svgviewer/files/spheres.svg +79 -0
- data/ext/ruby/qtruby/examples/painting/svgviewer/main.rb +38 -0
- data/ext/ruby/qtruby/examples/painting/svgviewer/mainwindow.rb +99 -0
- data/ext/ruby/qtruby/examples/painting/svgviewer/makefile +2 -0
- data/ext/ruby/qtruby/examples/painting/svgviewer/svgview.rb +156 -0
- data/ext/ruby/qtruby/examples/painting/svgviewer/svgviewer.qrc +6 -0
- data/ext/ruby/qtruby/examples/painting/svgviewer/svgwindow.rb +87 -0
- data/ext/ruby/qtruby/examples/painting/transformations/main.rb +32 -0
- data/ext/ruby/qtruby/examples/painting/transformations/renderarea.rb +127 -0
- data/ext/ruby/qtruby/examples/painting/transformations/window.rb +153 -0
- data/ext/ruby/qtruby/examples/passivepopup/passivepopup.rb +38 -0
- data/ext/ruby/qtruby/examples/qdbus/chat/chat.rb +146 -0
- data/ext/ruby/qtruby/examples/qdbus/chat/chat_adaptor.rb +12 -0
- data/ext/ruby/qtruby/examples/qdbus/chat/chat_interface.rb +13 -0
- data/ext/ruby/qtruby/examples/qdbus/chat/chatmainwindow.ui +184 -0
- data/ext/ruby/qtruby/examples/qdbus/chat/chatsetnickname.ui +145 -0
- data/ext/ruby/qtruby/examples/qdbus/chat/makefile +8 -0
- data/ext/ruby/qtruby/examples/qdbus/complexpingpong/complexping.rb +92 -0
- data/ext/ruby/qtruby/examples/qdbus/complexpingpong/complexpong.rb +83 -0
- data/ext/ruby/qtruby/examples/qdbus/complexpingpong/ping-common.rb +1 -0
- data/ext/ruby/qtruby/examples/qdbus/listnames/listnames.rb +69 -0
- data/ext/ruby/qtruby/examples/qdbus/pingpong/ping-common.rb +1 -0
- data/ext/ruby/qtruby/examples/qdbus/pingpong/ping.rb +52 -0
- data/ext/ruby/qtruby/examples/qdbus/pingpong/pong.rb +55 -0
- data/ext/ruby/qtruby/examples/qdbus/remotecontrolledcar/car/car.rb +151 -0
- data/ext/ruby/qtruby/examples/qdbus/remotecontrolledcar/car/main.rb +50 -0
- data/ext/ruby/qtruby/examples/qdbus/remotecontrolledcar/controller/controller.rb +66 -0
- data/ext/ruby/qtruby/examples/qdbus/remotecontrolledcar/controller/controller.ui +61 -0
- data/ext/ruby/qtruby/examples/qdbus/remotecontrolledcar/controller/main.rb +32 -0
- data/ext/ruby/qtruby/examples/qdbus/remotecontrolledcar/controller/makefile +2 -0
- data/ext/ruby/qtruby/examples/qtscribble/scribble.rb +270 -0
- data/ext/ruby/qtruby/examples/richtext/calendar/main.rb +33 -0
- data/ext/ruby/qtruby/examples/richtext/calendar/mainwindow.rb +173 -0
- data/ext/ruby/qtruby/examples/richtext/orderform/detailsdialog.rb +130 -0
- data/ext/ruby/qtruby/examples/richtext/orderform/main.rb +34 -0
- data/ext/ruby/qtruby/examples/richtext/orderform/mainwindow.rb +194 -0
- data/ext/ruby/qtruby/examples/richtext/syntaxhighlighter/examples/example +79 -0
- data/ext/ruby/qtruby/examples/richtext/syntaxhighlighter/highlighter.rb +90 -0
- data/ext/ruby/qtruby/examples/richtext/syntaxhighlighter/main.rb +34 -0
- data/ext/ruby/qtruby/examples/richtext/syntaxhighlighter/mainwindow.rb +105 -0
- data/ext/ruby/qtruby/examples/ruboids/Manifest +26 -0
- data/ext/ruby/qtruby/examples/ruboids/README +53 -0
- data/ext/ruby/qtruby/examples/ruboids/TODO +29 -0
- data/ext/ruby/qtruby/examples/ruboids/boids.properties +33 -0
- data/ext/ruby/qtruby/examples/ruboids/generateManifest.rb +42 -0
- data/ext/ruby/qtruby/examples/ruboids/index.html +147 -0
- data/ext/ruby/qtruby/examples/ruboids/release.rb +152 -0
- data/ext/ruby/qtruby/examples/ruboids/ruboids/Boid.rb +141 -0
- data/ext/ruby/qtruby/examples/ruboids/ruboids/BoidView.rb +159 -0
- data/ext/ruby/qtruby/examples/ruboids/ruboids/Camera.rb +24 -0
- data/ext/ruby/qtruby/examples/ruboids/ruboids/CameraDialog.rb +218 -0
- data/ext/ruby/qtruby/examples/ruboids/ruboids/Canvas.rb +143 -0
- data/ext/ruby/qtruby/examples/ruboids/ruboids/Cloud.rb +61 -0
- data/ext/ruby/qtruby/examples/ruboids/ruboids/CloudView.rb +54 -0
- data/ext/ruby/qtruby/examples/ruboids/ruboids/Flock.rb +47 -0
- data/ext/ruby/qtruby/examples/ruboids/ruboids/Graphics.rb +278 -0
- data/ext/ruby/qtruby/examples/ruboids/ruboids/Params.rb +87 -0
- data/ext/ruby/qtruby/examples/ruboids/ruboids/Point.rb +153 -0
- data/ext/ruby/qtruby/examples/ruboids/ruboids/Thing.rb +34 -0
- data/ext/ruby/qtruby/examples/ruboids/ruboids/Triangle.rb +21 -0
- data/ext/ruby/qtruby/examples/ruboids/ruboids/View.rb +88 -0
- data/ext/ruby/qtruby/examples/ruboids/ruboids/World.rb +82 -0
- data/ext/ruby/qtruby/examples/ruboids/ruboids/WorldWindow.rb +52 -0
- data/ext/ruby/qtruby/examples/ruboids/ruboids/info.rb +12 -0
- data/ext/ruby/qtruby/examples/ruboids/ruboids/ruboids.rb +29 -0
- data/ext/ruby/qtruby/examples/textedit/textedit.rb +150 -0
- data/ext/ruby/qtruby/examples/tutorial/t1/t1.rb +10 -0
- data/ext/ruby/qtruby/examples/tutorial/t10/cannon.rb +72 -0
- data/ext/ruby/qtruby/examples/tutorial/t10/lcdrange.rb +45 -0
- data/ext/ruby/qtruby/examples/tutorial/t10/t10.rb +55 -0
- data/ext/ruby/qtruby/examples/tutorial/t11/cannon.rb +124 -0
- data/ext/ruby/qtruby/examples/tutorial/t11/lcdrange.rb +45 -0
- data/ext/ruby/qtruby/examples/tutorial/t11/t11.rb +65 -0
- data/ext/ruby/qtruby/examples/tutorial/t12/cannon.rb +158 -0
- data/ext/ruby/qtruby/examples/tutorial/t12/lcdrange.rb +59 -0
- data/ext/ruby/qtruby/examples/tutorial/t12/t12.rb +66 -0
- data/ext/ruby/qtruby/examples/tutorial/t13/cannon.rb +208 -0
- data/ext/ruby/qtruby/examples/tutorial/t13/gamebrd.rb +113 -0
- data/ext/ruby/qtruby/examples/tutorial/t13/lcdrange.rb +60 -0
- data/ext/ruby/qtruby/examples/tutorial/t13/t13.rb +11 -0
- data/ext/ruby/qtruby/examples/tutorial/t14/cannon.rb +263 -0
- data/ext/ruby/qtruby/examples/tutorial/t14/gamebrd.rb +123 -0
- data/ext/ruby/qtruby/examples/tutorial/t14/lcdrange.rb +63 -0
- data/ext/ruby/qtruby/examples/tutorial/t14/t14.rb +11 -0
- data/ext/ruby/qtruby/examples/tutorial/t2/t2.rb +16 -0
- data/ext/ruby/qtruby/examples/tutorial/t3/t3.rb +18 -0
- data/ext/ruby/qtruby/examples/tutorial/t4/t4.rb +25 -0
- data/ext/ruby/qtruby/examples/tutorial/t5/t5.rb +37 -0
- data/ext/ruby/qtruby/examples/tutorial/t6/t6.rb +52 -0
- data/ext/ruby/qtruby/examples/tutorial/t7/lcdrange.rb +32 -0
- data/ext/ruby/qtruby/examples/tutorial/t7/t7.rb +42 -0
- data/ext/ruby/qtruby/examples/tutorial/t8/cannon.rb +38 -0
- data/ext/ruby/qtruby/examples/tutorial/t8/lcdrange.rb +45 -0
- data/ext/ruby/qtruby/examples/tutorial/t8/t8.rb +43 -0
- data/ext/ruby/qtruby/examples/tutorial/t9/cannon.rb +45 -0
- data/ext/ruby/qtruby/examples/tutorial/t9/lcdrange.rb +46 -0
- data/ext/ruby/qtruby/examples/tutorial/t9/t9.rb +43 -0
- data/ext/ruby/qtruby/examples/widgets/analogclock/analogclock.rb +94 -0
- data/ext/ruby/qtruby/examples/widgets/analogclock/main.rb +9 -0
- data/ext/ruby/qtruby/examples/widgets/calculator/button.rb +45 -0
- data/ext/ruby/qtruby/examples/widgets/calculator/calculator.rb +382 -0
- data/ext/ruby/qtruby/examples/widgets/calculator/main.rb +32 -0
- data/ext/ruby/qtruby/examples/widgets/charactermap/characterwidget.rb +110 -0
- data/ext/ruby/qtruby/examples/widgets/charactermap/main.rb +32 -0
- data/ext/ruby/qtruby/examples/widgets/charactermap/mainwindow.rb +118 -0
- data/ext/ruby/qtruby/examples/widgets/digitalclock/digitalclock.rb +30 -0
- data/ext/ruby/qtruby/examples/widgets/digitalclock/main.rb +9 -0
- data/ext/ruby/qtruby/examples/widgets/groupbox/main.rb +32 -0
- data/ext/ruby/qtruby/examples/widgets/groupbox/window.rb +134 -0
- data/ext/ruby/qtruby/examples/widgets/icons/iconpreviewarea.rb +111 -0
- data/ext/ruby/qtruby/examples/widgets/icons/iconsizespinbox.rb +39 -0
- data/ext/ruby/qtruby/examples/widgets/icons/imagedelegate.rb +73 -0
- data/ext/ruby/qtruby/examples/widgets/icons/images/designer.png +0 -0
- data/ext/ruby/qtruby/examples/widgets/icons/images/find_disabled.png +0 -0
- data/ext/ruby/qtruby/examples/widgets/icons/images/find_normal.png +0 -0
- data/ext/ruby/qtruby/examples/widgets/icons/images/monkey_off_128x128.png +0 -0
- data/ext/ruby/qtruby/examples/widgets/icons/images/monkey_off_16x16.png +0 -0
- data/ext/ruby/qtruby/examples/widgets/icons/images/monkey_off_32x32.png +0 -0
- data/ext/ruby/qtruby/examples/widgets/icons/images/monkey_off_64x64.png +0 -0
- data/ext/ruby/qtruby/examples/widgets/icons/images/monkey_on_128x128.png +0 -0
- data/ext/ruby/qtruby/examples/widgets/icons/images/monkey_on_16x16.png +0 -0
- data/ext/ruby/qtruby/examples/widgets/icons/images/monkey_on_32x32.png +0 -0
- data/ext/ruby/qtruby/examples/widgets/icons/images/monkey_on_64x64.png +0 -0
- data/ext/ruby/qtruby/examples/widgets/icons/images/qtopia_16x16.png +0 -0
- data/ext/ruby/qtruby/examples/widgets/icons/images/qtopia_32x32.png +0 -0
- data/ext/ruby/qtruby/examples/widgets/icons/images/qtopia_48x48.png +0 -0
- data/ext/ruby/qtruby/examples/widgets/icons/main.rb +32 -0
- data/ext/ruby/qtruby/examples/widgets/icons/mainwindow.rb +351 -0
- data/ext/ruby/qtruby/examples/widgets/imageviewer/imageviewer.rb +219 -0
- data/ext/ruby/qtruby/examples/widgets/imageviewer/main.rb +32 -0
- data/ext/ruby/qtruby/examples/widgets/lineedits/main.rb +32 -0
- data/ext/ruby/qtruby/examples/widgets/lineedits/window.rb +199 -0
- data/ext/ruby/qtruby/examples/widgets/movie/images/open.png +0 -0
- data/ext/ruby/qtruby/examples/widgets/movie/images/pause.png +0 -0
- data/ext/ruby/qtruby/examples/widgets/movie/images/play.png +0 -0
- data/ext/ruby/qtruby/examples/widgets/movie/images/quit.png +0 -0
- data/ext/ruby/qtruby/examples/widgets/movie/images/stop.png +0 -0
- data/ext/ruby/qtruby/examples/widgets/movie/main.rb +32 -0
- data/ext/ruby/qtruby/examples/widgets/movie/movieplayer.rb +201 -0
- data/ext/ruby/qtruby/examples/widgets/movie/movies/fire.mng +0 -0
- data/ext/ruby/qtruby/examples/widgets/screenshot/main.rb +32 -0
- data/ext/ruby/qtruby/examples/widgets/screenshot/screenshot.rb +155 -0
- data/ext/ruby/qtruby/examples/widgets/scribble/main.rb +32 -0
- data/ext/ruby/qtruby/examples/widgets/scribble/mainwindow.rb +202 -0
- data/ext/ruby/qtruby/examples/widgets/scribble/scribblearea.rb +154 -0
- data/ext/ruby/qtruby/examples/widgets/sliders/main.rb +32 -0
- data/ext/ruby/qtruby/examples/widgets/sliders/slidersgroup.rb +97 -0
- data/ext/ruby/qtruby/examples/widgets/sliders/window.rb +124 -0
- data/ext/ruby/qtruby/examples/widgets/spinboxes/main.rb +32 -0
- data/ext/ruby/qtruby/examples/widgets/spinboxes/window.rb +213 -0
- data/ext/ruby/qtruby/examples/widgets/tetrix/main.rb +33 -0
- data/ext/ruby/qtruby/examples/widgets/tetrix/tetrixboard.rb +346 -0
- data/ext/ruby/qtruby/examples/widgets/tetrix/tetrixpiece.rb +135 -0
- data/ext/ruby/qtruby/examples/widgets/tetrix/tetrixwindow.rb +88 -0
- data/ext/ruby/qtruby/examples/widgets/tooltips/images/circle.png +0 -0
- data/ext/ruby/qtruby/examples/widgets/tooltips/images/square.png +0 -0
- data/ext/ruby/qtruby/examples/widgets/tooltips/images/triangle.png +0 -0
- data/ext/ruby/qtruby/examples/widgets/tooltips/main.rb +32 -0
- data/ext/ruby/qtruby/examples/widgets/tooltips/shapeitem.rb +31 -0
- data/ext/ruby/qtruby/examples/widgets/tooltips/sortingbox.rb +222 -0
- data/ext/ruby/qtruby/examples/widgets/wiggly/dialog.rb +48 -0
- data/ext/ruby/qtruby/examples/widgets/wiggly/main.rb +9 -0
- data/ext/ruby/qtruby/examples/widgets/wiggly/wigglywidget.rb +76 -0
- data/ext/ruby/qtruby/examples/widgets/windowflags/controllerwindow.rb +195 -0
- data/ext/ruby/qtruby/examples/widgets/windowflags/main.rb +32 -0
- data/ext/ruby/qtruby/examples/widgets/windowflags/previewwindow.rb +103 -0
- data/ext/ruby/qtruby/examples/xml/dombookmarks/frank.xbel +230 -0
- data/ext/ruby/qtruby/examples/xml/dombookmarks/jennifer.xbel +93 -0
- data/ext/ruby/qtruby/examples/xml/dombookmarks/main.rb +34 -0
- data/ext/ruby/qtruby/examples/xml/dombookmarks/mainwindow.rb +129 -0
- data/ext/ruby/qtruby/examples/xml/dombookmarks/xbeltree.rb +172 -0
- data/ext/ruby/qtruby/examples/xml/saxbookmarks/frank.xbel +230 -0
- data/ext/ruby/qtruby/examples/xml/saxbookmarks/jennifer.xbel +93 -0
- data/ext/ruby/qtruby/examples/xml/saxbookmarks/main.rb +34 -0
- data/ext/ruby/qtruby/examples/xml/saxbookmarks/mainwindow.rb +144 -0
- data/ext/ruby/qtruby/examples/xml/saxbookmarks/xbelgenerator.rb +95 -0
- data/ext/ruby/qtruby/examples/xml/saxbookmarks/xbelhandler.rb +122 -0
- data/ext/ruby/qtruby/rails_support/CMakeLists.txt +1 -0
- data/ext/ruby/qtruby/rails_support/active_item_model.rb +234 -0
- data/ext/ruby/qtruby/rails_support/active_table_model.rb +122 -0
- data/ext/ruby/qtruby/src/CMakeLists.txt +103 -0
- data/ext/ruby/qtruby/src/Qt.cpp +1279 -0
- data/ext/ruby/qtruby/src/extconf.rb +11 -0
- data/ext/ruby/qtruby/src/handlers.cpp +2622 -0
- data/ext/ruby/qtruby/src/lib/CMakeLists.txt +16 -0
- data/ext/ruby/qtruby/src/lib/Qt.rb +1 -0
- data/ext/ruby/qtruby/src/lib/Qt/CMakeLists.txt +9 -0
- data/ext/ruby/qtruby/src/lib/Qt/qtruby4.rb +3177 -0
- data/ext/ruby/qtruby/src/lib/Qt3.rb +6 -0
- data/ext/ruby/qtruby/src/lib/Qt4.rb +6 -0
- data/ext/ruby/qtruby/src/marshall.h +66 -0
- data/ext/ruby/qtruby/src/marshall_basetypes.h +208 -0
- data/ext/ruby/qtruby/src/marshall_complex.h +175 -0
- data/ext/ruby/qtruby/src/marshall_macros.h +647 -0
- data/ext/ruby/qtruby/src/marshall_primitives.h +290 -0
- data/ext/ruby/qtruby/src/marshall_types.cpp +815 -0
- data/ext/ruby/qtruby/src/marshall_types.h +240 -0
- data/ext/ruby/qtruby/src/qtruby.cpp +2483 -0
- data/ext/ruby/qtruby/src/qtruby.h +185 -0
- data/ext/ruby/qtruby/src/smokeruby.h +164 -0
- data/ext/ruby/qtruby/test/opoverloading.rb +46 -0
- data/ext/ruby/qtruby/test/unittests.rb +151 -0
- data/ext/ruby/qtruby/tools/CMakeLists.txt +2 -0
- data/ext/ruby/qtruby/tools/rbrcc/CMakeLists.txt +6 -0
- data/ext/ruby/qtruby/tools/rbrcc/Messages.sh +7 -0
- data/ext/ruby/qtruby/tools/rbrcc/main.cpp +173 -0
- data/ext/ruby/qtruby/tools/rbrcc/rbrcc.pro +14 -0
- data/ext/ruby/qtruby/tools/rbrcc/rcc.cpp +648 -0
- data/ext/ruby/qtruby/tools/rbrcc/rcc.h +165 -0
- data/ext/ruby/qtruby/tools/rbuic/CMakeLists.txt +35 -0
- data/ext/ruby/qtruby/tools/rbuic/LICENSE.GPL +280 -0
- data/ext/ruby/qtruby/tools/rbuic/Messages.sh +7 -0
- data/ext/ruby/qtruby/tools/rbuic/TODO +4 -0
- data/ext/ruby/qtruby/tools/rbuic/customwidgetsinfo.cpp +106 -0
- data/ext/ruby/qtruby/tools/rbuic/customwidgetsinfo.h +95 -0
- data/ext/ruby/qtruby/tools/rbuic/databaseinfo.cpp +102 -0
- data/ext/ruby/qtruby/tools/rbuic/databaseinfo.h +85 -0
- data/ext/ruby/qtruby/tools/rbuic/driver.cpp +384 -0
- data/ext/ruby/qtruby/tools/rbuic/driver.h +141 -0
- data/ext/ruby/qtruby/tools/rbuic/globaldefs.h +60 -0
- data/ext/ruby/qtruby/tools/rbuic/main.cpp +201 -0
- data/ext/ruby/qtruby/tools/rbuic/option.h +107 -0
- data/ext/ruby/qtruby/tools/rbuic/rbuic.pri +23 -0
- data/ext/ruby/qtruby/tools/rbuic/rbuic4.pro +43 -0
- data/ext/ruby/qtruby/tools/rbuic/ruby/rbextractimages.cpp +150 -0
- data/ext/ruby/qtruby/tools/rbuic/ruby/rbextractimages.h +83 -0
- data/ext/ruby/qtruby/tools/rbuic/ruby/rbwritedeclaration.cpp +217 -0
- data/ext/ruby/qtruby/tools/rbuic/ruby/rbwritedeclaration.h +85 -0
- data/ext/ruby/qtruby/tools/rbuic/ruby/rbwriteicondata.cpp +185 -0
- data/ext/ruby/qtruby/tools/rbuic/ruby/rbwriteicondata.h +86 -0
- data/ext/ruby/qtruby/tools/rbuic/ruby/rbwriteicondeclaration.cpp +88 -0
- data/ext/ruby/qtruby/tools/rbuic/ruby/rbwriteicondeclaration.h +83 -0
- data/ext/ruby/qtruby/tools/rbuic/ruby/rbwriteiconinitialization.cpp +126 -0
- data/ext/ruby/qtruby/tools/rbuic/ruby/rbwriteiconinitialization.h +87 -0
- data/ext/ruby/qtruby/tools/rbuic/ruby/rbwriteinitialization.cpp +2478 -0
- data/ext/ruby/qtruby/tools/rbuic/ruby/rbwriteinitialization.h +314 -0
- data/ext/ruby/qtruby/tools/rbuic/ruby/ruby.pri +18 -0
- data/ext/ruby/qtruby/tools/rbuic/treewalker.cpp +318 -0
- data/ext/ruby/qtruby/tools/rbuic/treewalker.h +139 -0
- data/ext/ruby/qtruby/tools/rbuic/ui4.cpp +7623 -0
- data/ext/ruby/qtruby/tools/rbuic/ui4.h +3180 -0
- data/ext/ruby/qtruby/tools/rbuic/uic.cpp +438 -0
- data/ext/ruby/qtruby/tools/rbuic/uic.h +154 -0
- data/ext/ruby/qtruby/tools/rbuic/utils.h +125 -0
- data/ext/ruby/qtruby/tools/rbuic/validator.cpp +100 -0
- data/ext/ruby/qtruby/tools/rbuic/validator.h +80 -0
- data/ext/ruby/qtscript/CMakeLists.txt +19 -0
- data/ext/ruby/qtscript/qtscript.cpp +82 -0
- data/ext/ruby/qtscript/qtscript.rb +40 -0
- data/ext/ruby/qtscript/qtscripthandlers.cpp +36 -0
- data/ext/ruby/qtscript/smokedata.cpp +1403 -0
- data/ext/ruby/qttest/CMakeLists.txt +18 -0
- data/ext/ruby/qttest/ChangeLog +9 -0
- data/ext/ruby/qttest/examples/myfirsttest.rb +30 -0
- data/ext/ruby/qttest/qttest.cpp +82 -0
- data/ext/ruby/qttest/qttest.rb +166 -0
- data/ext/ruby/qttest/qttesthandlers.cpp +35 -0
- data/ext/ruby/qtuitools/CMakeLists.txt +16 -0
- data/ext/ruby/qtuitools/qtuitools.cpp +82 -0
- data/ext/ruby/qtuitools/qtuitools.rb +17 -0
- data/ext/ruby/qtuitools/qtuitoolshandlers.cpp +31 -0
- data/ext/ruby/qtwebkit/CMakeLists.txt +17 -0
- data/ext/ruby/qtwebkit/qtwebkit.cpp +66 -0
- data/ext/ruby/qtwebkit/qtwebkit.rb +17 -0
- data/ext/ruby/qtwebkit/qtwebkithandlers.cpp +39 -0
- data/ext/smoke/CMakeLists.txt +35 -0
- data/ext/smoke/deptool/CMakeLists.txt +7 -0
- data/ext/smoke/deptool/main.cpp +128 -0
- data/ext/smoke/qt_smoke.h +16 -0
- data/ext/smoke/qtcore/CMakeLists.txt +88 -0
- data/ext/smoke/qtcore/QtGuess.txt +181 -0
- data/ext/smoke/qtcore/config.xml.cmake +10 -0
- data/ext/smoke/qtcore/qt-config.xml.cmake +21 -0
- data/ext/smoke/qtcore/qtcore_includes.h +1 -0
- data/ext/smoke/qtcore/smokeconfig.xml +189 -0
- data/ext/smoke/qtcore/tests/CMakeLists.txt +13 -0
- data/ext/smoke/qtcore/tests/test.cpp +846 -0
- data/ext/smoke/qtcore_smoke.h +16 -0
- data/ext/smoke/qtdbus/CMakeLists.txt +38 -0
- data/ext/smoke/qtdbus/config.xml.cmake +11 -0
- data/ext/smoke/qtdbus/qtdbus_includes.h +2 -0
- data/ext/smoke/qtdbus/smokeconfig.xml +63 -0
- data/ext/smoke/qtdbus_smoke.h +16 -0
- data/ext/smoke/qtgui/CMakeLists.txt +76 -0
- data/ext/smoke/qtgui/config.xml.cmake +11 -0
- data/ext/smoke/qtgui/qtgui_includes.h +7 -0
- data/ext/smoke/qtgui/smokeconfig.xml +490 -0
- data/ext/smoke/qtgui_smoke.h +16 -0
- data/ext/smoke/qtmultimedia/CMakeLists.txt +42 -0
- data/ext/smoke/qtmultimedia/config.xml.cmake +12 -0
- data/ext/smoke/qtmultimedia/qtmultimedia_includes.h +3 -0
- data/ext/smoke/qtmultimedia/smokeconfig.xml +50 -0
- data/ext/smoke/qtmultimedia_smoke.h +16 -0
- data/ext/smoke/qtnetwork/CMakeLists.txt +38 -0
- data/ext/smoke/qtnetwork/config.xml.cmake +11 -0
- data/ext/smoke/qtnetwork/qtnetwork_includes.h +2 -0
- data/ext/smoke/qtnetwork/smokeconfig.xml +76 -0
- data/ext/smoke/qtnetwork_smoke.h +16 -0
- data/ext/smoke/qtopengl/CMakeLists.txt +43 -0
- data/ext/smoke/qtopengl/config.xml.cmake +12 -0
- data/ext/smoke/qtopengl/qtopengl_includes.h +3 -0
- data/ext/smoke/qtopengl/smokeconfig.xml +56 -0
- data/ext/smoke/qtopengl_smoke.h +16 -0
- data/ext/smoke/qtscript/CMakeLists.txt +31 -0
- data/ext/smoke/qtscript/config.xml.cmake +11 -0
- data/ext/smoke/qtscript/qtscript_includes.h +14 -0
- data/ext/smoke/qtscript/smokeconfig.xml +39 -0
- data/ext/smoke/qtscript_smoke.h +16 -0
- data/ext/smoke/qtsql/CMakeLists.txt +41 -0
- data/ext/smoke/qtsql/config.xml.cmake +11 -0
- data/ext/smoke/qtsql/qtsql_includes.h +2 -0
- data/ext/smoke/qtsql/smokeconfig.xml +56 -0
- data/ext/smoke/qtsql_smoke.h +16 -0
- data/ext/smoke/qtsvg/CMakeLists.txt +43 -0
- data/ext/smoke/qtsvg/config.xml.cmake +12 -0
- data/ext/smoke/qtsvg/qtsvg_includes.h +3 -0
- data/ext/smoke/qtsvg/smokeconfig.xml +45 -0
- data/ext/smoke/qtsvg_smoke.h +16 -0
- data/ext/smoke/qttest/CMakeLists.txt +35 -0
- data/ext/smoke/qttest/config.xml.cmake +12 -0
- data/ext/smoke/qttest/qttest_includes.h +14 -0
- data/ext/smoke/qttest/smokeconfig.xml +36 -0
- data/ext/smoke/qttest_smoke.h +16 -0
- data/ext/smoke/qtuitools/CMakeLists.txt +30 -0
- data/ext/smoke/qtuitools/config.xml.cmake +12 -0
- data/ext/smoke/qtuitools/qtuitools_includes.h +1 -0
- data/ext/smoke/qtuitools/smokeconfig.xml +20 -0
- data/ext/smoke/qtuitools_smoke.h +16 -0
- data/ext/smoke/qtwebkit/CMakeLists.txt +36 -0
- data/ext/smoke/qtwebkit/config.xml.cmake +11 -0
- data/ext/smoke/qtwebkit/qtwebkit_includes.h +1 -0
- data/ext/smoke/qtwebkit/smokeconfig.xml +45 -0
- data/ext/smoke/qtwebkit_smoke.h +16 -0
- data/ext/smoke/qtxml/CMakeLists.txt +41 -0
- data/ext/smoke/qtxml/config.xml.cmake +11 -0
- data/ext/smoke/qtxml/qtxml_includes.h +2 -0
- data/ext/smoke/qtxml/smokeconfig.xml +70 -0
- data/ext/smoke/qtxml_smoke.h +16 -0
- data/ext/smoke/qtxmlpatterns/CMakeLists.txt +42 -0
- data/ext/smoke/qtxmlpatterns/config.xml.cmake +12 -0
- data/ext/smoke/qtxmlpatterns/qtxmlpatterns_includes.h +3 -0
- data/ext/smoke/qtxmlpatterns/smokeconfig.xml +80 -0
- data/ext/smoke/qtxmlpatterns_smoke.h +16 -0
- data/ext/smoke/smoke.h +557 -0
- data/ext/smoke/smokeapi/CMakeLists.txt +9 -0
- data/ext/smoke/smokeapi/main.cpp +309 -0
- data/ext/smoke/smokebase/CMakeLists.txt +11 -0
- data/ext/smoke/smokebase/smokebase.cpp +6 -0
- data/ext/smoke/solid_smoke.h +16 -0
- data/extconf.rb +231 -0
- data/lib/1.8/libqtruby4shared.dll +0 -0
- data/lib/1.8/libsmokebase.dll +0 -0
- data/lib/1.8/libsmokeqtcore.dll +0 -0
- data/lib/1.8/libsmokeqtgui.dll +0 -0
- data/lib/1.8/libsmokeqtmultimedia.dll +0 -0
- data/lib/1.8/libsmokeqtnetwork.dll +0 -0
- data/lib/1.8/libsmokeqtopengl.dll +0 -0
- data/lib/1.8/libsmokeqtscript.dll +0 -0
- data/lib/1.8/libsmokeqtsql.dll +0 -0
- data/lib/1.8/libsmokeqtsvg.dll +0 -0
- data/lib/1.8/libsmokeqttest.dll +0 -0
- data/lib/1.8/libsmokeqtuitools.dll +0 -0
- data/lib/1.8/libsmokeqtwebkit.dll +0 -0
- data/lib/1.8/libsmokeqtxml.dll +0 -0
- data/lib/1.8/libsmokeqtxmlpatterns.dll +0 -0
- data/lib/1.8/qtruby4.so +0 -0
- data/lib/1.8/qtscript.so +0 -0
- data/lib/1.8/qttest.so +0 -0
- data/lib/1.8/qtuitools.so +0 -0
- data/lib/1.8/qtwebkit.so +0 -0
- data/lib/1.9/libqtruby4shared.dll +0 -0
- data/lib/1.9/libsmokebase.dll +0 -0
- data/lib/1.9/libsmokeqtcore.dll +0 -0
- data/lib/1.9/libsmokeqtgui.dll +0 -0
- data/lib/1.9/libsmokeqtmultimedia.dll +0 -0
- data/lib/1.9/libsmokeqtnetwork.dll +0 -0
- data/lib/1.9/libsmokeqtopengl.dll +0 -0
- data/lib/1.9/libsmokeqtscript.dll +0 -0
- data/lib/1.9/libsmokeqtsql.dll +0 -0
- data/lib/1.9/libsmokeqtsvg.dll +0 -0
- data/lib/1.9/libsmokeqttest.dll +0 -0
- data/lib/1.9/libsmokeqtuitools.dll +0 -0
- data/lib/1.9/libsmokeqtwebkit.dll +0 -0
- data/lib/1.9/libsmokeqtxml.dll +0 -0
- data/lib/1.9/libsmokeqtxmlpatterns.dll +0 -0
- data/lib/1.9/qtruby4.so +0 -0
- data/lib/1.9/qtscript.so +0 -0
- data/lib/1.9/qttest.so +0 -0
- data/lib/1.9/qtuitools.so +0 -0
- data/lib/1.9/qtwebkit.so +0 -0
- data/lib/Qt.rb +1 -0
- data/lib/Qt/qtruby4.rb +3177 -0
- data/lib/Qt4.rb +20 -0
- data/lib/qtbindings_version.rb +2 -0
- data/lib/qtscript/qtscript.rb +40 -0
- data/lib/qttest/qttest.rb +166 -0
- data/lib/qtuitools/qtuitools.rb +17 -0
- data/lib/qtwebkit/qtwebkit.rb +17 -0
- data/qtbindings.gemspec +18 -0
- data/qtbindingsnative.gemspec +18 -0
- metadata +1297 -0
@@ -0,0 +1,122 @@
|
|
1
|
+
=begin
|
2
|
+
This table model allows an ActiveRecord or ActiveResource to be used as a
|
3
|
+
basis for a Qt::AbstractTableModel for viewing in a Qt::TableView. Example
|
4
|
+
usage:
|
5
|
+
|
6
|
+
app = Qt::Application.new(ARGV)
|
7
|
+
agencies = TravelAgency.find(:all, :conditions => [:name => 'Another Agency'])
|
8
|
+
model = ActiveTableModel.new(agencies)
|
9
|
+
table = Qt::TableView.new
|
10
|
+
table.model = model
|
11
|
+
table.show
|
12
|
+
app.exec
|
13
|
+
|
14
|
+
Written by Richard Dale and Silvio Fonseca
|
15
|
+
|
16
|
+
=end
|
17
|
+
|
18
|
+
require 'Qt'
|
19
|
+
require 'date'
|
20
|
+
|
21
|
+
class ActiveTableModel < Qt::AbstractTableModel
|
22
|
+
def initialize(collection, columns=nil)
|
23
|
+
super()
|
24
|
+
@collection = collection
|
25
|
+
if columns
|
26
|
+
if columns.kind_of? Hash
|
27
|
+
@keys=columns.keys
|
28
|
+
@labels=columns.values
|
29
|
+
else
|
30
|
+
@keys=columns
|
31
|
+
end
|
32
|
+
else
|
33
|
+
@keys = build_keys([], @collection.first.attributes)
|
34
|
+
end
|
35
|
+
@labels||=@keys.collect { |k| k.humanize.gsub(/\./, ' ') }
|
36
|
+
end
|
37
|
+
|
38
|
+
def build_keys(keys, attrs, prefix="")
|
39
|
+
attrs.inject(keys) do |cols, a|
|
40
|
+
if a[1].respond_to? :attributes
|
41
|
+
build_keys(cols, a[1].attributes, prefix + a[0] + ".")
|
42
|
+
else
|
43
|
+
cols << prefix + a[0]
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
def rowCount(parent)
|
49
|
+
@collection.size
|
50
|
+
end
|
51
|
+
|
52
|
+
def columnCount(parent)
|
53
|
+
@keys.size
|
54
|
+
end
|
55
|
+
|
56
|
+
|
57
|
+
def [](row)
|
58
|
+
row = row.row if row.is_a?Qt::ModelIndex
|
59
|
+
@collection[row]
|
60
|
+
end
|
61
|
+
|
62
|
+
def column(name)
|
63
|
+
@keys.index name
|
64
|
+
end
|
65
|
+
|
66
|
+
def data(index, role=Qt::DisplayRole)
|
67
|
+
invalid = Qt::Variant.new
|
68
|
+
return invalid unless role == Qt::DisplayRole or role == Qt::EditRole
|
69
|
+
item = @collection[index.row]
|
70
|
+
return invalid if item.nil?
|
71
|
+
raise "invalid column #{index.column}" if (index.column < 0 ||
|
72
|
+
index.column >= @keys.size)
|
73
|
+
value = eval("item.attributes['%s']" % @keys[index.column].gsub(/\./, "'].attributes['"))
|
74
|
+
return Qt::Variant.new(value)
|
75
|
+
end
|
76
|
+
|
77
|
+
def headerData(section, orientation, role=Qt::DisplayRole)
|
78
|
+
invalid = Qt::Variant.new
|
79
|
+
return invalid unless role == Qt::DisplayRole
|
80
|
+
v = case orientation
|
81
|
+
when Qt::Horizontal
|
82
|
+
@labels[section]
|
83
|
+
else
|
84
|
+
section
|
85
|
+
end
|
86
|
+
return Qt::Variant.new(v)
|
87
|
+
end
|
88
|
+
|
89
|
+
def flags(index)
|
90
|
+
return Qt::ItemIsEditable | super(index)
|
91
|
+
end
|
92
|
+
|
93
|
+
def setData(index, variant, role=Qt::EditRole)
|
94
|
+
if index.valid? and role == Qt::EditRole
|
95
|
+
att = @keys[index.column]
|
96
|
+
# Don't allow the primary key to be changed
|
97
|
+
if att == 'id'
|
98
|
+
return false
|
99
|
+
end
|
100
|
+
|
101
|
+
item = @collection[index.row]
|
102
|
+
raise "invalid column #{index.column}" if (index.column < 0 ||
|
103
|
+
index.column >= @keys.size)
|
104
|
+
value = variant.value
|
105
|
+
|
106
|
+
if value.class.name == "Qt::Date"
|
107
|
+
value = Date.new(value.year, value.month, value.day)
|
108
|
+
elsif value.class.name == "Qt::Time"
|
109
|
+
value = Time.new(value.hour, value.min, value.sec)
|
110
|
+
end
|
111
|
+
|
112
|
+
eval("item['%s'] = value" % att.gsub(/\./, "']['"))
|
113
|
+
item.save
|
114
|
+
emit dataChanged(index, index)
|
115
|
+
return true
|
116
|
+
else
|
117
|
+
return false
|
118
|
+
end
|
119
|
+
end
|
120
|
+
end
|
121
|
+
|
122
|
+
# kate: indent-width 4;
|
@@ -0,0 +1,103 @@
|
|
1
|
+
IF(QT_QTDBUS_FOUND)
|
2
|
+
ADD_DEFINITIONS (-DQT_QTDBUS)
|
3
|
+
ENDIF(QT_QTDBUS_FOUND)
|
4
|
+
|
5
|
+
IF(QWT_FOUND)
|
6
|
+
ADD_DEFINITIONS (-DQT_QWT)
|
7
|
+
ENDIF(QWT_FOUND)
|
8
|
+
|
9
|
+
if(RUBY_VERSION)
|
10
|
+
ADD_DEFINITIONS (-DRUBY_VERSION=0x${RUBY_VERSION_NUMBER})
|
11
|
+
ENDIF(RUBY_VERSION)
|
12
|
+
|
13
|
+
include_directories( ${CMAKE_SOURCE_DIR}/smoke ${RUBY_INCLUDE_DIRS} )
|
14
|
+
INCLUDE_DIRECTORIES (${QT_INCLUDES})
|
15
|
+
|
16
|
+
|
17
|
+
set(qtrubyshared_LIB_SRCS
|
18
|
+
Qt.cpp
|
19
|
+
handlers.cpp
|
20
|
+
marshall_types.cpp
|
21
|
+
)
|
22
|
+
|
23
|
+
set(qtruby_LIB_SRCS qtruby.cpp)
|
24
|
+
|
25
|
+
# Use 'MODULE' instead of 'SHARED' so that qtruby will be built as a bundle on Mac OS X
|
26
|
+
# instead of a dyld. But is this correct (rjd)? It needs testing.
|
27
|
+
add_library(qtruby4shared SHARED ${qtrubyshared_LIB_SRCS})
|
28
|
+
add_library(qtruby4 MODULE ${qtruby_LIB_SRCS})
|
29
|
+
|
30
|
+
if(QT_QTDBUS_FOUND)
|
31
|
+
target_link_libraries( qtruby4shared
|
32
|
+
${QT_QTCORE_LIBRARY}
|
33
|
+
${QT_QTGUI_LIBRARY}
|
34
|
+
${RUBY_LIBRARY}
|
35
|
+
${QT_QTNETWORK_LIBRARY}
|
36
|
+
smokebase
|
37
|
+
smokeqtcore
|
38
|
+
smokeqtgui
|
39
|
+
smokeqtxml
|
40
|
+
smokeqtopengl
|
41
|
+
smokeqtsql
|
42
|
+
smokeqtnetwork
|
43
|
+
smokeqtdbus
|
44
|
+
smokeqtsvg )
|
45
|
+
|
46
|
+
target_link_libraries( qtruby4
|
47
|
+
${QT_QTCORE_LIBRARY}
|
48
|
+
${QT_QTGUI_LIBRARY}
|
49
|
+
${QT_QTDBUS_LIBRARY}
|
50
|
+
${RUBY_LIBRARY}
|
51
|
+
${QT_QTNETWORK_LIBRARY}
|
52
|
+
smokeqtcore
|
53
|
+
smokeqtgui
|
54
|
+
smokeqtxml
|
55
|
+
smokeqtopengl
|
56
|
+
smokeqtsql
|
57
|
+
smokeqtnetwork
|
58
|
+
smokeqtdbus
|
59
|
+
smokeqtsvg
|
60
|
+
qtruby4shared )
|
61
|
+
else(QT_DBUS_FOUND)
|
62
|
+
target_link_libraries( qtruby4shared
|
63
|
+
${QT_QTCORE_LIBRARY}
|
64
|
+
${QT_QTGUI_LIBRARY}
|
65
|
+
${RUBY_LIBRARY}
|
66
|
+
${QT_QTNETWORK_LIBRARY}
|
67
|
+
smokebase
|
68
|
+
smokeqtcore
|
69
|
+
smokeqtgui
|
70
|
+
smokeqtxml
|
71
|
+
smokeqtopengl
|
72
|
+
smokeqtsql
|
73
|
+
smokeqtnetwork
|
74
|
+
smokeqtsvg )
|
75
|
+
|
76
|
+
target_link_libraries( qtruby4
|
77
|
+
${QT_QTCORE_LIBRARY}
|
78
|
+
${QT_QTGUI_LIBRARY}
|
79
|
+
${RUBY_LIBRARY}
|
80
|
+
${QT_QTNETWORK_LIBRARY}
|
81
|
+
smokeqtcore
|
82
|
+
smokeqtgui
|
83
|
+
smokeqtxml
|
84
|
+
smokeqtopengl
|
85
|
+
smokeqtsql
|
86
|
+
smokeqtnetwork
|
87
|
+
smokeqtsvg
|
88
|
+
qtruby4shared )
|
89
|
+
endif(QT_DBUS_FOUND)
|
90
|
+
|
91
|
+
# target_link_libraries(qtrubyinternal ${QT_QTCORE_LIBRARY} ${RUBY_LIBRARY} ${QT_QTNETWORK_LIBRARY})
|
92
|
+
|
93
|
+
set_target_properties(qtruby4 PROPERTIES PREFIX "")
|
94
|
+
set_target_properties(qtruby4shared PROPERTIES VERSION 2.0.0 SOVERSION 2)
|
95
|
+
|
96
|
+
install(TARGETS qtruby4shared DESTINATION ${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX} )
|
97
|
+
install(TARGETS qtruby4 DESTINATION ${CUSTOM_RUBY_SITE_ARCH_DIR})
|
98
|
+
|
99
|
+
install(FILES qtruby.h marshall.h marshall_basetypes.h marshall_complex.h marshall_macros.h marshall_primitives.h marshall_types.h smokeruby.h DESTINATION ${CMAKE_INSTALL_PREFIX}/include/qtruby)
|
100
|
+
|
101
|
+
if (Q_WS_MAC)
|
102
|
+
install(CODE "execute_process(COMMAND ${CMAKE_COMMAND} -E create_symlink \"${CUSTOM_RUBY_SITE_ARCH_DIR}/qtruby4.so\" \"${CUSTOM_RUBY_SITE_ARCH_DIR}/qtruby4.bundle\" )" )
|
103
|
+
endif (Q_WS_MAC)
|
@@ -0,0 +1,1279 @@
|
|
1
|
+
/***************************************************************************
|
2
|
+
Qt.cpp - description
|
3
|
+
-------------------
|
4
|
+
begin : Fri Jul 4 2003
|
5
|
+
copyright : (C) 2003-2006 by Richard Dale
|
6
|
+
email : Richard_Dale@tipitina.demon.co.uk
|
7
|
+
***************************************************************************/
|
8
|
+
|
9
|
+
/***************************************************************************
|
10
|
+
* *
|
11
|
+
* This program is free software; you can redistribute it and/or modify *
|
12
|
+
* it under the terms of the GNU Lesser General Public License as *
|
13
|
+
* published by the Free Software Foundation; either version 2 of the *
|
14
|
+
* License, or (at your option) any later version. *
|
15
|
+
* *
|
16
|
+
***************************************************************************/
|
17
|
+
|
18
|
+
#ifndef _GNU_SOURCE
|
19
|
+
#define _GNU_SOURCE
|
20
|
+
#endif
|
21
|
+
#include <stdio.h>
|
22
|
+
#include <stdarg.h>
|
23
|
+
|
24
|
+
#include <QtCore/qabstractitemmodel.h>
|
25
|
+
#include <QtCore/qglobal.h>
|
26
|
+
#include <QtCore/qhash.h>
|
27
|
+
#include <QtCore/qline.h>
|
28
|
+
#include <QtCore/qmetaobject.h>
|
29
|
+
#include <QtCore/qobject.h>
|
30
|
+
#include <QtCore/qrect.h>
|
31
|
+
#include <QtCore/qregexp.h>
|
32
|
+
#include <QtCore/qstring.h>
|
33
|
+
#include <QtCore/qvariant.h>
|
34
|
+
#include <QtGui/qapplication.h>
|
35
|
+
#include <QtGui/qbitmap.h>
|
36
|
+
#include <QtGui/qcolor.h>
|
37
|
+
#include <QtGui/qcursor.h>
|
38
|
+
#include <QtGui/qfont.h>
|
39
|
+
#include <QtGui/qicon.h>
|
40
|
+
#include <QtGui/qitemselectionmodel.h>
|
41
|
+
#include <QtGui/qpalette.h>
|
42
|
+
#include <QtGui/qpen.h>
|
43
|
+
#include <QtGui/qpixmap.h>
|
44
|
+
#include <QtGui/qpolygon.h>
|
45
|
+
#include <QtGui/qtextformat.h>
|
46
|
+
#include <QtGui/qwidget.h>
|
47
|
+
|
48
|
+
#ifdef QT_QTDBUS
|
49
|
+
#include <QtDBus/qdbusargument.h>
|
50
|
+
#endif
|
51
|
+
|
52
|
+
#undef DEBUG
|
53
|
+
#ifndef __USE_POSIX
|
54
|
+
#define __USE_POSIX
|
55
|
+
#endif
|
56
|
+
#ifndef __USE_XOPEN
|
57
|
+
#define __USE_XOPEN
|
58
|
+
#endif
|
59
|
+
#ifdef _BOOL
|
60
|
+
#define HAS_BOOL
|
61
|
+
#endif
|
62
|
+
|
63
|
+
#include <ruby.h>
|
64
|
+
|
65
|
+
#include <smoke/smoke.h>
|
66
|
+
#include <smoke/qtcore_smoke.h>
|
67
|
+
|
68
|
+
#undef free
|
69
|
+
#undef malloc
|
70
|
+
|
71
|
+
#include "marshall.h"
|
72
|
+
#include "qtruby.h"
|
73
|
+
#include "smokeruby.h"
|
74
|
+
#include "smoke.h"
|
75
|
+
#include "marshall_types.h"
|
76
|
+
// #define DEBUG
|
77
|
+
|
78
|
+
extern "C" {
|
79
|
+
VALUE qt_internal_module = Qnil;
|
80
|
+
VALUE qt_module = Qnil;
|
81
|
+
|
82
|
+
VALUE qlistmodel_class = Qnil;
|
83
|
+
VALUE qmetaobject_class = Qnil;
|
84
|
+
VALUE qtablemodel_class = Qnil;
|
85
|
+
VALUE qt_base_class = Qnil;
|
86
|
+
VALUE qvariant_class = Qnil;
|
87
|
+
|
88
|
+
VALUE moduleindex_class = Qnil;
|
89
|
+
|
90
|
+
bool application_terminated = false;
|
91
|
+
}
|
92
|
+
|
93
|
+
QList<Smoke*> smokeList;
|
94
|
+
QHash<Smoke*, QtRubyModule> qtruby_modules;
|
95
|
+
|
96
|
+
#ifdef DEBUG
|
97
|
+
int do_debug = qtdb_gc;
|
98
|
+
#else
|
99
|
+
int do_debug = qtdb_none;
|
100
|
+
#endif
|
101
|
+
|
102
|
+
typedef QHash<void *, SmokeValue> PointerMap;
|
103
|
+
Q_GLOBAL_STATIC(PointerMap, pointer_map)
|
104
|
+
int object_count = 0;
|
105
|
+
|
106
|
+
// FIXME:
|
107
|
+
// Don't the two following hashs create memory leaks by using pointers to Smoke::(Module)Index ?
|
108
|
+
QHash<QByteArray, Smoke::ModuleIndex *> methcache;
|
109
|
+
QHash<QByteArray, Smoke::ModuleIndex *> classcache;
|
110
|
+
|
111
|
+
QHash<Smoke::ModuleIndex, QByteArray*> IdToClassNameMap;
|
112
|
+
|
113
|
+
#define logger logger_backend
|
114
|
+
|
115
|
+
Smoke::ModuleIndex _current_method;
|
116
|
+
|
117
|
+
smokeruby_object *
|
118
|
+
alloc_smokeruby_object(bool allocated, Smoke * smoke, int classId, void * ptr)
|
119
|
+
{
|
120
|
+
smokeruby_object * o = ALLOC(smokeruby_object);
|
121
|
+
o->classId = classId;
|
122
|
+
o->smoke = smoke;
|
123
|
+
o->ptr = ptr;
|
124
|
+
o->allocated = allocated;
|
125
|
+
return o;
|
126
|
+
}
|
127
|
+
|
128
|
+
void
|
129
|
+
free_smokeruby_object(smokeruby_object * o)
|
130
|
+
{
|
131
|
+
o->ptr = 0;
|
132
|
+
xfree(o);
|
133
|
+
return;
|
134
|
+
}
|
135
|
+
|
136
|
+
smokeruby_object *value_obj_info(VALUE ruby_value) { // ptr on success, null on fail
|
137
|
+
if (TYPE(ruby_value) != T_DATA) {
|
138
|
+
return 0;
|
139
|
+
}
|
140
|
+
|
141
|
+
smokeruby_object * o = 0;
|
142
|
+
Data_Get_Struct(ruby_value, smokeruby_object, o);
|
143
|
+
return o;
|
144
|
+
}
|
145
|
+
|
146
|
+
void *value_to_ptr(VALUE ruby_value) { // ptr on success, null on fail
|
147
|
+
smokeruby_object *o = value_obj_info(ruby_value);
|
148
|
+
return o;
|
149
|
+
}
|
150
|
+
|
151
|
+
VALUE getPointerObject(void *ptr) {
|
152
|
+
return getSmokeValue(ptr).value;
|
153
|
+
}
|
154
|
+
|
155
|
+
SmokeValue getSmokeValue(void *ptr) {
|
156
|
+
if (!pointer_map() || !pointer_map()->contains(ptr)) {
|
157
|
+
if (do_debug & qtdb_gc) {
|
158
|
+
qWarning("getPointerObject %p -> nil", ptr);
|
159
|
+
if (!pointer_map()) {
|
160
|
+
qWarning("getPointerObject pointer_map deleted");
|
161
|
+
}
|
162
|
+
}
|
163
|
+
return SmokeValue();
|
164
|
+
} else {
|
165
|
+
if (do_debug & qtdb_gc) {
|
166
|
+
qWarning("getPointerObject %p -> %p", ptr, (void *) pointer_map()->operator[](ptr).value);
|
167
|
+
}
|
168
|
+
return pointer_map()->operator[](ptr);
|
169
|
+
}
|
170
|
+
}
|
171
|
+
|
172
|
+
void unmapPointer(void *ptr, Smoke *smoke, Smoke::Index fromClassId, Smoke::Index toClassId, void *lastptr) {
|
173
|
+
ptr = smoke->cast(ptr, fromClassId, toClassId);
|
174
|
+
|
175
|
+
if (ptr != lastptr) {
|
176
|
+
lastptr = ptr;
|
177
|
+
if (pointer_map() && pointer_map()->contains(ptr)) {
|
178
|
+
VALUE obj_ptr = pointer_map()->operator[](ptr).value;
|
179
|
+
|
180
|
+
if (do_debug & qtdb_gc) {
|
181
|
+
const char *className = smoke->classes[fromClassId].className;
|
182
|
+
qWarning("unmapPointer (%s*)%p -> %p size: %d", className, ptr, (void*)(&obj_ptr), pointer_map()->size() - 1);
|
183
|
+
}
|
184
|
+
|
185
|
+
pointer_map()->remove(ptr);
|
186
|
+
}
|
187
|
+
}
|
188
|
+
|
189
|
+
if (smoke->classes[toClassId].external) {
|
190
|
+
// encountered external class
|
191
|
+
Smoke::ModuleIndex mi = Smoke::findClass(smoke->classes[toClassId].className);
|
192
|
+
if (!mi.index || !mi.smoke) return;
|
193
|
+
|
194
|
+
smoke = mi.smoke;
|
195
|
+
toClassId = mi.index;
|
196
|
+
}
|
197
|
+
|
198
|
+
for (Smoke::Index *i = smoke->inheritanceList + smoke->classes[toClassId].parents; *i; i++) {
|
199
|
+
unmapPointer(ptr, smoke, toClassId, *i, lastptr);
|
200
|
+
}
|
201
|
+
}
|
202
|
+
|
203
|
+
void unmapPointer(smokeruby_object *o, Smoke::Index classId, void *lastptr) {
|
204
|
+
unmapPointer(o->ptr, o->smoke, o->classId, classId, lastptr);
|
205
|
+
}
|
206
|
+
|
207
|
+
// Store pointer in pointer_map hash : "pointer_to_Qt_object" => weak ref to associated Ruby object
|
208
|
+
// Recurse to store it also as casted to its parent classes.
|
209
|
+
|
210
|
+
void mapPointer(VALUE obj, smokeruby_object* o, void *ptr, Smoke *smoke, Smoke::Index fromClassId, Smoke::Index toClassId, void *lastptr) {
|
211
|
+
ptr = smoke->cast(ptr, fromClassId, toClassId);
|
212
|
+
|
213
|
+
if (ptr != lastptr) {
|
214
|
+
lastptr = ptr;
|
215
|
+
|
216
|
+
if (do_debug & qtdb_gc) {
|
217
|
+
const char *className = smoke->classes[fromClassId].className;
|
218
|
+
qWarning("mapPointer (%s*)%p -> %p size: %d", className, ptr, (void*)obj, pointer_map()->size() + 1);
|
219
|
+
}
|
220
|
+
|
221
|
+
SmokeValue value(obj, o);
|
222
|
+
pointer_map()->insert(ptr, value);
|
223
|
+
}
|
224
|
+
|
225
|
+
if (smoke->classes[toClassId].external) {
|
226
|
+
// encountered external class
|
227
|
+
Smoke::ModuleIndex mi = Smoke::findClass(smoke->classes[toClassId].className);
|
228
|
+
if (!mi.index || !mi.smoke) return;
|
229
|
+
|
230
|
+
smoke = mi.smoke;
|
231
|
+
toClassId = mi.index;
|
232
|
+
}
|
233
|
+
|
234
|
+
for (Smoke::Index *i = smoke->inheritanceList + smoke->classes[toClassId].parents; *i; i++) {
|
235
|
+
mapPointer(obj, o, ptr, smoke, toClassId, *i, lastptr);
|
236
|
+
}
|
237
|
+
|
238
|
+
return;
|
239
|
+
}
|
240
|
+
|
241
|
+
void mapPointer(VALUE obj, smokeruby_object *o, Smoke::Index classId, void *lastptr) {
|
242
|
+
mapPointer(obj, o, o->ptr, o->smoke, o->classId, classId, lastptr);
|
243
|
+
}
|
244
|
+
|
245
|
+
namespace QtRuby {
|
246
|
+
|
247
|
+
Binding::Binding() : SmokeBinding(0) {}
|
248
|
+
Binding::Binding(Smoke *s) : SmokeBinding(s) {}
|
249
|
+
|
250
|
+
void
|
251
|
+
Binding::deleted(Smoke::Index classId, void *ptr) {
|
252
|
+
if (!pointer_map()) {
|
253
|
+
return;
|
254
|
+
}
|
255
|
+
|
256
|
+
smokeruby_object *o = getSmokeValue(ptr).o;
|
257
|
+
if (do_debug & qtdb_gc) {
|
258
|
+
qWarning("unmapping: o = %p, ptr = %p\n", o, ptr);
|
259
|
+
qWarning("%p->~%s()", ptr, smoke->className(classId));
|
260
|
+
}
|
261
|
+
if (!o || !o->ptr) {
|
262
|
+
return;
|
263
|
+
}
|
264
|
+
unmapPointer(o, o->classId, 0);
|
265
|
+
o->ptr = 0;
|
266
|
+
}
|
267
|
+
|
268
|
+
bool
|
269
|
+
Binding::callMethod(Smoke::Index method, void *ptr, Smoke::Stack args, bool /*isAbstract*/) {
|
270
|
+
VALUE obj = getPointerObject(ptr);
|
271
|
+
smokeruby_object *o = value_obj_info(obj);
|
272
|
+
|
273
|
+
if (do_debug & qtdb_virtual) {
|
274
|
+
const Smoke::Method & meth = smoke->methods[method];
|
275
|
+
QByteArray signature(smoke->methodNames[meth.name]);
|
276
|
+
signature += "(";
|
277
|
+
for (int i = 0; i < meth.numArgs; i++) {
|
278
|
+
if (i != 0) signature += ", ";
|
279
|
+
signature += smoke->types[smoke->argumentList[meth.args + i]].name;
|
280
|
+
}
|
281
|
+
signature += ")";
|
282
|
+
if (meth.flags & Smoke::mf_const) {
|
283
|
+
signature += " const";
|
284
|
+
}
|
285
|
+
qWarning( "module: %s virtual %p->%s::%s called",
|
286
|
+
smoke->moduleName(),
|
287
|
+
ptr,
|
288
|
+
smoke->classes[smoke->methods[method].classId].className,
|
289
|
+
(const char *) signature );
|
290
|
+
}
|
291
|
+
|
292
|
+
if (o == 0) {
|
293
|
+
if( do_debug & qtdb_virtual ) // if not in global destruction
|
294
|
+
qWarning("Cannot find object for virtual method %p -> %p", ptr, &obj);
|
295
|
+
return false;
|
296
|
+
}
|
297
|
+
const char *methodName = smoke->methodNames[smoke->methods[method].name];
|
298
|
+
if (qstrncmp(methodName, "operator", sizeof("operator") - 1) == 0) {
|
299
|
+
methodName += (sizeof("operator") - 1);
|
300
|
+
}
|
301
|
+
// If the virtual method hasn't been overriden, just call the C++ one.
|
302
|
+
// During GC, avoid checking for override and just call the C++ version
|
303
|
+
if (rb_during_gc() || rb_respond_to(obj, rb_intern(methodName)) == 0) {
|
304
|
+
return false;
|
305
|
+
}
|
306
|
+
QtRuby::VirtualMethodCall c(smoke, method, args, obj, ALLOCA_N(VALUE, smoke->methods[method].numArgs));
|
307
|
+
c.next();
|
308
|
+
return true;
|
309
|
+
}
|
310
|
+
|
311
|
+
char*
|
312
|
+
Binding::className(Smoke::Index classId) {
|
313
|
+
Smoke::ModuleIndex mi(smoke, classId);
|
314
|
+
return (char *) (const char *) *(IdToClassNameMap.value(mi));
|
315
|
+
}
|
316
|
+
|
317
|
+
/*
|
318
|
+
Converts a C++ value returned by a signal invocation to a Ruby
|
319
|
+
reply type
|
320
|
+
*/
|
321
|
+
class SignalReturnValue : public Marshall {
|
322
|
+
QList<MocArgument*> _replyType;
|
323
|
+
Smoke::Stack _stack;
|
324
|
+
VALUE * _result;
|
325
|
+
public:
|
326
|
+
SignalReturnValue(void ** o, VALUE * result, QList<MocArgument*> replyType)
|
327
|
+
{
|
328
|
+
_result = result;
|
329
|
+
_replyType = replyType;
|
330
|
+
_stack = new Smoke::StackItem[1];
|
331
|
+
smokeStackFromQtStack(_stack, o, 0, 1, _replyType);
|
332
|
+
Marshall::HandlerFn fn = getMarshallFn(type());
|
333
|
+
(*fn)(this);
|
334
|
+
}
|
335
|
+
|
336
|
+
SmokeType type() {
|
337
|
+
return _replyType[0]->st;
|
338
|
+
}
|
339
|
+
Marshall::Action action() { return Marshall::ToVALUE; }
|
340
|
+
Smoke::StackItem &item() { return _stack[0]; }
|
341
|
+
VALUE * var() {
|
342
|
+
return _result;
|
343
|
+
}
|
344
|
+
|
345
|
+
void unsupported()
|
346
|
+
{
|
347
|
+
rb_raise(rb_eArgError, "Cannot handle '%s' as signal reply-type", type().name());
|
348
|
+
}
|
349
|
+
Smoke *smoke() { return type().smoke(); }
|
350
|
+
|
351
|
+
void next() {}
|
352
|
+
|
353
|
+
bool cleanup() { return false; }
|
354
|
+
|
355
|
+
~SignalReturnValue() {
|
356
|
+
delete[] _stack;
|
357
|
+
}
|
358
|
+
};
|
359
|
+
|
360
|
+
/* Note that the SignalReturnValue and EmitSignal classes really belong in
|
361
|
+
marshall_types.cpp. However, for unknown reasons they don't link with certain
|
362
|
+
versions of gcc. So they were moved here in to work round that bug.
|
363
|
+
*/
|
364
|
+
EmitSignal::EmitSignal(QObject *obj, int id, int /*items*/, QList<MocArgument*> args, VALUE *sp, VALUE * result) : SigSlotBase(args),
|
365
|
+
_obj(obj), _id(id)
|
366
|
+
{
|
367
|
+
_sp = sp;
|
368
|
+
_result = result;
|
369
|
+
}
|
370
|
+
|
371
|
+
Marshall::Action
|
372
|
+
EmitSignal::action()
|
373
|
+
{
|
374
|
+
return Marshall::FromVALUE;
|
375
|
+
}
|
376
|
+
|
377
|
+
Smoke::StackItem &
|
378
|
+
EmitSignal::item()
|
379
|
+
{
|
380
|
+
return _stack[_cur];
|
381
|
+
}
|
382
|
+
|
383
|
+
const char *
|
384
|
+
EmitSignal::mytype()
|
385
|
+
{
|
386
|
+
return "signal";
|
387
|
+
}
|
388
|
+
|
389
|
+
void
|
390
|
+
EmitSignal::emitSignal()
|
391
|
+
{
|
392
|
+
if (_called) return;
|
393
|
+
_called = true;
|
394
|
+
void ** o = new void*[_items];
|
395
|
+
smokeStackToQtStack(_stack, o + 1, 1, _items, _args);
|
396
|
+
void * ptr;
|
397
|
+
o[0] = &ptr;
|
398
|
+
prepareReturnValue(o);
|
399
|
+
|
400
|
+
_obj->metaObject()->activate(_obj, _id, o);
|
401
|
+
|
402
|
+
if (_args[0]->argType != xmoc_void) {
|
403
|
+
SignalReturnValue r(o, _result, _args);
|
404
|
+
}
|
405
|
+
delete[] o;
|
406
|
+
}
|
407
|
+
|
408
|
+
void
|
409
|
+
EmitSignal::mainfunction()
|
410
|
+
{
|
411
|
+
emitSignal();
|
412
|
+
}
|
413
|
+
|
414
|
+
bool
|
415
|
+
EmitSignal::cleanup()
|
416
|
+
{
|
417
|
+
return true;
|
418
|
+
}
|
419
|
+
|
420
|
+
InvokeNativeSlot::InvokeNativeSlot(QObject *obj, int id, int /*items*/, QList<MocArgument*> args, VALUE *sp, VALUE * result) : SigSlotBase(args),
|
421
|
+
_obj(obj), _id(id)
|
422
|
+
{
|
423
|
+
_sp = sp;
|
424
|
+
_result = result;
|
425
|
+
}
|
426
|
+
|
427
|
+
Marshall::Action
|
428
|
+
InvokeNativeSlot::action()
|
429
|
+
{
|
430
|
+
return Marshall::FromVALUE;
|
431
|
+
}
|
432
|
+
|
433
|
+
Smoke::StackItem &
|
434
|
+
InvokeNativeSlot::item()
|
435
|
+
{
|
436
|
+
return _stack[_cur];
|
437
|
+
}
|
438
|
+
|
439
|
+
const char *
|
440
|
+
InvokeNativeSlot::mytype()
|
441
|
+
{
|
442
|
+
return "slot";
|
443
|
+
}
|
444
|
+
|
445
|
+
void
|
446
|
+
InvokeNativeSlot::invokeSlot()
|
447
|
+
{
|
448
|
+
if (_called) return;
|
449
|
+
_called = true;
|
450
|
+
void ** o = new void*[_items];
|
451
|
+
smokeStackToQtStack(_stack, o + 1, 1, _items, _args);
|
452
|
+
void * ptr;
|
453
|
+
o[0] = &ptr;
|
454
|
+
prepareReturnValue(o);
|
455
|
+
|
456
|
+
_obj->qt_metacall(QMetaObject::InvokeMetaMethod, _id, o);
|
457
|
+
|
458
|
+
if (_args[0]->argType != xmoc_void) {
|
459
|
+
SignalReturnValue r(o, _result, _args);
|
460
|
+
}
|
461
|
+
delete[] o;
|
462
|
+
}
|
463
|
+
|
464
|
+
void
|
465
|
+
InvokeNativeSlot::mainfunction()
|
466
|
+
{
|
467
|
+
invokeSlot();
|
468
|
+
}
|
469
|
+
|
470
|
+
bool
|
471
|
+
InvokeNativeSlot::cleanup()
|
472
|
+
{
|
473
|
+
return true;
|
474
|
+
}
|
475
|
+
|
476
|
+
}
|
477
|
+
|
478
|
+
VALUE rb_str_catf(VALUE self, const char *format, ...)
|
479
|
+
{
|
480
|
+
#define CAT_BUFFER_SIZE 2048
|
481
|
+
static char p[CAT_BUFFER_SIZE];
|
482
|
+
va_list ap;
|
483
|
+
va_start(ap, format);
|
484
|
+
qvsnprintf(p, CAT_BUFFER_SIZE, format, ap);
|
485
|
+
p[CAT_BUFFER_SIZE - 1] = '\0';
|
486
|
+
rb_str_cat2(self, p);
|
487
|
+
va_end(ap);
|
488
|
+
return self;
|
489
|
+
}
|
490
|
+
|
491
|
+
const char *
|
492
|
+
resolve_classname(smokeruby_object * o)
|
493
|
+
{
|
494
|
+
if (Smoke::isDerivedFrom(o->smoke->classes[o->classId].className, "QObject")) {
|
495
|
+
QObject * qobject = (QObject *) o->smoke->cast(o->ptr, o->classId, o->smoke->idClass("QObject").index);
|
496
|
+
const QMetaObject * meta = qobject->metaObject();
|
497
|
+
|
498
|
+
while (meta != 0) {
|
499
|
+
Smoke::ModuleIndex mi = o->smoke->findClass(meta->className());
|
500
|
+
o->smoke = mi.smoke;
|
501
|
+
o->classId = mi.index;
|
502
|
+
if (o->smoke != 0) {
|
503
|
+
if (o->classId != 0) {
|
504
|
+
return qtruby_modules[o->smoke].binding->className(o->classId);
|
505
|
+
}
|
506
|
+
}
|
507
|
+
|
508
|
+
meta = meta->superClass();
|
509
|
+
}
|
510
|
+
}
|
511
|
+
|
512
|
+
if (o->smoke->classes[o->classId].external) {
|
513
|
+
Smoke::ModuleIndex mi = o->smoke->findClass(o->smoke->className(o->classId));
|
514
|
+
o->smoke = mi.smoke;
|
515
|
+
o->classId = mi.index;
|
516
|
+
return qtruby_modules.value(mi.smoke).resolve_classname(o);
|
517
|
+
}
|
518
|
+
return qtruby_modules.value(o->smoke).resolve_classname(o);
|
519
|
+
}
|
520
|
+
|
521
|
+
VALUE
|
522
|
+
findMethod(VALUE /*self*/, VALUE c_value, VALUE name_value)
|
523
|
+
{
|
524
|
+
char *c = StringValuePtr(c_value);
|
525
|
+
char *name = StringValuePtr(name_value);
|
526
|
+
VALUE result = rb_ary_new();
|
527
|
+
Smoke::ModuleIndex classId = Smoke::findClass(c);
|
528
|
+
Smoke::ModuleIndex meth = Smoke::NullModuleIndex;
|
529
|
+
if (classId.smoke != 0) {
|
530
|
+
meth = classId.smoke->findMethod(c, name);
|
531
|
+
}
|
532
|
+
#ifdef DEBUG
|
533
|
+
if (do_debug & qtdb_calls) qWarning("Found method %s::%s => %d", c, name, meth.index);
|
534
|
+
#endif
|
535
|
+
if(!meth.index) {
|
536
|
+
// since every smoke module defines a class 'QGlobalSpace' we can't rely on the classMap,
|
537
|
+
// so we search for methods by hand
|
538
|
+
foreach (Smoke* s, smokeList) {
|
539
|
+
Smoke::ModuleIndex cid = s->idClass("QGlobalSpace");
|
540
|
+
Smoke::ModuleIndex mnid = s->idMethodName(name);
|
541
|
+
if (!cid.index || !mnid.index) continue;
|
542
|
+
meth = s->idMethod(cid.index, mnid.index);
|
543
|
+
if (meth.index) break;
|
544
|
+
}
|
545
|
+
#ifdef DEBUG
|
546
|
+
if (do_debug & qtdb_calls) qWarning("Found method QGlobalSpace::%s => %d", name, meth.index);
|
547
|
+
#endif
|
548
|
+
}
|
549
|
+
|
550
|
+
if (meth.index == 0) {
|
551
|
+
return result;
|
552
|
+
// empty list
|
553
|
+
} else if (meth.index > 0) {
|
554
|
+
Smoke::Index i = meth.smoke->methodMaps[meth.index].method;
|
555
|
+
if (i == 0) { // shouldn't happen
|
556
|
+
rb_raise(rb_eArgError, "Corrupt method %s::%s", c, name);
|
557
|
+
} else if(i > 0) { // single match
|
558
|
+
const Smoke::Method &methodRef = meth.smoke->methods[i];
|
559
|
+
if ((methodRef.flags & Smoke::mf_internal) == 0) {
|
560
|
+
rb_ary_push(result, rb_funcall(moduleindex_class, rb_intern("new"), 2, INT2NUM(smokeList.indexOf(meth.smoke)), INT2NUM(i)));
|
561
|
+
}
|
562
|
+
} else { // multiple match
|
563
|
+
i = -i; // turn into ambiguousMethodList index
|
564
|
+
while (meth.smoke->ambiguousMethodList[i]) {
|
565
|
+
const Smoke::Method &methodRef = meth.smoke->methods[meth.smoke->ambiguousMethodList[i]];
|
566
|
+
if ((methodRef.flags & Smoke::mf_internal) == 0) {
|
567
|
+
rb_ary_push(result, rb_funcall(moduleindex_class, rb_intern("new"), 2, INT2NUM(smokeList.indexOf(meth.smoke)), INT2NUM(meth.smoke->ambiguousMethodList[i])));
|
568
|
+
//#ifdef DEBUG
|
569
|
+
if (do_debug & qtdb_calls) qWarning("Ambiguous Method %s::%s => %d", c, name, meth.smoke->ambiguousMethodList[i]);
|
570
|
+
//#endif
|
571
|
+
|
572
|
+
}
|
573
|
+
i++;
|
574
|
+
}
|
575
|
+
}
|
576
|
+
}
|
577
|
+
return result;
|
578
|
+
}
|
579
|
+
|
580
|
+
// findAllMethods(ModuleIndex [, startingWith]) : returns { "mungedName" => [index in methods, ...], ... }
|
581
|
+
|
582
|
+
VALUE
|
583
|
+
findAllMethods(int argc, VALUE * argv, VALUE /*self*/)
|
584
|
+
{
|
585
|
+
VALUE rb_mi = argv[0];
|
586
|
+
VALUE result = rb_hash_new();
|
587
|
+
if (rb_mi != Qnil) {
|
588
|
+
Smoke::Index c = (Smoke::Index) NUM2INT(rb_funcall(rb_mi, rb_intern("index"), 0));
|
589
|
+
Smoke *smoke = smokeList[NUM2INT(rb_funcall(rb_mi, rb_intern("smoke"), 0))];
|
590
|
+
if (c > smoke->numClasses) {
|
591
|
+
return Qnil;
|
592
|
+
}
|
593
|
+
char * pat = 0L;
|
594
|
+
if(argc > 1 && TYPE(argv[1]) == T_STRING)
|
595
|
+
pat = StringValuePtr(argv[1]);
|
596
|
+
#ifdef DEBUG
|
597
|
+
if (do_debug & qtdb_calls) qWarning("findAllMethods called with classid = %d, pat == %s", c, pat);
|
598
|
+
#endif
|
599
|
+
Smoke::Index imax = smoke->numMethodMaps;
|
600
|
+
Smoke::Index imin = 0, icur = -1, methmin, methmax;
|
601
|
+
methmin = -1; methmax = -1; // kill warnings
|
602
|
+
int icmp = -1;
|
603
|
+
while(imax >= imin) {
|
604
|
+
icur = (imin + imax) / 2;
|
605
|
+
icmp = smoke->leg(smoke->methodMaps[icur].classId, c);
|
606
|
+
if (icmp == 0) {
|
607
|
+
Smoke::Index pos = icur;
|
608
|
+
while (icur && smoke->methodMaps[icur-1].classId == c)
|
609
|
+
icur --;
|
610
|
+
methmin = icur;
|
611
|
+
icur = pos;
|
612
|
+
while(icur < imax && smoke->methodMaps[icur+1].classId == c)
|
613
|
+
icur ++;
|
614
|
+
methmax = icur;
|
615
|
+
break;
|
616
|
+
}
|
617
|
+
if (icmp > 0)
|
618
|
+
imax = icur - 1;
|
619
|
+
else
|
620
|
+
imin = icur + 1;
|
621
|
+
}
|
622
|
+
if (icmp == 0) {
|
623
|
+
for (Smoke::Index i = methmin; i <= methmax; i++) {
|
624
|
+
Smoke::Index m = smoke->methodMaps[i].name;
|
625
|
+
if (pat == 0L || strncmp(smoke->methodNames[m], pat, strlen(pat)) == 0) {
|
626
|
+
Smoke::Index ix = smoke->methodMaps[i].method;
|
627
|
+
VALUE meths = rb_ary_new();
|
628
|
+
if (ix >= 0) { // single match
|
629
|
+
const Smoke::Method &methodRef = smoke->methods[ix];
|
630
|
+
if ((methodRef.flags & Smoke::mf_internal) == 0) {
|
631
|
+
rb_ary_push(meths, rb_funcall(moduleindex_class, rb_intern("new"), 2, INT2NUM(smokeList.indexOf(smoke)), INT2NUM((int) ix)));
|
632
|
+
}
|
633
|
+
} else { // multiple match
|
634
|
+
ix = -ix; // turn into ambiguousMethodList index
|
635
|
+
while (smoke->ambiguousMethodList[ix]) {
|
636
|
+
const Smoke::Method &methodRef = smoke->methods[smoke->ambiguousMethodList[ix]];
|
637
|
+
if ((methodRef.flags & Smoke::mf_internal) == 0) {
|
638
|
+
rb_ary_push(meths, rb_funcall(moduleindex_class, rb_intern("new"), 2, INT2NUM(smokeList.indexOf(smoke)), INT2NUM((int)smoke->ambiguousMethodList[ix])));
|
639
|
+
}
|
640
|
+
ix++;
|
641
|
+
}
|
642
|
+
}
|
643
|
+
rb_hash_aset(result, rb_str_new2(smoke->methodNames[m]), meths);
|
644
|
+
}
|
645
|
+
}
|
646
|
+
}
|
647
|
+
}
|
648
|
+
return result;
|
649
|
+
}
|
650
|
+
|
651
|
+
/*
|
652
|
+
Flags values
|
653
|
+
0 All methods, except enum values and protected non-static methods
|
654
|
+
mf_static Static methods only
|
655
|
+
mf_enum Enums only
|
656
|
+
mf_protected Protected non-static methods only
|
657
|
+
*/
|
658
|
+
|
659
|
+
#define PUSH_QTRUBY_METHOD \
|
660
|
+
if ( (methodRef.flags & (Smoke::mf_internal|Smoke::mf_ctor|Smoke::mf_dtor)) == 0 \
|
661
|
+
&& strcmp(s->methodNames[methodRef.name], "operator=") != 0 \
|
662
|
+
&& strcmp(s->methodNames[methodRef.name], "operator!=") != 0 \
|
663
|
+
&& strcmp(s->methodNames[methodRef.name], "operator--") != 0 \
|
664
|
+
&& strcmp(s->methodNames[methodRef.name], "operator++") != 0 \
|
665
|
+
&& strncmp(s->methodNames[methodRef.name], "operator ", strlen("operator ")) != 0 \
|
666
|
+
&& ( (flags == 0 && (methodRef.flags & (Smoke::mf_static|Smoke::mf_enum|Smoke::mf_protected)) == 0) \
|
667
|
+
|| ( flags == Smoke::mf_static \
|
668
|
+
&& (methodRef.flags & Smoke::mf_enum) == 0 \
|
669
|
+
&& (methodRef.flags & Smoke::mf_static) == Smoke::mf_static ) \
|
670
|
+
|| (flags == Smoke::mf_enum && (methodRef.flags & Smoke::mf_enum) == Smoke::mf_enum) \
|
671
|
+
|| ( flags == Smoke::mf_protected \
|
672
|
+
&& (methodRef.flags & Smoke::mf_static) == 0 \
|
673
|
+
&& (methodRef.flags & Smoke::mf_protected) == Smoke::mf_protected ) ) ) { \
|
674
|
+
if (strncmp(s->methodNames[methodRef.name], "operator", strlen("operator")) == 0) { \
|
675
|
+
if (op_re.indexIn(s->methodNames[methodRef.name]) != -1) { \
|
676
|
+
rb_ary_push(result, rb_str_new2((op_re.cap(1) + op_re.cap(2)).toLatin1())); \
|
677
|
+
} else { \
|
678
|
+
rb_ary_push(result, rb_str_new2(s->methodNames[methodRef.name] + strlen("operator"))); \
|
679
|
+
} \
|
680
|
+
} else if (predicate_re.indexIn(s->methodNames[methodRef.name]) != -1 && methodRef.numArgs == 0) { \
|
681
|
+
rb_ary_push(result, rb_str_new2((predicate_re.cap(2).toLower() + predicate_re.cap(3) + "?").toLatin1())); \
|
682
|
+
} else if (set_re.indexIn(s->methodNames[methodRef.name]) != -1 && methodRef.numArgs == 1) { \
|
683
|
+
rb_ary_push(result, rb_str_new2((set_re.cap(2).toLower() + set_re.cap(3) + "=").toLatin1())); \
|
684
|
+
} else { \
|
685
|
+
rb_ary_push(result, rb_str_new2(s->methodNames[methodRef.name])); \
|
686
|
+
} \
|
687
|
+
}
|
688
|
+
|
689
|
+
VALUE
|
690
|
+
findAllMethodNames(VALUE /*self*/, VALUE result, VALUE classid, VALUE flags_value)
|
691
|
+
{
|
692
|
+
QRegExp predicate_re("^(is|has)(.)(.*)");
|
693
|
+
QRegExp set_re("^(set)([A-Z])(.*)");
|
694
|
+
QRegExp op_re("operator(.*)(([-%~/+|&*])|(>>)|(<<)|(&&)|(\\|\\|)|(\\*\\*))=$");
|
695
|
+
|
696
|
+
unsigned short flags = (unsigned short) NUM2UINT(flags_value);
|
697
|
+
if (classid != Qnil) {
|
698
|
+
Smoke::Index c = (Smoke::Index) NUM2INT(rb_funcall(classid, rb_intern("index"), 0));
|
699
|
+
Smoke* s = smokeList[NUM2INT(rb_funcall(classid, rb_intern("smoke"), 0))];
|
700
|
+
if (c > s->numClasses) {
|
701
|
+
return Qnil;
|
702
|
+
}
|
703
|
+
#ifdef DEBUG
|
704
|
+
if (do_debug & qtdb_calls) qWarning("findAllMethodNames called with classid = %d in module %s", c, s->moduleName());
|
705
|
+
#endif
|
706
|
+
Smoke::Index imax = s->numMethodMaps;
|
707
|
+
Smoke::Index imin = 0, icur = -1, methmin, methmax;
|
708
|
+
methmin = -1; methmax = -1; // kill warnings
|
709
|
+
int icmp = -1;
|
710
|
+
|
711
|
+
while (imax >= imin) {
|
712
|
+
icur = (imin + imax) / 2;
|
713
|
+
icmp = s->leg(s->methodMaps[icur].classId, c);
|
714
|
+
if (icmp == 0) {
|
715
|
+
Smoke::Index pos = icur;
|
716
|
+
while(icur && s->methodMaps[icur-1].classId == c)
|
717
|
+
icur --;
|
718
|
+
methmin = icur;
|
719
|
+
icur = pos;
|
720
|
+
while(icur < imax && s->methodMaps[icur+1].classId == c)
|
721
|
+
icur ++;
|
722
|
+
methmax = icur;
|
723
|
+
break;
|
724
|
+
}
|
725
|
+
if (icmp > 0)
|
726
|
+
imax = icur - 1;
|
727
|
+
else
|
728
|
+
imin = icur + 1;
|
729
|
+
}
|
730
|
+
|
731
|
+
if (icmp == 0) {
|
732
|
+
for (Smoke::Index i=methmin ; i <= methmax ; i++) {
|
733
|
+
Smoke::Index ix= s->methodMaps[i].method;
|
734
|
+
if (ix > 0) { // single match
|
735
|
+
const Smoke::Method &methodRef = s->methods[ix];
|
736
|
+
PUSH_QTRUBY_METHOD
|
737
|
+
} else { // multiple match
|
738
|
+
ix = -ix; // turn into ambiguousMethodList index
|
739
|
+
while (s->ambiguousMethodList[ix]) {
|
740
|
+
const Smoke::Method &methodRef = s->methods[s->ambiguousMethodList[ix]];
|
741
|
+
PUSH_QTRUBY_METHOD
|
742
|
+
ix++;
|
743
|
+
}
|
744
|
+
}
|
745
|
+
}
|
746
|
+
}
|
747
|
+
}
|
748
|
+
return result;
|
749
|
+
}
|
750
|
+
|
751
|
+
QByteArray *
|
752
|
+
find_cached_selector(int argc, VALUE * argv, VALUE klass, const char * methodName)
|
753
|
+
{
|
754
|
+
// Look in the cache
|
755
|
+
static QByteArray * mcid = 0;
|
756
|
+
if (mcid == 0) {
|
757
|
+
mcid = new QByteArray();
|
758
|
+
}
|
759
|
+
|
760
|
+
*mcid = rb_class2name(klass);
|
761
|
+
*mcid += ';';
|
762
|
+
*mcid += methodName;
|
763
|
+
for(int i=4; i<argc ; i++)
|
764
|
+
{
|
765
|
+
*mcid += ';';
|
766
|
+
*mcid += value_to_type_flag(argv[i]);
|
767
|
+
}
|
768
|
+
Smoke::ModuleIndex *rcid = methcache.value(*mcid);
|
769
|
+
#ifdef DEBUG
|
770
|
+
if (do_debug & qtdb_calls) qWarning("method_missing mcid: %s", (const char *) *mcid);
|
771
|
+
#endif
|
772
|
+
|
773
|
+
if (rcid) {
|
774
|
+
// Got a hit
|
775
|
+
#ifdef DEBUG
|
776
|
+
if (do_debug & qtdb_calls) qWarning("method_missing cache hit, mcid: %s", (const char *) *mcid);
|
777
|
+
#endif
|
778
|
+
_current_method.smoke = rcid->smoke;
|
779
|
+
_current_method.index = rcid->index;
|
780
|
+
} else {
|
781
|
+
_current_method.smoke = 0;
|
782
|
+
_current_method.index = -1;
|
783
|
+
}
|
784
|
+
|
785
|
+
return mcid;
|
786
|
+
}
|
787
|
+
|
788
|
+
VALUE
|
789
|
+
method_missing(int argc, VALUE * argv, VALUE self)
|
790
|
+
{
|
791
|
+
const char * methodName = rb_id2name(SYM2ID(argv[0]));
|
792
|
+
VALUE klass = rb_funcall(self, rb_intern("class"), 0);
|
793
|
+
|
794
|
+
VALUE retval = Qnil;
|
795
|
+
|
796
|
+
// Look for 'thing?' methods, and try to match isThing() or hasThing() in the Smoke runtime
|
797
|
+
static QByteArray * pred = 0;
|
798
|
+
if (pred == 0) {
|
799
|
+
pred = new QByteArray();
|
800
|
+
}
|
801
|
+
|
802
|
+
*pred = methodName;
|
803
|
+
if (pred->endsWith("?")) {
|
804
|
+
smokeruby_object *o = value_obj_info(self);
|
805
|
+
if(!o || !o->ptr) {
|
806
|
+
return rb_call_super(argc, argv);
|
807
|
+
}
|
808
|
+
|
809
|
+
// Drop the trailing '?'
|
810
|
+
pred->replace(pred->length() - 1, 1, "");
|
811
|
+
|
812
|
+
pred->replace(0, 1, pred->mid(0, 1).toUpper());
|
813
|
+
pred->replace(0, 0, "is");
|
814
|
+
Smoke::ModuleIndex meth = o->smoke->findMethod(o->smoke->classes[o->classId].className, (const char *) *pred);
|
815
|
+
|
816
|
+
if (meth.index == 0) {
|
817
|
+
pred->replace(0, 2, "has");
|
818
|
+
meth = o->smoke->findMethod(o->smoke->classes[o->classId].className, *pred);
|
819
|
+
}
|
820
|
+
|
821
|
+
if (meth.index > 0) {
|
822
|
+
methodName = (char *) (const char *) *pred;
|
823
|
+
}
|
824
|
+
}
|
825
|
+
|
826
|
+
VALUE * temp_stack = ALLOCA_N(VALUE, argc+3);
|
827
|
+
temp_stack[0] = rb_str_new2("Qt");
|
828
|
+
temp_stack[1] = rb_str_new2(methodName);
|
829
|
+
temp_stack[2] = klass;
|
830
|
+
temp_stack[3] = self;
|
831
|
+
for (int count = 1; count < argc; count++) {
|
832
|
+
temp_stack[count+3] = argv[count];
|
833
|
+
}
|
834
|
+
|
835
|
+
{
|
836
|
+
QByteArray * mcid = find_cached_selector(argc+3, temp_stack, klass, methodName);
|
837
|
+
|
838
|
+
if (_current_method.index == -1) {
|
839
|
+
// Find the C++ method to call. Do that from Ruby for now
|
840
|
+
|
841
|
+
retval = rb_funcall2(qt_internal_module, rb_intern("do_method_missing"), argc+3, temp_stack);
|
842
|
+
if (_current_method.index == -1) {
|
843
|
+
const char * op = rb_id2name(SYM2ID(argv[0]));
|
844
|
+
if ( qstrcmp(op, "-") == 0
|
845
|
+
|| qstrcmp(op, "+") == 0
|
846
|
+
|| qstrcmp(op, "/") == 0
|
847
|
+
|| qstrcmp(op, "%") == 0
|
848
|
+
|| qstrcmp(op, "|") == 0 )
|
849
|
+
{
|
850
|
+
// Look for operator methods of the form 'operator+=', 'operator-=' and so on..
|
851
|
+
char op1[3];
|
852
|
+
op1[0] = op[0];
|
853
|
+
op1[1] = '=';
|
854
|
+
op1[2] = '\0';
|
855
|
+
temp_stack[1] = rb_str_new2(op1);
|
856
|
+
retval = rb_funcall2(qt_internal_module, rb_intern("do_method_missing"), argc+3, temp_stack);
|
857
|
+
}
|
858
|
+
|
859
|
+
if (_current_method.index == -1) {
|
860
|
+
// Check for property getter/setter calls, and for slots in QObject classes
|
861
|
+
// not in the smoke library
|
862
|
+
smokeruby_object *o = value_obj_info(self);
|
863
|
+
if ( o != 0
|
864
|
+
&& o->ptr != 0
|
865
|
+
&& Smoke::isDerivedFrom(Smoke::ModuleIndex(o->smoke, o->classId), Smoke::findClass("QObject")) )
|
866
|
+
{
|
867
|
+
QObject * qobject = (QObject *) o->smoke->cast(o->ptr, o->classId, o->smoke->idClass("QObject").index);
|
868
|
+
static QByteArray * name = 0;
|
869
|
+
if (name == 0) {
|
870
|
+
name = new QByteArray();
|
871
|
+
}
|
872
|
+
|
873
|
+
*name = rb_id2name(SYM2ID(argv[0]));
|
874
|
+
const QMetaObject * meta = qobject->metaObject();
|
875
|
+
|
876
|
+
if (argc == 1) {
|
877
|
+
if (name->endsWith("?")) {
|
878
|
+
name->replace(0, 1, pred->mid(0, 1).toUpper());
|
879
|
+
name->replace(0, 0, "is");
|
880
|
+
if (meta->indexOfProperty(*name) == -1) {
|
881
|
+
name->replace(0, 2, "has");
|
882
|
+
}
|
883
|
+
}
|
884
|
+
|
885
|
+
if (meta->indexOfProperty(*name) != -1) {
|
886
|
+
VALUE qvariant = rb_funcall(self, rb_intern("property"), 1, rb_str_new2(*name));
|
887
|
+
return rb_funcall(qvariant, rb_intern("value"), 0);
|
888
|
+
}
|
889
|
+
}
|
890
|
+
|
891
|
+
if (argc == 2 && name->endsWith("=")) {
|
892
|
+
name->replace("=", "");
|
893
|
+
if (meta->indexOfProperty(*name) != -1) {
|
894
|
+
VALUE qvariant = rb_funcall(self, rb_intern("qVariantFromValue"), 1, argv[1]);
|
895
|
+
return rb_funcall(self, rb_intern("setProperty"), 2, rb_str_new2(*name), qvariant);
|
896
|
+
}
|
897
|
+
}
|
898
|
+
|
899
|
+
int classId = o->smoke->idClass(meta->className()).index;
|
900
|
+
|
901
|
+
// The class isn't in the Smoke lib. But if it is called 'local::Merged'
|
902
|
+
// it is from a QDBusInterface and the slots are remote, so don't try to
|
903
|
+
// those.
|
904
|
+
while ( classId == 0
|
905
|
+
&& qstrcmp(meta->className(), "local::Merged") != 0
|
906
|
+
&& qstrcmp(meta->superClass()->className(), "QDBusAbstractInterface") != 0 )
|
907
|
+
{
|
908
|
+
// Assume the QObject has slots which aren't in the Smoke library, so try
|
909
|
+
// and call the slot directly
|
910
|
+
for (int id = meta->methodOffset(); id < meta->methodCount(); id++) {
|
911
|
+
if (meta->method(id).methodType() == QMetaMethod::Slot) {
|
912
|
+
QByteArray signature(meta->method(id).signature());
|
913
|
+
QByteArray methodName = signature.mid(0, signature.indexOf('('));
|
914
|
+
|
915
|
+
// Don't check that the types of the ruby args match the c++ ones for now,
|
916
|
+
// only that the name and arg count is the same.
|
917
|
+
if (*name == methodName && meta->method(id).parameterTypes().count() == (argc - 1)) {
|
918
|
+
QList<MocArgument*> args = get_moc_arguments( o->smoke, meta->method(id).typeName(),
|
919
|
+
meta->method(id).parameterTypes() );
|
920
|
+
VALUE result = Qnil;
|
921
|
+
QtRuby::InvokeNativeSlot slot(qobject, id, argc - 1, args, argv + 1, &result);
|
922
|
+
slot.next();
|
923
|
+
return result;
|
924
|
+
}
|
925
|
+
}
|
926
|
+
}
|
927
|
+
meta = meta->superClass();
|
928
|
+
classId = o->smoke->idClass(meta->className()).index;
|
929
|
+
}
|
930
|
+
}
|
931
|
+
|
932
|
+
return rb_call_super(argc, argv);
|
933
|
+
}
|
934
|
+
}
|
935
|
+
// Success. Cache result.
|
936
|
+
methcache.insert(*mcid, new Smoke::ModuleIndex(_current_method));
|
937
|
+
}
|
938
|
+
}
|
939
|
+
QtRuby::MethodCall c(_current_method.smoke, _current_method.index, self, temp_stack+4, argc-1);
|
940
|
+
c.next();
|
941
|
+
VALUE result = *(c.var());
|
942
|
+
return result;
|
943
|
+
}
|
944
|
+
|
945
|
+
VALUE
|
946
|
+
class_method_missing(int argc, VALUE * argv, VALUE klass)
|
947
|
+
{
|
948
|
+
VALUE result = Qnil;
|
949
|
+
VALUE retval = Qnil;
|
950
|
+
const char * methodName = rb_id2name(SYM2ID(argv[0]));
|
951
|
+
VALUE * temp_stack = ALLOCA_N(VALUE, argc+3);
|
952
|
+
temp_stack[0] = rb_str_new2("Qt");
|
953
|
+
temp_stack[1] = rb_str_new2(methodName);
|
954
|
+
temp_stack[2] = klass;
|
955
|
+
temp_stack[3] = Qnil;
|
956
|
+
for (int count = 1; count < argc; count++) {
|
957
|
+
temp_stack[count+3] = argv[count];
|
958
|
+
}
|
959
|
+
|
960
|
+
{
|
961
|
+
QByteArray * mcid = find_cached_selector(argc+3, temp_stack, klass, methodName);
|
962
|
+
|
963
|
+
if (_current_method.index == -1) {
|
964
|
+
retval = rb_funcall2(qt_internal_module, rb_intern("do_method_missing"), argc+3, temp_stack);
|
965
|
+
if (_current_method.index != -1) {
|
966
|
+
// Success. Cache result.
|
967
|
+
methcache.insert(*mcid, new Smoke::ModuleIndex(_current_method));
|
968
|
+
}
|
969
|
+
}
|
970
|
+
}
|
971
|
+
|
972
|
+
if (_current_method.index == -1) {
|
973
|
+
static QRegExp * rx = 0;
|
974
|
+
if (rx == 0) {
|
975
|
+
rx = new QRegExp("[a-zA-Z]+");
|
976
|
+
}
|
977
|
+
|
978
|
+
if (rx->indexIn(methodName) == -1) {
|
979
|
+
// If an operator method hasn't been found as an instance method,
|
980
|
+
// then look for a class method - after 'op(self,a)' try 'self.op(a)'
|
981
|
+
VALUE * method_stack = ALLOCA_N(VALUE, argc - 1);
|
982
|
+
method_stack[0] = argv[0];
|
983
|
+
for (int count = 1; count < argc - 1; count++) {
|
984
|
+
method_stack[count] = argv[count+1];
|
985
|
+
}
|
986
|
+
result = method_missing(argc-1, method_stack, argv[1]);
|
987
|
+
return result;
|
988
|
+
} else {
|
989
|
+
return rb_call_super(argc, argv);
|
990
|
+
}
|
991
|
+
}
|
992
|
+
QtRuby::MethodCall c(_current_method.smoke, _current_method.index, Qnil, temp_stack+4, argc-1);
|
993
|
+
c.next();
|
994
|
+
result = *(c.var());
|
995
|
+
return result;
|
996
|
+
}
|
997
|
+
|
998
|
+
QList<MocArgument*>
|
999
|
+
get_moc_arguments(Smoke* smoke, const char * typeName, QList<QByteArray> methodTypes)
|
1000
|
+
{
|
1001
|
+
static QRegExp * rx = 0;
|
1002
|
+
if (rx == 0) {
|
1003
|
+
rx = new QRegExp("^(bool|int|uint|long|ulong|double|char\\*|QString)&?$");
|
1004
|
+
}
|
1005
|
+
methodTypes.prepend(QByteArray(typeName));
|
1006
|
+
QList<MocArgument*> result;
|
1007
|
+
|
1008
|
+
foreach (QByteArray name, methodTypes) {
|
1009
|
+
MocArgument *arg = new MocArgument;
|
1010
|
+
Smoke::Index typeId = 0;
|
1011
|
+
|
1012
|
+
if (name.isEmpty()) {
|
1013
|
+
arg->argType = xmoc_void;
|
1014
|
+
result.append(arg);
|
1015
|
+
} else {
|
1016
|
+
name.replace("const ", "");
|
1017
|
+
QString staticType = (rx->indexIn(name) != -1 ? rx->cap(1) : "ptr");
|
1018
|
+
if (staticType == "ptr") {
|
1019
|
+
arg->argType = xmoc_ptr;
|
1020
|
+
QByteArray targetType = name;
|
1021
|
+
typeId = smoke->idType(targetType.constData());
|
1022
|
+
if (typeId == 0 && !name.contains('*')) {
|
1023
|
+
if (!name.contains("&")) {
|
1024
|
+
targetType += "&";
|
1025
|
+
}
|
1026
|
+
typeId = smoke->idType(targetType.constData());
|
1027
|
+
}
|
1028
|
+
|
1029
|
+
// This shouldn't be necessary because the type of the slot arg should always be in the
|
1030
|
+
// smoke module of the slot being invoked. However, that isn't true for a dataUpdated()
|
1031
|
+
// slot in a PlasmaScripting::Applet
|
1032
|
+
if (typeId == 0) {
|
1033
|
+
QHash<Smoke*, QtRubyModule>::const_iterator it;
|
1034
|
+
for (it = qtruby_modules.constBegin(); it != qtruby_modules.constEnd(); ++it) {
|
1035
|
+
smoke = it.key();
|
1036
|
+
targetType = name;
|
1037
|
+
typeId = smoke->idType(targetType.constData());
|
1038
|
+
if (typeId != 0) {
|
1039
|
+
break;
|
1040
|
+
}
|
1041
|
+
|
1042
|
+
if (typeId == 0 && !name.contains('*')) {
|
1043
|
+
if (!name.contains("&")) {
|
1044
|
+
targetType += "&";
|
1045
|
+
}
|
1046
|
+
|
1047
|
+
typeId = smoke->idType(targetType.constData());
|
1048
|
+
|
1049
|
+
if (typeId != 0) {
|
1050
|
+
break;
|
1051
|
+
}
|
1052
|
+
}
|
1053
|
+
}
|
1054
|
+
}
|
1055
|
+
} else if (staticType == "bool") {
|
1056
|
+
arg->argType = xmoc_bool;
|
1057
|
+
smoke = qtcore_Smoke;
|
1058
|
+
typeId = smoke->idType(name.constData());
|
1059
|
+
} else if (staticType == "int") {
|
1060
|
+
arg->argType = xmoc_int;
|
1061
|
+
smoke = qtcore_Smoke;
|
1062
|
+
typeId = smoke->idType(name.constData());
|
1063
|
+
} else if (staticType == "uint") {
|
1064
|
+
arg->argType = xmoc_uint;
|
1065
|
+
smoke = qtcore_Smoke;
|
1066
|
+
typeId = smoke->idType("unsigned int");
|
1067
|
+
} else if (staticType == "long") {
|
1068
|
+
arg->argType = xmoc_long;
|
1069
|
+
smoke = qtcore_Smoke;
|
1070
|
+
typeId = smoke->idType(name.constData());
|
1071
|
+
} else if (staticType == "ulong") {
|
1072
|
+
arg->argType = xmoc_ulong;
|
1073
|
+
smoke = qtcore_Smoke;
|
1074
|
+
typeId = smoke->idType("unsigned long");
|
1075
|
+
} else if (staticType == "double") {
|
1076
|
+
arg->argType = xmoc_double;
|
1077
|
+
smoke = qtcore_Smoke;
|
1078
|
+
typeId = smoke->idType(name.constData());
|
1079
|
+
} else if (staticType == "char*") {
|
1080
|
+
arg->argType = xmoc_charstar;
|
1081
|
+
smoke = qtcore_Smoke;
|
1082
|
+
typeId = smoke->idType(name.constData());
|
1083
|
+
} else if (staticType == "QString") {
|
1084
|
+
arg->argType = xmoc_QString;
|
1085
|
+
name += "*";
|
1086
|
+
smoke = qtcore_Smoke;
|
1087
|
+
typeId = smoke->idType(name.constData());
|
1088
|
+
}
|
1089
|
+
|
1090
|
+
if (typeId == 0) {
|
1091
|
+
rb_raise(rb_eArgError, "Cannot handle '%s' as slot argument\n", name.constData());
|
1092
|
+
return result;
|
1093
|
+
}
|
1094
|
+
|
1095
|
+
arg->st.set(smoke, typeId);
|
1096
|
+
result.append(arg);
|
1097
|
+
}
|
1098
|
+
}
|
1099
|
+
|
1100
|
+
return result;
|
1101
|
+
}
|
1102
|
+
|
1103
|
+
extern "C"
|
1104
|
+
{
|
1105
|
+
// ---------------- Helpers -------------------
|
1106
|
+
|
1107
|
+
//---------- All functions except fully qualified statics & enums ---------
|
1108
|
+
|
1109
|
+
VALUE
|
1110
|
+
mapObject(VALUE self, VALUE obj)
|
1111
|
+
{
|
1112
|
+
smokeruby_object *o = value_obj_info(obj);
|
1113
|
+
if(!o)
|
1114
|
+
return Qnil;
|
1115
|
+
mapPointer(obj, o, o->classId, 0);
|
1116
|
+
return self;
|
1117
|
+
}
|
1118
|
+
|
1119
|
+
VALUE set_obj_info(const char * className, smokeruby_object * o);
|
1120
|
+
|
1121
|
+
VALUE
|
1122
|
+
qobject_metaobject(VALUE self)
|
1123
|
+
{
|
1124
|
+
smokeruby_object * o = value_obj_info(self);
|
1125
|
+
QObject * qobject = (QObject *) o->smoke->cast(o->ptr, o->classId, o->smoke->idClass("QObject").index);
|
1126
|
+
QMetaObject * meta = (QMetaObject *) qobject->metaObject();
|
1127
|
+
VALUE obj = getPointerObject(meta);
|
1128
|
+
if (obj != Qnil) {
|
1129
|
+
return obj;
|
1130
|
+
}
|
1131
|
+
|
1132
|
+
smokeruby_object * m = alloc_smokeruby_object( false,
|
1133
|
+
o->smoke,
|
1134
|
+
o->smoke->idClass("QMetaObject").index,
|
1135
|
+
meta );
|
1136
|
+
|
1137
|
+
obj = set_obj_info("Qt::MetaObject", m);
|
1138
|
+
return obj;
|
1139
|
+
}
|
1140
|
+
|
1141
|
+
VALUE
|
1142
|
+
set_obj_info(const char * className, smokeruby_object * o)
|
1143
|
+
{
|
1144
|
+
VALUE klass = rb_funcall(qt_internal_module,
|
1145
|
+
rb_intern("find_class"),
|
1146
|
+
1,
|
1147
|
+
rb_str_new2(className) );
|
1148
|
+
if (klass == Qnil) {
|
1149
|
+
rb_raise(rb_eRuntimeError, "Class '%s' not found", className);
|
1150
|
+
}
|
1151
|
+
|
1152
|
+
Smoke::ModuleIndex *r = classcache.value(className);
|
1153
|
+
if (r != 0) {
|
1154
|
+
o->classId = (int) r->index;
|
1155
|
+
}
|
1156
|
+
// If the instance is a subclass of QObject, then check to see if the
|
1157
|
+
// className from its QMetaObject is in the Smoke library. If not then
|
1158
|
+
// create a Ruby class for it dynamically. Remove the first letter from
|
1159
|
+
// any class names beginning with 'Q' or 'K' and put them under the Qt::
|
1160
|
+
// or KDE:: modules respectively.
|
1161
|
+
if (o->smoke->isDerivedFrom(o->smoke, o->classId, o->smoke->idClass("QObject").smoke, o->smoke->idClass("QObject").index)) {
|
1162
|
+
QObject * qobject = (QObject *) o->smoke->cast(o->ptr, o->classId, o->smoke->idClass("QObject").index);
|
1163
|
+
const QMetaObject * meta = qobject->metaObject();
|
1164
|
+
int classId = o->smoke->idClass(meta->className()).index;
|
1165
|
+
// The class isn't in the Smoke lib..
|
1166
|
+
if (classId == 0) {
|
1167
|
+
VALUE new_klass = Qnil;
|
1168
|
+
QByteArray className(meta->className());
|
1169
|
+
|
1170
|
+
if (className == "QTableModel") {
|
1171
|
+
new_klass = qtablemodel_class;
|
1172
|
+
} else if (className == "QListModel") {
|
1173
|
+
new_klass = qlistmodel_class;
|
1174
|
+
} else if (className.startsWith("Q")) {
|
1175
|
+
className.replace("Q", "");
|
1176
|
+
className = className.mid(0, 1).toUpper() + className.mid(1);
|
1177
|
+
new_klass = rb_define_class_under(qt_module, className, klass);
|
1178
|
+
} else {
|
1179
|
+
new_klass = rb_define_class(className, klass);
|
1180
|
+
}
|
1181
|
+
|
1182
|
+
if (new_klass != Qnil) {
|
1183
|
+
klass = new_klass;
|
1184
|
+
|
1185
|
+
for (int id = meta->enumeratorOffset(); id < meta->enumeratorCount(); id++) {
|
1186
|
+
// If there are any enum keys with the same scope as the new class then
|
1187
|
+
// add them
|
1188
|
+
if (qstrcmp(meta->className(), meta->enumerator(id).scope()) == 0) {
|
1189
|
+
for (int i = 0; i < meta->enumerator(id).keyCount(); i++) {
|
1190
|
+
rb_define_const( klass,
|
1191
|
+
meta->enumerator(id).key(i),
|
1192
|
+
INT2NUM(meta->enumerator(id).value(i)) );
|
1193
|
+
}
|
1194
|
+
}
|
1195
|
+
}
|
1196
|
+
}
|
1197
|
+
|
1198
|
+
// Add a Qt::Object.metaObject method which will do dynamic despatch on the
|
1199
|
+
// metaObject() virtual method so that the true QMetaObject of the class
|
1200
|
+
// is returned, rather than for the one for the parent class that is in
|
1201
|
+
// the Smoke library.
|
1202
|
+
rb_define_method(klass, "metaObject", (VALUE (*) (...)) qobject_metaobject, 0);
|
1203
|
+
}
|
1204
|
+
}
|
1205
|
+
|
1206
|
+
VALUE obj = Data_Wrap_Struct(klass, smokeruby_mark, smokeruby_free, (void *) o);
|
1207
|
+
return obj;
|
1208
|
+
}
|
1209
|
+
|
1210
|
+
VALUE
|
1211
|
+
kross2smoke(VALUE /*self*/, VALUE krobject, VALUE new_klass)
|
1212
|
+
{
|
1213
|
+
VALUE new_klassname = rb_funcall(new_klass, rb_intern("name"), 0);
|
1214
|
+
|
1215
|
+
Smoke::ModuleIndex * cast_to_id = classcache.value(StringValuePtr(new_klassname));
|
1216
|
+
if (cast_to_id == 0) {
|
1217
|
+
rb_raise(rb_eArgError, "unable to find class \"%s\" to cast to\n", StringValuePtr(new_klassname));
|
1218
|
+
}
|
1219
|
+
|
1220
|
+
void* o;
|
1221
|
+
Data_Get_Struct(krobject, void, o);
|
1222
|
+
|
1223
|
+
smokeruby_object * o_cast = alloc_smokeruby_object(false, cast_to_id->smoke, (int) cast_to_id->index, o);
|
1224
|
+
|
1225
|
+
VALUE obj = Data_Wrap_Struct(new_klass, smokeruby_mark, smokeruby_free, (void *) o_cast);
|
1226
|
+
mapPointer(obj, o_cast, o_cast->classId, 0);
|
1227
|
+
return obj;
|
1228
|
+
}
|
1229
|
+
|
1230
|
+
const char *
|
1231
|
+
value_to_type_flag(VALUE ruby_value)
|
1232
|
+
{
|
1233
|
+
const char * classname = rb_obj_classname(ruby_value);
|
1234
|
+
const char *r = "";
|
1235
|
+
if (ruby_value == Qnil)
|
1236
|
+
r = "u";
|
1237
|
+
else if (TYPE(ruby_value) == T_FIXNUM || TYPE(ruby_value) == T_BIGNUM || qstrcmp(classname, "Qt::Integer") == 0)
|
1238
|
+
r = "i";
|
1239
|
+
else if (TYPE(ruby_value) == T_FLOAT)
|
1240
|
+
r = "n";
|
1241
|
+
else if (TYPE(ruby_value) == T_STRING)
|
1242
|
+
r = "s";
|
1243
|
+
else if(ruby_value == Qtrue || ruby_value == Qfalse || qstrcmp(classname, "Qt::Boolean") == 0)
|
1244
|
+
r = "B";
|
1245
|
+
else if (qstrcmp(classname, "Qt::Enum") == 0) {
|
1246
|
+
VALUE temp = rb_funcall(qt_internal_module, rb_intern("get_qenum_type"), 1, ruby_value);
|
1247
|
+
r = StringValuePtr(temp);
|
1248
|
+
} else if (TYPE(ruby_value) == T_DATA) {
|
1249
|
+
smokeruby_object *o = value_obj_info(ruby_value);
|
1250
|
+
if (o == 0 || o->smoke == 0) {
|
1251
|
+
r = "a";
|
1252
|
+
} else {
|
1253
|
+
r = o->smoke->classes[o->classId].className;
|
1254
|
+
}
|
1255
|
+
} else {
|
1256
|
+
r = "U";
|
1257
|
+
}
|
1258
|
+
|
1259
|
+
return r;
|
1260
|
+
}
|
1261
|
+
|
1262
|
+
VALUE prettyPrintMethod(Smoke::Index id)
|
1263
|
+
{
|
1264
|
+
VALUE r = rb_str_new2("");
|
1265
|
+
const Smoke::Method &meth = qtcore_Smoke->methods[id];
|
1266
|
+
const char *tname = qtcore_Smoke->types[meth.ret].name;
|
1267
|
+
if(meth.flags & Smoke::mf_static) rb_str_catf(r, "static ");
|
1268
|
+
rb_str_catf(r, "%s ", (tname ? tname:"void"));
|
1269
|
+
rb_str_catf(r, "%s::%s(", qtcore_Smoke->classes[meth.classId].className, qtcore_Smoke->methodNames[meth.name]);
|
1270
|
+
for(int i = 0; i < meth.numArgs; i++) {
|
1271
|
+
if(i) rb_str_catf(r, ", ");
|
1272
|
+
tname = qtcore_Smoke->types[qtcore_Smoke->argumentList[meth.args+i]].name;
|
1273
|
+
rb_str_catf(r, "%s", (tname ? tname:"void"));
|
1274
|
+
}
|
1275
|
+
rb_str_catf(r, ")");
|
1276
|
+
if(meth.flags & Smoke::mf_const) rb_str_catf(r, " const");
|
1277
|
+
return r;
|
1278
|
+
}
|
1279
|
+
}
|