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,126 @@
|
|
1
|
+
/*
|
2
|
+
Copyright 2008 David Nolden <david.nolden.kdevelop@art-master.de>
|
3
|
+
|
4
|
+
Permission to use, copy, modify, distribute, and sell this software and its
|
5
|
+
documentation for any purpose is hereby granted without fee, provided that
|
6
|
+
the above copyright notice appear in all copies and that both that
|
7
|
+
copyright notice and this permission notice appear in supporting
|
8
|
+
documentation.
|
9
|
+
|
10
|
+
The above copyright notice and this permission notice shall be included in
|
11
|
+
all copies or substantial portions of the Software.
|
12
|
+
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
KDEVELOP TEAM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
17
|
+
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
18
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
19
|
+
*/
|
20
|
+
|
21
|
+
#include "chartools.h"
|
22
|
+
#include "../kdevvarlengtharray.h"
|
23
|
+
#include "../indexedstring.h"
|
24
|
+
|
25
|
+
#include <QString>
|
26
|
+
#include <QVector>
|
27
|
+
|
28
|
+
QByteArray stringFromContents(const PreprocessedContents& contents, int offset, int count) {
|
29
|
+
QByteArray ret;
|
30
|
+
for(int a = offset; a < (count ? offset+count : contents.size()); ++a) {
|
31
|
+
if(isCharacter(contents[a]))
|
32
|
+
ret.append(characterFromIndex(contents[a]));
|
33
|
+
else
|
34
|
+
ret += IndexedString::fromIndex(contents[a]).byteArray();
|
35
|
+
}
|
36
|
+
return ret;
|
37
|
+
}
|
38
|
+
|
39
|
+
QByteArray stringFromContents(const uint* contents, int count) {
|
40
|
+
QByteArray ret;
|
41
|
+
for(int a = 0; a < count; ++a) {
|
42
|
+
if(isCharacter(contents[a]))
|
43
|
+
ret.append(characterFromIndex(contents[a]));
|
44
|
+
else
|
45
|
+
ret += IndexedString::fromIndex(contents[a]).byteArray();
|
46
|
+
}
|
47
|
+
return ret;
|
48
|
+
}
|
49
|
+
|
50
|
+
QByteArray stringFromContentsWithGaps(const PreprocessedContents& contents, int offset, int count) {
|
51
|
+
QByteArray ret;
|
52
|
+
for(int a = offset; a < (count ? offset+count : contents.size()); ++a) {
|
53
|
+
if(isCharacter(contents[a]))
|
54
|
+
ret.append(characterFromIndex(contents[a]));
|
55
|
+
else
|
56
|
+
ret += IndexedString::fromIndex(contents[a]).byteArray();
|
57
|
+
ret.append(" ");
|
58
|
+
}
|
59
|
+
return ret;
|
60
|
+
}
|
61
|
+
|
62
|
+
PreprocessedContents convertFromByteArray(const QByteArray& array) {
|
63
|
+
PreprocessedContents to;
|
64
|
+
to.resize(array.size());
|
65
|
+
const char* data = array.constData();
|
66
|
+
const char* dataEnd = data + array.size();
|
67
|
+
unsigned int* target = to.data();
|
68
|
+
|
69
|
+
|
70
|
+
while(data < dataEnd) {
|
71
|
+
*target = indexFromCharacter(*data);
|
72
|
+
++data;
|
73
|
+
++target;
|
74
|
+
}
|
75
|
+
return to;
|
76
|
+
}
|
77
|
+
|
78
|
+
PreprocessedContents tokenizeFromByteArray(const QByteArray& array) {
|
79
|
+
PreprocessedContents to;
|
80
|
+
|
81
|
+
const char* data = array.constData();
|
82
|
+
const char* dataEnd = data + array.size();
|
83
|
+
//unsigned int* target = to.data();
|
84
|
+
|
85
|
+
KDevVarLengthArray<char, 100> identifier;
|
86
|
+
|
87
|
+
IndexedString::RunningHash hash;
|
88
|
+
|
89
|
+
bool tokenizing = false;
|
90
|
+
|
91
|
+
while(data < dataEnd) {
|
92
|
+
|
93
|
+
if(!tokenizing) {
|
94
|
+
if(isLetter(*data) || *data == '_')
|
95
|
+
tokenizing = true;
|
96
|
+
}
|
97
|
+
|
98
|
+
if(tokenizing) {
|
99
|
+
if(isLetterOrNumber(*data) || *data == '_') {
|
100
|
+
hash.append(*data);
|
101
|
+
identifier.append(*data);
|
102
|
+
}else{
|
103
|
+
//End of token
|
104
|
+
to.append( IndexedString(identifier.constData(), identifier.size(), hash.hash).index() );
|
105
|
+
//kDebug() << "word" << "\"" + IndexedString(to.back()).str() + "\"";
|
106
|
+
hash.clear();
|
107
|
+
identifier.clear();
|
108
|
+
tokenizing = false;
|
109
|
+
}
|
110
|
+
}
|
111
|
+
|
112
|
+
if(!tokenizing)
|
113
|
+
to.append( indexFromCharacter(*data) );
|
114
|
+
++data;
|
115
|
+
}
|
116
|
+
|
117
|
+
if(tokenizing)
|
118
|
+
to.append( IndexedString(identifier.constData(), identifier.size(), hash.hash).index() );
|
119
|
+
|
120
|
+
|
121
|
+
/* kDebug() << QString::fromUtf8(stringFromContents(to));
|
122
|
+
kDebug() << QString::fromUtf8(array);
|
123
|
+
Q_ASSERT(stringFromContents(to) == array);*/
|
124
|
+
|
125
|
+
return to;
|
126
|
+
}
|
@@ -0,0 +1,90 @@
|
|
1
|
+
/*
|
2
|
+
Copyright 2008 David Nolden <david.nolden.kdevelop@art-master.de>
|
3
|
+
|
4
|
+
Permission to use, copy, modify, distribute, and sell this software and its
|
5
|
+
documentation for any purpose is hereby granted without fee, provided that
|
6
|
+
the above copyright notice appear in all copies and that both that
|
7
|
+
copyright notice and this permission notice appear in supporting
|
8
|
+
documentation.
|
9
|
+
|
10
|
+
The above copyright notice and this permission notice shall be included in
|
11
|
+
all copies or substantial portions of the Software.
|
12
|
+
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
KDEVELOP TEAM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
17
|
+
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
18
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
19
|
+
*/
|
20
|
+
|
21
|
+
#ifndef CHARTOOLS
|
22
|
+
#define CHARTOOLS
|
23
|
+
#include <QChar>
|
24
|
+
|
25
|
+
#include "../cppparser_export.h"
|
26
|
+
|
27
|
+
template<class T>
|
28
|
+
class QVector;
|
29
|
+
class QString;
|
30
|
+
class QByteArray;
|
31
|
+
typedef QVector<unsigned int> PreprocessedContents;
|
32
|
+
|
33
|
+
inline bool isSpace(char c) {
|
34
|
+
return QChar(c).isSpace();
|
35
|
+
}
|
36
|
+
|
37
|
+
inline bool isLetter(char c) {
|
38
|
+
return QChar(c).isLetter();
|
39
|
+
}
|
40
|
+
|
41
|
+
inline bool isLetterOrNumber(char c) {
|
42
|
+
return QChar(c).isLetterOrNumber();
|
43
|
+
}
|
44
|
+
|
45
|
+
inline bool isNumber(char c) {
|
46
|
+
return QChar(c).isNumber();
|
47
|
+
}
|
48
|
+
|
49
|
+
//Takes an index as delt with during preprocessing, and determines whether it is a fake-index that represents
|
50
|
+
//a character. If the 0xffff0000 bits are set, it is a custom character.
|
51
|
+
#define isCharacter(index) ((index & 0xffff0000) == 0xffff0000)
|
52
|
+
|
53
|
+
//Creates an index that represents the given character
|
54
|
+
#define indexFromCharacter(character) ((unsigned int)character | 0xffff0000)
|
55
|
+
|
56
|
+
//Extracts the character that is represented by the index
|
57
|
+
#define characterFromIndex(index) ((char)(index & 0xffff))
|
58
|
+
|
59
|
+
inline bool isSpace(unsigned int c) {
|
60
|
+
return isCharacter(c) && QChar(characterFromIndex(c)).isSpace();
|
61
|
+
}
|
62
|
+
|
63
|
+
inline bool isLetter(unsigned int c) {
|
64
|
+
return isCharacter(c) && QChar(characterFromIndex(c)).isLetter();
|
65
|
+
}
|
66
|
+
|
67
|
+
inline bool isLetterOrNumber(unsigned int c) {
|
68
|
+
return isCharacter(c) && QChar(characterFromIndex(c)).isLetterOrNumber();
|
69
|
+
}
|
70
|
+
|
71
|
+
inline bool isNumber(unsigned int c) {
|
72
|
+
return isCharacter(c) && QChar(characterFromIndex(c)).isNumber();
|
73
|
+
}
|
74
|
+
|
75
|
+
///Opposite of convertFromByteArray
|
76
|
+
CPPPARSER_EXPORT QByteArray stringFromContents(const PreprocessedContents& contents, int offset = 0, int count = 0);
|
77
|
+
|
78
|
+
///Opposite of convertFromByteArray
|
79
|
+
CPPPARSER_EXPORT QByteArray stringFromContents(const uint* contents, int count);
|
80
|
+
|
81
|
+
///Returns a string that has a gap inserted between the tokens(for debugging)
|
82
|
+
CPPPARSER_EXPORT QByteArray stringFromContentsWithGaps(const PreprocessedContents& contents, int offset = 0, int count = 0);
|
83
|
+
|
84
|
+
///Converts the byte array to a vector of fake-indices containing the text
|
85
|
+
CPPPARSER_EXPORT PreprocessedContents convertFromByteArray(const QByteArray& array);
|
86
|
+
|
87
|
+
///Converts the byte array to a vector of fake-indices containing the text
|
88
|
+
///This also tokenizes the given array when possible
|
89
|
+
CPPPARSER_EXPORT PreprocessedContents tokenizeFromByteArray(const QByteArray& array);
|
90
|
+
#endif
|
@@ -0,0 +1,44 @@
|
|
1
|
+
/*
|
2
|
+
Copyright 2008 David Nolden <david.nolden.kdevelop@art-master.de>
|
3
|
+
|
4
|
+
This library is free software; you can redistribute it and/or
|
5
|
+
modify it under the terms of the GNU Library General Public
|
6
|
+
License version 2 as published by the Free Software Foundation.
|
7
|
+
|
8
|
+
This library is distributed in the hope that it will be useful,
|
9
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
11
|
+
Library General Public License for more details.
|
12
|
+
|
13
|
+
You should have received a copy of the GNU Library General Public License
|
14
|
+
along with this library; see the file COPYING.LIB. If not, write to
|
15
|
+
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
16
|
+
Boston, MA 02110-1301, USA.
|
17
|
+
*/
|
18
|
+
|
19
|
+
#include "macrorepository.h"
|
20
|
+
|
21
|
+
//The text is supposed to be utf8 encoded
|
22
|
+
using namespace rpp;
|
23
|
+
|
24
|
+
size_t MacroRepositoryItemRequest::itemSize() const {
|
25
|
+
return macro.dynamicSize();
|
26
|
+
}
|
27
|
+
|
28
|
+
MacroRepositoryItemRequest::MacroRepositoryItemRequest(const rpp::pp_macro& _macro) : macro(_macro) {
|
29
|
+
_macro.completeHash(); //Make sure the hash is valid
|
30
|
+
}
|
31
|
+
|
32
|
+
void MacroRepositoryItemRequest::destroy(rpp::pp_macro* item, KDevelop::AbstractItemRepository&) {
|
33
|
+
item->~pp_macro();
|
34
|
+
}
|
35
|
+
|
36
|
+
void MacroRepositoryItemRequest::createItem(rpp::pp_macro* item) const {
|
37
|
+
new (item) pp_macro(macro, false);
|
38
|
+
Q_ASSERT(*item == macro);
|
39
|
+
}
|
40
|
+
|
41
|
+
//Should return whether the here requested item equals the given item
|
42
|
+
bool MacroRepositoryItemRequest::equals(const rpp::pp_macro* item) const {
|
43
|
+
return macro == *item;
|
44
|
+
}
|
@@ -0,0 +1,59 @@
|
|
1
|
+
/*
|
2
|
+
Copyright 2008 David Nolden <david.nolden.kdevelop@art-master.de>
|
3
|
+
|
4
|
+
This library is free software; you can redistribute it and/or
|
5
|
+
modify it under the terms of the GNU Library General Public
|
6
|
+
License version 2 as published by the Free Software Foundation.
|
7
|
+
|
8
|
+
This library is distributed in the hope that it will be useful,
|
9
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
11
|
+
Library General Public License for more details.
|
12
|
+
|
13
|
+
You should have received a copy of the GNU Library General Public License
|
14
|
+
along with this library; see the file COPYING.LIB. If not, write to
|
15
|
+
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
16
|
+
Boston, MA 02110-1301, USA.
|
17
|
+
*/
|
18
|
+
|
19
|
+
#ifndef MACROREPOSITORY_H
|
20
|
+
#define MACROREPOSITORY_H
|
21
|
+
|
22
|
+
#include <language/duchain/repositories/itemrepository.h>
|
23
|
+
#include <cppparserexport.h>
|
24
|
+
#include "pp-macro.h"
|
25
|
+
|
26
|
+
struct Q_DECL_EXPORT MacroRepositoryItemRequest {
|
27
|
+
|
28
|
+
//The text is supposed to be utf8 encoded
|
29
|
+
MacroRepositoryItemRequest(const rpp::pp_macro& _macro);
|
30
|
+
|
31
|
+
enum {
|
32
|
+
AverageSize = 20 //This should be the approximate average size of an Item
|
33
|
+
};
|
34
|
+
|
35
|
+
typedef unsigned int HashType;
|
36
|
+
|
37
|
+
HashType hash() const {
|
38
|
+
return macro.completeHash();
|
39
|
+
}
|
40
|
+
|
41
|
+
size_t itemSize() const;
|
42
|
+
|
43
|
+
void createItem(rpp::pp_macro* item) const;
|
44
|
+
|
45
|
+
static void destroy(rpp::pp_macro* item, KDevelop::AbstractItemRepository&);
|
46
|
+
|
47
|
+
static bool persistent(const rpp::pp_macro* /*item*/) {
|
48
|
+
return true; //Macros are reference-counted through the macro sets
|
49
|
+
}
|
50
|
+
|
51
|
+
//Should return whether the here requested item equals the given item
|
52
|
+
bool equals(const rpp::pp_macro* item) const;
|
53
|
+
|
54
|
+
const rpp::pp_macro& macro;
|
55
|
+
};
|
56
|
+
|
57
|
+
typedef KDevelop::ItemRepository<rpp::pp_macro, MacroRepositoryItemRequest> MacroDataRepository;
|
58
|
+
|
59
|
+
#endif
|
@@ -0,0 +1,86 @@
|
|
1
|
+
#define __DBL_MIN_EXP__ (-1021)
|
2
|
+
#define __FLT_MIN__ 1.17549435e-38F
|
3
|
+
#define __CHAR_BIT__ 8
|
4
|
+
#define __WCHAR_MAX__ 2147483647
|
5
|
+
#define __DBL_DENORM_MIN__ 4.9406564584124654e-324
|
6
|
+
#define __FLT_EVAL_METHOD__ 2
|
7
|
+
#define __DBL_MIN_10_EXP__ (-307)
|
8
|
+
#define __FINITE_MATH_ONLY__ 0
|
9
|
+
#define __GNUC_PATCHLEVEL__ 2
|
10
|
+
#define __SHRT_MAX__ 32767
|
11
|
+
#define __LDBL_MAX__ 1.18973149535723176502e+4932L
|
12
|
+
#define __UINTMAX_TYPE__ long long unsigned int
|
13
|
+
#define __linux 1
|
14
|
+
#define __unix 1
|
15
|
+
#define __LDBL_MAX_EXP__ 16384
|
16
|
+
#define __linux__ 1
|
17
|
+
#define __SCHAR_MAX__ 127
|
18
|
+
#define __USER_LABEL_PREFIX__
|
19
|
+
#define __STDC_HOSTED__ 1
|
20
|
+
#define __LDBL_HAS_INFINITY__ 1
|
21
|
+
#define __DBL_DIG__ 15
|
22
|
+
#define __FLT_EPSILON__ 1.19209290e-7F
|
23
|
+
#define __GXX_WEAK__ 1
|
24
|
+
#define __LDBL_MIN__ 3.36210314311209350626e-4932L
|
25
|
+
#define __unix__ 1
|
26
|
+
#define __DECIMAL_DIG__ 21
|
27
|
+
#define __gnu_linux__ 1
|
28
|
+
#define __LDBL_HAS_QUIET_NAN__ 1
|
29
|
+
#define __GNUC__ 4
|
30
|
+
#define __DBL_MAX__ 1.7976931348623157e+308
|
31
|
+
#define __DBL_HAS_INFINITY__ 1
|
32
|
+
#define __cplusplus 1
|
33
|
+
#define __DEPRECATED 1
|
34
|
+
#define __DBL_MAX_EXP__ 1024
|
35
|
+
#define __GNUG__ 4
|
36
|
+
#define __LONG_LONG_MAX__ 9223372036854775807LL
|
37
|
+
#define __GXX_ABI_VERSION 1002
|
38
|
+
#define __FLT_MIN_EXP__ (-125)
|
39
|
+
#define __DBL_MIN__ 2.2250738585072014e-308
|
40
|
+
#define __FLT_MIN_10_EXP__ (-37)
|
41
|
+
#define __DBL_HAS_QUIET_NAN__ 1
|
42
|
+
#define __REGISTER_PREFIX__
|
43
|
+
#define __NO_INLINE__ 1
|
44
|
+
#define __i386 1
|
45
|
+
#define __FLT_MANT_DIG__ 24
|
46
|
+
#define __VERSION__ "4.0.2 20050808 (prerelease) (Ubuntu 4.0.1-4ubuntu9)"
|
47
|
+
#define i386 1
|
48
|
+
#define __i486__ 1
|
49
|
+
#define unix 1
|
50
|
+
#define __i386__ 1
|
51
|
+
#define __SIZE_TYPE__ unsigned int
|
52
|
+
#define __ELF__ 1
|
53
|
+
#define __FLT_RADIX__ 2
|
54
|
+
#define __LDBL_EPSILON__ 1.08420217248550443401e-19L
|
55
|
+
#define __FLT_HAS_QUIET_NAN__ 1
|
56
|
+
#define __FLT_MAX_10_EXP__ 38
|
57
|
+
#define __LONG_MAX__ 2147483647L
|
58
|
+
#define __FLT_HAS_INFINITY__ 1
|
59
|
+
#define linux 1
|
60
|
+
#define __EXCEPTIONS 1
|
61
|
+
#define __LDBL_MANT_DIG__ 64
|
62
|
+
#define __WCHAR_TYPE__ int
|
63
|
+
#define __FLT_DIG__ 6
|
64
|
+
#define __INT_MAX__ 2147483647
|
65
|
+
#define __i486 1
|
66
|
+
#define __FLT_MAX_EXP__ 128
|
67
|
+
#define __DBL_MANT_DIG__ 53
|
68
|
+
#define __WINT_TYPE__ unsigned int
|
69
|
+
#define __LDBL_MIN_EXP__ (-16381)
|
70
|
+
#define __LDBL_MAX_10_EXP__ 4932
|
71
|
+
#define __DBL_EPSILON__ 2.2204460492503131e-16
|
72
|
+
#define __tune_i486__ 1
|
73
|
+
#define __INTMAX_MAX__ 9223372036854775807LL
|
74
|
+
#define __FLT_DENORM_MIN__ 1.40129846e-45F
|
75
|
+
#define __FLT_MAX__ 3.40282347e+38F
|
76
|
+
#define __INTMAX_TYPE__ long long int
|
77
|
+
#define __GNUC_MINOR__ 0
|
78
|
+
#define __DBL_MAX_10_EXP__ 308
|
79
|
+
#define __LDBL_DENORM_MIN__ 3.64519953188247460253e-4951L
|
80
|
+
#define __PTRDIFF_TYPE__ int
|
81
|
+
#define __LDBL_MIN_10_EXP__ (-4931)
|
82
|
+
#define __LDBL_DIG__ 18
|
83
|
+
#define _GNU_SOURCE 1
|
84
|
+
|
85
|
+
|
86
|
+
#define __STDC__
|
@@ -0,0 +1,1216 @@
|
|
1
|
+
/*
|
2
|
+
Copyright 2005 Roberto Raggi <roberto@kdevelop.org>
|
3
|
+
Copyright 2006 Hamish Rodda <rodda@kde.org>
|
4
|
+
|
5
|
+
Permission to use, copy, modify, distribute, and sell this software and its
|
6
|
+
documentation for any purpose is hereby granted without fee, provided that
|
7
|
+
the above copyright notice appear in all copies and that both that
|
8
|
+
copyright notice and this permission notice appear in supporting
|
9
|
+
documentation.
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be included in
|
12
|
+
all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
15
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
16
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
17
|
+
KDEVELOP TEAM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
18
|
+
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
19
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
20
|
+
*/
|
21
|
+
|
22
|
+
#include "pp-engine.h"
|
23
|
+
|
24
|
+
#include <QFile>
|
25
|
+
#include <QTextStream>
|
26
|
+
#include <QtDebug>
|
27
|
+
|
28
|
+
#include "pp-internal.h"
|
29
|
+
#include "preprocessor.h"
|
30
|
+
#include "pp-environment.h"
|
31
|
+
#include "pp-location.h"
|
32
|
+
#include "chartools.h"
|
33
|
+
// #include "macrorepository.h"
|
34
|
+
|
35
|
+
using namespace rpp;
|
36
|
+
|
37
|
+
#define RETURN_ON_FAIL(x) if(!(x)) { ++input; qDebug() << "Preprocessor: Condition not satisfied"; return; }
|
38
|
+
|
39
|
+
pp::pp(Preprocessor* preprocessor)
|
40
|
+
: m_environment(new Environment(this))
|
41
|
+
, expand(this, 0, true)
|
42
|
+
, m_preprocessor(preprocessor)
|
43
|
+
, nextToken(0)
|
44
|
+
, haveNextToken(false)
|
45
|
+
, hideNext(false)
|
46
|
+
, hadGuardCandidate(false)
|
47
|
+
, checkGuardEnd(false)
|
48
|
+
{
|
49
|
+
iflevel = 0;
|
50
|
+
_M_skipping[iflevel] = 0;
|
51
|
+
_M_true_test[iflevel] = 0;
|
52
|
+
}
|
53
|
+
|
54
|
+
pp::~pp()
|
55
|
+
{
|
56
|
+
delete m_environment;
|
57
|
+
}
|
58
|
+
|
59
|
+
Preprocessor* pp::preprocessor() {
|
60
|
+
return m_preprocessor;
|
61
|
+
}
|
62
|
+
|
63
|
+
PreprocessedContents pp::processFile(const QString& fileName)
|
64
|
+
{
|
65
|
+
QFile file(fileName);
|
66
|
+
if (!file.open(QIODevice::ReadOnly))
|
67
|
+
{
|
68
|
+
qWarning() << "file '" << fileName << "' not found!" ;
|
69
|
+
return PreprocessedContents();
|
70
|
+
}
|
71
|
+
|
72
|
+
PreprocessedContents result;
|
73
|
+
processFileInternal(fileName, file.readAll(), result);
|
74
|
+
return result;
|
75
|
+
}
|
76
|
+
|
77
|
+
PreprocessedContents pp::processFile(const QString& fileName, const QByteArray& data)
|
78
|
+
{
|
79
|
+
PreprocessedContents result;
|
80
|
+
processFileInternal(fileName, data, result);
|
81
|
+
return result;
|
82
|
+
}
|
83
|
+
|
84
|
+
void pp::processFileInternal(const QString& fileName, const QByteArray& fileContents, PreprocessedContents& result)
|
85
|
+
{
|
86
|
+
m_files.push(IndexedString(fileName));
|
87
|
+
// Guestimate as to how much expansion will occur
|
88
|
+
result.reserve(int(fileContents.length() * 1.2));
|
89
|
+
PreprocessedContents contents = convertFromByteArray(fileContents);
|
90
|
+
{
|
91
|
+
Stream is(&contents);
|
92
|
+
Stream rs(&result, m_environment->locationTable());
|
93
|
+
operator () (is, rs);
|
94
|
+
}
|
95
|
+
result.squeeze();
|
96
|
+
}
|
97
|
+
|
98
|
+
uint ifDirective = IndexedString("if").index();
|
99
|
+
uint elseDirective = IndexedString("else").index();
|
100
|
+
uint elifDirective = IndexedString("elif").index();
|
101
|
+
uint ifdefDirective = IndexedString("ifdef").index();
|
102
|
+
uint undefDirective = IndexedString("undef").index();
|
103
|
+
uint endifDirective = IndexedString("endif").index();
|
104
|
+
uint ifndefDirective = IndexedString("ifndef").index();
|
105
|
+
uint defineDirective = IndexedString("define").index();
|
106
|
+
uint includeDirective = IndexedString("include").index();
|
107
|
+
uint includeNextDirective = IndexedString("include_next").index();
|
108
|
+
|
109
|
+
void pp::handle_directive(uint directive, Stream& input, Stream& output)
|
110
|
+
{
|
111
|
+
skip_blanks (input, output);
|
112
|
+
if(!(directive == ifndefDirective)) {
|
113
|
+
hadGuardCandidate = true; //Too late, the guard must be the first directive
|
114
|
+
}
|
115
|
+
if(checkGuardEnd) {
|
116
|
+
guardCandidate = IndexedString();
|
117
|
+
checkGuardEnd = false;
|
118
|
+
}
|
119
|
+
|
120
|
+
if(directive == defineDirective)
|
121
|
+
if (! skipping ())
|
122
|
+
return handle_define(input);
|
123
|
+
|
124
|
+
if(directive == includeDirective || directive == includeNextDirective)
|
125
|
+
if (! skipping ())
|
126
|
+
return handle_include (directive == includeNextDirective, input, output);
|
127
|
+
|
128
|
+
if(directive == undefDirective)
|
129
|
+
if (! skipping ())
|
130
|
+
return handle_undef(input);
|
131
|
+
|
132
|
+
if(directive == elifDirective)
|
133
|
+
return handle_elif(input);
|
134
|
+
|
135
|
+
if(directive == elseDirective)
|
136
|
+
return handle_else(input.inputPosition().line);
|
137
|
+
|
138
|
+
if(directive == endifDirective)
|
139
|
+
return handle_endif(input, output);
|
140
|
+
|
141
|
+
if(directive == ifDirective)
|
142
|
+
return handle_if(input);
|
143
|
+
|
144
|
+
if(directive == ifdefDirective)
|
145
|
+
return handle_ifdef(false, input);
|
146
|
+
|
147
|
+
if(directive == ifndefDirective)
|
148
|
+
return handle_ifdef(true, input);
|
149
|
+
}
|
150
|
+
|
151
|
+
void pp::handle_include(bool skip_current_path, Stream& input, Stream& output)
|
152
|
+
{
|
153
|
+
if (isLetter(input.current()) || input == '_') {
|
154
|
+
pp_macro_expander expand_include(this);
|
155
|
+
|
156
|
+
Anchor inputPosition = input.inputPosition();
|
157
|
+
SimpleCursor originalInputPosition = input.originalInputPosition();
|
158
|
+
PreprocessedContents includeString;
|
159
|
+
{
|
160
|
+
Stream cs(&includeString);
|
161
|
+
expand_include(input, cs);
|
162
|
+
}
|
163
|
+
|
164
|
+
skip_blanks(input, devnull());
|
165
|
+
RETURN_ON_FAIL(!includeString.isEmpty() && (includeString.first() == indexFromCharacter('<') || includeString.first() == indexFromCharacter('"')));
|
166
|
+
|
167
|
+
Stream newInput(&includeString, inputPosition);
|
168
|
+
newInput.setOriginalInputPosition(originalInputPosition);
|
169
|
+
handle_include(skip_current_path, newInput, output);
|
170
|
+
return;
|
171
|
+
}
|
172
|
+
|
173
|
+
RETURN_ON_FAIL(input == '<' || input == '"');
|
174
|
+
char quote((input == '"') ? '"' : '>');
|
175
|
+
++input;
|
176
|
+
|
177
|
+
PreprocessedContents includeNameB;
|
178
|
+
|
179
|
+
while (!input.atEnd() && input != quote) {
|
180
|
+
RETURN_ON_FAIL(input != '\n');
|
181
|
+
|
182
|
+
includeNameB.append(input);
|
183
|
+
++input;
|
184
|
+
}
|
185
|
+
|
186
|
+
QString includeName(QString::fromUtf8(stringFromContents(includeNameB)));
|
187
|
+
|
188
|
+
Stream* include = m_preprocessor->sourceNeeded(includeName, quote == '"' ? Preprocessor::IncludeLocal : Preprocessor::IncludeGlobal, input.inputPosition().line, skip_current_path);
|
189
|
+
|
190
|
+
if (include && !include->atEnd()) {
|
191
|
+
// m_files.push(IndexedString(includeName));
|
192
|
+
|
193
|
+
// output.mark(Anchor(0, 0));
|
194
|
+
|
195
|
+
operator()(*include, output);
|
196
|
+
|
197
|
+
// restore the file name and sync the buffer
|
198
|
+
// output.mark(input.inputPosition());
|
199
|
+
}
|
200
|
+
|
201
|
+
delete include;
|
202
|
+
}
|
203
|
+
|
204
|
+
void pp::operator () (Stream& input, Stream& output)
|
205
|
+
{
|
206
|
+
int previousIfLevel = iflevel;
|
207
|
+
|
208
|
+
forever
|
209
|
+
{
|
210
|
+
haveNextToken = false;
|
211
|
+
|
212
|
+
if (skipping()) {
|
213
|
+
skip_blanks(input, devnull());
|
214
|
+
|
215
|
+
} else {
|
216
|
+
skip_blanks(input, output);
|
217
|
+
}
|
218
|
+
|
219
|
+
if (input.atEnd()) {
|
220
|
+
break;
|
221
|
+
|
222
|
+
} else if (input == '#') {
|
223
|
+
skip_blanks(++input, devnull());
|
224
|
+
|
225
|
+
uint directive = skip_identifier(input);
|
226
|
+
|
227
|
+
skip_blanks(input, devnull());
|
228
|
+
|
229
|
+
Anchor inputPosition = input.inputPosition();
|
230
|
+
SimpleCursor originalInputPosition = input.originalInputPosition();
|
231
|
+
|
232
|
+
PreprocessedContents skipped;
|
233
|
+
{
|
234
|
+
Stream ss(&skipped);
|
235
|
+
skip (input, ss);
|
236
|
+
}
|
237
|
+
|
238
|
+
Stream ss(&skipped, inputPosition);
|
239
|
+
ss.setOriginalInputPosition(originalInputPosition);
|
240
|
+
handle_directive(directive, ss, output);
|
241
|
+
|
242
|
+
} else if (input == '\n') {
|
243
|
+
output << input;
|
244
|
+
++input;
|
245
|
+
|
246
|
+
} else if (skipping ()) {
|
247
|
+
skip (input, devnull());
|
248
|
+
|
249
|
+
} else {
|
250
|
+
output.mark(input.inputPosition());
|
251
|
+
if(checkGuardEnd) {
|
252
|
+
expand.startSignificantContentSearch();
|
253
|
+
}
|
254
|
+
|
255
|
+
expand (input, output);
|
256
|
+
if(checkGuardEnd) {
|
257
|
+
if(expand.foundSignificantContent() || !input.atEnd()) {
|
258
|
+
guardCandidate = IndexedString();
|
259
|
+
}
|
260
|
+
checkGuardEnd = false;
|
261
|
+
}
|
262
|
+
}
|
263
|
+
}
|
264
|
+
|
265
|
+
if(!guardCandidate.isEmpty())
|
266
|
+
preprocessor()->foundHeaderGuard(input, guardCandidate);
|
267
|
+
|
268
|
+
if (iflevel != previousIfLevel && !input.skippedToEnd())
|
269
|
+
createProblem(input, "Unterminated #if statement");
|
270
|
+
}
|
271
|
+
|
272
|
+
void pp::createProblem(Stream& input, const QString& description) {
|
273
|
+
Problem* problem = new Problem;
|
274
|
+
problem->file = currentFileNameString();
|
275
|
+
problem->position = input.originalInputPosition();
|
276
|
+
problem->description = description;
|
277
|
+
problemEncountered(problem);
|
278
|
+
}
|
279
|
+
|
280
|
+
void pp::handle_define (Stream& input)
|
281
|
+
{
|
282
|
+
pp_macro* macro = new pp_macro;
|
283
|
+
macro->file = currentFileName();
|
284
|
+
macro->sourceLine = input.originalInputPosition().line;
|
285
|
+
|
286
|
+
skip_blanks (input, devnull());
|
287
|
+
macro->name = IndexedString::fromIndex(skip_identifier(input)); //@todo make macros utf8 too
|
288
|
+
|
289
|
+
if (!input.atEnd() && input == '(')
|
290
|
+
{
|
291
|
+
macro->function_like = true;
|
292
|
+
|
293
|
+
skip_blanks (++input, devnull()); // skip '('
|
294
|
+
uint formal = skip_identifier(input);
|
295
|
+
if (formal)
|
296
|
+
macro->formals.append( IndexedString::fromIndex(formal) );
|
297
|
+
|
298
|
+
skip_blanks(input, devnull());
|
299
|
+
|
300
|
+
if (input == '.') {
|
301
|
+
macro->variadics = true;
|
302
|
+
|
303
|
+
do {
|
304
|
+
++input;
|
305
|
+
|
306
|
+
} while (input == '.');
|
307
|
+
}
|
308
|
+
|
309
|
+
while (!input.atEnd() && input == ',')
|
310
|
+
{
|
311
|
+
skip_blanks(++input, devnull());
|
312
|
+
|
313
|
+
uint formal = skip_identifier(input);
|
314
|
+
if (formal)
|
315
|
+
macro->formals.append( IndexedString::fromIndex(formal) );
|
316
|
+
|
317
|
+
skip_blanks (input, devnull());
|
318
|
+
|
319
|
+
if (input == '.') {
|
320
|
+
macro->variadics = true;
|
321
|
+
|
322
|
+
do {
|
323
|
+
++input;
|
324
|
+
|
325
|
+
} while (input == '.');
|
326
|
+
}
|
327
|
+
}
|
328
|
+
|
329
|
+
RETURN_ON_FAIL(input == ')');
|
330
|
+
++input;
|
331
|
+
}
|
332
|
+
|
333
|
+
skip_blanks (input, devnull());
|
334
|
+
|
335
|
+
while (!input.atEnd() && input != '\n')
|
336
|
+
{
|
337
|
+
if(input == '/' && (input.peekNextCharacter() == '/' || input.peekNextCharacter() == '*')) {
|
338
|
+
skip_comment_or_divop(input, devnull());
|
339
|
+
if(!input.atEnd() && input != '\n')
|
340
|
+
skip_blanks (input, devnull());
|
341
|
+
continue;
|
342
|
+
}
|
343
|
+
if (input == '\\')
|
344
|
+
{
|
345
|
+
int pos = input.offset();
|
346
|
+
skip_blanks (++input, devnull());
|
347
|
+
|
348
|
+
if (!input.atEnd() && input == '\n')
|
349
|
+
{
|
350
|
+
skip_blanks(++input, devnull());
|
351
|
+
macro->definition.append(IndexedString::fromIndex(indexFromCharacter(' ')));
|
352
|
+
continue;
|
353
|
+
|
354
|
+
} else {
|
355
|
+
// Whoops, rewind :)
|
356
|
+
input.seek(pos);
|
357
|
+
}
|
358
|
+
}
|
359
|
+
|
360
|
+
macro->definition.append(IndexedString::fromIndex(input.current()));
|
361
|
+
++input;
|
362
|
+
}
|
363
|
+
|
364
|
+
m_environment->setMacro(macro);
|
365
|
+
}
|
366
|
+
|
367
|
+
|
368
|
+
void pp::skip (Stream& input, Stream& output, bool outputText)
|
369
|
+
{
|
370
|
+
pp_skip_string_literal skip_string_literal;
|
371
|
+
pp_skip_char_literal skip_char_literal;
|
372
|
+
|
373
|
+
while (!input.atEnd() && input != '\n')
|
374
|
+
{
|
375
|
+
if (input == '/')
|
376
|
+
{
|
377
|
+
skip_comment_or_divop (input, output, outputText);
|
378
|
+
}
|
379
|
+
else if (input == '"')
|
380
|
+
{
|
381
|
+
skip_string_literal (input, output);
|
382
|
+
}
|
383
|
+
else if (input == '\'')
|
384
|
+
{
|
385
|
+
skip_char_literal (input, output);
|
386
|
+
}
|
387
|
+
else if (input == '\\')
|
388
|
+
{
|
389
|
+
output << input;
|
390
|
+
skip_blanks (++input, output);
|
391
|
+
|
392
|
+
if (!input.atEnd() && input == '\n')
|
393
|
+
{
|
394
|
+
output << input;
|
395
|
+
++input;
|
396
|
+
}
|
397
|
+
}
|
398
|
+
else
|
399
|
+
{
|
400
|
+
output << input;
|
401
|
+
++input;
|
402
|
+
}
|
403
|
+
}
|
404
|
+
}
|
405
|
+
|
406
|
+
inline bool pp::test_if_level()
|
407
|
+
{
|
408
|
+
bool result = !_M_skipping[iflevel++];
|
409
|
+
_M_skipping[iflevel] = _M_skipping[iflevel - 1];
|
410
|
+
_M_true_test[iflevel] = false;
|
411
|
+
return result;
|
412
|
+
}
|
413
|
+
|
414
|
+
inline int pp::skipping() const
|
415
|
+
{ return _M_skipping[iflevel]; }
|
416
|
+
|
417
|
+
Value pp::eval_primary(Stream& input)
|
418
|
+
{
|
419
|
+
int start = input.offset();
|
420
|
+
bool expect_paren = false;
|
421
|
+
int token = next_token_accept(input);
|
422
|
+
Value result;
|
423
|
+
|
424
|
+
switch (token) {
|
425
|
+
case TOKEN_NUMBER:
|
426
|
+
result.set_long(token_value);
|
427
|
+
break;
|
428
|
+
|
429
|
+
case TOKEN_UNUMBER:
|
430
|
+
result.set_ulong(token_uvalue);
|
431
|
+
break;
|
432
|
+
|
433
|
+
case TOKEN_DEFINED:
|
434
|
+
token = next_token_accept(input);
|
435
|
+
|
436
|
+
if (token == '(')
|
437
|
+
{
|
438
|
+
expect_paren = true;
|
439
|
+
token = next_token_accept(input);
|
440
|
+
}
|
441
|
+
|
442
|
+
if (token != TOKEN_IDENTIFIER)
|
443
|
+
{
|
444
|
+
Problem* problem = new Problem;
|
445
|
+
problem->file = currentFileNameString();
|
446
|
+
problem->position = input.originalInputPosition();
|
447
|
+
QChar tk(token);
|
448
|
+
problem->description = QString("Expected \"identifier\", found: %1").arg((tk < TOKENS_END && tk > TOKENS_START) ? QString(tk) : QString("character %1").arg(token));
|
449
|
+
problem->explanation = QString("<h5>Token text</h5><pre>%1</pre><h5>Input</h5><pre>%2</pre>").arg(token_text.str())
|
450
|
+
.arg(QString::fromUtf8(input.stringFrom(start)));
|
451
|
+
problemEncountered(problem);
|
452
|
+
break;
|
453
|
+
}
|
454
|
+
|
455
|
+
{
|
456
|
+
pp_macro* m = m_environment->retrieveMacro(token_text, true);
|
457
|
+
result.set_long( (m && !m->isUndef()) ? 1 : 0);
|
458
|
+
}
|
459
|
+
|
460
|
+
token = next_token(input); // skip '('
|
461
|
+
|
462
|
+
if (expect_paren) {
|
463
|
+
if (token != ')') {
|
464
|
+
Problem* problem = new Problem;
|
465
|
+
problem->file = currentFileNameString();
|
466
|
+
problem->position = input.originalInputPosition();
|
467
|
+
QChar tk(token);
|
468
|
+
problem->description = QString("Expected \")\", found %1").arg(tk.isLetterOrNumber() ? QString(tk) : QString("character %1").arg(token));
|
469
|
+
problem->explanation = QString("<h5>Token text</h5><pre>%1</pre><h5>Input</h5><pre>%2</pre>").arg(token_text.str())
|
470
|
+
.arg(QString::fromUtf8(input.stringFrom(start)));
|
471
|
+
problemEncountered(problem);
|
472
|
+
} else {
|
473
|
+
accept_token();
|
474
|
+
}
|
475
|
+
}
|
476
|
+
break;
|
477
|
+
|
478
|
+
case TOKEN_IDENTIFIER:
|
479
|
+
break;
|
480
|
+
|
481
|
+
case '-':
|
482
|
+
result.set_long(- eval_primary(input).l);
|
483
|
+
break;
|
484
|
+
|
485
|
+
case '+':
|
486
|
+
result.set_long(+ eval_primary(input).l);
|
487
|
+
break;
|
488
|
+
|
489
|
+
case '!':
|
490
|
+
result.set_long(eval_primary(input).is_zero());
|
491
|
+
break;
|
492
|
+
|
493
|
+
case '(':
|
494
|
+
result = eval_constant_expression(input);
|
495
|
+
token = next_token(input);
|
496
|
+
|
497
|
+
if (token != ')') {
|
498
|
+
Problem* problem = new Problem;
|
499
|
+
problem->file = currentFileNameString();
|
500
|
+
problem->position = input.originalInputPosition();
|
501
|
+
QChar tk(token);
|
502
|
+
problem->description = QString("Expected \")\", found %1").arg(tk.isLetterOrNumber() ? QString(tk) : QString("character %1").arg(token));
|
503
|
+
problem->explanation = QString("<h5>Token text</h5><pre>%1</pre><h5>Input</h5><pre>%2</pre>").arg(token_text.str())
|
504
|
+
.arg(QString::fromUtf8(input.stringFrom(start)));
|
505
|
+
problemEncountered(problem);
|
506
|
+
} else {
|
507
|
+
accept_token();
|
508
|
+
}
|
509
|
+
|
510
|
+
break;
|
511
|
+
|
512
|
+
default:
|
513
|
+
break;
|
514
|
+
}
|
515
|
+
|
516
|
+
return result;
|
517
|
+
}
|
518
|
+
|
519
|
+
Value pp::eval_multiplicative(Stream& input)
|
520
|
+
{
|
521
|
+
int start = input.offset();
|
522
|
+
|
523
|
+
Value result = eval_primary(input);
|
524
|
+
|
525
|
+
int token = next_token(input);
|
526
|
+
|
527
|
+
while (token == '*' || token == '/' || token == '%') {
|
528
|
+
accept_token();
|
529
|
+
|
530
|
+
Value value = eval_primary(input);
|
531
|
+
|
532
|
+
if (token == '*') {
|
533
|
+
result *= value;
|
534
|
+
|
535
|
+
} else if (token == '/') {
|
536
|
+
if (value.is_zero()) {
|
537
|
+
Problem* problem = new Problem;
|
538
|
+
problem->file = currentFileNameString();
|
539
|
+
problem->position = input.originalInputPosition();
|
540
|
+
problem->description = "Division by zero";
|
541
|
+
problem->explanation = QString("Input text: %1").arg(QString::fromUtf8(input.stringFrom(start)));
|
542
|
+
problemEncountered(problem);
|
543
|
+
result.set_long(0);
|
544
|
+
|
545
|
+
} else {
|
546
|
+
result /= value;
|
547
|
+
}
|
548
|
+
|
549
|
+
} else {
|
550
|
+
if (value.is_zero()) {
|
551
|
+
Problem* problem = new Problem;
|
552
|
+
problem->file = currentFileNameString();
|
553
|
+
problem->position = input.originalInputPosition();
|
554
|
+
problem->description = "Division by zero";
|
555
|
+
problem->description = QString("Input text: %1").arg(QString::fromUtf8(input.stringFrom(start)));
|
556
|
+
problemEncountered(problem);
|
557
|
+
result.set_long(0);
|
558
|
+
|
559
|
+
} else {
|
560
|
+
result %= value;
|
561
|
+
}
|
562
|
+
}
|
563
|
+
|
564
|
+
token = next_token(input);
|
565
|
+
}
|
566
|
+
|
567
|
+
return result;
|
568
|
+
}
|
569
|
+
|
570
|
+
Value pp::eval_additive(Stream& input)
|
571
|
+
{
|
572
|
+
Value result = eval_multiplicative(input);
|
573
|
+
|
574
|
+
int token = next_token(input);
|
575
|
+
|
576
|
+
while (token == '+' || token == '-') {
|
577
|
+
accept_token();
|
578
|
+
|
579
|
+
Value value = eval_multiplicative(input);
|
580
|
+
|
581
|
+
if (token == '+')
|
582
|
+
result += value;
|
583
|
+
else
|
584
|
+
result -= value;
|
585
|
+
|
586
|
+
token = next_token(input);
|
587
|
+
}
|
588
|
+
|
589
|
+
return result;
|
590
|
+
}
|
591
|
+
|
592
|
+
|
593
|
+
Value pp::eval_shift(Stream& input)
|
594
|
+
{
|
595
|
+
Value result = eval_additive(input);
|
596
|
+
|
597
|
+
int token;
|
598
|
+
token = next_token(input);
|
599
|
+
|
600
|
+
while (token == TOKEN_LT_LT || token == TOKEN_GT_GT) {
|
601
|
+
accept_token();
|
602
|
+
|
603
|
+
Value value = eval_additive(input);
|
604
|
+
|
605
|
+
if (token == TOKEN_LT_LT)
|
606
|
+
result <<= value;
|
607
|
+
else
|
608
|
+
result >>= value;
|
609
|
+
|
610
|
+
token = next_token(input);
|
611
|
+
}
|
612
|
+
|
613
|
+
return result;
|
614
|
+
}
|
615
|
+
|
616
|
+
|
617
|
+
Value pp::eval_relational(Stream& input)
|
618
|
+
{
|
619
|
+
Value result = eval_shift(input);
|
620
|
+
|
621
|
+
int token = next_token(input);
|
622
|
+
|
623
|
+
while (token == '<'
|
624
|
+
|| token == '>'
|
625
|
+
|| token == TOKEN_LT_EQ
|
626
|
+
|| token == TOKEN_GT_EQ)
|
627
|
+
{
|
628
|
+
accept_token();
|
629
|
+
Value value = eval_shift(input);
|
630
|
+
|
631
|
+
switch (token)
|
632
|
+
{
|
633
|
+
default:
|
634
|
+
Q_ASSERT(0);
|
635
|
+
break;
|
636
|
+
|
637
|
+
case '<':
|
638
|
+
result = result < value;
|
639
|
+
break;
|
640
|
+
|
641
|
+
case '>':
|
642
|
+
result = result > value;
|
643
|
+
break;
|
644
|
+
|
645
|
+
case TOKEN_LT_EQ:
|
646
|
+
result = result <= value;
|
647
|
+
break;
|
648
|
+
|
649
|
+
case TOKEN_GT_EQ:
|
650
|
+
result = result >= value;
|
651
|
+
break;
|
652
|
+
}
|
653
|
+
|
654
|
+
token = next_token(input);
|
655
|
+
}
|
656
|
+
|
657
|
+
return result;
|
658
|
+
}
|
659
|
+
|
660
|
+
|
661
|
+
Value pp::eval_equality(Stream& input)
|
662
|
+
{
|
663
|
+
Value result = eval_relational(input);
|
664
|
+
|
665
|
+
int token = next_token(input);
|
666
|
+
|
667
|
+
while (token == TOKEN_EQ_EQ || token == TOKEN_NOT_EQ) {
|
668
|
+
accept_token();
|
669
|
+
Value value = eval_relational(input);
|
670
|
+
|
671
|
+
if (token == TOKEN_EQ_EQ)
|
672
|
+
result = result == value;
|
673
|
+
else
|
674
|
+
result = result != value;
|
675
|
+
|
676
|
+
token = next_token(input);
|
677
|
+
}
|
678
|
+
|
679
|
+
return result;
|
680
|
+
}
|
681
|
+
|
682
|
+
|
683
|
+
Value pp::eval_and(Stream& input)
|
684
|
+
{
|
685
|
+
Value result = eval_equality(input);
|
686
|
+
|
687
|
+
int token = next_token(input);
|
688
|
+
|
689
|
+
while (token == '&') {
|
690
|
+
accept_token();
|
691
|
+
Value value = eval_equality(input);
|
692
|
+
result &= value;
|
693
|
+
token = next_token(input);
|
694
|
+
}
|
695
|
+
|
696
|
+
return result;
|
697
|
+
}
|
698
|
+
|
699
|
+
|
700
|
+
Value pp::eval_xor(Stream& input)
|
701
|
+
{
|
702
|
+
Value result = eval_and(input);
|
703
|
+
|
704
|
+
int token;
|
705
|
+
token = next_token(input);
|
706
|
+
|
707
|
+
while (token == '^') {
|
708
|
+
accept_token();
|
709
|
+
Value value = eval_and(input);
|
710
|
+
result ^= value;
|
711
|
+
token = next_token(input);
|
712
|
+
}
|
713
|
+
|
714
|
+
return result;
|
715
|
+
}
|
716
|
+
|
717
|
+
|
718
|
+
Value pp::eval_or(Stream& input)
|
719
|
+
{
|
720
|
+
Value result = eval_xor(input);
|
721
|
+
|
722
|
+
int token = next_token(input);
|
723
|
+
|
724
|
+
while (token == '|') {
|
725
|
+
accept_token();
|
726
|
+
Value value = eval_xor(input);
|
727
|
+
result |= value;
|
728
|
+
token = next_token(input);
|
729
|
+
}
|
730
|
+
|
731
|
+
return result;
|
732
|
+
}
|
733
|
+
|
734
|
+
|
735
|
+
Value pp::eval_logical_and(Stream& input)
|
736
|
+
{
|
737
|
+
Value result = eval_or(input);
|
738
|
+
|
739
|
+
int token = next_token(input);
|
740
|
+
|
741
|
+
while (token == TOKEN_AND_AND) {
|
742
|
+
accept_token();
|
743
|
+
Value value = eval_or(input);
|
744
|
+
result = result && value;
|
745
|
+
token = next_token(input);
|
746
|
+
}
|
747
|
+
|
748
|
+
return result;
|
749
|
+
}
|
750
|
+
|
751
|
+
|
752
|
+
Value pp::eval_logical_or(Stream& input)
|
753
|
+
{
|
754
|
+
Value result = eval_logical_and(input);
|
755
|
+
|
756
|
+
int token = next_token(input);
|
757
|
+
|
758
|
+
while (token == TOKEN_OR_OR) {
|
759
|
+
accept_token();
|
760
|
+
Value value = eval_logical_and(input);
|
761
|
+
result = result || value;
|
762
|
+
token = next_token(input);
|
763
|
+
}
|
764
|
+
|
765
|
+
return result;
|
766
|
+
}
|
767
|
+
|
768
|
+
|
769
|
+
Value pp::eval_constant_expression(Stream& input)
|
770
|
+
{
|
771
|
+
Value result = eval_logical_or(input);
|
772
|
+
|
773
|
+
int token = next_token(input);
|
774
|
+
|
775
|
+
if (token == '?')
|
776
|
+
{
|
777
|
+
accept_token();
|
778
|
+
Value left_value = eval_constant_expression(input);
|
779
|
+
skip_blanks(input, devnull());
|
780
|
+
|
781
|
+
token = next_token_accept(input);
|
782
|
+
if (token == ':')
|
783
|
+
{
|
784
|
+
Value right_value = eval_constant_expression(input);
|
785
|
+
|
786
|
+
result = !result.is_zero() ? left_value : right_value;
|
787
|
+
}
|
788
|
+
else
|
789
|
+
{
|
790
|
+
Problem* problem = new Problem;
|
791
|
+
problem->file = currentFileNameString();
|
792
|
+
problem->position = input.originalInputPosition();
|
793
|
+
problem->description = QString("expected ``:'' = %1").arg(int(token));
|
794
|
+
problemEncountered(problem);
|
795
|
+
result = left_value;
|
796
|
+
}
|
797
|
+
}
|
798
|
+
|
799
|
+
return result;
|
800
|
+
}
|
801
|
+
|
802
|
+
|
803
|
+
Value pp::eval_expression(Stream& input)
|
804
|
+
{
|
805
|
+
skip_blanks(input, devnull());
|
806
|
+
return eval_constant_expression(input);
|
807
|
+
}
|
808
|
+
|
809
|
+
|
810
|
+
void pp::handle_if (Stream& input)
|
811
|
+
{
|
812
|
+
if (test_if_level())
|
813
|
+
{
|
814
|
+
pp_macro_expander expand_condition(this);
|
815
|
+
skip_blanks(input, devnull());
|
816
|
+
|
817
|
+
Anchor inputPosition = input.inputPosition();
|
818
|
+
SimpleCursor originalInputPosition = input.originalInputPosition();
|
819
|
+
PreprocessedContents condition;
|
820
|
+
{
|
821
|
+
Stream cs(&condition);
|
822
|
+
expand_condition(input, cs);
|
823
|
+
}
|
824
|
+
|
825
|
+
environment()->enterBlock(input.inputPosition().line, condition);
|
826
|
+
|
827
|
+
Stream cs(&condition, inputPosition);
|
828
|
+
cs.setOriginalInputPosition(originalInputPosition);
|
829
|
+
Value result = eval_expression(cs);
|
830
|
+
|
831
|
+
_M_true_test[iflevel] = !result.is_zero();
|
832
|
+
_M_skipping[iflevel] = result.is_zero();
|
833
|
+
|
834
|
+
} else {
|
835
|
+
// Capture info for precompiled macros
|
836
|
+
pp_macro_expander expand_condition(this);
|
837
|
+
skip_blanks(input, devnull());
|
838
|
+
PreprocessedContents condition;
|
839
|
+
{
|
840
|
+
Stream cs(&condition);
|
841
|
+
expand_condition(input, cs);
|
842
|
+
}
|
843
|
+
|
844
|
+
environment()->enterBlock(input.inputPosition().line, condition);
|
845
|
+
|
846
|
+
_M_true_test[iflevel] = true;
|
847
|
+
_M_skipping[iflevel] = true;
|
848
|
+
}
|
849
|
+
}
|
850
|
+
|
851
|
+
|
852
|
+
void pp::handle_else(int sourceLine)
|
853
|
+
{
|
854
|
+
if(iflevel == 1)
|
855
|
+
guardCandidate = IndexedString();
|
856
|
+
|
857
|
+
if (iflevel == 0 && !skipping ())
|
858
|
+
{
|
859
|
+
Problem* problem = new Problem;
|
860
|
+
problem->file = currentFileNameString();
|
861
|
+
problem->position = SimpleCursor(sourceLine, 0);
|
862
|
+
problem->description = "#else without #if";
|
863
|
+
problemEncountered(problem);
|
864
|
+
}
|
865
|
+
else if (iflevel > 0 && _M_skipping[iflevel - 1])
|
866
|
+
{
|
867
|
+
_M_skipping[iflevel] = true;
|
868
|
+
environment()->elseBlock(sourceLine);
|
869
|
+
}
|
870
|
+
else
|
871
|
+
{
|
872
|
+
_M_skipping[iflevel] = _M_true_test[iflevel];
|
873
|
+
environment()->elseBlock(sourceLine);
|
874
|
+
}
|
875
|
+
}
|
876
|
+
|
877
|
+
|
878
|
+
void pp::handle_elif(Stream& input)
|
879
|
+
{
|
880
|
+
if(iflevel == 1)
|
881
|
+
guardCandidate = IndexedString();
|
882
|
+
|
883
|
+
RETURN_ON_FAIL(iflevel > 0);
|
884
|
+
|
885
|
+
if (iflevel == 0 && !skipping())
|
886
|
+
{
|
887
|
+
Problem* problem = new Problem;
|
888
|
+
problem->file = currentFileNameString();
|
889
|
+
problem->position = input.originalInputPosition();
|
890
|
+
problem->description = "#else without #if";
|
891
|
+
problemEncountered(problem);
|
892
|
+
}
|
893
|
+
else
|
894
|
+
{
|
895
|
+
pp_macro_expander expand_condition(this);
|
896
|
+
skip_blanks(input, devnull());
|
897
|
+
|
898
|
+
Anchor inputPosition = input.inputPosition();
|
899
|
+
SimpleCursor originalInputPosition = input.originalInputPosition();
|
900
|
+
PreprocessedContents condition;
|
901
|
+
{
|
902
|
+
Stream cs(&condition);
|
903
|
+
cs.setOriginalInputPosition(originalInputPosition);
|
904
|
+
expand_condition(input, cs);
|
905
|
+
}
|
906
|
+
|
907
|
+
environment()->elseBlock(input.inputPosition().line, condition);
|
908
|
+
|
909
|
+
if (!_M_true_test[iflevel] && !_M_skipping[iflevel - 1])
|
910
|
+
{
|
911
|
+
Stream cs(&condition, inputPosition);
|
912
|
+
Value result = eval_expression(cs);
|
913
|
+
_M_true_test[iflevel] = !result.is_zero();
|
914
|
+
_M_skipping[iflevel] = result.is_zero();
|
915
|
+
}
|
916
|
+
else
|
917
|
+
{
|
918
|
+
_M_skipping[iflevel] = true;
|
919
|
+
}
|
920
|
+
}
|
921
|
+
}
|
922
|
+
|
923
|
+
|
924
|
+
void pp::handle_endif(Stream& input, Stream& output)
|
925
|
+
{
|
926
|
+
if (iflevel == 0 && !skipping())
|
927
|
+
{
|
928
|
+
Problem* problem = new Problem;
|
929
|
+
problem->file = currentFileNameString();
|
930
|
+
problem->position = input.originalInputPosition();
|
931
|
+
problem->description = QString("#endif without #if at output line %1")
|
932
|
+
.arg(m_environment->locationTable()->anchorForOffset(output.offset()).anchor.line);
|
933
|
+
problemEncountered(problem);
|
934
|
+
}
|
935
|
+
else
|
936
|
+
{
|
937
|
+
environment()->leaveBlock();
|
938
|
+
|
939
|
+
_M_skipping[iflevel] = 0;
|
940
|
+
_M_true_test[iflevel] = 0;
|
941
|
+
|
942
|
+
--iflevel;
|
943
|
+
if(iflevel == 0) {
|
944
|
+
if(!guardCandidate.isEmpty()) {
|
945
|
+
checkGuardEnd = true;
|
946
|
+
}
|
947
|
+
}
|
948
|
+
}
|
949
|
+
}
|
950
|
+
|
951
|
+
uint pp::branchingHash() const
|
952
|
+
{
|
953
|
+
uint hash = 0;
|
954
|
+
for( int a = 0; a <= iflevel; a++ ) {
|
955
|
+
hash *= 19;
|
956
|
+
if( _M_skipping[a] )
|
957
|
+
hash += 3;
|
958
|
+
if( _M_true_test[a] )
|
959
|
+
hash += 7;
|
960
|
+
}
|
961
|
+
return hash;
|
962
|
+
}
|
963
|
+
|
964
|
+
void pp::handle_ifdef (bool check_undefined, Stream& input)
|
965
|
+
{
|
966
|
+
IndexedString macro_name = IndexedString::fromIndex(skip_identifier(input));
|
967
|
+
///@todo eventually fix the block description
|
968
|
+
if(check_undefined && expand.in_header_section() && guardCandidate.isEmpty() && !hadGuardCandidate && iflevel == 0) {
|
969
|
+
//It's the first #ifndef and the header-section hasn't ended yet, assume it to be the header-guard
|
970
|
+
guardCandidate = macro_name;
|
971
|
+
}
|
972
|
+
|
973
|
+
hadGuardCandidate = true;
|
974
|
+
|
975
|
+
environment()->enterBlock(input.inputPosition().line);//, QString("%1defined(%2)").arg(check_undefined ? "!" : "").arg(macro_name).toUtf8());
|
976
|
+
|
977
|
+
if (test_if_level())
|
978
|
+
{
|
979
|
+
pp_macro* macro = m_environment->retrieveMacro(macro_name, true);
|
980
|
+
bool value = false;
|
981
|
+
if( macro && macro->defined )
|
982
|
+
value = true;
|
983
|
+
|
984
|
+
if (check_undefined)
|
985
|
+
value = !value;
|
986
|
+
|
987
|
+
_M_true_test[iflevel] = value;
|
988
|
+
_M_skipping[iflevel] = !value;
|
989
|
+
}
|
990
|
+
}
|
991
|
+
|
992
|
+
|
993
|
+
void pp::handle_undef(Stream& input)
|
994
|
+
{
|
995
|
+
skip_blanks (input, devnull());
|
996
|
+
|
997
|
+
IndexedString macro_name = IndexedString::fromIndex(skip_identifier(input));
|
998
|
+
RETURN_ON_FAIL(!macro_name.isEmpty());
|
999
|
+
|
1000
|
+
pp_macro* macro = new pp_macro;
|
1001
|
+
macro->file = currentFileName();
|
1002
|
+
macro->name = macro_name;
|
1003
|
+
macro->sourceLine = input.originalInputPosition().line;
|
1004
|
+
|
1005
|
+
macro->defined = false;
|
1006
|
+
|
1007
|
+
m_environment->setMacro(macro);
|
1008
|
+
}
|
1009
|
+
|
1010
|
+
IndexedString definedText("defined");
|
1011
|
+
|
1012
|
+
int pp::next_token (Stream& input)
|
1013
|
+
{
|
1014
|
+
if (haveNextToken)
|
1015
|
+
return nextToken;
|
1016
|
+
|
1017
|
+
skip_blanks(input, devnull());
|
1018
|
+
|
1019
|
+
if (input.atEnd())
|
1020
|
+
{
|
1021
|
+
return 0;
|
1022
|
+
}
|
1023
|
+
|
1024
|
+
char ch = 0;
|
1025
|
+
if(isCharacter(input.current()))
|
1026
|
+
ch = characterFromIndex(input.current());
|
1027
|
+
char ch2 = input.peekNextCharacter();
|
1028
|
+
|
1029
|
+
nextToken = 0;
|
1030
|
+
|
1031
|
+
switch (ch) {
|
1032
|
+
case '/':
|
1033
|
+
if (ch2 == '/' || ch2 == '*')
|
1034
|
+
{
|
1035
|
+
skip_comment_or_divop(input, devnull());
|
1036
|
+
return next_token(input);
|
1037
|
+
}
|
1038
|
+
++input;
|
1039
|
+
nextToken = '/';
|
1040
|
+
break;
|
1041
|
+
|
1042
|
+
case '<':
|
1043
|
+
++input;
|
1044
|
+
if (ch2 == '<')
|
1045
|
+
{
|
1046
|
+
++input;
|
1047
|
+
nextToken = TOKEN_LT_LT;
|
1048
|
+
}
|
1049
|
+
else if (ch2 == '=')
|
1050
|
+
{
|
1051
|
+
++input;
|
1052
|
+
nextToken = TOKEN_LT_EQ;
|
1053
|
+
}
|
1054
|
+
else
|
1055
|
+
nextToken = '<';
|
1056
|
+
|
1057
|
+
break;
|
1058
|
+
|
1059
|
+
case '>':
|
1060
|
+
++input;
|
1061
|
+
if (ch2 == '>')
|
1062
|
+
{
|
1063
|
+
++input;
|
1064
|
+
nextToken = TOKEN_GT_GT;
|
1065
|
+
}
|
1066
|
+
else if (ch2 == '=')
|
1067
|
+
{
|
1068
|
+
++input;
|
1069
|
+
nextToken = TOKEN_GT_EQ;
|
1070
|
+
}
|
1071
|
+
else
|
1072
|
+
nextToken = '>';
|
1073
|
+
|
1074
|
+
break;
|
1075
|
+
|
1076
|
+
case '!':
|
1077
|
+
++input;
|
1078
|
+
if (ch2 == '=')
|
1079
|
+
{
|
1080
|
+
++input;
|
1081
|
+
nextToken = TOKEN_NOT_EQ;
|
1082
|
+
}
|
1083
|
+
else
|
1084
|
+
nextToken = '!';
|
1085
|
+
|
1086
|
+
break;
|
1087
|
+
|
1088
|
+
case '=':
|
1089
|
+
++input;
|
1090
|
+
if (ch2 == '=')
|
1091
|
+
{
|
1092
|
+
++input;
|
1093
|
+
nextToken = TOKEN_EQ_EQ;
|
1094
|
+
}
|
1095
|
+
else
|
1096
|
+
nextToken = '=';
|
1097
|
+
|
1098
|
+
break;
|
1099
|
+
|
1100
|
+
case '|':
|
1101
|
+
++input;
|
1102
|
+
if (ch2 == '|')
|
1103
|
+
{
|
1104
|
+
++input;
|
1105
|
+
nextToken = TOKEN_OR_OR;
|
1106
|
+
}
|
1107
|
+
else
|
1108
|
+
nextToken = '|';
|
1109
|
+
|
1110
|
+
break;
|
1111
|
+
|
1112
|
+
case '&':
|
1113
|
+
++input;
|
1114
|
+
if (ch2 == '&')
|
1115
|
+
{
|
1116
|
+
++input;
|
1117
|
+
nextToken = TOKEN_AND_AND;
|
1118
|
+
}
|
1119
|
+
else
|
1120
|
+
nextToken = '&';
|
1121
|
+
|
1122
|
+
break;
|
1123
|
+
|
1124
|
+
default:
|
1125
|
+
if (isLetter(ch) || ch == '_' || !isCharacter(input.current()))
|
1126
|
+
{
|
1127
|
+
token_text = IndexedString::fromIndex( skip_identifier (input) );
|
1128
|
+
if (token_text == definedText)
|
1129
|
+
nextToken = TOKEN_DEFINED;
|
1130
|
+
else
|
1131
|
+
nextToken = TOKEN_IDENTIFIER;
|
1132
|
+
}
|
1133
|
+
else if (isNumber(ch))
|
1134
|
+
{
|
1135
|
+
PreprocessedContents byteNumber;
|
1136
|
+
{
|
1137
|
+
Stream ns(&byteNumber);
|
1138
|
+
skip_number(input, ns);
|
1139
|
+
}
|
1140
|
+
|
1141
|
+
QString number(QString::fromUtf8(stringFromContents(byteNumber)));
|
1142
|
+
int base = 10;
|
1143
|
+
if (number.startsWith("0x")) {
|
1144
|
+
base = 16;
|
1145
|
+
} else if (number.startsWith('0')) {
|
1146
|
+
base = 8;
|
1147
|
+
}
|
1148
|
+
|
1149
|
+
if (number.endsWith('u', Qt::CaseInsensitive)) {
|
1150
|
+
token_uvalue = number.toULong(0, base);
|
1151
|
+
nextToken = TOKEN_UNUMBER;
|
1152
|
+
|
1153
|
+
} else {
|
1154
|
+
token_value = number.toLong(0, base);
|
1155
|
+
nextToken = TOKEN_NUMBER;
|
1156
|
+
}
|
1157
|
+
}
|
1158
|
+
else
|
1159
|
+
{
|
1160
|
+
if(isCharacter(input.current()))
|
1161
|
+
nextToken = characterFromIndex(input.current());
|
1162
|
+
else
|
1163
|
+
nextToken = TOKEN_IDENTIFIER;
|
1164
|
+
++input;
|
1165
|
+
}
|
1166
|
+
}
|
1167
|
+
|
1168
|
+
//kDebug(9007) << "Next token '" << ch << ch2 << "'" << nextToken << "txt" << token_text << "val" << token_value;
|
1169
|
+
|
1170
|
+
haveNextToken = true;
|
1171
|
+
return nextToken;
|
1172
|
+
}
|
1173
|
+
|
1174
|
+
int pp::next_token_accept (Stream& input)
|
1175
|
+
{
|
1176
|
+
int result = next_token(input);
|
1177
|
+
accept_token();
|
1178
|
+
return result;
|
1179
|
+
}
|
1180
|
+
|
1181
|
+
void pp::accept_token()
|
1182
|
+
{
|
1183
|
+
haveNextToken = false;
|
1184
|
+
nextToken = 0;
|
1185
|
+
}
|
1186
|
+
|
1187
|
+
bool pp::hideNextMacro( ) const
|
1188
|
+
{
|
1189
|
+
return hideNext;
|
1190
|
+
}
|
1191
|
+
|
1192
|
+
void pp::setHideNextMacro( bool h )
|
1193
|
+
{
|
1194
|
+
hideNext = h;
|
1195
|
+
}
|
1196
|
+
|
1197
|
+
Environment* pp::environment( ) const
|
1198
|
+
{
|
1199
|
+
return m_environment;
|
1200
|
+
}
|
1201
|
+
|
1202
|
+
void pp::setEnvironment(Environment* env)
|
1203
|
+
{
|
1204
|
+
delete m_environment;
|
1205
|
+
m_environment = env;
|
1206
|
+
}
|
1207
|
+
|
1208
|
+
const QList< Problem* > & rpp::pp::problems() const
|
1209
|
+
{
|
1210
|
+
return m_problems;
|
1211
|
+
}
|
1212
|
+
|
1213
|
+
void rpp::pp::problemEncountered(Problem *problem)
|
1214
|
+
{
|
1215
|
+
m_problems.append(problem);
|
1216
|
+
}
|