├── .github ├── FUNDING.yml └── workflows │ ├── 63477276.yml │ ├── 63489592.yml │ ├── 63577032.yml │ └── mysql_plugin.yml ├── .gitignore ├── .gitmodules ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── assets └── coinbase.png ├── docker ├── Dockerfile └── README.md ├── others ├── 123525-es │ ├── 123525v1 │ │ ├── 123525.pro │ │ ├── Makefile │ │ ├── main.cpp │ │ ├── paintwidget.h │ │ ├── widget.cpp │ │ ├── widget.h │ │ └── widget.ui │ └── 123525v2 │ │ ├── 123525v2.pro │ │ ├── main.cpp │ │ ├── paintwidget.h │ │ ├── widget.cpp │ │ ├── widget.h │ │ └── widget.ui ├── 2SprayCoater │ ├── 2SprayCoater.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── BackgroundColorQSqlTable │ ├── BackgroundColorQSqlTable.pro │ ├── README.md │ ├── Screenshot.png │ ├── data.db │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── sqlrelationaltablemodel.cpp │ └── sqlrelationaltablemodel.h ├── CalendarModification │ ├── README.md │ ├── Screenshot.png │ ├── calendar │ │ ├── calendar.pro │ │ ├── images │ │ │ ├── eventindicator.png │ │ │ ├── img001.png │ │ │ ├── img002.png │ │ │ ├── img003.png │ │ │ ├── img004.png │ │ │ ├── img005.png │ │ │ ├── img006.png │ │ │ ├── img007.png │ │ │ ├── img008.png │ │ │ ├── img009.png │ │ │ ├── img010.png │ │ │ ├── img011.png │ │ │ ├── img012.png │ │ │ ├── img013.png │ │ │ ├── img014.png │ │ │ ├── img015.png │ │ │ ├── img016.png │ │ │ ├── img017.png │ │ │ ├── img018.png │ │ │ ├── img019.png │ │ │ ├── img020.png │ │ │ ├── img021.png │ │ │ ├── img022.png │ │ │ ├── img023.png │ │ │ ├── img024.png │ │ │ ├── img025.png │ │ │ ├── img026.png │ │ │ ├── img027.png │ │ │ ├── img028.png │ │ │ ├── img029.png │ │ │ ├── img030.png │ │ │ └── img031.png │ │ ├── qml │ │ │ └── main.qml │ │ ├── resources.qrc │ │ └── src │ │ │ ├── event.cpp │ │ │ ├── event.h │ │ │ ├── main.cpp │ │ │ ├── sqleventmodel.cpp │ │ │ ├── sqleventmodel.h │ │ │ └── src.pri │ └── shared │ │ ├── qtquickcontrolsapplication.h │ │ └── shared.pri ├── Camera │ ├── Camera.pro │ ├── README.md │ ├── main.cpp │ ├── mainwindow.cpp │ └── mainwindow.h ├── CameraFeed │ ├── CameraFeed.pro │ ├── README.md │ ├── camerafeed.cpp │ ├── camerafeed.h │ ├── camerafeed.ui │ ├── images │ │ └── Screensho.png │ └── main.cpp ├── CircleItem │ ├── CircleItem.pro │ ├── README.md │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── mycircle.cpp │ └── mycircle.h ├── CovertImg │ ├── CovertImg.pro │ ├── imagewidget.cpp │ ├── imagewidget.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ └── util.h ├── CustomListWidget │ ├── CustomListWidget.pro │ ├── listwidget.cpp │ ├── listwidget.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── CustomPageExample │ ├── CustomPageExample.pro │ ├── README.md │ ├── custompage.cpp │ ├── custompage.h │ └── main.cpp ├── CustomPlainTextProject │ ├── CustomPlainTextProject.pro │ ├── README.md │ ├── after.png │ ├── before.png │ ├── customplaintext.cpp │ ├── customplaintext.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── CustomSQLModel │ ├── README.md │ ├── Screenshot.png │ └── main.py ├── DBTableWidget │ ├── Modules │ │ ├── Databases.py │ │ └── __init__.py │ ├── README.md │ ├── main.py │ └── students.db ├── DankMovieDatabase │ ├── DankMovieDatabase.pro │ ├── README.md │ ├── image │ │ └── loading.gif │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── moviescreen.cpp │ ├── moviescreen.h │ ├── moviescreen.ui │ └── resource.qrc ├── Drawing-app │ ├── Trofimov05.pro │ ├── command.cpp │ ├── command.h │ ├── drawarea.cpp │ ├── drawarea.h │ ├── ellipse.cpp │ ├── fill.cpp │ ├── floodfill.cpp │ ├── floodfill.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── pencil.cpp │ ├── rectangle.cpp │ ├── shape.cpp │ ├── shape.h │ └── triangle.cpp ├── Example │ ├── Example.pro │ ├── README.md │ ├── logicclass.cpp │ ├── logicclass.h │ ├── main.cpp │ ├── maincontainer.cpp │ ├── maincontainer.h │ └── maincontainer.ui ├── FilterTable │ ├── README.md │ ├── Rts.csv │ ├── filter.ui │ ├── img │ │ ├── Screenshot1.png │ │ ├── Screenshot2.png │ │ └── Screenshot3.png │ ├── lib │ │ ├── FilterTableWidget.py │ │ └── __init__.py │ └── main.py ├── GProjectComplete │ ├── GProject │ │ ├── GProject.pro │ │ ├── GWidgets │ │ │ ├── GLineEdit │ │ │ │ ├── GLineEdit.pro │ │ │ │ ├── include │ │ │ │ │ ├── focuslabel.h │ │ │ │ │ ├── focuslineedit.h │ │ │ │ │ ├── glineedit.h │ │ │ │ │ └── glineedit_global.h │ │ │ │ └── src │ │ │ │ │ ├── focuslabel.cpp │ │ │ │ │ ├── focuslineedit.cpp │ │ │ │ │ └── glineedit.cpp │ │ │ └── GWidgets.pro │ │ └── GWidgetsPlugin │ │ │ ├── GWidgetsPlugin.pro │ │ │ ├── glineeditdialog.cpp │ │ │ ├── glineeditdialog.h │ │ │ ├── glineeditmenufactory.cpp │ │ │ ├── glineeditmenufactory.h │ │ │ ├── glineeditplugin.cpp │ │ │ ├── glineeditplugin.h │ │ │ ├── gwidgets.cpp │ │ │ ├── gwidgets.h │ │ │ └── main.cpp │ ├── README.md │ └── TempDisplay │ │ ├── TempDisplay.pro │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ └── mainwindow.ui ├── GraphicsScene │ ├── GraphicsScene.pro │ ├── README.md │ ├── graphicsscene.cpp │ ├── graphicsscene.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── rubberbanditem.cpp │ └── rubberbanditem.h ├── JSTestingQt │ ├── JSTestingQt.pro │ ├── README.md │ ├── TestPage.html │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ └── testJava.js ├── LabelQChartView │ ├── LabelQChartView.pro │ ├── README.md │ ├── Screenshot.png │ ├── chartview.cpp │ ├── chartview.h │ └── main.cpp ├── MediaManagerV2 │ ├── MediaManagerV2.pro │ ├── README.md │ ├── img │ │ └── Screenshot.png │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── qdarkstyle │ │ ├── .gitignore │ │ ├── __init__.py │ │ ├── compile_qrc.py │ │ ├── pyqt5_style_rc.py │ │ ├── pyqt_style_rc.py │ │ ├── pyside_style_rc.py │ │ ├── rc │ │ │ ├── Hmovetoolbar.png │ │ │ ├── Hsepartoolbar.png │ │ │ ├── Vmovetoolbar.png │ │ │ ├── Vsepartoolbar.png │ │ │ ├── branch_closed-on.png │ │ │ ├── branch_closed.png │ │ │ ├── branch_open-on.png │ │ │ ├── branch_open.png │ │ │ ├── checkbox_checked.png │ │ │ ├── checkbox_checked_disabled.png │ │ │ ├── checkbox_checked_focus.png │ │ │ ├── checkbox_indeterminate.png │ │ │ ├── checkbox_indeterminate_disabled.png │ │ │ ├── checkbox_indeterminate_focus.png │ │ │ ├── checkbox_unchecked.png │ │ │ ├── checkbox_unchecked_disabled.png │ │ │ ├── checkbox_unchecked_focus.png │ │ │ ├── close-hover.png │ │ │ ├── close-pressed.png │ │ │ ├── close.png │ │ │ ├── down_arrow.png │ │ │ ├── down_arrow_disabled.png │ │ │ ├── left_arrow.png │ │ │ ├── left_arrow_disabled.png │ │ │ ├── radio_checked.png │ │ │ ├── radio_checked_disabled.png │ │ │ ├── radio_checked_focus.png │ │ │ ├── radio_unchecked.png │ │ │ ├── radio_unchecked_disabled.png │ │ │ ├── radio_unchecked_focus.png │ │ │ ├── right_arrow.png │ │ │ ├── right_arrow_disabled.png │ │ │ ├── sizegrip.png │ │ │ ├── stylesheet-branch-end.png │ │ │ ├── stylesheet-branch-more.png │ │ │ ├── stylesheet-vline.png │ │ │ ├── transparent.png │ │ │ ├── undock.png │ │ │ ├── up_arrow.png │ │ │ └── up_arrow_disabled.png │ │ ├── style.qrc │ │ └── style.qss │ └── resources.qrc ├── OpenglPyQtTest │ ├── main.py │ └── minimal.ui ├── ParallelAnimationGroup │ ├── ParallelAnimationGroup.pro │ ├── README.md │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── mygraphicsrectitem.cpp │ ├── mygraphicsrectitem.h │ ├── output.gif │ └── output2.gif ├── PhiluminaEngine_Test │ ├── README.md │ ├── gameengine │ │ ├── gameengine.pro │ │ ├── glwidget.cpp │ │ ├── glwidget.h │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ ├── mainwindow.ui │ │ └── nodes │ │ │ └── 2d │ │ │ └── sprite │ │ │ ├── csprite2d.cpp │ │ │ └── csprite2d.h │ └── img │ │ ├── Screenshot1.png │ │ └── Screenshot2.png ├── PopUpExample │ ├── PopUpExample.pro │ ├── README.md │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── popup.cpp │ └── popup.h ├── PyQt Material Qml │ ├── README.md │ ├── img │ │ └── Screenshot.png │ ├── main.qml │ ├── main1.py │ ├── main2.py │ ├── main3.py │ ├── qtquickcontrols2.conf │ ├── resource.qrc │ └── resource_rc.py ├── QGraphicsPixmapItemExample │ ├── QGraphicsPixmapItemExample.pro │ ├── graphicspixmapitem.cpp │ ├── graphicspixmapitem.h │ ├── graphicsscene.cpp │ ├── graphicsscene.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── QtAnimate │ ├── QtAnimate.pro │ ├── README.md │ ├── ellipseobject.cpp │ ├── ellipseobject.h │ ├── graphicsview.cpp │ ├── graphicsview.h │ ├── main.cpp │ ├── screenshot │ │ └── output.gif │ ├── widget.cpp │ ├── widget.h │ └── widget.ui ├── QtUnitTestingTest │ ├── HelloWorldLib │ │ ├── HelloWorldLib.pro │ │ ├── include │ │ │ └── helloworldlib.h │ │ └── src │ │ │ └── helloworldlib.cpp │ ├── HelloWorldTest │ │ ├── HelloWorldTest.pro │ │ └── tst_helloworldtesttest.cpp │ ├── HelloWorldUI │ │ ├── HelloWorldUI.pro │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ └── mainwindow.ui │ └── QtUnitTestingTest.pro ├── RENIPRESS-selenium │ └── RENIPRESS_selenium.py ├── RE_LightScan │ ├── RE_LightScan.pro │ ├── icon.qrc │ ├── icon │ │ ├── 12.png │ │ ├── abs.png │ │ ├── aotoY.png │ │ ├── color.png │ │ ├── cursor.png │ │ ├── dark.png │ │ ├── delete.png │ │ ├── exit.png │ │ ├── fluo.png │ │ ├── help.png │ │ ├── initial.png │ │ ├── kinetics.png │ │ ├── marks.png │ │ ├── move.png │ │ ├── net.png │ │ ├── peak.png │ │ ├── raman.png │ │ ├── ref.png │ │ ├── reflect.png │ │ ├── scale.png │ │ ├── screenshot.png │ │ ├── spec.png │ │ ├── start.png │ │ ├── stop.png │ │ ├── tools.png │ │ ├── trans.png │ │ └── zoom.png │ ├── lscurve.cpp │ ├── lscurve.h │ ├── lsplot.cpp │ ├── lsplot.h │ ├── luck.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── RectAnimation │ ├── README.md │ ├── RectAnimation.pro │ ├── main.cpp │ ├── widget.cpp │ └── widget.h ├── Save2CSV │ ├── README.md │ ├── Rts.csv │ ├── filter.csv │ ├── filter.ui │ ├── images │ │ ├── Screenshot0.png │ │ ├── Screenshot1.png │ │ ├── Screenshot2.png │ │ └── Screenshot3.png │ └── main.py ├── SideBar │ ├── README.md │ ├── SideBar.pro │ ├── icons │ │ ├── icon0.png │ │ ├── icon1.png │ │ ├── icon2.png │ │ ├── icon3.png │ │ ├── icon4.png │ │ └── icon5.png │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── resource.qrc │ ├── screenshots │ │ ├── Screenshot1.png │ │ ├── Screenshot2.png │ │ └── Screenshot3.png │ ├── sidebar.cpp │ └── sidebar.h ├── SoftwareHEN │ ├── Casoestudio_nuevo.csv │ ├── README.md │ └── SoftwareHEN │ │ ├── Resources │ │ ├── Clean.png │ │ ├── NuevaPresentacion.png │ │ ├── Presentación.png │ │ ├── Redo-ico.png │ │ ├── SAVE.png │ │ ├── SAVEAS.ico │ │ ├── Save-icon.png │ │ ├── Undo.png │ │ ├── abrir.png │ │ ├── ayuda.png │ │ ├── cerrar.png │ │ ├── copiar.png │ │ ├── custom.png │ │ ├── cut.png │ │ ├── nuevo.png │ │ ├── pegar.png │ │ ├── plots.png │ │ ├── table-icon-png-2.png │ │ └── workspace.png │ │ ├── SoftwareHEN.pro │ │ ├── analisispersonalizado.cpp │ │ ├── analisispersonalizado.h │ │ ├── analisispersonalizado.ui │ │ ├── calculos.cpp │ │ ├── calculos.h │ │ ├── contenido_plots.cpp │ │ ├── contenido_plots.h │ │ ├── contenido_plots.ui │ │ ├── duvaloraction.cpp │ │ ├── duvaloraction.h │ │ ├── main.cpp │ │ ├── plots.cpp │ │ ├── plots.h │ │ ├── plots.ui │ │ ├── qcustomplot.cpp │ │ ├── qcustomplot.h │ │ ├── resources.qrc │ │ ├── summary.cpp │ │ ├── summary.h │ │ ├── summary.ui │ │ ├── tabladatos.cpp │ │ ├── tabladatos.h │ │ ├── tabladatos.ui │ │ ├── unidadesentrada.cpp │ │ ├── unidadesentrada.h │ │ ├── unidadesentrada.ui │ │ ├── valoraction.h │ │ ├── ventanaprincipal.cpp │ │ ├── ventanaprincipal.h │ │ └── ventanaprincipal.ui ├── StopMainWindow │ ├── README.md │ ├── StopMainWindow.pro │ ├── main.cpp │ ├── resource.qrc │ ├── stopmainwindow.cpp │ ├── stopmainwindow.h │ ├── stopmainwindow.ui │ └── tik.mp3 ├── Test │ ├── README.md │ ├── Test.pro │ ├── dataexchange.cpp │ ├── dataexchange.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── TestMdiArea │ ├── HomeWindow.py │ ├── MainWindow.py │ ├── ValveSim.py │ └── main.py ├── TestOpenCVQt │ ├── README.md │ ├── TestOpenCVQt.pro │ ├── cameraimage.cpp │ ├── cameraimage.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── TextEditExample │ ├── README.md │ ├── TextEditExample.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── ToolTipExample │ ├── README.md │ ├── ToolTipExample.pro │ ├── main.cpp │ ├── plaintextedit (copy).cpp │ ├── plaintextedit.cpp │ ├── plaintextedit.h │ ├── widget.cpp │ ├── widget.h │ └── widget.ui ├── TranslateStatic │ ├── TranslateStatic.pro │ ├── es.qm │ ├── es.ts │ ├── main.cpp │ ├── main.m │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ └── resource.qrc ├── WorkHelper │ ├── LoadInput_GUI.py │ ├── LoadInput_GUI.ui │ ├── Main.py │ ├── Main_GUI.py │ ├── Main_GUI.ui │ ├── README.md │ └── img │ │ └── Screenshot.png ├── basicshapes-cpp-modified │ ├── README.md │ ├── basicshapes-cpp.pro │ ├── main.cpp │ ├── my3dwindow.cpp │ ├── my3dwindow.h │ ├── scenemodifier.cpp │ └── scenemodifier.h ├── controller │ ├── README.md │ ├── controller.pro │ ├── httpcontroller.cpp │ ├── httpcontroller.h │ └── main.cpp ├── downloader │ ├── README.md │ ├── downloader.pro │ ├── images │ │ └── Screenshot.png │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── qtdownload.cpp │ └── qtdownload.h ├── libre-coupe │ ├── README.md │ ├── book.cpp │ ├── book.h │ ├── dialog.cpp │ ├── dialog.h │ ├── dialog.ui │ ├── library.cpp │ ├── library.h │ ├── libre_coupe.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── qimvi │ ├── LICENSE │ ├── README.md │ ├── doc │ │ ├── demo_crop.gif │ │ ├── demo_grey.gif │ │ └── demo_resize.gif │ ├── qimvi.pro │ ├── res │ │ ├── fugue-icons │ │ │ ├── application-resize-full.png │ │ │ ├── arrow-curve-180-left.png │ │ │ ├── arrow-curve.png │ │ │ ├── color_gray.png │ │ │ ├── disk--pencil.png │ │ │ ├── disk.png │ │ │ ├── door.png │ │ │ ├── image-crop.png │ │ │ ├── image-resize.png │ │ │ ├── image-sunset.png │ │ │ ├── information.png │ │ │ ├── layer-resize-actual.png │ │ │ ├── layer-resize.png │ │ │ ├── layer-rotate-left.png │ │ │ ├── layer-rotate.png │ │ │ ├── magnifier-zoom-in.png │ │ │ └── magnifier-zoom-out.png │ │ └── qimvi.qrc │ ├── src │ │ ├── ImageEditor.cpp │ │ ├── ImageEditor.h │ │ ├── MainWindow.cpp │ │ ├── MainWindow.h │ │ ├── RubberBand.cpp │ │ ├── RubberBand.h │ │ ├── UndoHistory.h │ │ ├── customrubberband.cpp │ │ ├── customrubberband.h │ │ └── main.cpp │ └── ui │ │ ├── AboutDialog.ui │ │ ├── MainWindow.ui │ │ └── ResizeDialog.ui ├── rpi-tkinter │ └── main.py ├── setting-shortcut-key-for-editing-text-in-qlineedit-in-python-pyqt4 │ └── main.py ├── so_QrcRelativePath-master │ ├── CMakeLists.txt │ ├── View.cpp │ ├── View.h │ ├── main.cpp │ ├── resources.qrc │ └── web │ │ ├── home.html │ │ └── img.jpg ├── systray │ ├── images │ │ ├── bad.png │ │ ├── heart.png │ │ └── trash.png │ ├── systray.py │ ├── systray.qrc │ └── systray_rc.py └── webview-test │ ├── index.html │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ ├── resource.qrc │ └── webview-test.pro ├── questions ├── 43600848 │ ├── README.md │ ├── locale │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.mo │ │ │ │ └── messages.po │ │ └── ie │ │ │ └── LC_MESSAGES │ │ │ ├── messages.mo │ │ │ └── messages.po │ ├── main.py │ └── messages.pot ├── 44234204 │ ├── 3rdParty │ │ └── pdfjs-1.7.225-dist │ │ │ ├── LICENSE │ │ │ ├── build │ │ │ ├── pdf.js │ │ │ └── pdf.worker.js │ │ │ └── web │ │ │ ├── cmaps │ │ │ ├── 78-EUC-H.bcmap │ │ │ ├── 78-EUC-V.bcmap │ │ │ ├── 78-H.bcmap │ │ │ ├── 78-RKSJ-H.bcmap │ │ │ ├── 78-RKSJ-V.bcmap │ │ │ ├── 78-V.bcmap │ │ │ ├── 78ms-RKSJ-H.bcmap │ │ │ ├── 78ms-RKSJ-V.bcmap │ │ │ ├── 83pv-RKSJ-H.bcmap │ │ │ ├── 90ms-RKSJ-H.bcmap │ │ │ ├── 90ms-RKSJ-V.bcmap │ │ │ ├── 90msp-RKSJ-H.bcmap │ │ │ ├── 90msp-RKSJ-V.bcmap │ │ │ ├── 90pv-RKSJ-H.bcmap │ │ │ ├── 90pv-RKSJ-V.bcmap │ │ │ ├── Add-H.bcmap │ │ │ ├── Add-RKSJ-H.bcmap │ │ │ ├── Add-RKSJ-V.bcmap │ │ │ ├── Add-V.bcmap │ │ │ ├── Adobe-CNS1-0.bcmap │ │ │ ├── Adobe-CNS1-1.bcmap │ │ │ ├── Adobe-CNS1-2.bcmap │ │ │ ├── Adobe-CNS1-3.bcmap │ │ │ ├── Adobe-CNS1-4.bcmap │ │ │ ├── Adobe-CNS1-5.bcmap │ │ │ ├── Adobe-CNS1-6.bcmap │ │ │ ├── Adobe-CNS1-UCS2.bcmap │ │ │ ├── Adobe-GB1-0.bcmap │ │ │ ├── Adobe-GB1-1.bcmap │ │ │ ├── Adobe-GB1-2.bcmap │ │ │ ├── Adobe-GB1-3.bcmap │ │ │ ├── Adobe-GB1-4.bcmap │ │ │ ├── Adobe-GB1-5.bcmap │ │ │ ├── Adobe-GB1-UCS2.bcmap │ │ │ ├── Adobe-Japan1-0.bcmap │ │ │ ├── Adobe-Japan1-1.bcmap │ │ │ ├── Adobe-Japan1-2.bcmap │ │ │ ├── Adobe-Japan1-3.bcmap │ │ │ ├── Adobe-Japan1-4.bcmap │ │ │ ├── Adobe-Japan1-5.bcmap │ │ │ ├── Adobe-Japan1-6.bcmap │ │ │ ├── Adobe-Japan1-UCS2.bcmap │ │ │ ├── Adobe-Korea1-0.bcmap │ │ │ ├── Adobe-Korea1-1.bcmap │ │ │ ├── Adobe-Korea1-2.bcmap │ │ │ ├── Adobe-Korea1-UCS2.bcmap │ │ │ ├── B5-H.bcmap │ │ │ ├── B5-V.bcmap │ │ │ ├── B5pc-H.bcmap │ │ │ ├── B5pc-V.bcmap │ │ │ ├── CNS-EUC-H.bcmap │ │ │ ├── CNS-EUC-V.bcmap │ │ │ ├── CNS1-H.bcmap │ │ │ ├── CNS1-V.bcmap │ │ │ ├── CNS2-H.bcmap │ │ │ ├── CNS2-V.bcmap │ │ │ ├── ETHK-B5-H.bcmap │ │ │ ├── ETHK-B5-V.bcmap │ │ │ ├── ETen-B5-H.bcmap │ │ │ ├── ETen-B5-V.bcmap │ │ │ ├── ETenms-B5-H.bcmap │ │ │ ├── ETenms-B5-V.bcmap │ │ │ ├── EUC-H.bcmap │ │ │ ├── EUC-V.bcmap │ │ │ ├── Ext-H.bcmap │ │ │ ├── Ext-RKSJ-H.bcmap │ │ │ ├── Ext-RKSJ-V.bcmap │ │ │ ├── Ext-V.bcmap │ │ │ ├── GB-EUC-H.bcmap │ │ │ ├── GB-EUC-V.bcmap │ │ │ ├── GB-H.bcmap │ │ │ ├── GB-V.bcmap │ │ │ ├── GBK-EUC-H.bcmap │ │ │ ├── GBK-EUC-V.bcmap │ │ │ ├── GBK2K-H.bcmap │ │ │ ├── GBK2K-V.bcmap │ │ │ ├── GBKp-EUC-H.bcmap │ │ │ ├── GBKp-EUC-V.bcmap │ │ │ ├── GBT-EUC-H.bcmap │ │ │ ├── GBT-EUC-V.bcmap │ │ │ ├── GBT-H.bcmap │ │ │ ├── GBT-V.bcmap │ │ │ ├── GBTpc-EUC-H.bcmap │ │ │ ├── GBTpc-EUC-V.bcmap │ │ │ ├── GBpc-EUC-H.bcmap │ │ │ ├── GBpc-EUC-V.bcmap │ │ │ ├── H.bcmap │ │ │ ├── HKdla-B5-H.bcmap │ │ │ ├── HKdla-B5-V.bcmap │ │ │ ├── HKdlb-B5-H.bcmap │ │ │ ├── HKdlb-B5-V.bcmap │ │ │ ├── HKgccs-B5-H.bcmap │ │ │ ├── HKgccs-B5-V.bcmap │ │ │ ├── HKm314-B5-H.bcmap │ │ │ ├── HKm314-B5-V.bcmap │ │ │ ├── HKm471-B5-H.bcmap │ │ │ ├── HKm471-B5-V.bcmap │ │ │ ├── HKscs-B5-H.bcmap │ │ │ ├── HKscs-B5-V.bcmap │ │ │ ├── Hankaku.bcmap │ │ │ ├── Hiragana.bcmap │ │ │ ├── KSC-EUC-H.bcmap │ │ │ ├── KSC-EUC-V.bcmap │ │ │ ├── KSC-H.bcmap │ │ │ ├── KSC-Johab-H.bcmap │ │ │ ├── KSC-Johab-V.bcmap │ │ │ ├── KSC-V.bcmap │ │ │ ├── KSCms-UHC-H.bcmap │ │ │ ├── KSCms-UHC-HW-H.bcmap │ │ │ ├── KSCms-UHC-HW-V.bcmap │ │ │ ├── KSCms-UHC-V.bcmap │ │ │ ├── KSCpc-EUC-H.bcmap │ │ │ ├── KSCpc-EUC-V.bcmap │ │ │ ├── Katakana.bcmap │ │ │ ├── LICENSE │ │ │ ├── NWP-H.bcmap │ │ │ ├── NWP-V.bcmap │ │ │ ├── RKSJ-H.bcmap │ │ │ ├── RKSJ-V.bcmap │ │ │ ├── Roman.bcmap │ │ │ ├── UniCNS-UCS2-H.bcmap │ │ │ ├── UniCNS-UCS2-V.bcmap │ │ │ ├── UniCNS-UTF16-H.bcmap │ │ │ ├── UniCNS-UTF16-V.bcmap │ │ │ ├── UniCNS-UTF32-H.bcmap │ │ │ ├── UniCNS-UTF32-V.bcmap │ │ │ ├── UniCNS-UTF8-H.bcmap │ │ │ ├── UniCNS-UTF8-V.bcmap │ │ │ ├── UniGB-UCS2-H.bcmap │ │ │ ├── UniGB-UCS2-V.bcmap │ │ │ ├── UniGB-UTF16-H.bcmap │ │ │ ├── UniGB-UTF16-V.bcmap │ │ │ ├── UniGB-UTF32-H.bcmap │ │ │ ├── UniGB-UTF32-V.bcmap │ │ │ ├── UniGB-UTF8-H.bcmap │ │ │ ├── UniGB-UTF8-V.bcmap │ │ │ ├── UniJIS-UCS2-H.bcmap │ │ │ ├── UniJIS-UCS2-HW-H.bcmap │ │ │ ├── UniJIS-UCS2-HW-V.bcmap │ │ │ ├── UniJIS-UCS2-V.bcmap │ │ │ ├── UniJIS-UTF16-H.bcmap │ │ │ ├── UniJIS-UTF16-V.bcmap │ │ │ ├── UniJIS-UTF32-H.bcmap │ │ │ ├── UniJIS-UTF32-V.bcmap │ │ │ ├── UniJIS-UTF8-H.bcmap │ │ │ ├── UniJIS-UTF8-V.bcmap │ │ │ ├── UniJIS2004-UTF16-H.bcmap │ │ │ ├── UniJIS2004-UTF16-V.bcmap │ │ │ ├── UniJIS2004-UTF32-H.bcmap │ │ │ ├── UniJIS2004-UTF32-V.bcmap │ │ │ ├── UniJIS2004-UTF8-H.bcmap │ │ │ ├── UniJIS2004-UTF8-V.bcmap │ │ │ ├── UniJISPro-UCS2-HW-V.bcmap │ │ │ ├── UniJISPro-UCS2-V.bcmap │ │ │ ├── UniJISPro-UTF8-V.bcmap │ │ │ ├── UniJISX0213-UTF32-H.bcmap │ │ │ ├── UniJISX0213-UTF32-V.bcmap │ │ │ ├── UniJISX02132004-UTF32-H.bcmap │ │ │ ├── UniJISX02132004-UTF32-V.bcmap │ │ │ ├── UniKS-UCS2-H.bcmap │ │ │ ├── UniKS-UCS2-V.bcmap │ │ │ ├── UniKS-UTF16-H.bcmap │ │ │ ├── UniKS-UTF16-V.bcmap │ │ │ ├── UniKS-UTF32-H.bcmap │ │ │ ├── UniKS-UTF32-V.bcmap │ │ │ ├── UniKS-UTF8-H.bcmap │ │ │ ├── UniKS-UTF8-V.bcmap │ │ │ ├── V.bcmap │ │ │ └── WP-Symbol.bcmap │ │ │ ├── compatibility.js │ │ │ ├── compressed.tracemonkey-pldi-09.pdf │ │ │ ├── debugger.js │ │ │ ├── images │ │ │ ├── annotation-check.svg │ │ │ ├── annotation-comment.svg │ │ │ ├── annotation-help.svg │ │ │ ├── annotation-insert.svg │ │ │ ├── annotation-key.svg │ │ │ ├── annotation-newparagraph.svg │ │ │ ├── annotation-noicon.svg │ │ │ ├── annotation-note.svg │ │ │ ├── annotation-paragraph.svg │ │ │ ├── findbarButton-next-rtl.png │ │ │ ├── findbarButton-next-rtl@2x.png │ │ │ ├── findbarButton-next.png │ │ │ ├── findbarButton-next@2x.png │ │ │ ├── findbarButton-previous-rtl.png │ │ │ ├── findbarButton-previous-rtl@2x.png │ │ │ ├── findbarButton-previous.png │ │ │ ├── findbarButton-previous@2x.png │ │ │ ├── grab.cur │ │ │ ├── grabbing.cur │ │ │ ├── loading-icon.gif │ │ │ ├── loading-small.png │ │ │ ├── loading-small@2x.png │ │ │ ├── secondaryToolbarButton-documentProperties.png │ │ │ ├── secondaryToolbarButton-documentProperties@2x.png │ │ │ ├── secondaryToolbarButton-firstPage.png │ │ │ ├── secondaryToolbarButton-firstPage@2x.png │ │ │ ├── secondaryToolbarButton-handTool.png │ │ │ ├── secondaryToolbarButton-handTool@2x.png │ │ │ ├── secondaryToolbarButton-lastPage.png │ │ │ ├── secondaryToolbarButton-lastPage@2x.png │ │ │ ├── secondaryToolbarButton-rotateCcw.png │ │ │ ├── secondaryToolbarButton-rotateCcw@2x.png │ │ │ ├── secondaryToolbarButton-rotateCw.png │ │ │ ├── secondaryToolbarButton-rotateCw@2x.png │ │ │ ├── shadow.png │ │ │ ├── texture.png │ │ │ ├── toolbarButton-bookmark.png │ │ │ ├── toolbarButton-bookmark@2x.png │ │ │ ├── toolbarButton-download.png │ │ │ ├── toolbarButton-download@2x.png │ │ │ ├── toolbarButton-menuArrows.png │ │ │ ├── toolbarButton-menuArrows@2x.png │ │ │ ├── toolbarButton-openFile.png │ │ │ ├── toolbarButton-openFile@2x.png │ │ │ ├── toolbarButton-pageDown-rtl.png │ │ │ ├── toolbarButton-pageDown-rtl@2x.png │ │ │ ├── toolbarButton-pageDown.png │ │ │ ├── toolbarButton-pageDown@2x.png │ │ │ ├── toolbarButton-pageUp-rtl.png │ │ │ ├── toolbarButton-pageUp-rtl@2x.png │ │ │ ├── toolbarButton-pageUp.png │ │ │ ├── toolbarButton-pageUp@2x.png │ │ │ ├── toolbarButton-presentationMode.png │ │ │ ├── toolbarButton-presentationMode@2x.png │ │ │ ├── toolbarButton-print.png │ │ │ ├── toolbarButton-print@2x.png │ │ │ ├── toolbarButton-search.png │ │ │ ├── toolbarButton-search@2x.png │ │ │ ├── toolbarButton-secondaryToolbarToggle-rtl.png │ │ │ ├── toolbarButton-secondaryToolbarToggle-rtl@2x.png │ │ │ ├── toolbarButton-secondaryToolbarToggle.png │ │ │ ├── toolbarButton-secondaryToolbarToggle@2x.png │ │ │ ├── toolbarButton-sidebarToggle-rtl.png │ │ │ ├── toolbarButton-sidebarToggle-rtl@2x.png │ │ │ ├── toolbarButton-sidebarToggle.png │ │ │ ├── toolbarButton-sidebarToggle@2x.png │ │ │ ├── toolbarButton-viewAttachments.png │ │ │ ├── toolbarButton-viewAttachments@2x.png │ │ │ ├── toolbarButton-viewOutline-rtl.png │ │ │ ├── toolbarButton-viewOutline-rtl@2x.png │ │ │ ├── toolbarButton-viewOutline.png │ │ │ ├── toolbarButton-viewOutline@2x.png │ │ │ ├── toolbarButton-viewThumbnail.png │ │ │ ├── toolbarButton-viewThumbnail@2x.png │ │ │ ├── toolbarButton-zoomIn.png │ │ │ ├── toolbarButton-zoomIn@2x.png │ │ │ ├── toolbarButton-zoomOut.png │ │ │ ├── toolbarButton-zoomOut@2x.png │ │ │ ├── treeitem-collapsed-rtl.png │ │ │ ├── treeitem-collapsed-rtl@2x.png │ │ │ ├── treeitem-collapsed.png │ │ │ ├── treeitem-collapsed@2x.png │ │ │ ├── treeitem-expanded.png │ │ │ └── treeitem-expanded@2x.png │ │ │ ├── l10n.js │ │ │ ├── locale │ │ │ ├── ach │ │ │ │ └── viewer.properties │ │ │ ├── af │ │ │ │ └── viewer.properties │ │ │ ├── ak │ │ │ │ └── viewer.properties │ │ │ ├── an │ │ │ │ └── viewer.properties │ │ │ ├── ar │ │ │ │ └── viewer.properties │ │ │ ├── as │ │ │ │ └── viewer.properties │ │ │ ├── ast │ │ │ │ └── viewer.properties │ │ │ ├── az │ │ │ │ └── viewer.properties │ │ │ ├── be │ │ │ │ └── viewer.properties │ │ │ ├── bg │ │ │ │ └── viewer.properties │ │ │ ├── bn-BD │ │ │ │ └── viewer.properties │ │ │ ├── bn-IN │ │ │ │ └── viewer.properties │ │ │ ├── br │ │ │ │ └── viewer.properties │ │ │ ├── bs │ │ │ │ └── viewer.properties │ │ │ ├── ca │ │ │ │ └── viewer.properties │ │ │ ├── cs │ │ │ │ └── viewer.properties │ │ │ ├── csb │ │ │ │ └── viewer.properties │ │ │ ├── cy │ │ │ │ └── viewer.properties │ │ │ ├── da │ │ │ │ └── viewer.properties │ │ │ ├── de │ │ │ │ └── viewer.properties │ │ │ ├── el │ │ │ │ └── viewer.properties │ │ │ ├── en-GB │ │ │ │ └── viewer.properties │ │ │ ├── en-US │ │ │ │ └── viewer.properties │ │ │ ├── en-ZA │ │ │ │ └── viewer.properties │ │ │ ├── eo │ │ │ │ └── viewer.properties │ │ │ ├── es-AR │ │ │ │ └── viewer.properties │ │ │ ├── es-CL │ │ │ │ └── viewer.properties │ │ │ ├── es-ES │ │ │ │ └── viewer.properties │ │ │ ├── es-MX │ │ │ │ └── viewer.properties │ │ │ ├── et │ │ │ │ └── viewer.properties │ │ │ ├── eu │ │ │ │ └── viewer.properties │ │ │ ├── fa │ │ │ │ └── viewer.properties │ │ │ ├── ff │ │ │ │ └── viewer.properties │ │ │ ├── fi │ │ │ │ └── viewer.properties │ │ │ ├── fr │ │ │ │ └── viewer.properties │ │ │ ├── fy-NL │ │ │ │ └── viewer.properties │ │ │ ├── ga-IE │ │ │ │ └── viewer.properties │ │ │ ├── gd │ │ │ │ └── viewer.properties │ │ │ ├── gl │ │ │ │ └── viewer.properties │ │ │ ├── gu-IN │ │ │ │ └── viewer.properties │ │ │ ├── he │ │ │ │ └── viewer.properties │ │ │ ├── hi-IN │ │ │ │ └── viewer.properties │ │ │ ├── hr │ │ │ │ └── viewer.properties │ │ │ ├── hu │ │ │ │ └── viewer.properties │ │ │ ├── hy-AM │ │ │ │ └── viewer.properties │ │ │ ├── id │ │ │ │ └── viewer.properties │ │ │ ├── is │ │ │ │ └── viewer.properties │ │ │ ├── it │ │ │ │ └── viewer.properties │ │ │ ├── ja │ │ │ │ └── viewer.properties │ │ │ ├── ka │ │ │ │ └── viewer.properties │ │ │ ├── kk │ │ │ │ └── viewer.properties │ │ │ ├── km │ │ │ │ └── viewer.properties │ │ │ ├── kn │ │ │ │ └── viewer.properties │ │ │ ├── ko │ │ │ │ └── viewer.properties │ │ │ ├── ku │ │ │ │ └── viewer.properties │ │ │ ├── lg │ │ │ │ └── viewer.properties │ │ │ ├── lij │ │ │ │ └── viewer.properties │ │ │ ├── locale.properties │ │ │ ├── lt │ │ │ │ └── viewer.properties │ │ │ ├── lv │ │ │ │ └── viewer.properties │ │ │ ├── mai │ │ │ │ └── viewer.properties │ │ │ ├── mk │ │ │ │ └── viewer.properties │ │ │ ├── ml │ │ │ │ └── viewer.properties │ │ │ ├── mn │ │ │ │ └── viewer.properties │ │ │ ├── mr │ │ │ │ └── viewer.properties │ │ │ ├── ms │ │ │ │ └── viewer.properties │ │ │ ├── my │ │ │ │ └── viewer.properties │ │ │ ├── nb-NO │ │ │ │ └── viewer.properties │ │ │ ├── nl │ │ │ │ └── viewer.properties │ │ │ ├── nn-NO │ │ │ │ └── viewer.properties │ │ │ ├── nso │ │ │ │ └── viewer.properties │ │ │ ├── oc │ │ │ │ └── viewer.properties │ │ │ ├── or │ │ │ │ └── viewer.properties │ │ │ ├── pa-IN │ │ │ │ └── viewer.properties │ │ │ ├── pl │ │ │ │ └── viewer.properties │ │ │ ├── pt-BR │ │ │ │ └── viewer.properties │ │ │ ├── pt-PT │ │ │ │ └── viewer.properties │ │ │ ├── rm │ │ │ │ └── viewer.properties │ │ │ ├── ro │ │ │ │ └── viewer.properties │ │ │ ├── ru │ │ │ │ └── viewer.properties │ │ │ ├── rw │ │ │ │ └── viewer.properties │ │ │ ├── sah │ │ │ │ └── viewer.properties │ │ │ ├── si │ │ │ │ └── viewer.properties │ │ │ ├── sk │ │ │ │ └── viewer.properties │ │ │ ├── sl │ │ │ │ └── viewer.properties │ │ │ ├── son │ │ │ │ └── viewer.properties │ │ │ ├── sq │ │ │ │ └── viewer.properties │ │ │ ├── sr │ │ │ │ └── viewer.properties │ │ │ ├── sv-SE │ │ │ │ └── viewer.properties │ │ │ ├── sw │ │ │ │ └── viewer.properties │ │ │ ├── ta-LK │ │ │ │ └── viewer.properties │ │ │ ├── ta │ │ │ │ └── viewer.properties │ │ │ ├── te │ │ │ │ └── viewer.properties │ │ │ ├── th │ │ │ │ └── viewer.properties │ │ │ ├── tl │ │ │ │ └── viewer.properties │ │ │ ├── tn │ │ │ │ └── viewer.properties │ │ │ ├── tr │ │ │ │ └── viewer.properties │ │ │ ├── uk │ │ │ │ └── viewer.properties │ │ │ ├── ur │ │ │ │ └── viewer.properties │ │ │ ├── vi │ │ │ │ └── viewer.properties │ │ │ ├── wo │ │ │ │ └── viewer.properties │ │ │ ├── xh │ │ │ │ └── viewer.properties │ │ │ ├── zh-CN │ │ │ │ └── viewer.properties │ │ │ ├── zh-TW │ │ │ │ └── viewer.properties │ │ │ └── zu │ │ │ │ └── viewer.properties │ │ │ ├── viewer.css │ │ │ ├── viewer.html │ │ │ └── viewer.js │ ├── CV.pdf │ ├── README.md │ ├── Screenshot.png │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ └── pdfjsExample.pro ├── 44427868 │ ├── README.md │ ├── SpatialiteOnQt.pro │ └── main.cpp ├── 44603119 │ ├── PandasModel.py │ ├── README.md │ ├── Screenshot.png │ ├── data.csv │ └── main.py ├── 44608954 │ ├── README.md │ ├── arduino │ │ └── test │ │ │ └── test.ino │ └── pc │ │ └── ArduinoQML │ │ ├── .qmake.stash │ │ ├── ArduinoQML.pro │ │ ├── main.cpp │ │ ├── main.qml │ │ ├── qml.qrc │ │ ├── serialport.cpp │ │ └── serialport.h ├── 45319476 │ ├── DrawLineExample.pro │ ├── README.md │ ├── drawwidget.cpp │ ├── drawwidget.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── 45929404 │ ├── 45929404-qsqlrelationaltablemodel-displaying-an-icon-instead-of-data.pro │ ├── main.cpp │ ├── relationaltablemodelwithicon.cpp │ └── relationaltablemodelwithicon.h ├── 45964913 │ ├── README.md │ ├── config.txt │ ├── mesh_lib │ │ ├── __init__.py │ │ ├── geometry.py │ │ └── model.py │ ├── models │ │ └── 1.obj │ ├── run.py │ ├── screenshot.png │ └── work.py ├── 46007131 │ ├── README.md │ ├── Screenshot.png │ └── main.py ├── 46049009 │ ├── DrawLineonScene.pro │ ├── README.md │ └── main.cpp ├── 46068390 │ ├── LogDialog.pro │ ├── README.md │ ├── logdialog.cpp │ ├── logdialog.h │ ├── logdialog.ui │ └── main.cpp ├── 46137500 │ ├── CustomTabBar.pro │ ├── README.md │ ├── Screenshot.png │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ └── tabwidget.h ├── 46140962 │ ├── DateFilterExample.pro │ ├── README.md │ ├── Screenshot.png │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── 46142167 │ ├── README.md │ ├── Screenshot.png │ └── main.py ├── 46169378 │ ├── CustomQSqlTableModel.pro │ ├── README.md │ ├── Screenshot.png │ ├── dialog.cpp │ ├── dialog.h │ ├── dialog.ui │ ├── main.cpp │ ├── sqltablemodel.cpp │ └── sqltablemodel.h ├── 46189816 │ ├── HTMLDelegateExample.pro │ ├── README.md │ ├── Screenshot.png │ ├── htmldelegate.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── 46265368 │ ├── ComboBoxWithCustomView.pro │ ├── all.csv │ ├── dialog.cpp │ ├── dialog.h │ ├── dialog.ui │ ├── main.cpp │ └── resource.qrc ├── 46327656 │ ├── README.md │ ├── Screenshot.png │ ├── codeeditor.cpp │ ├── codeeditor.h │ ├── codeeditor.pro │ └── main.cpp ├── 46329431 │ ├── Example.pro │ ├── README.md │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── 46367568 │ ├── README.md │ ├── Test.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 46375673 │ ├── MemoryViewer │ │ ├── Memory.pro │ │ ├── main.cpp │ │ ├── memoryviewer.cpp │ │ └── memoryviewer.h │ ├── README.md │ └── Screenshot.png ├── 46431491 │ ├── PopupTableView.pro │ ├── README.md │ ├── Screenshot.png │ ├── main.cpp │ └── tableview.h ├── 46469720 │ ├── MultiLevelHeaderView.pro │ ├── README.md │ ├── Screenshot.png │ ├── gridtableheadermodel.cpp │ ├── gridtableheadermodel.h │ ├── gridtableheaderview.cpp │ ├── gridtableheaderview.h │ ├── gridtableview.cpp │ ├── gridtableview.h │ ├── main.cpp │ ├── tableheaderitem.cpp │ └── tableheaderitem.h ├── 46547089 │ ├── README.md │ ├── Screenshot.gif │ ├── ScrollAreaExample.pro │ ├── horizontalscrollarea.h │ └── main.cpp ├── 46551444 │ ├── DragAndDropQTreeWidgetExample.pro │ ├── README.md │ ├── Screenshot.png │ ├── filestreewidget.h │ └── main.cpp ├── 46721954 │ ├── README.md │ ├── main.py │ └── main.qml ├── 46854262 │ ├── LoginExample.pro │ ├── login.h │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 46895943 │ ├── data.db │ ├── main.py │ └── util.py ├── 46916327 │ └── sizegripitem-master │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SizeGripItem.cpp │ │ ├── SizeGripItem.h │ │ ├── demo │ │ ├── CMakeLists.txt │ │ ├── MainWindow.cpp │ │ ├── MainWindow.h │ │ ├── MainWindow.ui │ │ └── main.cpp │ │ └── sizegripitem-master.pro ├── 46920221 │ ├── 46920221.pro │ ├── listwidget.h │ └── main.cpp ├── 46944670 │ ├── 46944670.pro │ ├── main.cpp │ └── positionwidget.h ├── 46959824 │ ├── 46959824.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── 46989493 │ └── Pajnt │ │ ├── Pajnt.pro │ │ ├── colorpicker.cpp │ │ ├── colorpicker.h │ │ ├── colorpicker.ui │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ ├── mainwindow.ui │ │ ├── pics │ │ ├── circle.svg │ │ ├── line.svg │ │ ├── pen.svg │ │ ├── rect.svg │ │ └── select.svg │ │ ├── rect.cpp │ │ ├── rect.h │ │ ├── resource.qrc │ │ ├── toolwindow.cpp │ │ ├── toolwindow.h │ │ └── toolwindow.ui ├── 47024950 │ ├── connection.py │ └── main.py ├── 47094871 │ ├── 47094871.pro │ └── main.cpp ├── 47127975 │ ├── 47127975.pro │ ├── data.h │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ └── runnable.h ├── 47252632 │ ├── GUI_tmy3.py │ ├── main.py │ ├── qwebchannel.js │ ├── useless.html │ └── useless.js ├── 47259825 │ ├── form.ui │ ├── main.py │ └── small.mp4 ├── 47296103 │ ├── 47296103.pro │ ├── main.cpp │ ├── tictactoe_gui.cpp │ └── tictactoe_gui.h ├── 47318601 │ ├── 47318601.pro │ ├── connection.h │ ├── insertdialog.h │ └── main.cpp ├── 47328152 │ ├── 47328152.pro │ ├── main.cpp │ ├── timeline.cpp │ ├── timeline.h │ ├── timers.h │ ├── trackwindow.cpp │ └── trackwindow.h ├── 47336766 │ ├── main.py │ └── plotly-latest.min.js ├── 47338259 │ ├── 47338259.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 47359847 │ ├── WaitingSpinnerWidget.py │ └── main.py ├── 47361731 │ ├── 47361731.pro │ ├── data.json │ └── main.cpp ├── 47367656 │ └── LampTesterV2 │ │ ├── LampTesterV2.pro │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ ├── mainwindow.ui │ │ ├── relaycontroller.h │ │ ├── relayframe.cpp │ │ ├── relayframe.h │ │ └── relayframe.ui ├── 47376517 │ ├── main.py │ └── main.qml ├── 47382617 │ └── main.py ├── 47383722 │ ├── 47383722.pro │ ├── doubleclickedwidget.cpp │ ├── doubleclickedwidget.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── 47390437 │ ├── 47390437.pro │ ├── data.csv │ ├── main.cpp │ ├── main.qml │ ├── navaidsmodel.h │ ├── navaidspoint.h │ ├── qml.qrc │ ├── qtquickcontrols2.conf │ └── resource.qrc ├── 47400049 │ ├── 47400049.pro │ ├── main.cpp │ ├── sslserver.cpp │ └── sslserver.h ├── 47482282 │ ├── 47482282.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mybutton.h ├── 47494200 │ ├── html │ │ ├── popup.js │ │ ├── qwebchannel.js │ │ └── test.html │ └── main.py ├── 47500617 │ ├── CustomTabBar.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ └── tabwidget.h ├── 47520108 │ ├── 47520108.pro │ ├── car.cpp │ ├── car.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── twovector.cpp │ ├── twovector.h │ ├── vehicle.cpp │ └── vehicle.h ├── 47529509 │ └── main.py ├── 47569710 │ ├── 47569710.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 47621727 │ ├── 47621727.pro │ ├── login.cpp │ ├── login.h │ ├── login.ui │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ └── user.h ├── 47622771 │ ├── 47622771.pro │ ├── main.cpp │ ├── widget.cpp │ ├── widget.h │ └── widget.ui ├── 47625754 │ ├── 47625754.pro │ ├── dialog.cpp │ ├── dialog.h │ ├── dialog.ui │ └── main.cpp ├── 47642978 │ ├── 47642978.pro │ ├── dgraphicsitem.h │ ├── main.cpp │ ├── widget.cpp │ ├── widget.h │ └── widget.ui ├── 47660289 │ ├── 47660289.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── tutowidget.cpp │ └── tutowidget.h ├── 47701474 │ ├── draggableicons.pro │ ├── draggableicons.qrc │ ├── dragwidget.cpp │ ├── dragwidget.h │ ├── glwidget.cpp │ ├── glwidget.h │ ├── images │ │ ├── boat.png │ │ ├── car.png │ │ └── house.png │ └── main.cpp ├── 47715491 │ ├── 47715491.pro │ ├── MainForm.qml │ ├── interfacageqml.cpp │ ├── interfacageqml.h │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 47723954 │ ├── datasource.cpp │ ├── datasource.h │ ├── main.cpp │ ├── qml │ │ └── qmloscilloscope │ │ │ ├── ControlPanel.qml │ │ │ ├── MultiButton.qml │ │ │ ├── ScopeView.qml │ │ │ └── main.qml │ ├── qmloscilloscope.pro │ └── resources.qrc ├── 47728237 │ ├── 47728237.pro │ ├── graphicsscene.h │ └── main.cpp ├── 47735042 │ ├── 47735042.pro │ ├── data.cpp │ ├── data.h │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 47775985 │ ├── 47775985.pro │ └── main.cpp ├── 47803531 │ ├── 47803531.pro │ ├── limits_t.h │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ └── splitdialgauge.h ├── 47908654 │ ├── 47908654.pro │ ├── Marker.qml │ ├── main.cpp │ ├── main.qml │ ├── navaidsmodel.h │ ├── navaidspoint.h │ ├── qml.qrc │ └── qtquickcontrols2.conf ├── 47928724 │ ├── diagramscene.py │ ├── diagramscene.qrc │ ├── diagramscene_rc.py │ └── images │ │ ├── background1.png │ │ ├── background2.png │ │ ├── background3.png │ │ ├── background4.png │ │ ├── bold.png │ │ ├── bringtofront.png │ │ ├── delete.png │ │ ├── floodfill.png │ │ ├── italic.png │ │ ├── linecolor.png │ │ ├── linepointer.png │ │ ├── pointer.png │ │ ├── sendtoback.png │ │ ├── textpointer.png │ │ └── underline.png ├── 47962257 │ ├── 47962257.pro │ ├── imageprovider.h │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 47971176 │ ├── 47971176.pro │ ├── main.cpp │ ├── widget.h │ └── worker.h ├── 47972795 │ ├── 47972795.pro │ └── main.cpp ├── 47982295 │ ├── 47982295.pro │ ├── main.cpp │ ├── main.qml │ ├── mainmenu.cpp │ ├── mainmenu.h │ ├── mainmenu.ui │ └── qml.qrc ├── 47984647 │ ├── 47984647.pro │ └── main.cpp ├── 47988595 │ ├── 47988595.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 48043443 │ ├── 48043443.pro │ ├── data.csv │ ├── main.cpp │ ├── main.qml │ ├── navaidsfilter.h │ ├── navaidsmodel.h │ ├── navaidspoint.h │ ├── qml.qrc │ ├── qtquickcontrols2.conf │ └── resource.qrc ├── 48053045 │ ├── main.py │ └── main.qml ├── 48069595 │ ├── 48069595.pro │ ├── config.cpp │ ├── config.h │ ├── main.cpp │ ├── main.qml │ ├── maincpp.cpp │ ├── maincpp.h │ └── qml.qrc ├── 48071952 │ ├── 48071952.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 48074369 │ ├── 48074369.pro │ ├── drawitem.h │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 48081448 │ ├── 48081448.pro │ ├── SampleVideo_1280x720_1mb.mp4 │ ├── main.cpp │ ├── resource.qrc │ └── tux.jpeg ├── 48123219 │ └── main.py ├── 48126896 │ ├── 48126896.pro │ ├── Marker.qml │ ├── main.cpp │ ├── main.qml │ ├── navaidsmodel.h │ ├── navaidspoint.h │ ├── qml.qrc │ └── qtquickcontrols2.conf ├── 48138605 │ ├── 48138605.pro │ ├── main.cpp │ ├── widget.cpp │ ├── widget.h │ └── widget.ui ├── 48139716 │ ├── 48139716.pro │ └── main.cpp ├── 48151862 │ ├── 48151862.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 48207970 │ ├── 48207970.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── map.qml │ ├── mm_20_gray.png │ └── resource.qrc ├── 48243686 │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ └── src │ │ ├── QDataItem.cpp │ │ ├── QDataItem.h │ │ ├── QDataItemTree.cpp │ │ ├── QDataItemTree.h │ │ ├── QMainWidget.cpp │ │ ├── QMainWidget.h │ │ ├── QMainWidget.ui │ │ ├── main.cpp │ │ └── treeview_example.pro ├── 48243936 │ ├── 48243936.pro │ ├── SingletonClass.qml │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ ├── qmldir │ ├── singletonbaseclass.h │ └── tmp.qml ├── 48251004 │ ├── 48251004-1 │ │ ├── .qmake.stash │ │ ├── 48251004.pro │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ ├── mainwindow.ui │ │ ├── marker.png │ │ ├── places_map.qml │ │ └── resource.qrc │ └── 48251004-2 │ │ ├── 48251004-2.pro │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ ├── mainwindow.ui │ │ ├── marker.png │ │ ├── places_map.qml │ │ ├── quickwidget.h │ │ └── resource.qrc ├── 48303751 │ ├── 48303751.pro │ ├── grafica_ppu.cpp │ ├── grafica_ppu.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── 48306251 │ ├── 48306251.pro │ ├── barcode.ttf │ ├── main.cpp │ ├── resource.qrc │ └── style.css ├── 48327558 │ ├── 48327558.pro │ ├── main.cpp │ └── twolistselection.h ├── 48349672 │ ├── 48349672.pro │ ├── configinterface.cpp │ ├── configinterface.h │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 48362864 │ ├── 48362864-1 │ │ ├── 48362864-1.pro │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ └── mainwindow.ui │ ├── 48362864-2 │ │ ├── 48362864-2.pro │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ └── mainwindow.ui │ └── designer-charts │ │ ├── designer.pro │ │ ├── qcharts.png │ │ ├── qchartsplugin.cpp │ │ ├── qchartsplugin.h │ │ └── qchartsplugin.qrc ├── 48365707 │ ├── 48365707.pro │ ├── main.cpp │ ├── qcustomplot.cpp │ └── qcustomplot.h ├── 48372528 │ ├── 48372528.pro │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ └── serialportmanager.h ├── 48490310 │ ├── 48490310.pro │ ├── formmodel.cpp │ ├── formmodel.h │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 48648573 │ ├── 48648573.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── 48681580 │ ├── 48681580.pro │ ├── cascadecolorhighlightwidgetitem.cpp │ ├── cascadecolorhighlightwidgetitem.h │ └── main.cpp ├── 48687705 │ ├── 48687705.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 48690490 │ ├── 48690490.pro │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ └── sqltrafficmodel.h ├── 48711986 │ ├── 48711986.pro │ ├── Screencast_02-09-2018_02_36_04-PM.mp4 │ ├── main.cpp │ ├── plotter.cpp │ └── plotter.h ├── 48729828 │ ├── 48729828.pro │ ├── icons │ │ ├── if_Intsagram_194923.png │ │ ├── if_Sign In_20297.png │ │ ├── if_Y_Exit_87843.png │ │ ├── if__emergency-stairs2_2324134.png │ │ ├── if_exit-to-app_326635.png │ │ ├── if_minimize_1954533.png │ │ ├── if_square-facebook_317727.png │ │ └── if_stackoverflow_394194.png │ ├── listwidget.cpp │ ├── listwidget.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ └── resource.qrc ├── 48746536 │ ├── 48746536.pro │ ├── Marker.qml │ ├── airport.h │ ├── airportsmodel.h │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 48813037 │ ├── 48813037.pro │ ├── main.cpp │ ├── main.qml │ ├── myquickitem.h │ └── qml.qrc ├── 48837105 │ ├── 48837105.pro │ └── main.cpp ├── 48842998 │ └── GridPaginationTwoFilter │ │ ├── GridPaginationTwoFilter.pro │ │ ├── filtro.cpp │ │ ├── filtro.h │ │ ├── main.cpp │ │ ├── main.qml │ │ ├── modello.cpp │ │ ├── modello.h │ │ └── qml.qrc ├── 48852348 │ ├── Card.qml │ ├── GameArea.qml │ ├── images │ │ ├── back.gif │ │ ├── img_1.jpg │ │ ├── img_10.jpg │ │ ├── img_2.jpg │ │ ├── img_3.jpg │ │ ├── img_4.jpg │ │ ├── img_5.jpg │ │ ├── img_6.jpg │ │ ├── img_7.jpg │ │ ├── img_8.jpg │ │ └── img_9.jpg │ ├── js │ │ └── GameUtils.js │ ├── main.cpp │ ├── main.qml │ ├── memory-game.pro │ └── qml.qrc ├── 48853221 │ ├── 48853221.pro │ ├── customslider.cpp │ ├── customslider.h │ ├── customslider.ui │ └── main.cpp ├── 48874873 │ ├── 48874873.pro │ ├── ContactModel.qml │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 48889600 │ ├── 48889600.pro │ ├── Makefile │ ├── Page1Form.qml │ ├── Page2Form.qml │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ └── style │ │ ├── qmldir │ │ └── style.qml ├── 48891034 │ ├── 48891034.pro │ ├── FavModel.qml │ ├── Favourites.qml │ ├── SamplePage.qml │ ├── Shared.qml │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ └── qmldir ├── 48972688 │ ├── 48972688.pro │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ └── utils.js ├── 49018463 │ ├── 49018463.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 49055538 │ ├── 49055538.pro │ ├── main.cpp │ ├── player.cpp │ ├── player.h │ ├── player │ │ └── Laura │ │ │ ├── idle_left.gif │ │ │ ├── idle_right.gif │ │ │ ├── run_left.gif │ │ │ └── run_right.gif │ └── resource.qrc ├── 49094823 │ ├── 49094823-1 │ │ ├── 49094823.pro │ │ ├── image.jpg │ │ ├── main.cpp │ │ └── resource.qrc │ └── 49094823-2 │ │ ├── 49094823-2.pro │ │ ├── image.jpg │ │ ├── main.cpp │ │ └── resource.qrc ├── 49096407 │ ├── 49096407.pro │ ├── main.cpp │ ├── mainwindow.cpp │ └── mainwindow.h ├── 49099606 │ ├── 49099606.pro │ └── main.cpp ├── 49162969 │ ├── 49162969.pro │ └── main.cpp ├── 49163921 │ ├── 49163921.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── 49172604 │ ├── 49172604.pro │ ├── icons.qrc │ ├── if_Sharethis_322291.png │ ├── testwidget.cpp │ ├── testwidget.h │ ├── testwidget.pri │ ├── testwidgetplugin.cpp │ └── testwidgetplugin.h ├── 49196328 │ ├── 49196328.pro │ ├── glwidget.cpp │ ├── glwidget.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── 49197080 │ ├── 49197080.pro │ ├── main.cpp │ ├── resource.qrc │ ├── testsize.cpp │ ├── testsize.h │ └── wallpaper.jpg ├── 49203661 │ ├── 49203661.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── 49312744 │ ├── 49312744.pro │ └── main.cpp ├── 49326344 │ ├── 49326344.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── myserver.cpp │ └── myserver.h ├── 49332159 │ ├── 49332159.pro │ └── main.cpp ├── 49344638 │ ├── 49344638.pro │ ├── main.cpp │ ├── main.qml │ ├── markermodel.h │ └── resource.qrc ├── 49353042 │ ├── 49353042-1 │ │ ├── 49353042-1.pro │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ └── mainwindow.ui │ └── 49353042-2 │ │ ├── 49353042-2.pro │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ └── mainwindow.ui ├── 49369519 │ ├── 49369519.pro │ ├── left_arrow.png │ ├── left_arrow_disable.png │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── popupCalendar.qml │ ├── popupCalendar.qmlc │ ├── resource.qrc │ ├── right_arrow.png │ └── right_arrow_disable.png ├── 49410557 │ ├── 49410557.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── 49417693 │ ├── SignalHandler.py │ ├── main.py │ └── qml │ │ ├── SimpleMainWindow.qml │ │ └── TestViewButton.qml ├── 49527395 │ ├── 49527395.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 49536899 │ ├── 49536899.pro │ ├── block.cpp │ ├── block.h │ ├── graphicsscene.cpp │ ├── graphicsscene.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── pix.png │ └── resource.qrc ├── 49538489 │ ├── 49538489 │ │ ├── 49538489.pro │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ └── mainwindow.ui │ └── psimuvisu │ │ ├── PSimuVisu.pro │ │ ├── PSimuVisu.pro.user │ │ ├── chart.cpp │ │ ├── chart.h │ │ ├── generatoraleator.cpp │ │ ├── generatoraleator.h │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ ├── mainwindow.ui │ │ ├── tickdata.cpp │ │ └── tickdata.h ├── 49542472 │ ├── 49542472.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── qcustomplot.cpp │ └── qcustomplot.h ├── 49568486 │ ├── histogramwidget.cpp │ ├── histogramwidget.h │ ├── main.cpp │ ├── player.cpp │ ├── player.h │ ├── player.pro │ ├── playercontrols.cpp │ ├── playercontrols.h │ ├── playlistmodel.cpp │ ├── playlistmodel.h │ ├── slider.h │ ├── videowidget.cpp │ └── videowidget.h ├── 49605955 │ ├── 49605955.pro │ ├── book.cpp │ ├── book.h │ ├── dialog.cpp │ ├── dialog.h │ ├── dialog.ui │ ├── library.cpp │ ├── library.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── 49727462 │ ├── 49727462.pro │ ├── ArrowItem.qml │ ├── AssetTrail.qml │ ├── MapMarker.qml │ ├── arrow.png │ ├── assetitem.cpp │ ├── assetitem.h │ ├── assetlistmodel.cpp │ ├── assetlistmodel.h │ ├── chopper.png │ ├── main.cpp │ ├── main.qml │ ├── nodemodel.h │ ├── qml.qrc │ └── resource.qrc ├── 49760457 │ ├── 49760457.pro │ ├── Scene.qml │ ├── Style.qml │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ └── qmldir ├── 49803820 │ ├── 49803820.pro │ ├── character.png │ ├── main.cpp │ ├── owl.png │ └── resource.qrc ├── 49844075 │ ├── 49844075.pro │ ├── location.h │ ├── locationmodel.cpp │ ├── locationmodel.h │ ├── main.cpp │ ├── main.qml │ ├── main.qmlc │ ├── mm_20_red.png │ ├── qml.qrc │ └── resource.qrc ├── 49850513 │ ├── 49850513.pro │ ├── keypad.cpp │ ├── keypad.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── 49910514 │ ├── 49910514.pro │ ├── graphicsproxywidget.cpp │ ├── graphicsproxywidget.h │ ├── main.cpp │ ├── qgraphicspolygonitem.cpp │ └── qgraphicspolygonitem.h ├── 50007170 │ ├── 50007170.pro │ ├── main.cpp │ ├── main.qml │ ├── qjsonmodel.cpp │ ├── qjsonmodel.h │ └── qml.qrc ├── 50046645 │ ├── filesystembrowser.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 50138172 │ ├── 50138172-frozen_bubbles.pro │ ├── bubble.cpp │ ├── bubble.hh │ ├── bubbleitem.cpp │ ├── bubbleitem.hh │ ├── gameboard.cpp │ ├── gameboard.hh │ ├── gameengine.cpp │ ├── gameengine.h │ ├── images.qrc │ ├── images │ │ ├── bluebubble.png │ │ ├── bluesplash.png │ │ ├── greenbubble.png │ │ ├── greensplash.png │ │ ├── redbubble.png │ │ └── redsplash.png │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.hh │ ├── splashitem.cpp │ └── splashitem.h ├── 50178597 │ ├── filesystembrowser.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 50180990 │ ├── 50180990.pro │ ├── html │ │ └── index.html │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ └── resource.qrc ├── 50198751 │ ├── 50198751.pro │ ├── connection.h │ ├── main.cpp │ ├── transposeproxymodel.cpp │ └── transposeproxymodel.h ├── 50259197 │ ├── edge.cpp │ ├── edge.h │ ├── elasticnodes.pro │ ├── graphwidget.cpp │ ├── graphwidget.h │ ├── main.cpp │ ├── node.cpp │ ├── node.h │ ├── win.cpp │ └── win.h ├── 50279503 │ ├── 50279503.pro │ ├── block.cpp │ ├── block.h │ ├── images │ │ └── MyIcon_icon.png │ ├── main.cpp │ ├── optionlist.cpp │ ├── optionlist.h │ ├── resource.qrc │ ├── scene.cpp │ └── scene.h ├── 50378537 │ ├── 50378537.pro │ ├── demopromotedwidget.cpp │ ├── demopromotedwidget.h │ ├── demopromotedwidget.ui │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── 50456263 │ ├── 50456263.pro │ ├── image.png │ ├── main.cpp │ └── resource.qrc ├── 50477761 │ ├── 50477761.pro │ ├── downloaditem.cpp │ ├── downloaditem.h │ ├── downloadmanager.cpp │ ├── downloadmanager.h │ ├── icones │ │ ├── actu.png │ │ ├── go.png │ │ ├── home.png │ │ ├── prec.png │ │ ├── stop.png │ │ ├── suiv.png │ │ └── web.png │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── resources.qrc │ ├── webpage.cpp │ └── webpage.h ├── 50498219 │ ├── 50498219.pro │ ├── ball.png │ ├── main.cpp │ └── resource.qrc ├── 50516359 │ └── test │ │ ├── App │ │ ├── App.pro │ │ └── main.cpp │ │ ├── InterfacePlugin │ │ ├── InterfacePlugin.pro │ │ ├── interfaceplugin.h │ │ └── interfaceplugin_global.h │ │ ├── Plugin │ │ ├── Plugin.pro │ │ ├── plugin.h │ │ └── plugin_global.h │ │ └── test.pro ├── 50550089 │ ├── 50550089.pro │ ├── circle.png │ ├── main.cpp │ └── resource.qrc ├── 50570554 │ ├── 50570554.pro │ ├── custombutton.cpp │ ├── custombutton.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── 50609108 │ ├── 50609108.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 50676066 │ ├── 50676066.pro │ ├── img │ │ └── whitedog.png │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ └── resource.qrc ├── 50704574 │ ├── 50704574.pro │ ├── README.md │ ├── customrect.cpp │ ├── customrect.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── myarrow.cpp │ └── myarrow.h ├── 50764406 │ ├── 50764406-GUI │ │ ├── 50764406-GUI.pro │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ └── mainwindow.ui │ └── 50764406-test │ │ ├── 50764406.pro │ │ └── main.cpp ├── 50847204 │ ├── 50847204.pro │ ├── lena.png │ ├── main.cpp │ └── resource.qrc ├── 51034391 │ ├── QQ.pro │ ├── data.cpp │ ├── data.h │ ├── main.cpp │ ├── main.qml │ ├── mymodel.cpp │ ├── mymodel.h │ └── qml.qrc ├── 51055511 │ ├── 51055511.pro │ ├── main.cpp │ ├── speedometer.cpp │ └── speedometer.h ├── 51085719 │ ├── callout.cpp │ ├── callout.h │ ├── callout.pro │ ├── main.cpp │ ├── view.cpp │ └── view.h ├── 51092115 │ ├── 51092115.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── 51106914 │ ├── index.html │ ├── main.py │ ├── utils.css │ └── utils.js ├── 51144569 │ ├── dockwidgets.qrc │ ├── dockwidgets_rc.py │ ├── images │ │ ├── new.png │ │ ├── print.png │ │ ├── save.png │ │ └── undo.png │ └── main.py ├── 51145763 │ ├── 51145763.pro │ ├── lineitem.cpp │ ├── lineitem.h │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 51149966 │ ├── 51149966.pro │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ ├── sample.h │ ├── samplemanager.h │ └── samplemodel.h ├── 51151806 │ ├── 51151806.pro │ ├── displayimage.cpp │ ├── displayimage.h │ ├── main.cpp │ ├── resource.qrc │ └── test.jpeg ├── 51173216 │ ├── 51173216.pro │ ├── main.cpp │ ├── qcustomplot.cpp │ └── qcustomplot.h ├── 51192832 │ ├── 51192832.pro │ ├── images │ │ ├── eyeOff.png │ │ └── eyeOn.png │ ├── main.cpp │ ├── passwordlineedit.cpp │ ├── passwordlineedit.h │ └── resource.qrc ├── 51199137 │ ├── analogwidgets.qrc │ ├── analogwidgets_rc.py │ ├── main.py │ └── resources │ │ ├── dial1.svg │ │ ├── dial2.svg │ │ ├── dial3.svg │ │ ├── dial4.svg │ │ └── train_digits.svg ├── 51261464 │ ├── 51261464.pro │ ├── main.cpp │ ├── main.qml │ ├── model.cpp │ ├── model.h │ └── qml.qrc ├── 51313111 │ ├── 51313111.pro │ ├── index.html │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ └── resource.qrc ├── 51356559 │ ├── 51356559.pro │ ├── connection.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── qcustomplot.cpp │ └── qcustomplot.h ├── 51364623 │ ├── 51364623.pro │ ├── item.h │ ├── itemfiltersortmodel.h │ ├── itemmodel.h │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ └── samplemanager.h ├── 51382435 │ ├── 51382435.pro │ ├── item.h │ ├── itemfiltersortmodel.h │ ├── itemmodel.h │ ├── main.cpp │ ├── main.qml │ ├── modelimageprovider.h │ ├── qml.qrc │ └── samplemanager.h ├── 51490722 │ ├── 51490722.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ └── numpadwidget.h ├── 51492181 │ ├── 51492181.pro │ ├── image.png │ ├── main.cpp │ ├── resource.qrc │ └── utils.h ├── 51545428 │ └── urmelgraph │ │ ├── components │ │ ├── Class.qml │ │ ├── Edge.qml │ │ └── qmldir │ │ ├── main.py │ │ └── main │ │ └── main.qml ├── 51577711 │ ├── 51577711.pro │ └── main.cpp ├── 51593476 │ ├── 51593476.pro │ ├── graphicsscene.cpp │ ├── graphicsscene.h │ └── main.cpp ├── 51629014 │ ├── 51629014.pro │ ├── appendproxymodel.cpp │ ├── appendproxymodel.h │ ├── connection.h │ └── main.cpp ├── 51635985 │ ├── 51635985.pro │ ├── main.cpp │ ├── main.qml │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── resource.qrc │ ├── test.cpp │ └── test.h ├── 51729672 │ ├── 51729672.pro │ ├── domainmanager.h │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 51747950 │ ├── 51747950.pro │ ├── backend.h │ ├── custom_class.h │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 51751453 │ ├── 51751453.pro │ ├── main.cpp │ ├── tablemodel.cpp │ └── tablemodel.h ├── 51757280 │ ├── 51757280.pro │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ ├── visualizationoptions.h │ └── vizfactory.h ├── 51793635 │ ├── 51793635.pro │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ ├── uidata.cpp │ └── uidata.h ├── 51816213 │ ├── 51816213-1 │ │ ├── 51816213-1.pro │ │ └── main.cpp │ ├── 51816213-2 │ │ ├── 51816213-2.pro │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ └── mainwindow.ui │ ├── 51816213.pro │ └── themostsimplepatientJSON.json ├── 51824477 │ ├── 51824477-1 │ │ ├── 51824477-1.pro │ │ ├── gauge.qml │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ ├── mainwindow.ui │ │ └── resource.qrc │ ├── 51824477-2 │ │ ├── 51824477-2.pro │ │ ├── gauge.qml │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ ├── mainwindow.ui │ │ └── resource.qrc │ └── 51824477.pro ├── 52003389 │ ├── 52003389.pro │ └── main.cpp ├── 52083923 │ ├── 52083923.pro │ ├── MyItem.qml │ ├── currency.h │ ├── factory.h │ ├── main.cpp │ ├── main.qml │ ├── money.h │ └── qml.qrc ├── 52086178 │ └── Test │ │ ├── Test.pro │ │ ├── icons.qrc │ │ ├── testclass.cpp │ │ ├── testclass.h │ │ ├── testclass.pri │ │ ├── testclassplugin.cpp │ │ └── testclassplugin.h ├── 52213021 │ ├── 52213021-1.pro │ ├── Curve1.qml │ ├── Curve2.qml │ ├── Curve3.qml │ ├── main.cpp │ └── resource.qrc ├── 52435692 │ ├── 52435692.pro │ ├── Folder1 │ │ ├── Folder2 │ │ │ ├── form.cpp │ │ │ ├── form.h │ │ │ ├── form.pri │ │ │ └── form.ui │ │ └── mycombobox.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── 52442271 │ ├── counter.cpp │ ├── counter.h │ ├── testCounter.pro │ └── tst_counter.cpp ├── 52483937 │ ├── 52483937.pro │ ├── main.cpp │ ├── userentrywidget.cpp │ ├── userentrywidget.h │ ├── userinfo.cpp │ ├── userinfo.h │ ├── useritemdelegate.cpp │ ├── useritemdelegate.h │ ├── userlistmodel.cpp │ └── userlistmodel.h ├── 52486746 │ ├── 52486746.pro │ ├── main.cpp │ ├── main.qml │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── marker.png │ └── resource.qrc ├── 52524574 │ ├── 52524574.pro │ ├── connection.h │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ └── sqltablemodel.h ├── 52581687 │ ├── 52581687.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 52583391 │ ├── 52583391.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ └── mattoqimage.h ├── 52843694 │ ├── 52843694.pro │ ├── main.cpp │ ├── main.qml │ ├── poppler-qml │ │ ├── pageImageProvider.cpp │ │ ├── pageImageProvider.h │ │ ├── pdfModel.cpp │ │ ├── pdfModel.h │ │ └── poppler-qml.pri │ └── qml.qrc ├── 52931088 │ ├── 52931088.pro │ ├── imageprovider.cpp │ ├── imageprovider.h │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 52944567 │ ├── PyCVQML │ │ ├── __init__.py │ │ ├── cvcapture.py │ │ └── cvitem.py │ ├── main.py │ └── main.qml ├── 53018492 │ ├── 53018492.pro │ ├── flightroute.h │ ├── index.html │ ├── main.cpp │ └── resource.qrc ├── 53032423 │ ├── Ressource │ │ └── LightOff.png │ └── main.py ├── 53288644 │ ├── 53288644.pro │ ├── main.cpp │ ├── mainwindow.cpp │ └── mainwindow.h ├── 53288886 │ ├── 53288886.pro │ ├── Global │ │ ├── Variables.qml │ │ └── qmldir │ ├── Tab1.ui.qml │ ├── Tab2.ui.qml │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ └── qtquickcontrols2.conf ├── 53349623 │ ├── eng-chs.qm │ ├── eng-chs.ts │ ├── eng-fr.qm │ ├── eng-fr.ts │ └── main.py ├── 53489455 │ ├── 53489455.pro │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ ├── textitem.cpp │ └── textitem.h ├── 53496605 │ ├── doublespinbox.py │ ├── main.py │ └── rvmod_gui.ui ├── 53630483 │ ├── 53630483.pro │ ├── main.cpp │ ├── wizard.cpp │ └── wizard.h ├── 53639514 │ ├── configure.py │ ├── examples │ │ └── main.py │ ├── sip │ │ ├── base.sip │ │ ├── derived.sip │ │ └── pyfoomodule.sip │ └── src │ │ ├── FooModule.pro │ │ ├── base.cpp │ │ ├── base.h │ │ ├── derived.cpp │ │ ├── derived.h │ │ └── foomodule_global.h ├── 53673924 │ ├── 53673924.pro │ ├── i18n │ │ ├── AppTranslations_de.qm │ │ ├── AppTranslations_de.ts │ │ ├── AppTranslations_en.qm │ │ ├── AppTranslations_en.ts │ │ ├── AppTranslations_no.qm │ │ ├── AppTranslations_no.ts │ │ ├── AppTranslations_ru.qm │ │ └── AppTranslations_ru.ts │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ ├── translator.cpp │ └── translator.h ├── 53711633 │ ├── 53711633.pro │ ├── MouseQml.qml │ ├── main.cpp │ ├── mousememory.cpp │ ├── mousememory.h │ └── tst_qmltest.qml ├── 53724753 │ ├── 53724753.pro │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ ├── translations │ │ ├── Lang-de.qm │ │ ├── Lang-de.ts │ │ ├── Lang-en.qm │ │ ├── Lang-en.ts │ │ ├── Lang-es.qm │ │ └── Lang-es.ts │ ├── translator.cpp │ └── translator.h ├── 53797934 │ ├── 53797934 │ │ ├── 53797934.pro │ │ ├── datasourcemodel.cpp │ │ ├── datasourcemodel.h │ │ ├── main.cpp │ │ ├── main.qml │ │ └── qml.qrc │ └── PowerTune │ │ ├── PowerTune.pro │ │ ├── connectudp.cpp │ │ ├── connectudp.h │ │ ├── datasourcemodel.cpp │ │ ├── datasourcemodel.h │ │ ├── datasourceobject.cpp │ │ ├── datasourceobject.h │ │ ├── datasources.json │ │ ├── main.cpp │ │ ├── main.qml │ │ └── qml.qrc ├── 53807281 │ ├── 53807281.pro │ ├── graphicsview.cpp │ ├── graphicsview.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── qt.png │ └── resource.qrc ├── 53829786 │ ├── 53829786.pro │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ ├── syntaxhighlighter.cpp │ └── syntaxhighlighter.h ├── 53855799 │ ├── Roboto │ │ ├── LICENSE.txt │ │ ├── Roboto-Black.ttf │ │ ├── Roboto-BlackItalic.ttf │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-BoldItalic.ttf │ │ ├── Roboto-Italic.ttf │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-LightItalic.ttf │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-MediumItalic.ttf │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto-Thin.ttf │ │ └── Roboto-ThinItalic.ttf │ └── main.py ├── 53883924 │ ├── Monospace.ttf │ ├── UbuntuMono-R.ttf │ └── main.py ├── 53899209 │ ├── main.py │ ├── pages │ │ ├── energypage.py │ │ ├── fanpage.py │ │ ├── homepage.py │ │ └── statuspage.py │ └── ui │ │ ├── energy.ui │ │ ├── fan.ui │ │ ├── home.ui │ │ ├── main.ui │ │ └── status.ui ├── 53964703 │ └── navigation │ │ ├── assets │ │ └── marker.png │ │ ├── datenbank │ │ └── facharbeit.db │ │ ├── main.cpp │ │ ├── main.qml │ │ ├── menu │ │ └── routingMenu.qml │ │ ├── navigation │ │ ├── navigation.pro │ │ ├── oldWayMenu.qml │ │ ├── python │ │ ├── create_db.py │ │ └── send_data_to_database.py │ │ ├── qml.qrc │ │ ├── qtquickcontrols2.conf │ │ └── sqlquerymodel.h ├── 54681512 │ ├── 54681512-client │ │ ├── 54681512-client.pro │ │ ├── main.cpp │ │ ├── objects.cpp │ │ └── objects.h │ ├── 54681512-server │ │ ├── 54681512-server.pro │ │ ├── main.cpp │ │ ├── minimalsource.cpp │ │ └── minimalsource.h │ ├── 54681512.pro │ └── remoteminimal.rep ├── 54695106 │ ├── 54695106-1 │ │ ├── 54695106-1.pro │ │ ├── main.cpp │ │ ├── main1.qml │ │ ├── main2.qml │ │ └── resource.qrc │ ├── 54695106-2 │ │ ├── 54695106-2.pro │ │ ├── main.cpp │ │ ├── main1.qml │ │ ├── main2.qml │ │ └── resource.qrc │ └── 54695106.pro ├── 54836382 │ ├── 54836382_within_qrc │ │ ├── main.py │ │ ├── qml.qrc │ │ ├── qml │ │ │ ├── Themes │ │ │ │ ├── Theme.qml │ │ │ │ └── qmldir │ │ │ └── main.qml │ │ └── qml_rc.py │ └── 54836382_without_qrc │ │ ├── main.py │ │ └── qml │ │ ├── Themes │ │ ├── Theme.qml │ │ └── qmldir │ │ └── main.qml ├── 55105933 │ └── proxy-osm.patch ├── 55170139 │ ├── 55170139-cpp │ │ ├── 3rdParty │ │ │ └── pdfjs-2.1.266-dist │ │ │ │ ├── LICENSE │ │ │ │ └── web │ │ │ │ ├── cmaps │ │ │ │ ├── 78-EUC-H.bcmap │ │ │ │ ├── 78-EUC-V.bcmap │ │ │ │ ├── 78-H.bcmap │ │ │ │ ├── 78-RKSJ-H.bcmap │ │ │ │ ├── 78-RKSJ-V.bcmap │ │ │ │ ├── 78-V.bcmap │ │ │ │ ├── 78ms-RKSJ-H.bcmap │ │ │ │ ├── 78ms-RKSJ-V.bcmap │ │ │ │ ├── 83pv-RKSJ-H.bcmap │ │ │ │ ├── 90ms-RKSJ-H.bcmap │ │ │ │ ├── 90ms-RKSJ-V.bcmap │ │ │ │ ├── 90msp-RKSJ-H.bcmap │ │ │ │ ├── 90msp-RKSJ-V.bcmap │ │ │ │ ├── 90pv-RKSJ-H.bcmap │ │ │ │ ├── 90pv-RKSJ-V.bcmap │ │ │ │ ├── Add-H.bcmap │ │ │ │ ├── Add-RKSJ-H.bcmap │ │ │ │ ├── Add-RKSJ-V.bcmap │ │ │ │ ├── Add-V.bcmap │ │ │ │ ├── Adobe-CNS1-0.bcmap │ │ │ │ ├── Adobe-CNS1-1.bcmap │ │ │ │ ├── Adobe-CNS1-2.bcmap │ │ │ │ ├── Adobe-CNS1-3.bcmap │ │ │ │ ├── Adobe-CNS1-4.bcmap │ │ │ │ ├── Adobe-CNS1-5.bcmap │ │ │ │ ├── Adobe-CNS1-6.bcmap │ │ │ │ ├── Adobe-CNS1-UCS2.bcmap │ │ │ │ ├── Adobe-GB1-0.bcmap │ │ │ │ ├── Adobe-GB1-1.bcmap │ │ │ │ ├── Adobe-GB1-2.bcmap │ │ │ │ ├── Adobe-GB1-3.bcmap │ │ │ │ ├── Adobe-GB1-4.bcmap │ │ │ │ ├── Adobe-GB1-5.bcmap │ │ │ │ ├── Adobe-GB1-UCS2.bcmap │ │ │ │ ├── Adobe-Japan1-0.bcmap │ │ │ │ ├── Adobe-Japan1-1.bcmap │ │ │ │ ├── Adobe-Japan1-2.bcmap │ │ │ │ ├── Adobe-Japan1-3.bcmap │ │ │ │ ├── Adobe-Japan1-4.bcmap │ │ │ │ ├── Adobe-Japan1-5.bcmap │ │ │ │ ├── Adobe-Japan1-6.bcmap │ │ │ │ ├── Adobe-Japan1-UCS2.bcmap │ │ │ │ ├── Adobe-Korea1-0.bcmap │ │ │ │ ├── Adobe-Korea1-1.bcmap │ │ │ │ ├── Adobe-Korea1-2.bcmap │ │ │ │ ├── Adobe-Korea1-UCS2.bcmap │ │ │ │ ├── B5-H.bcmap │ │ │ │ ├── B5-V.bcmap │ │ │ │ ├── B5pc-H.bcmap │ │ │ │ ├── B5pc-V.bcmap │ │ │ │ ├── CNS-EUC-H.bcmap │ │ │ │ ├── CNS-EUC-V.bcmap │ │ │ │ ├── CNS1-H.bcmap │ │ │ │ ├── CNS1-V.bcmap │ │ │ │ ├── CNS2-H.bcmap │ │ │ │ ├── CNS2-V.bcmap │ │ │ │ ├── ETHK-B5-H.bcmap │ │ │ │ ├── ETHK-B5-V.bcmap │ │ │ │ ├── ETen-B5-H.bcmap │ │ │ │ ├── ETen-B5-V.bcmap │ │ │ │ ├── ETenms-B5-H.bcmap │ │ │ │ ├── ETenms-B5-V.bcmap │ │ │ │ ├── EUC-H.bcmap │ │ │ │ ├── EUC-V.bcmap │ │ │ │ ├── Ext-H.bcmap │ │ │ │ ├── Ext-RKSJ-H.bcmap │ │ │ │ ├── Ext-RKSJ-V.bcmap │ │ │ │ ├── Ext-V.bcmap │ │ │ │ ├── GB-EUC-H.bcmap │ │ │ │ ├── GB-EUC-V.bcmap │ │ │ │ ├── GB-H.bcmap │ │ │ │ ├── GB-V.bcmap │ │ │ │ ├── GBK-EUC-H.bcmap │ │ │ │ ├── GBK-EUC-V.bcmap │ │ │ │ ├── GBK2K-H.bcmap │ │ │ │ ├── GBK2K-V.bcmap │ │ │ │ ├── GBKp-EUC-H.bcmap │ │ │ │ ├── GBKp-EUC-V.bcmap │ │ │ │ ├── GBT-EUC-H.bcmap │ │ │ │ ├── GBT-EUC-V.bcmap │ │ │ │ ├── GBT-H.bcmap │ │ │ │ ├── GBT-V.bcmap │ │ │ │ ├── GBTpc-EUC-H.bcmap │ │ │ │ ├── GBTpc-EUC-V.bcmap │ │ │ │ ├── GBpc-EUC-H.bcmap │ │ │ │ ├── GBpc-EUC-V.bcmap │ │ │ │ ├── H.bcmap │ │ │ │ ├── HKdla-B5-H.bcmap │ │ │ │ ├── HKdla-B5-V.bcmap │ │ │ │ ├── HKdlb-B5-H.bcmap │ │ │ │ ├── HKdlb-B5-V.bcmap │ │ │ │ ├── HKgccs-B5-H.bcmap │ │ │ │ ├── HKgccs-B5-V.bcmap │ │ │ │ ├── HKm314-B5-H.bcmap │ │ │ │ ├── HKm314-B5-V.bcmap │ │ │ │ ├── HKm471-B5-H.bcmap │ │ │ │ ├── HKm471-B5-V.bcmap │ │ │ │ ├── HKscs-B5-H.bcmap │ │ │ │ ├── HKscs-B5-V.bcmap │ │ │ │ ├── Hankaku.bcmap │ │ │ │ ├── Hiragana.bcmap │ │ │ │ ├── KSC-EUC-H.bcmap │ │ │ │ ├── KSC-EUC-V.bcmap │ │ │ │ ├── KSC-H.bcmap │ │ │ │ ├── KSC-Johab-H.bcmap │ │ │ │ ├── KSC-Johab-V.bcmap │ │ │ │ ├── KSC-V.bcmap │ │ │ │ ├── KSCms-UHC-H.bcmap │ │ │ │ ├── KSCms-UHC-HW-H.bcmap │ │ │ │ ├── KSCms-UHC-HW-V.bcmap │ │ │ │ ├── KSCms-UHC-V.bcmap │ │ │ │ ├── KSCpc-EUC-H.bcmap │ │ │ │ ├── KSCpc-EUC-V.bcmap │ │ │ │ ├── Katakana.bcmap │ │ │ │ ├── LICENSE │ │ │ │ ├── NWP-H.bcmap │ │ │ │ ├── NWP-V.bcmap │ │ │ │ ├── RKSJ-H.bcmap │ │ │ │ ├── RKSJ-V.bcmap │ │ │ │ ├── Roman.bcmap │ │ │ │ ├── UniCNS-UCS2-H.bcmap │ │ │ │ ├── UniCNS-UCS2-V.bcmap │ │ │ │ ├── UniCNS-UTF16-H.bcmap │ │ │ │ ├── UniCNS-UTF16-V.bcmap │ │ │ │ ├── UniCNS-UTF32-H.bcmap │ │ │ │ ├── UniCNS-UTF32-V.bcmap │ │ │ │ ├── UniCNS-UTF8-H.bcmap │ │ │ │ ├── UniCNS-UTF8-V.bcmap │ │ │ │ ├── UniGB-UCS2-H.bcmap │ │ │ │ ├── UniGB-UCS2-V.bcmap │ │ │ │ ├── UniGB-UTF16-H.bcmap │ │ │ │ ├── UniGB-UTF16-V.bcmap │ │ │ │ ├── UniGB-UTF32-H.bcmap │ │ │ │ ├── UniGB-UTF32-V.bcmap │ │ │ │ ├── UniGB-UTF8-H.bcmap │ │ │ │ ├── UniGB-UTF8-V.bcmap │ │ │ │ ├── UniJIS-UCS2-H.bcmap │ │ │ │ ├── UniJIS-UCS2-HW-H.bcmap │ │ │ │ ├── UniJIS-UCS2-HW-V.bcmap │ │ │ │ ├── UniJIS-UCS2-V.bcmap │ │ │ │ ├── UniJIS-UTF16-H.bcmap │ │ │ │ ├── UniJIS-UTF16-V.bcmap │ │ │ │ ├── UniJIS-UTF32-H.bcmap │ │ │ │ ├── UniJIS-UTF32-V.bcmap │ │ │ │ ├── UniJIS-UTF8-H.bcmap │ │ │ │ ├── UniJIS-UTF8-V.bcmap │ │ │ │ ├── UniJIS2004-UTF16-H.bcmap │ │ │ │ ├── UniJIS2004-UTF16-V.bcmap │ │ │ │ ├── UniJIS2004-UTF32-H.bcmap │ │ │ │ ├── UniJIS2004-UTF32-V.bcmap │ │ │ │ ├── UniJIS2004-UTF8-H.bcmap │ │ │ │ ├── UniJIS2004-UTF8-V.bcmap │ │ │ │ ├── UniJISPro-UCS2-HW-V.bcmap │ │ │ │ ├── UniJISPro-UCS2-V.bcmap │ │ │ │ ├── UniJISPro-UTF8-V.bcmap │ │ │ │ ├── UniJISX0213-UTF32-H.bcmap │ │ │ │ ├── UniJISX0213-UTF32-V.bcmap │ │ │ │ ├── UniJISX02132004-UTF32-H.bcmap │ │ │ │ ├── UniJISX02132004-UTF32-V.bcmap │ │ │ │ ├── UniKS-UCS2-H.bcmap │ │ │ │ ├── UniKS-UCS2-V.bcmap │ │ │ │ ├── UniKS-UTF16-H.bcmap │ │ │ │ ├── UniKS-UTF16-V.bcmap │ │ │ │ ├── UniKS-UTF32-H.bcmap │ │ │ │ ├── UniKS-UTF32-V.bcmap │ │ │ │ ├── UniKS-UTF8-H.bcmap │ │ │ │ ├── UniKS-UTF8-V.bcmap │ │ │ │ ├── V.bcmap │ │ │ │ └── WP-Symbol.bcmap │ │ │ │ ├── compressed.tracemonkey-pldi-09.pdf │ │ │ │ ├── debugger.js │ │ │ │ ├── images │ │ │ │ ├── annotation-check.svg │ │ │ │ ├── annotation-comment.svg │ │ │ │ ├── annotation-help.svg │ │ │ │ ├── annotation-insert.svg │ │ │ │ ├── annotation-key.svg │ │ │ │ ├── annotation-newparagraph.svg │ │ │ │ ├── annotation-noicon.svg │ │ │ │ ├── annotation-note.svg │ │ │ │ ├── annotation-paragraph.svg │ │ │ │ ├── findbarButton-next-rtl.png │ │ │ │ ├── findbarButton-next-rtl@2x.png │ │ │ │ ├── findbarButton-next.png │ │ │ │ ├── findbarButton-next@2x.png │ │ │ │ ├── findbarButton-previous-rtl.png │ │ │ │ ├── findbarButton-previous-rtl@2x.png │ │ │ │ ├── findbarButton-previous.png │ │ │ │ ├── findbarButton-previous@2x.png │ │ │ │ ├── grab.cur │ │ │ │ ├── grabbing.cur │ │ │ │ ├── loading-icon.gif │ │ │ │ ├── loading-small.png │ │ │ │ ├── loading-small@2x.png │ │ │ │ ├── secondaryToolbarButton-documentProperties.png │ │ │ │ ├── secondaryToolbarButton-documentProperties@2x.png │ │ │ │ ├── secondaryToolbarButton-firstPage.png │ │ │ │ ├── secondaryToolbarButton-firstPage@2x.png │ │ │ │ ├── secondaryToolbarButton-handTool.png │ │ │ │ ├── secondaryToolbarButton-handTool@2x.png │ │ │ │ ├── secondaryToolbarButton-lastPage.png │ │ │ │ ├── secondaryToolbarButton-lastPage@2x.png │ │ │ │ ├── secondaryToolbarButton-rotateCcw.png │ │ │ │ ├── secondaryToolbarButton-rotateCcw@2x.png │ │ │ │ ├── secondaryToolbarButton-rotateCw.png │ │ │ │ ├── secondaryToolbarButton-rotateCw@2x.png │ │ │ │ ├── secondaryToolbarButton-scrollHorizontal.png │ │ │ │ ├── secondaryToolbarButton-scrollHorizontal@2x.png │ │ │ │ ├── secondaryToolbarButton-scrollVertical.png │ │ │ │ ├── secondaryToolbarButton-scrollVertical@2x.png │ │ │ │ ├── secondaryToolbarButton-scrollWrapped.png │ │ │ │ ├── secondaryToolbarButton-scrollWrapped@2x.png │ │ │ │ ├── secondaryToolbarButton-selectTool.png │ │ │ │ ├── secondaryToolbarButton-selectTool@2x.png │ │ │ │ ├── secondaryToolbarButton-spreadEven.png │ │ │ │ ├── secondaryToolbarButton-spreadEven@2x.png │ │ │ │ ├── secondaryToolbarButton-spreadNone.png │ │ │ │ ├── secondaryToolbarButton-spreadNone@2x.png │ │ │ │ ├── secondaryToolbarButton-spreadOdd.png │ │ │ │ ├── secondaryToolbarButton-spreadOdd@2x.png │ │ │ │ ├── shadow.png │ │ │ │ ├── texture.png │ │ │ │ ├── toolbarButton-bookmark.png │ │ │ │ ├── toolbarButton-bookmark@2x.png │ │ │ │ ├── toolbarButton-download.png │ │ │ │ ├── toolbarButton-download@2x.png │ │ │ │ ├── toolbarButton-menuArrows.png │ │ │ │ ├── toolbarButton-menuArrows@2x.png │ │ │ │ ├── toolbarButton-openFile.png │ │ │ │ ├── toolbarButton-openFile@2x.png │ │ │ │ ├── toolbarButton-pageDown-rtl.png │ │ │ │ ├── toolbarButton-pageDown-rtl@2x.png │ │ │ │ ├── toolbarButton-pageDown.png │ │ │ │ ├── toolbarButton-pageDown@2x.png │ │ │ │ ├── toolbarButton-pageUp-rtl.png │ │ │ │ ├── toolbarButton-pageUp-rtl@2x.png │ │ │ │ ├── toolbarButton-pageUp.png │ │ │ │ ├── toolbarButton-pageUp@2x.png │ │ │ │ ├── toolbarButton-presentationMode.png │ │ │ │ ├── toolbarButton-presentationMode@2x.png │ │ │ │ ├── toolbarButton-print.png │ │ │ │ ├── toolbarButton-print@2x.png │ │ │ │ ├── toolbarButton-search.png │ │ │ │ ├── toolbarButton-search@2x.png │ │ │ │ ├── toolbarButton-secondaryToolbarToggle-rtl.png │ │ │ │ ├── toolbarButton-secondaryToolbarToggle-rtl@2x.png │ │ │ │ ├── toolbarButton-secondaryToolbarToggle.png │ │ │ │ ├── toolbarButton-secondaryToolbarToggle@2x.png │ │ │ │ ├── toolbarButton-sidebarToggle-rtl.png │ │ │ │ ├── toolbarButton-sidebarToggle-rtl@2x.png │ │ │ │ ├── toolbarButton-sidebarToggle.png │ │ │ │ ├── toolbarButton-sidebarToggle@2x.png │ │ │ │ ├── toolbarButton-viewAttachments.png │ │ │ │ ├── toolbarButton-viewAttachments@2x.png │ │ │ │ ├── toolbarButton-viewOutline-rtl.png │ │ │ │ ├── toolbarButton-viewOutline-rtl@2x.png │ │ │ │ ├── toolbarButton-viewOutline.png │ │ │ │ ├── toolbarButton-viewOutline@2x.png │ │ │ │ ├── toolbarButton-viewThumbnail.png │ │ │ │ ├── toolbarButton-viewThumbnail@2x.png │ │ │ │ ├── toolbarButton-zoomIn.png │ │ │ │ ├── toolbarButton-zoomIn@2x.png │ │ │ │ ├── toolbarButton-zoomOut.png │ │ │ │ ├── toolbarButton-zoomOut@2x.png │ │ │ │ ├── treeitem-collapsed-rtl.png │ │ │ │ ├── treeitem-collapsed-rtl@2x.png │ │ │ │ ├── treeitem-collapsed.png │ │ │ │ ├── treeitem-collapsed@2x.png │ │ │ │ ├── treeitem-expanded.png │ │ │ │ └── treeitem-expanded@2x.png │ │ │ │ ├── locale │ │ │ │ ├── ach │ │ │ │ │ └── viewer.properties │ │ │ │ ├── af │ │ │ │ │ └── viewer.properties │ │ │ │ ├── ak │ │ │ │ │ └── viewer.properties │ │ │ │ ├── an │ │ │ │ │ └── viewer.properties │ │ │ │ ├── ar │ │ │ │ │ └── viewer.properties │ │ │ │ ├── as │ │ │ │ │ └── viewer.properties │ │ │ │ ├── ast │ │ │ │ │ └── viewer.properties │ │ │ │ ├── az │ │ │ │ │ └── viewer.properties │ │ │ │ ├── be │ │ │ │ │ └── viewer.properties │ │ │ │ ├── bg │ │ │ │ │ └── viewer.properties │ │ │ │ ├── bn-BD │ │ │ │ │ └── viewer.properties │ │ │ │ ├── bn-IN │ │ │ │ │ └── viewer.properties │ │ │ │ ├── br │ │ │ │ │ └── viewer.properties │ │ │ │ ├── brx │ │ │ │ │ └── viewer.properties │ │ │ │ ├── bs │ │ │ │ │ └── viewer.properties │ │ │ │ ├── ca │ │ │ │ │ └── viewer.properties │ │ │ │ ├── cak │ │ │ │ │ └── viewer.properties │ │ │ │ ├── crh │ │ │ │ │ └── viewer.properties │ │ │ │ ├── cs │ │ │ │ │ └── viewer.properties │ │ │ │ ├── csb │ │ │ │ │ └── viewer.properties │ │ │ │ ├── cy │ │ │ │ │ └── viewer.properties │ │ │ │ ├── da │ │ │ │ │ └── viewer.properties │ │ │ │ ├── de │ │ │ │ │ └── viewer.properties │ │ │ │ ├── el │ │ │ │ │ └── viewer.properties │ │ │ │ ├── en-CA │ │ │ │ │ └── viewer.properties │ │ │ │ ├── en-GB │ │ │ │ │ └── viewer.properties │ │ │ │ ├── en-US │ │ │ │ │ └── viewer.properties │ │ │ │ ├── en-ZA │ │ │ │ │ └── viewer.properties │ │ │ │ ├── eo │ │ │ │ │ └── viewer.properties │ │ │ │ ├── es-AR │ │ │ │ │ └── viewer.properties │ │ │ │ ├── es-CL │ │ │ │ │ └── viewer.properties │ │ │ │ ├── es-ES │ │ │ │ │ └── viewer.properties │ │ │ │ ├── es-MX │ │ │ │ │ └── viewer.properties │ │ │ │ ├── et │ │ │ │ │ └── viewer.properties │ │ │ │ ├── eu │ │ │ │ │ └── viewer.properties │ │ │ │ ├── fa │ │ │ │ │ └── viewer.properties │ │ │ │ ├── ff │ │ │ │ │ └── viewer.properties │ │ │ │ ├── fi │ │ │ │ │ └── viewer.properties │ │ │ │ ├── fr │ │ │ │ │ └── viewer.properties │ │ │ │ ├── fy-NL │ │ │ │ │ └── viewer.properties │ │ │ │ ├── ga-IE │ │ │ │ │ └── viewer.properties │ │ │ │ ├── gd │ │ │ │ │ └── viewer.properties │ │ │ │ ├── gl │ │ │ │ │ └── viewer.properties │ │ │ │ ├── gn │ │ │ │ │ └── viewer.properties │ │ │ │ ├── gu-IN │ │ │ │ │ └── viewer.properties │ │ │ │ ├── he │ │ │ │ │ └── viewer.properties │ │ │ │ ├── hi-IN │ │ │ │ │ └── viewer.properties │ │ │ │ ├── hr │ │ │ │ │ └── viewer.properties │ │ │ │ ├── hsb │ │ │ │ │ └── viewer.properties │ │ │ │ ├── hto │ │ │ │ │ └── viewer.properties │ │ │ │ ├── hu │ │ │ │ │ └── viewer.properties │ │ │ │ ├── hy-AM │ │ │ │ │ └── viewer.properties │ │ │ │ ├── ia │ │ │ │ │ └── viewer.properties │ │ │ │ ├── id │ │ │ │ │ └── viewer.properties │ │ │ │ ├── is │ │ │ │ │ └── viewer.properties │ │ │ │ ├── it │ │ │ │ │ └── viewer.properties │ │ │ │ ├── ja │ │ │ │ │ └── viewer.properties │ │ │ │ ├── ka │ │ │ │ │ └── viewer.properties │ │ │ │ ├── kab │ │ │ │ │ └── viewer.properties │ │ │ │ ├── kk │ │ │ │ │ └── viewer.properties │ │ │ │ ├── km │ │ │ │ │ └── viewer.properties │ │ │ │ ├── kn │ │ │ │ │ └── viewer.properties │ │ │ │ ├── ko │ │ │ │ │ └── viewer.properties │ │ │ │ ├── kok │ │ │ │ │ └── viewer.properties │ │ │ │ ├── ks │ │ │ │ │ └── viewer.properties │ │ │ │ ├── ku │ │ │ │ │ └── viewer.properties │ │ │ │ ├── lg │ │ │ │ │ └── viewer.properties │ │ │ │ ├── lij │ │ │ │ │ └── viewer.properties │ │ │ │ ├── lo │ │ │ │ │ └── viewer.properties │ │ │ │ ├── locale.properties │ │ │ │ ├── lt │ │ │ │ │ └── viewer.properties │ │ │ │ ├── ltg │ │ │ │ │ └── viewer.properties │ │ │ │ ├── lv │ │ │ │ │ └── viewer.properties │ │ │ │ ├── mai │ │ │ │ │ └── viewer.properties │ │ │ │ ├── meh │ │ │ │ │ └── viewer.properties │ │ │ │ ├── mk │ │ │ │ │ └── viewer.properties │ │ │ │ ├── ml │ │ │ │ │ └── viewer.properties │ │ │ │ ├── mn │ │ │ │ │ └── viewer.properties │ │ │ │ ├── mr │ │ │ │ │ └── viewer.properties │ │ │ │ ├── ms │ │ │ │ │ └── viewer.properties │ │ │ │ ├── my │ │ │ │ │ └── viewer.properties │ │ │ │ ├── nb-NO │ │ │ │ │ └── viewer.properties │ │ │ │ ├── ne-NP │ │ │ │ │ └── viewer.properties │ │ │ │ ├── nl │ │ │ │ │ └── viewer.properties │ │ │ │ ├── nn-NO │ │ │ │ │ └── viewer.properties │ │ │ │ ├── nso │ │ │ │ │ └── viewer.properties │ │ │ │ ├── oc │ │ │ │ │ └── viewer.properties │ │ │ │ ├── or │ │ │ │ │ └── viewer.properties │ │ │ │ ├── pa-IN │ │ │ │ │ └── viewer.properties │ │ │ │ ├── pl │ │ │ │ │ └── viewer.properties │ │ │ │ ├── pt-BR │ │ │ │ │ └── viewer.properties │ │ │ │ ├── pt-PT │ │ │ │ │ └── viewer.properties │ │ │ │ ├── rm │ │ │ │ │ └── viewer.properties │ │ │ │ ├── ro │ │ │ │ │ └── viewer.properties │ │ │ │ ├── ru │ │ │ │ │ └── viewer.properties │ │ │ │ ├── rw │ │ │ │ │ └── viewer.properties │ │ │ │ ├── sah │ │ │ │ │ └── viewer.properties │ │ │ │ ├── sat │ │ │ │ │ └── viewer.properties │ │ │ │ ├── si │ │ │ │ │ └── viewer.properties │ │ │ │ ├── sk │ │ │ │ │ └── viewer.properties │ │ │ │ ├── sl │ │ │ │ │ └── viewer.properties │ │ │ │ ├── son │ │ │ │ │ └── viewer.properties │ │ │ │ ├── sq │ │ │ │ │ └── viewer.properties │ │ │ │ ├── sr │ │ │ │ │ └── viewer.properties │ │ │ │ ├── sv-SE │ │ │ │ │ └── viewer.properties │ │ │ │ ├── sw │ │ │ │ │ └── viewer.properties │ │ │ │ ├── ta-LK │ │ │ │ │ └── viewer.properties │ │ │ │ ├── ta │ │ │ │ │ └── viewer.properties │ │ │ │ ├── te │ │ │ │ │ └── viewer.properties │ │ │ │ ├── th │ │ │ │ │ └── viewer.properties │ │ │ │ ├── tl │ │ │ │ │ └── viewer.properties │ │ │ │ ├── tn │ │ │ │ │ └── viewer.properties │ │ │ │ ├── tr │ │ │ │ │ └── viewer.properties │ │ │ │ ├── tsz │ │ │ │ │ └── viewer.properties │ │ │ │ ├── uk │ │ │ │ │ └── viewer.properties │ │ │ │ ├── ur │ │ │ │ │ └── viewer.properties │ │ │ │ ├── uz │ │ │ │ │ └── viewer.properties │ │ │ │ ├── vi │ │ │ │ │ └── viewer.properties │ │ │ │ ├── wo │ │ │ │ │ └── viewer.properties │ │ │ │ ├── xh │ │ │ │ │ └── viewer.properties │ │ │ │ ├── zam │ │ │ │ │ └── viewer.properties │ │ │ │ ├── zh-CN │ │ │ │ │ └── viewer.properties │ │ │ │ ├── zh-TW │ │ │ │ │ └── viewer.properties │ │ │ │ └── zu │ │ │ │ │ └── viewer.properties │ │ │ │ ├── viewer.css │ │ │ │ ├── viewer.html │ │ │ │ ├── viewer.js │ │ │ │ └── viewer.js.map │ │ ├── 55170139.pro │ │ ├── example.pdf │ │ ├── main.cpp │ │ ├── main.qml │ │ └── qml.qrc │ └── 55170139-qml │ │ ├── 3rdParty │ │ └── pdfjs-2.1.266-dist │ │ │ ├── LICENSE │ │ │ └── web │ │ │ ├── cmaps │ │ │ ├── 78-EUC-H.bcmap │ │ │ ├── 78-EUC-V.bcmap │ │ │ ├── 78-H.bcmap │ │ │ ├── 78-RKSJ-H.bcmap │ │ │ ├── 78-RKSJ-V.bcmap │ │ │ ├── 78-V.bcmap │ │ │ ├── 78ms-RKSJ-H.bcmap │ │ │ ├── 78ms-RKSJ-V.bcmap │ │ │ ├── 83pv-RKSJ-H.bcmap │ │ │ ├── 90ms-RKSJ-H.bcmap │ │ │ ├── 90ms-RKSJ-V.bcmap │ │ │ ├── 90msp-RKSJ-H.bcmap │ │ │ ├── 90msp-RKSJ-V.bcmap │ │ │ ├── 90pv-RKSJ-H.bcmap │ │ │ ├── 90pv-RKSJ-V.bcmap │ │ │ ├── Add-H.bcmap │ │ │ ├── Add-RKSJ-H.bcmap │ │ │ ├── Add-RKSJ-V.bcmap │ │ │ ├── Add-V.bcmap │ │ │ ├── Adobe-CNS1-0.bcmap │ │ │ ├── Adobe-CNS1-1.bcmap │ │ │ ├── Adobe-CNS1-2.bcmap │ │ │ ├── Adobe-CNS1-3.bcmap │ │ │ ├── Adobe-CNS1-4.bcmap │ │ │ ├── Adobe-CNS1-5.bcmap │ │ │ ├── Adobe-CNS1-6.bcmap │ │ │ ├── Adobe-CNS1-UCS2.bcmap │ │ │ ├── Adobe-GB1-0.bcmap │ │ │ ├── Adobe-GB1-1.bcmap │ │ │ ├── Adobe-GB1-2.bcmap │ │ │ ├── Adobe-GB1-3.bcmap │ │ │ ├── Adobe-GB1-4.bcmap │ │ │ ├── Adobe-GB1-5.bcmap │ │ │ ├── Adobe-GB1-UCS2.bcmap │ │ │ ├── Adobe-Japan1-0.bcmap │ │ │ ├── Adobe-Japan1-1.bcmap │ │ │ ├── Adobe-Japan1-2.bcmap │ │ │ ├── Adobe-Japan1-3.bcmap │ │ │ ├── Adobe-Japan1-4.bcmap │ │ │ ├── Adobe-Japan1-5.bcmap │ │ │ ├── Adobe-Japan1-6.bcmap │ │ │ ├── Adobe-Japan1-UCS2.bcmap │ │ │ ├── Adobe-Korea1-0.bcmap │ │ │ ├── Adobe-Korea1-1.bcmap │ │ │ ├── Adobe-Korea1-2.bcmap │ │ │ ├── Adobe-Korea1-UCS2.bcmap │ │ │ ├── B5-H.bcmap │ │ │ ├── B5-V.bcmap │ │ │ ├── B5pc-H.bcmap │ │ │ ├── B5pc-V.bcmap │ │ │ ├── CNS-EUC-H.bcmap │ │ │ ├── CNS-EUC-V.bcmap │ │ │ ├── CNS1-H.bcmap │ │ │ ├── CNS1-V.bcmap │ │ │ ├── CNS2-H.bcmap │ │ │ ├── CNS2-V.bcmap │ │ │ ├── ETHK-B5-H.bcmap │ │ │ ├── ETHK-B5-V.bcmap │ │ │ ├── ETen-B5-H.bcmap │ │ │ ├── ETen-B5-V.bcmap │ │ │ ├── ETenms-B5-H.bcmap │ │ │ ├── ETenms-B5-V.bcmap │ │ │ ├── EUC-H.bcmap │ │ │ ├── EUC-V.bcmap │ │ │ ├── Ext-H.bcmap │ │ │ ├── Ext-RKSJ-H.bcmap │ │ │ ├── Ext-RKSJ-V.bcmap │ │ │ ├── Ext-V.bcmap │ │ │ ├── GB-EUC-H.bcmap │ │ │ ├── GB-EUC-V.bcmap │ │ │ ├── GB-H.bcmap │ │ │ ├── GB-V.bcmap │ │ │ ├── GBK-EUC-H.bcmap │ │ │ ├── GBK-EUC-V.bcmap │ │ │ ├── GBK2K-H.bcmap │ │ │ ├── GBK2K-V.bcmap │ │ │ ├── GBKp-EUC-H.bcmap │ │ │ ├── GBKp-EUC-V.bcmap │ │ │ ├── GBT-EUC-H.bcmap │ │ │ ├── GBT-EUC-V.bcmap │ │ │ ├── GBT-H.bcmap │ │ │ ├── GBT-V.bcmap │ │ │ ├── GBTpc-EUC-H.bcmap │ │ │ ├── GBTpc-EUC-V.bcmap │ │ │ ├── GBpc-EUC-H.bcmap │ │ │ ├── GBpc-EUC-V.bcmap │ │ │ ├── H.bcmap │ │ │ ├── HKdla-B5-H.bcmap │ │ │ ├── HKdla-B5-V.bcmap │ │ │ ├── HKdlb-B5-H.bcmap │ │ │ ├── HKdlb-B5-V.bcmap │ │ │ ├── HKgccs-B5-H.bcmap │ │ │ ├── HKgccs-B5-V.bcmap │ │ │ ├── HKm314-B5-H.bcmap │ │ │ ├── HKm314-B5-V.bcmap │ │ │ ├── HKm471-B5-H.bcmap │ │ │ ├── HKm471-B5-V.bcmap │ │ │ ├── HKscs-B5-H.bcmap │ │ │ ├── HKscs-B5-V.bcmap │ │ │ ├── Hankaku.bcmap │ │ │ ├── Hiragana.bcmap │ │ │ ├── KSC-EUC-H.bcmap │ │ │ ├── KSC-EUC-V.bcmap │ │ │ ├── KSC-H.bcmap │ │ │ ├── KSC-Johab-H.bcmap │ │ │ ├── KSC-Johab-V.bcmap │ │ │ ├── KSC-V.bcmap │ │ │ ├── KSCms-UHC-H.bcmap │ │ │ ├── KSCms-UHC-HW-H.bcmap │ │ │ ├── KSCms-UHC-HW-V.bcmap │ │ │ ├── KSCms-UHC-V.bcmap │ │ │ ├── KSCpc-EUC-H.bcmap │ │ │ ├── KSCpc-EUC-V.bcmap │ │ │ ├── Katakana.bcmap │ │ │ ├── LICENSE │ │ │ ├── NWP-H.bcmap │ │ │ ├── NWP-V.bcmap │ │ │ ├── RKSJ-H.bcmap │ │ │ ├── RKSJ-V.bcmap │ │ │ ├── Roman.bcmap │ │ │ ├── UniCNS-UCS2-H.bcmap │ │ │ ├── UniCNS-UCS2-V.bcmap │ │ │ ├── UniCNS-UTF16-H.bcmap │ │ │ ├── UniCNS-UTF16-V.bcmap │ │ │ ├── UniCNS-UTF32-H.bcmap │ │ │ ├── UniCNS-UTF32-V.bcmap │ │ │ ├── UniCNS-UTF8-H.bcmap │ │ │ ├── UniCNS-UTF8-V.bcmap │ │ │ ├── UniGB-UCS2-H.bcmap │ │ │ ├── UniGB-UCS2-V.bcmap │ │ │ ├── UniGB-UTF16-H.bcmap │ │ │ ├── UniGB-UTF16-V.bcmap │ │ │ ├── UniGB-UTF32-H.bcmap │ │ │ ├── UniGB-UTF32-V.bcmap │ │ │ ├── UniGB-UTF8-H.bcmap │ │ │ ├── UniGB-UTF8-V.bcmap │ │ │ ├── UniJIS-UCS2-H.bcmap │ │ │ ├── UniJIS-UCS2-HW-H.bcmap │ │ │ ├── UniJIS-UCS2-HW-V.bcmap │ │ │ ├── UniJIS-UCS2-V.bcmap │ │ │ ├── UniJIS-UTF16-H.bcmap │ │ │ ├── UniJIS-UTF16-V.bcmap │ │ │ ├── UniJIS-UTF32-H.bcmap │ │ │ ├── UniJIS-UTF32-V.bcmap │ │ │ ├── UniJIS-UTF8-H.bcmap │ │ │ ├── UniJIS-UTF8-V.bcmap │ │ │ ├── UniJIS2004-UTF16-H.bcmap │ │ │ ├── UniJIS2004-UTF16-V.bcmap │ │ │ ├── UniJIS2004-UTF32-H.bcmap │ │ │ ├── UniJIS2004-UTF32-V.bcmap │ │ │ ├── UniJIS2004-UTF8-H.bcmap │ │ │ ├── UniJIS2004-UTF8-V.bcmap │ │ │ ├── UniJISPro-UCS2-HW-V.bcmap │ │ │ ├── UniJISPro-UCS2-V.bcmap │ │ │ ├── UniJISPro-UTF8-V.bcmap │ │ │ ├── UniJISX0213-UTF32-H.bcmap │ │ │ ├── UniJISX0213-UTF32-V.bcmap │ │ │ ├── UniJISX02132004-UTF32-H.bcmap │ │ │ ├── UniJISX02132004-UTF32-V.bcmap │ │ │ ├── UniKS-UCS2-H.bcmap │ │ │ ├── UniKS-UCS2-V.bcmap │ │ │ ├── UniKS-UTF16-H.bcmap │ │ │ ├── UniKS-UTF16-V.bcmap │ │ │ ├── UniKS-UTF32-H.bcmap │ │ │ ├── UniKS-UTF32-V.bcmap │ │ │ ├── UniKS-UTF8-H.bcmap │ │ │ ├── UniKS-UTF8-V.bcmap │ │ │ ├── V.bcmap │ │ │ └── WP-Symbol.bcmap │ │ │ ├── compressed.tracemonkey-pldi-09.pdf │ │ │ ├── debugger.js │ │ │ ├── images │ │ │ ├── annotation-check.svg │ │ │ ├── annotation-comment.svg │ │ │ ├── annotation-help.svg │ │ │ ├── annotation-insert.svg │ │ │ ├── annotation-key.svg │ │ │ ├── annotation-newparagraph.svg │ │ │ ├── annotation-noicon.svg │ │ │ ├── annotation-note.svg │ │ │ ├── annotation-paragraph.svg │ │ │ ├── findbarButton-next-rtl.png │ │ │ ├── findbarButton-next-rtl@2x.png │ │ │ ├── findbarButton-next.png │ │ │ ├── findbarButton-next@2x.png │ │ │ ├── findbarButton-previous-rtl.png │ │ │ ├── findbarButton-previous-rtl@2x.png │ │ │ ├── findbarButton-previous.png │ │ │ ├── findbarButton-previous@2x.png │ │ │ ├── grab.cur │ │ │ ├── grabbing.cur │ │ │ ├── loading-icon.gif │ │ │ ├── loading-small.png │ │ │ ├── loading-small@2x.png │ │ │ ├── secondaryToolbarButton-documentProperties.png │ │ │ ├── secondaryToolbarButton-documentProperties@2x.png │ │ │ ├── secondaryToolbarButton-firstPage.png │ │ │ ├── secondaryToolbarButton-firstPage@2x.png │ │ │ ├── secondaryToolbarButton-handTool.png │ │ │ ├── secondaryToolbarButton-handTool@2x.png │ │ │ ├── secondaryToolbarButton-lastPage.png │ │ │ ├── secondaryToolbarButton-lastPage@2x.png │ │ │ ├── secondaryToolbarButton-rotateCcw.png │ │ │ ├── secondaryToolbarButton-rotateCcw@2x.png │ │ │ ├── secondaryToolbarButton-rotateCw.png │ │ │ ├── secondaryToolbarButton-rotateCw@2x.png │ │ │ ├── secondaryToolbarButton-scrollHorizontal.png │ │ │ ├── secondaryToolbarButton-scrollHorizontal@2x.png │ │ │ ├── secondaryToolbarButton-scrollVertical.png │ │ │ ├── secondaryToolbarButton-scrollVertical@2x.png │ │ │ ├── secondaryToolbarButton-scrollWrapped.png │ │ │ ├── secondaryToolbarButton-scrollWrapped@2x.png │ │ │ ├── secondaryToolbarButton-selectTool.png │ │ │ ├── secondaryToolbarButton-selectTool@2x.png │ │ │ ├── secondaryToolbarButton-spreadEven.png │ │ │ ├── secondaryToolbarButton-spreadEven@2x.png │ │ │ ├── secondaryToolbarButton-spreadNone.png │ │ │ ├── secondaryToolbarButton-spreadNone@2x.png │ │ │ ├── secondaryToolbarButton-spreadOdd.png │ │ │ ├── secondaryToolbarButton-spreadOdd@2x.png │ │ │ ├── shadow.png │ │ │ ├── texture.png │ │ │ ├── toolbarButton-bookmark.png │ │ │ ├── toolbarButton-bookmark@2x.png │ │ │ ├── toolbarButton-download.png │ │ │ ├── toolbarButton-download@2x.png │ │ │ ├── toolbarButton-menuArrows.png │ │ │ ├── toolbarButton-menuArrows@2x.png │ │ │ ├── toolbarButton-openFile.png │ │ │ ├── toolbarButton-openFile@2x.png │ │ │ ├── toolbarButton-pageDown-rtl.png │ │ │ ├── toolbarButton-pageDown-rtl@2x.png │ │ │ ├── toolbarButton-pageDown.png │ │ │ ├── toolbarButton-pageDown@2x.png │ │ │ ├── toolbarButton-pageUp-rtl.png │ │ │ ├── toolbarButton-pageUp-rtl@2x.png │ │ │ ├── toolbarButton-pageUp.png │ │ │ ├── toolbarButton-pageUp@2x.png │ │ │ ├── toolbarButton-presentationMode.png │ │ │ ├── toolbarButton-presentationMode@2x.png │ │ │ ├── toolbarButton-print.png │ │ │ ├── toolbarButton-print@2x.png │ │ │ ├── toolbarButton-search.png │ │ │ ├── toolbarButton-search@2x.png │ │ │ ├── toolbarButton-secondaryToolbarToggle-rtl.png │ │ │ ├── toolbarButton-secondaryToolbarToggle-rtl@2x.png │ │ │ ├── toolbarButton-secondaryToolbarToggle.png │ │ │ ├── toolbarButton-secondaryToolbarToggle@2x.png │ │ │ ├── toolbarButton-sidebarToggle-rtl.png │ │ │ ├── toolbarButton-sidebarToggle-rtl@2x.png │ │ │ ├── toolbarButton-sidebarToggle.png │ │ │ ├── toolbarButton-sidebarToggle@2x.png │ │ │ ├── toolbarButton-viewAttachments.png │ │ │ ├── toolbarButton-viewAttachments@2x.png │ │ │ ├── toolbarButton-viewOutline-rtl.png │ │ │ ├── toolbarButton-viewOutline-rtl@2x.png │ │ │ ├── toolbarButton-viewOutline.png │ │ │ ├── toolbarButton-viewOutline@2x.png │ │ │ ├── toolbarButton-viewThumbnail.png │ │ │ ├── toolbarButton-viewThumbnail@2x.png │ │ │ ├── toolbarButton-zoomIn.png │ │ │ ├── toolbarButton-zoomIn@2x.png │ │ │ ├── toolbarButton-zoomOut.png │ │ │ ├── toolbarButton-zoomOut@2x.png │ │ │ ├── treeitem-collapsed-rtl.png │ │ │ ├── treeitem-collapsed-rtl@2x.png │ │ │ ├── treeitem-collapsed.png │ │ │ ├── treeitem-collapsed@2x.png │ │ │ ├── treeitem-expanded.png │ │ │ └── treeitem-expanded@2x.png │ │ │ ├── locale │ │ │ ├── ach │ │ │ │ └── viewer.properties │ │ │ ├── af │ │ │ │ └── viewer.properties │ │ │ ├── ak │ │ │ │ └── viewer.properties │ │ │ ├── an │ │ │ │ └── viewer.properties │ │ │ ├── ar │ │ │ │ └── viewer.properties │ │ │ ├── as │ │ │ │ └── viewer.properties │ │ │ ├── ast │ │ │ │ └── viewer.properties │ │ │ ├── az │ │ │ │ └── viewer.properties │ │ │ ├── be │ │ │ │ └── viewer.properties │ │ │ ├── bg │ │ │ │ └── viewer.properties │ │ │ ├── bn-BD │ │ │ │ └── viewer.properties │ │ │ ├── bn-IN │ │ │ │ └── viewer.properties │ │ │ ├── br │ │ │ │ └── viewer.properties │ │ │ ├── brx │ │ │ │ └── viewer.properties │ │ │ ├── bs │ │ │ │ └── viewer.properties │ │ │ ├── ca │ │ │ │ └── viewer.properties │ │ │ ├── cak │ │ │ │ └── viewer.properties │ │ │ ├── crh │ │ │ │ └── viewer.properties │ │ │ ├── cs │ │ │ │ └── viewer.properties │ │ │ ├── csb │ │ │ │ └── viewer.properties │ │ │ ├── cy │ │ │ │ └── viewer.properties │ │ │ ├── da │ │ │ │ └── viewer.properties │ │ │ ├── de │ │ │ │ └── viewer.properties │ │ │ ├── el │ │ │ │ └── viewer.properties │ │ │ ├── en-CA │ │ │ │ └── viewer.properties │ │ │ ├── en-GB │ │ │ │ └── viewer.properties │ │ │ ├── en-US │ │ │ │ └── viewer.properties │ │ │ ├── en-ZA │ │ │ │ └── viewer.properties │ │ │ ├── eo │ │ │ │ └── viewer.properties │ │ │ ├── es-AR │ │ │ │ └── viewer.properties │ │ │ ├── es-CL │ │ │ │ └── viewer.properties │ │ │ ├── es-ES │ │ │ │ └── viewer.properties │ │ │ ├── es-MX │ │ │ │ └── viewer.properties │ │ │ ├── et │ │ │ │ └── viewer.properties │ │ │ ├── eu │ │ │ │ └── viewer.properties │ │ │ ├── fa │ │ │ │ └── viewer.properties │ │ │ ├── ff │ │ │ │ └── viewer.properties │ │ │ ├── fi │ │ │ │ └── viewer.properties │ │ │ ├── fr │ │ │ │ └── viewer.properties │ │ │ ├── fy-NL │ │ │ │ └── viewer.properties │ │ │ ├── ga-IE │ │ │ │ └── viewer.properties │ │ │ ├── gd │ │ │ │ └── viewer.properties │ │ │ ├── gl │ │ │ │ └── viewer.properties │ │ │ ├── gn │ │ │ │ └── viewer.properties │ │ │ ├── gu-IN │ │ │ │ └── viewer.properties │ │ │ ├── he │ │ │ │ └── viewer.properties │ │ │ ├── hi-IN │ │ │ │ └── viewer.properties │ │ │ ├── hr │ │ │ │ └── viewer.properties │ │ │ ├── hsb │ │ │ │ └── viewer.properties │ │ │ ├── hto │ │ │ │ └── viewer.properties │ │ │ ├── hu │ │ │ │ └── viewer.properties │ │ │ ├── hy-AM │ │ │ │ └── viewer.properties │ │ │ ├── ia │ │ │ │ └── viewer.properties │ │ │ ├── id │ │ │ │ └── viewer.properties │ │ │ ├── is │ │ │ │ └── viewer.properties │ │ │ ├── it │ │ │ │ └── viewer.properties │ │ │ ├── ja │ │ │ │ └── viewer.properties │ │ │ ├── ka │ │ │ │ └── viewer.properties │ │ │ ├── kab │ │ │ │ └── viewer.properties │ │ │ ├── kk │ │ │ │ └── viewer.properties │ │ │ ├── km │ │ │ │ └── viewer.properties │ │ │ ├── kn │ │ │ │ └── viewer.properties │ │ │ ├── ko │ │ │ │ └── viewer.properties │ │ │ ├── kok │ │ │ │ └── viewer.properties │ │ │ ├── ks │ │ │ │ └── viewer.properties │ │ │ ├── ku │ │ │ │ └── viewer.properties │ │ │ ├── lg │ │ │ │ └── viewer.properties │ │ │ ├── lij │ │ │ │ └── viewer.properties │ │ │ ├── lo │ │ │ │ └── viewer.properties │ │ │ ├── locale.properties │ │ │ ├── lt │ │ │ │ └── viewer.properties │ │ │ ├── ltg │ │ │ │ └── viewer.properties │ │ │ ├── lv │ │ │ │ └── viewer.properties │ │ │ ├── mai │ │ │ │ └── viewer.properties │ │ │ ├── meh │ │ │ │ └── viewer.properties │ │ │ ├── mk │ │ │ │ └── viewer.properties │ │ │ ├── ml │ │ │ │ └── viewer.properties │ │ │ ├── mn │ │ │ │ └── viewer.properties │ │ │ ├── mr │ │ │ │ └── viewer.properties │ │ │ ├── ms │ │ │ │ └── viewer.properties │ │ │ ├── my │ │ │ │ └── viewer.properties │ │ │ ├── nb-NO │ │ │ │ └── viewer.properties │ │ │ ├── ne-NP │ │ │ │ └── viewer.properties │ │ │ ├── nl │ │ │ │ └── viewer.properties │ │ │ ├── nn-NO │ │ │ │ └── viewer.properties │ │ │ ├── nso │ │ │ │ └── viewer.properties │ │ │ ├── oc │ │ │ │ └── viewer.properties │ │ │ ├── or │ │ │ │ └── viewer.properties │ │ │ ├── pa-IN │ │ │ │ └── viewer.properties │ │ │ ├── pl │ │ │ │ └── viewer.properties │ │ │ ├── pt-BR │ │ │ │ └── viewer.properties │ │ │ ├── pt-PT │ │ │ │ └── viewer.properties │ │ │ ├── rm │ │ │ │ └── viewer.properties │ │ │ ├── ro │ │ │ │ └── viewer.properties │ │ │ ├── ru │ │ │ │ └── viewer.properties │ │ │ ├── rw │ │ │ │ └── viewer.properties │ │ │ ├── sah │ │ │ │ └── viewer.properties │ │ │ ├── sat │ │ │ │ └── viewer.properties │ │ │ ├── si │ │ │ │ └── viewer.properties │ │ │ ├── sk │ │ │ │ └── viewer.properties │ │ │ ├── sl │ │ │ │ └── viewer.properties │ │ │ ├── son │ │ │ │ └── viewer.properties │ │ │ ├── sq │ │ │ │ └── viewer.properties │ │ │ ├── sr │ │ │ │ └── viewer.properties │ │ │ ├── sv-SE │ │ │ │ └── viewer.properties │ │ │ ├── sw │ │ │ │ └── viewer.properties │ │ │ ├── ta-LK │ │ │ │ └── viewer.properties │ │ │ ├── ta │ │ │ │ └── viewer.properties │ │ │ ├── te │ │ │ │ └── viewer.properties │ │ │ ├── th │ │ │ │ └── viewer.properties │ │ │ ├── tl │ │ │ │ └── viewer.properties │ │ │ ├── tn │ │ │ │ └── viewer.properties │ │ │ ├── tr │ │ │ │ └── viewer.properties │ │ │ ├── tsz │ │ │ │ └── viewer.properties │ │ │ ├── uk │ │ │ │ └── viewer.properties │ │ │ ├── ur │ │ │ │ └── viewer.properties │ │ │ ├── uz │ │ │ │ └── viewer.properties │ │ │ ├── vi │ │ │ │ └── viewer.properties │ │ │ ├── wo │ │ │ │ └── viewer.properties │ │ │ ├── xh │ │ │ │ └── viewer.properties │ │ │ ├── zam │ │ │ │ └── viewer.properties │ │ │ ├── zh-CN │ │ │ │ └── viewer.properties │ │ │ ├── zh-TW │ │ │ │ └── viewer.properties │ │ │ └── zu │ │ │ │ └── viewer.properties │ │ │ ├── viewer.css │ │ │ ├── viewer.html │ │ │ ├── viewer.js │ │ │ └── viewer.js.map │ │ ├── example.pdf │ │ └── main.qml ├── 55176915 │ ├── .directory │ ├── 55176915.pro │ ├── flower.cpp │ ├── flower.h │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 55200746 │ ├── 55200746.pro │ ├── foomodel.h │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 55212321 │ └── yellowpagescraper │ │ ├── .gitignore │ │ ├── README.md │ │ ├── assets │ │ └── icons │ │ │ ├── add.png │ │ │ └── remove.png │ │ ├── gui.py │ │ ├── requirements.txt │ │ ├── scrape │ │ ├── scrape │ │ │ ├── __init__.py │ │ │ ├── items.py │ │ │ ├── middlewares.py │ │ │ ├── pipelines.py │ │ │ ├── settings.py │ │ │ └── spiders │ │ │ │ ├── __init__.py │ │ │ │ └── yellowpage_spider.py │ │ └── scrapy.cfg │ │ ├── screenshot.png │ │ ├── terminal.py │ │ └── utils.py ├── 55241644 │ ├── convert_pyqt5_to_pyside2.py │ ├── fakeuic │ │ ├── Compiler │ │ │ ├── __init__.py │ │ │ ├── compiler.py │ │ │ ├── indenter.py │ │ │ ├── misc.py │ │ │ ├── proxy_metaclass.py │ │ │ ├── qobjectcreator.py │ │ │ └── qtproxies.py │ │ ├── Loader │ │ │ ├── __init__.py │ │ │ ├── loader.py │ │ │ └── qobjectcreator.py │ │ ├── __init__.py │ │ ├── driver.py │ │ ├── exceptions.py │ │ ├── icon_cache.py │ │ ├── objcreator.py │ │ ├── port_v2 │ │ │ ├── __init__.py │ │ │ ├── as_string.py │ │ │ ├── ascii_upper.py │ │ │ ├── proxy_base.py │ │ │ └── string_io.py │ │ ├── port_v3 │ │ │ ├── __init__.py │ │ │ ├── as_string.py │ │ │ ├── ascii_upper.py │ │ │ ├── proxy_base.py │ │ │ └── string_io.py │ │ ├── properties.py │ │ ├── pyuic.py │ │ ├── uiparser.py │ │ └── widget-plugins │ │ │ ├── qaxcontainer.py │ │ │ ├── qscintilla.py │ │ │ ├── qtcharts.py │ │ │ ├── qtprintsupport.py │ │ │ ├── qtquickwidgets.py │ │ │ ├── qtwebenginewidgets.py │ │ │ └── qtwebkit.py │ └── main.py ├── 55366046 │ ├── key.svg │ └── main.py ├── 55390091 │ ├── 55390091.pro │ ├── main.cpp │ ├── main.qml │ ├── marker.png │ ├── marker.qml │ ├── qml.qrc │ └── resource.qrc ├── 55505012 │ ├── main.py │ ├── test.ui │ ├── test_sub.ui │ ├── test_sub_ui.py │ └── test_ui.py ├── 55541882 │ ├── cpp-zmq │ │ ├── cpp-zmq.pro │ │ └── main.cpp │ └── py │ │ ├── pub.py │ │ └── sub.py ├── 55585443 │ ├── 55585443.pro │ ├── Roboto │ │ ├── LICENSE.txt │ │ ├── Roboto-Black.ttf │ │ ├── Roboto-BlackItalic.ttf │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-BoldItalic.ttf │ │ ├── Roboto-Italic.ttf │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-LightItalic.ttf │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-MediumItalic.ttf │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto-Thin.ttf │ │ └── Roboto-ThinItalic.ttf │ ├── main.cpp │ └── resource.qrc ├── 55586755 │ ├── 55586755.pro │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ ├── shortcutcollection.cpp │ ├── shortcutcollection.h │ ├── shortcutitem.cpp │ └── shortcutitem.h ├── 55610163 │ ├── 55610163.pro │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ ├── tablemodel.cpp │ └── tablemodel.h ├── 55685163 │ ├── 55685163.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── python-modules │ │ ├── DialogoImprimir.py │ │ └── plugin_loader.py │ ├── pythonutils.cpp │ └── pythonutils.h ├── 55695104 │ ├── 55695104.pro │ ├── datasourcemodel.cpp │ ├── datasourcemodel.h │ ├── datasourceobject.cpp │ ├── datasourceobject.h │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 55707726 │ ├── icons │ │ ├── baseline-check_box-24px.svg │ │ └── baseline-check_box_outline_blank-24px.svg │ └── main.py ├── 55720316 │ ├── 55720316-qdialogbuttonbox │ │ ├── 55720316.pro │ │ ├── dialog.cpp │ │ ├── dialog.h │ │ ├── dialog.ui │ │ ├── groupswidget.cpp │ │ ├── groupswidget.h │ │ ├── groupswidget.ui │ │ └── main.cpp │ └── 55720316-qpushbutton │ │ ├── 55720316-2.pro │ │ ├── dialog.cpp │ │ ├── dialog.h │ │ ├── dialog.ui │ │ ├── groupswidget.cpp │ │ ├── groupswidget.h │ │ ├── groupswidget.ui │ │ └── main.cpp ├── 55787138 │ ├── 55787138.pro │ ├── MainWindow.h │ ├── TableModel.h │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 55857689 │ ├── .gitignore │ ├── 55857689.pro │ ├── cbottom.h │ ├── cmiddle.h │ ├── ctop.h │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 55945085 │ ├── CMakeLists.txt │ ├── README.md │ ├── pyslam_qt_test.py │ └── slam.cpp ├── 55959827 │ ├── AddAssignmentDialog.py │ ├── AddAssignmentDialog_ui.py │ ├── AssignmentSectionWindow.py │ ├── AssignmentSectionWindow_ui.py │ └── uis │ │ ├── AddAssignmentDialog.ui │ │ └── AssignmentSectionWindow.ui ├── 56103353 │ ├── 56103353-1 │ │ ├── 56103353.pro │ │ ├── i18n │ │ │ ├── 56103353_en.qm │ │ │ ├── 56103353_en.ts │ │ │ ├── 56103353_es.qm │ │ │ └── 56103353_es.ts │ │ ├── main.cpp │ │ ├── main.qml │ │ ├── qml.qrc │ │ ├── translator.cpp │ │ └── translator.h │ └── 56103353-2 │ │ ├── 56103353-2.pro │ │ ├── WipeoutViewer_fr.qm │ │ ├── WipeoutViewer_fr.ts │ │ ├── main.cpp │ │ ├── main.qml │ │ ├── qml.qrc │ │ ├── translator.cpp │ │ └── translator.h ├── 56264007 │ ├── 56264007.pro │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ ├── treeelement.cpp │ ├── treeelement.h │ ├── treemodel.cpp │ └── treemodel.h ├── 56285169 │ ├── 56285169.pro │ ├── data_gps.txt │ ├── main.cpp │ ├── main.qml │ ├── marker.png │ ├── qml.qrc │ └── resource.qrc ├── 56425038 │ ├── 56425038.pro │ ├── Marker.qml │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── mapmark.png │ ├── mapview.qml │ ├── markermodel.cpp │ ├── markermodel.h │ └── resource.qrc ├── 56614203 │ ├── 56614203.pro │ ├── coordinatemodel.cpp │ ├── coordinatemodel.h │ ├── main.cpp │ ├── main.qml │ ├── mapwidget.cpp │ ├── mapwidget.h │ └── qml.qrc ├── 57185927 │ ├── 57185927-1 │ │ ├── main.py │ │ ├── main.spec │ │ └── wizardUI │ │ │ ├── 1.welcomePage.ui │ │ │ ├── 10.toolBoxBtns.ui │ │ │ ├── 11.toolBoxShrCt.ui │ │ │ ├── 12.propertyBox.ui │ │ │ ├── 13.printing.ui │ │ │ ├── 14.settings.ui │ │ │ ├── 15.coclusion.ui │ │ │ ├── 2.graphicsScene.ui │ │ │ ├── 3.graphicsSceneText.ui │ │ │ ├── 4.textDialog.ui │ │ │ ├── 5.codeDialog.ui │ │ │ ├── 6.graphicsSceneBox.ui │ │ │ ├── 7.graphicsScenePixmap.ui │ │ │ ├── 8.graphicsSceneShrCt.ui │ │ │ ├── 9.toolbox.ui │ │ │ └── wizard.py │ └── 57185927-2 │ │ ├── main.py │ │ ├── main.spec │ │ ├── resource.qrc │ │ ├── resource_rc.py │ │ └── wizardUI │ │ ├── 1.welcomePage.ui │ │ ├── 10.toolBoxBtns.ui │ │ ├── 11.toolBoxShrCt.ui │ │ ├── 12.propertyBox.ui │ │ ├── 13.printing.ui │ │ ├── 14.settings.ui │ │ ├── 15.coclusion.ui │ │ ├── 2.graphicsScene.ui │ │ ├── 3.graphicsSceneText.ui │ │ ├── 4.textDialog.ui │ │ ├── 5.codeDialog.ui │ │ ├── 6.graphicsSceneBox.ui │ │ ├── 7.graphicsScenePixmap.ui │ │ ├── 8.graphicsSceneShrCt.ui │ │ ├── 9.toolbox.ui │ │ └── wizard.py ├── 57201204 │ └── main.py ├── 57212814 │ ├── 57212814.pro │ └── main.cpp ├── 57246615 │ ├── 3rdParty │ │ └── pdfjs-2.1.266-dist │ │ │ ├── LICENSE │ │ │ └── web │ │ │ ├── cmaps │ │ │ ├── 78-EUC-H.bcmap │ │ │ ├── 78-EUC-V.bcmap │ │ │ ├── 78-H.bcmap │ │ │ ├── 78-RKSJ-H.bcmap │ │ │ ├── 78-RKSJ-V.bcmap │ │ │ ├── 78-V.bcmap │ │ │ ├── 78ms-RKSJ-H.bcmap │ │ │ ├── 78ms-RKSJ-V.bcmap │ │ │ ├── 83pv-RKSJ-H.bcmap │ │ │ ├── 90ms-RKSJ-H.bcmap │ │ │ ├── 90ms-RKSJ-V.bcmap │ │ │ ├── 90msp-RKSJ-H.bcmap │ │ │ ├── 90msp-RKSJ-V.bcmap │ │ │ ├── 90pv-RKSJ-H.bcmap │ │ │ ├── 90pv-RKSJ-V.bcmap │ │ │ ├── Add-H.bcmap │ │ │ ├── Add-RKSJ-H.bcmap │ │ │ ├── Add-RKSJ-V.bcmap │ │ │ ├── Add-V.bcmap │ │ │ ├── Adobe-CNS1-0.bcmap │ │ │ ├── Adobe-CNS1-1.bcmap │ │ │ ├── Adobe-CNS1-2.bcmap │ │ │ ├── Adobe-CNS1-3.bcmap │ │ │ ├── Adobe-CNS1-4.bcmap │ │ │ ├── Adobe-CNS1-5.bcmap │ │ │ ├── Adobe-CNS1-6.bcmap │ │ │ ├── Adobe-CNS1-UCS2.bcmap │ │ │ ├── Adobe-GB1-0.bcmap │ │ │ ├── Adobe-GB1-1.bcmap │ │ │ ├── Adobe-GB1-2.bcmap │ │ │ ├── Adobe-GB1-3.bcmap │ │ │ ├── Adobe-GB1-4.bcmap │ │ │ ├── Adobe-GB1-5.bcmap │ │ │ ├── Adobe-GB1-UCS2.bcmap │ │ │ ├── Adobe-Japan1-0.bcmap │ │ │ ├── Adobe-Japan1-1.bcmap │ │ │ ├── Adobe-Japan1-2.bcmap │ │ │ ├── Adobe-Japan1-3.bcmap │ │ │ ├── Adobe-Japan1-4.bcmap │ │ │ ├── Adobe-Japan1-5.bcmap │ │ │ ├── Adobe-Japan1-6.bcmap │ │ │ ├── Adobe-Japan1-UCS2.bcmap │ │ │ ├── Adobe-Korea1-0.bcmap │ │ │ ├── Adobe-Korea1-1.bcmap │ │ │ ├── Adobe-Korea1-2.bcmap │ │ │ ├── Adobe-Korea1-UCS2.bcmap │ │ │ ├── B5-H.bcmap │ │ │ ├── B5-V.bcmap │ │ │ ├── B5pc-H.bcmap │ │ │ ├── B5pc-V.bcmap │ │ │ ├── CNS-EUC-H.bcmap │ │ │ ├── CNS-EUC-V.bcmap │ │ │ ├── CNS1-H.bcmap │ │ │ ├── CNS1-V.bcmap │ │ │ ├── CNS2-H.bcmap │ │ │ ├── CNS2-V.bcmap │ │ │ ├── ETHK-B5-H.bcmap │ │ │ ├── ETHK-B5-V.bcmap │ │ │ ├── ETen-B5-H.bcmap │ │ │ ├── ETen-B5-V.bcmap │ │ │ ├── ETenms-B5-H.bcmap │ │ │ ├── ETenms-B5-V.bcmap │ │ │ ├── EUC-H.bcmap │ │ │ ├── EUC-V.bcmap │ │ │ ├── Ext-H.bcmap │ │ │ ├── Ext-RKSJ-H.bcmap │ │ │ ├── Ext-RKSJ-V.bcmap │ │ │ ├── Ext-V.bcmap │ │ │ ├── GB-EUC-H.bcmap │ │ │ ├── GB-EUC-V.bcmap │ │ │ ├── GB-H.bcmap │ │ │ ├── GB-V.bcmap │ │ │ ├── GBK-EUC-H.bcmap │ │ │ ├── GBK-EUC-V.bcmap │ │ │ ├── GBK2K-H.bcmap │ │ │ ├── GBK2K-V.bcmap │ │ │ ├── GBKp-EUC-H.bcmap │ │ │ ├── GBKp-EUC-V.bcmap │ │ │ ├── GBT-EUC-H.bcmap │ │ │ ├── GBT-EUC-V.bcmap │ │ │ ├── GBT-H.bcmap │ │ │ ├── GBT-V.bcmap │ │ │ ├── GBTpc-EUC-H.bcmap │ │ │ ├── GBTpc-EUC-V.bcmap │ │ │ ├── GBpc-EUC-H.bcmap │ │ │ ├── GBpc-EUC-V.bcmap │ │ │ ├── H.bcmap │ │ │ ├── HKdla-B5-H.bcmap │ │ │ ├── HKdla-B5-V.bcmap │ │ │ ├── HKdlb-B5-H.bcmap │ │ │ ├── HKdlb-B5-V.bcmap │ │ │ ├── HKgccs-B5-H.bcmap │ │ │ ├── HKgccs-B5-V.bcmap │ │ │ ├── HKm314-B5-H.bcmap │ │ │ ├── HKm314-B5-V.bcmap │ │ │ ├── HKm471-B5-H.bcmap │ │ │ ├── HKm471-B5-V.bcmap │ │ │ ├── HKscs-B5-H.bcmap │ │ │ ├── HKscs-B5-V.bcmap │ │ │ ├── Hankaku.bcmap │ │ │ ├── Hiragana.bcmap │ │ │ ├── KSC-EUC-H.bcmap │ │ │ ├── KSC-EUC-V.bcmap │ │ │ ├── KSC-H.bcmap │ │ │ ├── KSC-Johab-H.bcmap │ │ │ ├── KSC-Johab-V.bcmap │ │ │ ├── KSC-V.bcmap │ │ │ ├── KSCms-UHC-H.bcmap │ │ │ ├── KSCms-UHC-HW-H.bcmap │ │ │ ├── KSCms-UHC-HW-V.bcmap │ │ │ ├── KSCms-UHC-V.bcmap │ │ │ ├── KSCpc-EUC-H.bcmap │ │ │ ├── KSCpc-EUC-V.bcmap │ │ │ ├── Katakana.bcmap │ │ │ ├── LICENSE │ │ │ ├── NWP-H.bcmap │ │ │ ├── NWP-V.bcmap │ │ │ ├── RKSJ-H.bcmap │ │ │ ├── RKSJ-V.bcmap │ │ │ ├── Roman.bcmap │ │ │ ├── UniCNS-UCS2-H.bcmap │ │ │ ├── UniCNS-UCS2-V.bcmap │ │ │ ├── UniCNS-UTF16-H.bcmap │ │ │ ├── UniCNS-UTF16-V.bcmap │ │ │ ├── UniCNS-UTF32-H.bcmap │ │ │ ├── UniCNS-UTF32-V.bcmap │ │ │ ├── UniCNS-UTF8-H.bcmap │ │ │ ├── UniCNS-UTF8-V.bcmap │ │ │ ├── UniGB-UCS2-H.bcmap │ │ │ ├── UniGB-UCS2-V.bcmap │ │ │ ├── UniGB-UTF16-H.bcmap │ │ │ ├── UniGB-UTF16-V.bcmap │ │ │ ├── UniGB-UTF32-H.bcmap │ │ │ ├── UniGB-UTF32-V.bcmap │ │ │ ├── UniGB-UTF8-H.bcmap │ │ │ ├── UniGB-UTF8-V.bcmap │ │ │ ├── UniJIS-UCS2-H.bcmap │ │ │ ├── UniJIS-UCS2-HW-H.bcmap │ │ │ ├── UniJIS-UCS2-HW-V.bcmap │ │ │ ├── UniJIS-UCS2-V.bcmap │ │ │ ├── UniJIS-UTF16-H.bcmap │ │ │ ├── UniJIS-UTF16-V.bcmap │ │ │ ├── UniJIS-UTF32-H.bcmap │ │ │ ├── UniJIS-UTF32-V.bcmap │ │ │ ├── UniJIS-UTF8-H.bcmap │ │ │ ├── UniJIS-UTF8-V.bcmap │ │ │ ├── UniJIS2004-UTF16-H.bcmap │ │ │ ├── UniJIS2004-UTF16-V.bcmap │ │ │ ├── UniJIS2004-UTF32-H.bcmap │ │ │ ├── UniJIS2004-UTF32-V.bcmap │ │ │ ├── UniJIS2004-UTF8-H.bcmap │ │ │ ├── UniJIS2004-UTF8-V.bcmap │ │ │ ├── UniJISPro-UCS2-HW-V.bcmap │ │ │ ├── UniJISPro-UCS2-V.bcmap │ │ │ ├── UniJISPro-UTF8-V.bcmap │ │ │ ├── UniJISX0213-UTF32-H.bcmap │ │ │ ├── UniJISX0213-UTF32-V.bcmap │ │ │ ├── UniJISX02132004-UTF32-H.bcmap │ │ │ ├── UniJISX02132004-UTF32-V.bcmap │ │ │ ├── UniKS-UCS2-H.bcmap │ │ │ ├── UniKS-UCS2-V.bcmap │ │ │ ├── UniKS-UTF16-H.bcmap │ │ │ ├── UniKS-UTF16-V.bcmap │ │ │ ├── UniKS-UTF32-H.bcmap │ │ │ ├── UniKS-UTF32-V.bcmap │ │ │ ├── UniKS-UTF8-H.bcmap │ │ │ ├── UniKS-UTF8-V.bcmap │ │ │ ├── V.bcmap │ │ │ └── WP-Symbol.bcmap │ │ │ ├── compressed.tracemonkey-pldi-09.pdf │ │ │ ├── debugger.js │ │ │ ├── images │ │ │ ├── annotation-check.svg │ │ │ ├── annotation-comment.svg │ │ │ ├── annotation-help.svg │ │ │ ├── annotation-insert.svg │ │ │ ├── annotation-key.svg │ │ │ ├── annotation-newparagraph.svg │ │ │ ├── annotation-noicon.svg │ │ │ ├── annotation-note.svg │ │ │ ├── annotation-paragraph.svg │ │ │ ├── findbarButton-next-rtl.png │ │ │ ├── findbarButton-next-rtl@2x.png │ │ │ ├── findbarButton-next.png │ │ │ ├── findbarButton-next@2x.png │ │ │ ├── findbarButton-previous-rtl.png │ │ │ ├── findbarButton-previous-rtl@2x.png │ │ │ ├── findbarButton-previous.png │ │ │ ├── findbarButton-previous@2x.png │ │ │ ├── grab.cur │ │ │ ├── grabbing.cur │ │ │ ├── loading-icon.gif │ │ │ ├── loading-small.png │ │ │ ├── loading-small@2x.png │ │ │ ├── secondaryToolbarButton-documentProperties.png │ │ │ ├── secondaryToolbarButton-documentProperties@2x.png │ │ │ ├── secondaryToolbarButton-firstPage.png │ │ │ ├── secondaryToolbarButton-firstPage@2x.png │ │ │ ├── secondaryToolbarButton-handTool.png │ │ │ ├── secondaryToolbarButton-handTool@2x.png │ │ │ ├── secondaryToolbarButton-lastPage.png │ │ │ ├── secondaryToolbarButton-lastPage@2x.png │ │ │ ├── secondaryToolbarButton-rotateCcw.png │ │ │ ├── secondaryToolbarButton-rotateCcw@2x.png │ │ │ ├── secondaryToolbarButton-rotateCw.png │ │ │ ├── secondaryToolbarButton-rotateCw@2x.png │ │ │ ├── secondaryToolbarButton-scrollHorizontal.png │ │ │ ├── secondaryToolbarButton-scrollHorizontal@2x.png │ │ │ ├── secondaryToolbarButton-scrollVertical.png │ │ │ ├── secondaryToolbarButton-scrollVertical@2x.png │ │ │ ├── secondaryToolbarButton-scrollWrapped.png │ │ │ ├── secondaryToolbarButton-scrollWrapped@2x.png │ │ │ ├── secondaryToolbarButton-selectTool.png │ │ │ ├── secondaryToolbarButton-selectTool@2x.png │ │ │ ├── secondaryToolbarButton-spreadEven.png │ │ │ ├── secondaryToolbarButton-spreadEven@2x.png │ │ │ ├── secondaryToolbarButton-spreadNone.png │ │ │ ├── secondaryToolbarButton-spreadNone@2x.png │ │ │ ├── secondaryToolbarButton-spreadOdd.png │ │ │ ├── secondaryToolbarButton-spreadOdd@2x.png │ │ │ ├── shadow.png │ │ │ ├── texture.png │ │ │ ├── toolbarButton-bookmark.png │ │ │ ├── toolbarButton-bookmark@2x.png │ │ │ ├── toolbarButton-download.png │ │ │ ├── toolbarButton-download@2x.png │ │ │ ├── toolbarButton-menuArrows.png │ │ │ ├── toolbarButton-menuArrows@2x.png │ │ │ ├── toolbarButton-openFile.png │ │ │ ├── toolbarButton-openFile@2x.png │ │ │ ├── toolbarButton-pageDown-rtl.png │ │ │ ├── toolbarButton-pageDown-rtl@2x.png │ │ │ ├── toolbarButton-pageDown.png │ │ │ ├── toolbarButton-pageDown@2x.png │ │ │ ├── toolbarButton-pageUp-rtl.png │ │ │ ├── toolbarButton-pageUp-rtl@2x.png │ │ │ ├── toolbarButton-pageUp.png │ │ │ ├── toolbarButton-pageUp@2x.png │ │ │ ├── toolbarButton-presentationMode.png │ │ │ ├── toolbarButton-presentationMode@2x.png │ │ │ ├── toolbarButton-print.png │ │ │ ├── toolbarButton-print@2x.png │ │ │ ├── toolbarButton-search.png │ │ │ ├── toolbarButton-search@2x.png │ │ │ ├── toolbarButton-secondaryToolbarToggle-rtl.png │ │ │ ├── toolbarButton-secondaryToolbarToggle-rtl@2x.png │ │ │ ├── toolbarButton-secondaryToolbarToggle.png │ │ │ ├── toolbarButton-secondaryToolbarToggle@2x.png │ │ │ ├── toolbarButton-sidebarToggle-rtl.png │ │ │ ├── toolbarButton-sidebarToggle-rtl@2x.png │ │ │ ├── toolbarButton-sidebarToggle.png │ │ │ ├── toolbarButton-sidebarToggle@2x.png │ │ │ ├── toolbarButton-viewAttachments.png │ │ │ ├── toolbarButton-viewAttachments@2x.png │ │ │ ├── toolbarButton-viewOutline-rtl.png │ │ │ ├── toolbarButton-viewOutline-rtl@2x.png │ │ │ ├── toolbarButton-viewOutline.png │ │ │ ├── toolbarButton-viewOutline@2x.png │ │ │ ├── toolbarButton-viewThumbnail.png │ │ │ ├── toolbarButton-viewThumbnail@2x.png │ │ │ ├── toolbarButton-zoomIn.png │ │ │ ├── toolbarButton-zoomIn@2x.png │ │ │ ├── toolbarButton-zoomOut.png │ │ │ ├── toolbarButton-zoomOut@2x.png │ │ │ ├── treeitem-collapsed-rtl.png │ │ │ ├── treeitem-collapsed-rtl@2x.png │ │ │ ├── treeitem-collapsed.png │ │ │ ├── treeitem-collapsed@2x.png │ │ │ ├── treeitem-expanded.png │ │ │ └── treeitem-expanded@2x.png │ │ │ ├── locale │ │ │ ├── ach │ │ │ │ └── viewer.properties │ │ │ ├── af │ │ │ │ └── viewer.properties │ │ │ ├── ak │ │ │ │ └── viewer.properties │ │ │ ├── an │ │ │ │ └── viewer.properties │ │ │ ├── ar │ │ │ │ └── viewer.properties │ │ │ ├── as │ │ │ │ └── viewer.properties │ │ │ ├── ast │ │ │ │ └── viewer.properties │ │ │ ├── az │ │ │ │ └── viewer.properties │ │ │ ├── be │ │ │ │ └── viewer.properties │ │ │ ├── bg │ │ │ │ └── viewer.properties │ │ │ ├── bn-BD │ │ │ │ └── viewer.properties │ │ │ ├── bn-IN │ │ │ │ └── viewer.properties │ │ │ ├── br │ │ │ │ └── viewer.properties │ │ │ ├── brx │ │ │ │ └── viewer.properties │ │ │ ├── bs │ │ │ │ └── viewer.properties │ │ │ ├── ca │ │ │ │ └── viewer.properties │ │ │ ├── cak │ │ │ │ └── viewer.properties │ │ │ ├── crh │ │ │ │ └── viewer.properties │ │ │ ├── cs │ │ │ │ └── viewer.properties │ │ │ ├── csb │ │ │ │ └── viewer.properties │ │ │ ├── cy │ │ │ │ └── viewer.properties │ │ │ ├── da │ │ │ │ └── viewer.properties │ │ │ ├── de │ │ │ │ └── viewer.properties │ │ │ ├── el │ │ │ │ └── viewer.properties │ │ │ ├── en-CA │ │ │ │ └── viewer.properties │ │ │ ├── en-GB │ │ │ │ └── viewer.properties │ │ │ ├── en-US │ │ │ │ └── viewer.properties │ │ │ ├── en-ZA │ │ │ │ └── viewer.properties │ │ │ ├── eo │ │ │ │ └── viewer.properties │ │ │ ├── es-AR │ │ │ │ └── viewer.properties │ │ │ ├── es-CL │ │ │ │ └── viewer.properties │ │ │ ├── es-ES │ │ │ │ └── viewer.properties │ │ │ ├── es-MX │ │ │ │ └── viewer.properties │ │ │ ├── et │ │ │ │ └── viewer.properties │ │ │ ├── eu │ │ │ │ └── viewer.properties │ │ │ ├── fa │ │ │ │ └── viewer.properties │ │ │ ├── ff │ │ │ │ └── viewer.properties │ │ │ ├── fi │ │ │ │ └── viewer.properties │ │ │ ├── fr │ │ │ │ └── viewer.properties │ │ │ ├── fy-NL │ │ │ │ └── viewer.properties │ │ │ ├── ga-IE │ │ │ │ └── viewer.properties │ │ │ ├── gd │ │ │ │ └── viewer.properties │ │ │ ├── gl │ │ │ │ └── viewer.properties │ │ │ ├── gn │ │ │ │ └── viewer.properties │ │ │ ├── gu-IN │ │ │ │ └── viewer.properties │ │ │ ├── he │ │ │ │ └── viewer.properties │ │ │ ├── hi-IN │ │ │ │ └── viewer.properties │ │ │ ├── hr │ │ │ │ └── viewer.properties │ │ │ ├── hsb │ │ │ │ └── viewer.properties │ │ │ ├── hto │ │ │ │ └── viewer.properties │ │ │ ├── hu │ │ │ │ └── viewer.properties │ │ │ ├── hy-AM │ │ │ │ └── viewer.properties │ │ │ ├── ia │ │ │ │ └── viewer.properties │ │ │ ├── id │ │ │ │ └── viewer.properties │ │ │ ├── is │ │ │ │ └── viewer.properties │ │ │ ├── it │ │ │ │ └── viewer.properties │ │ │ ├── ja │ │ │ │ └── viewer.properties │ │ │ ├── ka │ │ │ │ └── viewer.properties │ │ │ ├── kab │ │ │ │ └── viewer.properties │ │ │ ├── kk │ │ │ │ └── viewer.properties │ │ │ ├── km │ │ │ │ └── viewer.properties │ │ │ ├── kn │ │ │ │ └── viewer.properties │ │ │ ├── ko │ │ │ │ └── viewer.properties │ │ │ ├── kok │ │ │ │ └── viewer.properties │ │ │ ├── ks │ │ │ │ └── viewer.properties │ │ │ ├── ku │ │ │ │ └── viewer.properties │ │ │ ├── lg │ │ │ │ └── viewer.properties │ │ │ ├── lij │ │ │ │ └── viewer.properties │ │ │ ├── lo │ │ │ │ └── viewer.properties │ │ │ ├── locale.properties │ │ │ ├── lt │ │ │ │ └── viewer.properties │ │ │ ├── ltg │ │ │ │ └── viewer.properties │ │ │ ├── lv │ │ │ │ └── viewer.properties │ │ │ ├── mai │ │ │ │ └── viewer.properties │ │ │ ├── meh │ │ │ │ └── viewer.properties │ │ │ ├── mk │ │ │ │ └── viewer.properties │ │ │ ├── ml │ │ │ │ └── viewer.properties │ │ │ ├── mn │ │ │ │ └── viewer.properties │ │ │ ├── mr │ │ │ │ └── viewer.properties │ │ │ ├── ms │ │ │ │ └── viewer.properties │ │ │ ├── my │ │ │ │ └── viewer.properties │ │ │ ├── nb-NO │ │ │ │ └── viewer.properties │ │ │ ├── ne-NP │ │ │ │ └── viewer.properties │ │ │ ├── nl │ │ │ │ └── viewer.properties │ │ │ ├── nn-NO │ │ │ │ └── viewer.properties │ │ │ ├── nso │ │ │ │ └── viewer.properties │ │ │ ├── oc │ │ │ │ └── viewer.properties │ │ │ ├── or │ │ │ │ └── viewer.properties │ │ │ ├── pa-IN │ │ │ │ └── viewer.properties │ │ │ ├── pl │ │ │ │ └── viewer.properties │ │ │ ├── pt-BR │ │ │ │ └── viewer.properties │ │ │ ├── pt-PT │ │ │ │ └── viewer.properties │ │ │ ├── rm │ │ │ │ └── viewer.properties │ │ │ ├── ro │ │ │ │ └── viewer.properties │ │ │ ├── ru │ │ │ │ └── viewer.properties │ │ │ ├── rw │ │ │ │ └── viewer.properties │ │ │ ├── sah │ │ │ │ └── viewer.properties │ │ │ ├── sat │ │ │ │ └── viewer.properties │ │ │ ├── si │ │ │ │ └── viewer.properties │ │ │ ├── sk │ │ │ │ └── viewer.properties │ │ │ ├── sl │ │ │ │ └── viewer.properties │ │ │ ├── son │ │ │ │ └── viewer.properties │ │ │ ├── sq │ │ │ │ └── viewer.properties │ │ │ ├── sr │ │ │ │ └── viewer.properties │ │ │ ├── sv-SE │ │ │ │ └── viewer.properties │ │ │ ├── sw │ │ │ │ └── viewer.properties │ │ │ ├── ta-LK │ │ │ │ └── viewer.properties │ │ │ ├── ta │ │ │ │ └── viewer.properties │ │ │ ├── te │ │ │ │ └── viewer.properties │ │ │ ├── th │ │ │ │ └── viewer.properties │ │ │ ├── tl │ │ │ │ └── viewer.properties │ │ │ ├── tn │ │ │ │ └── viewer.properties │ │ │ ├── tr │ │ │ │ └── viewer.properties │ │ │ ├── tsz │ │ │ │ └── viewer.properties │ │ │ ├── uk │ │ │ │ └── viewer.properties │ │ │ ├── ur │ │ │ │ └── viewer.properties │ │ │ ├── uz │ │ │ │ └── viewer.properties │ │ │ ├── vi │ │ │ │ └── viewer.properties │ │ │ ├── wo │ │ │ │ └── viewer.properties │ │ │ ├── xh │ │ │ │ └── viewer.properties │ │ │ ├── zam │ │ │ │ └── viewer.properties │ │ │ ├── zh-CN │ │ │ │ └── viewer.properties │ │ │ ├── zh-TW │ │ │ │ └── viewer.properties │ │ │ └── zu │ │ │ │ └── viewer.properties │ │ │ ├── viewer.css │ │ │ ├── viewer.html │ │ │ ├── viewer.js │ │ │ └── viewer.js.map │ └── main.py ├── 59229716 │ ├── Dockerfile │ ├── README.md │ └── main.py ├── 59331063 │ ├── Dockerfile │ ├── README.md │ └── app │ │ ├── 59331063.pro │ │ ├── main.cpp │ │ ├── main.qml │ │ └── qml.qrc ├── 59336957 │ ├── app │ │ ├── background.js │ │ └── manifest.json │ └── host │ │ ├── README │ │ ├── host.pro │ │ ├── main.cpp │ │ ├── nativemessenger.cpp │ │ ├── nativemessenger.h │ │ └── org.eyllanesc.qt_host.json ├── 59405296 │ ├── 3rdParty │ │ └── qrcode.pri │ ├── 59405296.pro │ └── main.cpp ├── 59708421 │ ├── 59708421.pro │ ├── constants.h │ ├── main.cpp │ ├── networkaccessmanager.cpp │ ├── networkaccessmanager.h │ ├── spotifywrapper.cpp │ └── spotifywrapper.h ├── 59711301 │ ├── Dockerfile │ ├── README.md │ └── main.py ├── 59777150 │ ├── 59777150.pro │ ├── helper.cpp │ ├── helper.h │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 59780153 │ ├── 59780153.pro │ ├── datamodel.h │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 59828470 │ ├── gallery.qml │ ├── icons │ │ └── gallery │ │ │ ├── 20x20 │ │ │ ├── back.png │ │ │ ├── drawer.png │ │ │ └── menu.png │ │ │ ├── 20x20@2 │ │ │ ├── back.png │ │ │ ├── drawer.png │ │ │ └── menu.png │ │ │ ├── 20x20@3 │ │ │ ├── back.png │ │ │ ├── drawer.png │ │ │ └── menu.png │ │ │ ├── 20x20@4 │ │ │ ├── back.png │ │ │ ├── drawer.png │ │ │ └── menu.png │ │ │ └── index.theme │ ├── images │ │ ├── arrow.png │ │ ├── arrow@2x.png │ │ ├── arrow@3x.png │ │ ├── arrow@4x.png │ │ ├── arrows.png │ │ ├── arrows@2x.png │ │ ├── arrows@3x.png │ │ ├── arrows@4x.png │ │ ├── qt-logo.png │ │ ├── qt-logo@2x.png │ │ ├── qt-logo@3x.png │ │ └── qt-logo@4x.png │ ├── main.py │ └── pages │ │ ├── BusyIndicatorPage.qml │ │ ├── ButtonPage.qml │ │ ├── CheckBoxPage.qml │ │ ├── ComboBoxPage.qml │ │ ├── DelayButtonPage.qml │ │ ├── DelegatePage.qml │ │ ├── DialPage.qml │ │ ├── DialogPage.qml │ │ ├── FramePage.qml │ │ ├── GroupBoxPage.qml │ │ ├── PageIndicatorPage.qml │ │ ├── ProgressBarPage.qml │ │ ├── RadioButtonPage.qml │ │ ├── RangeSliderPage.qml │ │ ├── ScrollBarPage.qml │ │ ├── ScrollIndicatorPage.qml │ │ ├── ScrollablePage.qml │ │ ├── SliderPage.qml │ │ ├── SpinBoxPage.qml │ │ ├── StackViewPage.qml │ │ ├── SwipeViewPage.qml │ │ ├── SwitchPage.qml │ │ ├── TabBarPage.qml │ │ ├── TextAreaPage.qml │ │ ├── TextFieldPage.qml │ │ ├── ToolTipPage.qml │ │ └── TumblerPage.qml ├── 59847739 │ ├── 59847739.pro │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ └── sqlquerymodel.h ├── 60354837 │ ├── AutoBowGUI.ui │ ├── Config.ini │ ├── autobowgui.py │ ├── autobowgui_ui.py │ ├── main.py │ ├── main.ui │ └── main_ui.py ├── 60442347 │ ├── Dockerfile │ └── README.md ├── 60544057 │ ├── Qt5.14 │ │ ├── app │ │ │ ├── here-test.pro │ │ │ ├── main.cpp │ │ │ ├── main.qml │ │ │ └── qml.qrc │ │ └── update-HERE-Qt5.14.patch │ └── Qt5.9 │ │ ├── Dockerfile │ │ ├── app │ │ ├── here-test.pro │ │ ├── main.cpp │ │ ├── main.qml │ │ └── qml.qrc │ │ └── update-HERE-Qt5.9.patch ├── 61127606 │ ├── websocket_cpp │ │ ├── .gitignore │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ ├── mainwindow.ui │ │ └── websocket.pro │ └── websocket_java │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── devglan │ │ │ └── config │ │ │ ├── Application.java │ │ │ ├── SocketHandler.java │ │ │ └── WebSocketConfig.java │ │ └── resources │ │ └── static │ │ ├── app.js │ │ ├── index.html │ │ └── main.css ├── 61303341 │ ├── 61303341.pro │ ├── README.md │ ├── Screenshot.png │ ├── main.cpp │ ├── mainWindow.qml │ ├── mapmarker.h │ └── qml.qrc ├── 62069201 │ ├── 62069201.pro │ ├── backend.cpp │ ├── backend.h │ ├── cameraservice.cpp │ ├── cameraservice.h │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 62555286 │ ├── Dockerfile │ ├── README.md │ ├── main_pyqt5.py │ ├── main_pyside2.py │ ├── qsqlite │ │ ├── qsqlite.cpp │ │ ├── qsqlite.h │ │ ├── qsqlite.pro │ │ └── qsqlite_global.h │ └── requirements.txt ├── 62676199 │ ├── Dockerfile │ └── main.py ├── 62745413 │ ├── Dockerfile │ └── main.py ├── 62765004 │ ├── documentation │ │ ├── deleteobject.html │ │ ├── images │ │ │ ├── ellipse.png │ │ │ └── rectangle.png │ │ ├── index.html │ │ ├── insertellipse.html │ │ ├── insertobject.html │ │ ├── insertrectangle.html │ │ ├── qgraphicshelpexample.qch │ │ ├── qgraphicshelpexample.qhc │ │ ├── qgraphicshelpexample.qhcp │ │ └── qgraphicshelpexample.qhp │ ├── icons │ │ ├── ellipse.png │ │ └── rectangle.png │ ├── main.py │ ├── qgraphicshelpexample.qrc │ └── qgraphicshelpexample_rc.py ├── 62927504 │ ├── images │ │ └── eventindicator.png │ ├── main.py │ └── main.qml ├── 63095511 │ ├── 63095511-webengine │ │ ├── 63095511-webengine.pro │ │ └── main.cpp │ ├── 63095511-webkit │ │ ├── 63095511-webkit.pro │ │ └── main.cpp │ └── 63095511.pro ├── 63477276 │ └── search_binaries.py ├── 63489592 │ ├── main.py │ └── search_binaries.py ├── 63577032 │ ├── 63577032.pro │ └── main.cpp ├── 64391146 │ └── tile_image_format.patch ├── 64591348 │ ├── 3rdParty │ │ ├── sqlite.pri │ │ └── sqlite │ │ │ ├── shell.c │ │ │ ├── sqlite3.c │ │ │ ├── sqlite3.h │ │ │ └── sqlite3ext.h │ ├── 64591348.pro │ └── main.cpp ├── 64746801 │ ├── 64746801.pro │ ├── main.cpp │ ├── score.cpp │ └── score.h ├── 65231036 │ ├── 3rdParty │ │ └── CuteLogger.pri │ ├── 65231036.pro │ └── main.cpp ├── 65646117 │ ├── 65646117.pro │ ├── arrow.cpp │ ├── arrow.h │ ├── component.cpp │ ├── component.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── 68528179 │ ├── main.py │ ├── qml │ │ └── main.qml │ └── translations │ │ ├── i18n_es.qm │ │ ├── i18n_es.ts │ │ ├── i18n_fr.qm │ │ └── i18n_fr.ts ├── 68554025 │ ├── main.py │ └── translations │ │ ├── i18n_es.qm │ │ ├── i18n_es.ts │ │ ├── i18n_zh.qm │ │ └── i18n_zh.ts ├── 68605331 │ ├── 68605331.pro │ └── main.cpp ├── 68721681 │ ├── 68721681.pro │ ├── app │ │ ├── app.pro │ │ ├── foointerface.cpp │ │ ├── foointerface.h │ │ ├── languages │ │ │ ├── app.qm │ │ │ ├── app.ts │ │ │ ├── plugin.qm │ │ │ └── plugin.ts │ │ ├── main.cpp │ │ ├── main.qml │ │ └── qml.qrc │ └── plugin │ │ ├── fooplugin.cpp │ │ ├── fooplugin.h │ │ ├── fooplugin.json │ │ └── plugin.pro ├── 68769134 │ ├── main.py │ ├── qml │ │ └── main.qml │ └── translations │ │ ├── global.qm │ │ ├── global.ts │ │ ├── py.qm │ │ ├── py.ts │ │ ├── qml.qm │ │ └── qml.ts ├── 68795702 │ ├── 3rdParty │ │ └── OpenSAEJ1939 │ │ │ ├── Hardware │ │ │ ├── CAN_Network │ │ │ │ ├── CAN_Network.c │ │ │ │ ├── CAN_Network.h │ │ │ │ └── CAN_STM32.txt │ │ │ ├── Memory │ │ │ │ ├── FLASH_EEPROM_RAM_Memory.c │ │ │ │ └── FLASH_EEPROM_RAM_Memory.h │ │ │ └── Processor_Choice.h │ │ │ ├── ISO_11783 │ │ │ ├── ISO_11783-7_Application_Layer │ │ │ │ ├── Application_Layer.h │ │ │ │ ├── Auxiliary_Valve_Command.c │ │ │ │ ├── Auxiliary_Valve_Estimated_Flow.c │ │ │ │ ├── Auxiliary_Valve_Measured_Position.c │ │ │ │ ├── General_Purpose_Valve_Command.c │ │ │ │ └── General_Purpose_Valve_Estimated_Flow.c │ │ │ └── ISO_11783_Enums │ │ │ │ └── Enum_Auxiliary_And_General_Purpose_Valves.h │ │ │ ├── LICENSE │ │ │ ├── OpenSAEJ1939.pri │ │ │ ├── Open_SAE_J1939 │ │ │ ├── Listen_For_Messages.c │ │ │ ├── Open_SAE_J1939.h │ │ │ └── Structs.h │ │ │ └── SAE_J1939 │ │ │ ├── SAE_J1939-21_Transport_Layer │ │ │ ├── Acknowledgement.c │ │ │ ├── Request.c │ │ │ ├── Transport_Layer.h │ │ │ ├── Transport_Protocol_Connection_Management.c │ │ │ └── Transport_Protocol_Data_Transfer.c │ │ │ ├── SAE_J1939-71_Application_Layer │ │ │ ├── Application_Layer.h │ │ │ ├── Request_Component_Identification.c │ │ │ ├── Request_ECU_Identification.c │ │ │ └── Request_Software_Identification.c │ │ │ ├── SAE_J1939-73_Diagnostics_Layer │ │ │ ├── DM1.c │ │ │ ├── DM14.c │ │ │ ├── DM15.c │ │ │ ├── DM16.c │ │ │ ├── DM2.c │ │ │ ├── DM3.c │ │ │ └── Diagnostics_Layer.h │ │ │ ├── SAE_J1939-81_Network_Management_Layer │ │ │ ├── Address_Claimed.c │ │ │ ├── Address_Delete.c │ │ │ ├── Address_Not_Claimed.c │ │ │ ├── Commanded_Address.c │ │ │ └── Network_Management_Layer.h │ │ │ └── SAE_J1939_Enums │ │ │ ├── Enum_Control_Byte.h │ │ │ ├── Enum_DM14_DM15.h │ │ │ ├── Enum_DM1_DM2.h │ │ │ ├── Enum_Group_Function_Value.h │ │ │ ├── Enum_NAME.h │ │ │ ├── Enum_PGN.h │ │ │ └── Enum_Send_Status.h │ ├── 68795702.pro │ └── main.cpp ├── 69432427 │ ├── 69432427.pro │ ├── CMakeLists.txt │ ├── main.cpp │ ├── main.qml │ ├── producer.cpp │ ├── producer.h │ └── qml.qrc ├── 72279498 │ ├── scripts │ │ ├── designer.py │ │ └── plugins │ │ │ └── ledplugin.py │ └── src │ │ ├── main.py │ │ └── ui │ │ └── main.ui ├── 48534529-1 │ ├── 48534529-1.pro │ ├── filemodel.h │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ └── qtquickcontrols2.conf ├── 48534529-2 │ ├── 48534529-2.pro │ ├── filemanager.h │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── 51356559-1 │ ├── 51356559.pro │ ├── empdb.db │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── qcustomplot.cpp │ └── qcustomplot.h └── 52758047-test │ ├── 52758047-test.pro │ ├── device.cpp │ ├── device.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui └── templates ├── TemplateQMainWindow.py ├── TemplateQVideoWidget.py ├── TemplateQWebEngineView.py ├── TemplateQWidget.py ├── TemplateQmlWidget.py └── main.qml /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/63477276.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/.github/workflows/63477276.yml -------------------------------------------------------------------------------- /.github/workflows/63489592.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/.github/workflows/63489592.yml -------------------------------------------------------------------------------- /.github/workflows/63577032.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/.github/workflows/63577032.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/.gitmodules -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/README.md -------------------------------------------------------------------------------- /assets/coinbase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/assets/coinbase.png -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/docker/README.md -------------------------------------------------------------------------------- /others/2SprayCoater/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/2SprayCoater/main.cpp -------------------------------------------------------------------------------- /others/2SprayCoater/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/2SprayCoater/mainwindow.h -------------------------------------------------------------------------------- /others/Camera/Camera.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Camera/Camera.pro -------------------------------------------------------------------------------- /others/Camera/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Camera/README.md -------------------------------------------------------------------------------- /others/Camera/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Camera/main.cpp -------------------------------------------------------------------------------- /others/Camera/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Camera/mainwindow.cpp -------------------------------------------------------------------------------- /others/Camera/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Camera/mainwindow.h -------------------------------------------------------------------------------- /others/CameraFeed/CameraFeed.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/CameraFeed/CameraFeed.pro -------------------------------------------------------------------------------- /others/CameraFeed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/CameraFeed/README.md -------------------------------------------------------------------------------- /others/CameraFeed/camerafeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/CameraFeed/camerafeed.cpp -------------------------------------------------------------------------------- /others/CameraFeed/camerafeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/CameraFeed/camerafeed.h -------------------------------------------------------------------------------- /others/CameraFeed/camerafeed.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/CameraFeed/camerafeed.ui -------------------------------------------------------------------------------- /others/CameraFeed/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/CameraFeed/main.cpp -------------------------------------------------------------------------------- /others/CircleItem/CircleItem.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/CircleItem/CircleItem.pro -------------------------------------------------------------------------------- /others/CircleItem/README.md: -------------------------------------------------------------------------------- 1 | CircleItem 2 | -------------------------------------------------------------------------------- /others/CircleItem/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/CircleItem/main.cpp -------------------------------------------------------------------------------- /others/CircleItem/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/CircleItem/mainwindow.cpp -------------------------------------------------------------------------------- /others/CircleItem/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/CircleItem/mainwindow.h -------------------------------------------------------------------------------- /others/CircleItem/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/CircleItem/mainwindow.ui -------------------------------------------------------------------------------- /others/CircleItem/mycircle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/CircleItem/mycircle.cpp -------------------------------------------------------------------------------- /others/CircleItem/mycircle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/CircleItem/mycircle.h -------------------------------------------------------------------------------- /others/CovertImg/CovertImg.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/CovertImg/CovertImg.pro -------------------------------------------------------------------------------- /others/CovertImg/imagewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/CovertImg/imagewidget.cpp -------------------------------------------------------------------------------- /others/CovertImg/imagewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/CovertImg/imagewidget.h -------------------------------------------------------------------------------- /others/CovertImg/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/CovertImg/main.cpp -------------------------------------------------------------------------------- /others/CovertImg/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/CovertImg/mainwindow.cpp -------------------------------------------------------------------------------- /others/CovertImg/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/CovertImg/mainwindow.h -------------------------------------------------------------------------------- /others/CovertImg/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/CovertImg/mainwindow.ui -------------------------------------------------------------------------------- /others/CovertImg/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/CovertImg/util.h -------------------------------------------------------------------------------- /others/CustomListWidget/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/CustomListWidget/main.cpp -------------------------------------------------------------------------------- /others/CustomPageExample/README.md: -------------------------------------------------------------------------------- 1 | CustomPageExample 2 | -------------------------------------------------------------------------------- /others/CustomSQLModel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/CustomSQLModel/README.md -------------------------------------------------------------------------------- /others/CustomSQLModel/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/CustomSQLModel/main.py -------------------------------------------------------------------------------- /others/DBTableWidget/Modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /others/DBTableWidget/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/DBTableWidget/README.md -------------------------------------------------------------------------------- /others/DBTableWidget/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/DBTableWidget/main.py -------------------------------------------------------------------------------- /others/DBTableWidget/students.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/DBTableWidget/students.db -------------------------------------------------------------------------------- /others/Drawing-app/command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Drawing-app/command.cpp -------------------------------------------------------------------------------- /others/Drawing-app/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Drawing-app/command.h -------------------------------------------------------------------------------- /others/Drawing-app/drawarea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Drawing-app/drawarea.cpp -------------------------------------------------------------------------------- /others/Drawing-app/drawarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Drawing-app/drawarea.h -------------------------------------------------------------------------------- /others/Drawing-app/ellipse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Drawing-app/ellipse.cpp -------------------------------------------------------------------------------- /others/Drawing-app/fill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Drawing-app/fill.cpp -------------------------------------------------------------------------------- /others/Drawing-app/floodfill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Drawing-app/floodfill.cpp -------------------------------------------------------------------------------- /others/Drawing-app/floodfill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Drawing-app/floodfill.h -------------------------------------------------------------------------------- /others/Drawing-app/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Drawing-app/main.cpp -------------------------------------------------------------------------------- /others/Drawing-app/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Drawing-app/mainwindow.h -------------------------------------------------------------------------------- /others/Drawing-app/pencil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Drawing-app/pencil.cpp -------------------------------------------------------------------------------- /others/Drawing-app/rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Drawing-app/rectangle.cpp -------------------------------------------------------------------------------- /others/Drawing-app/shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Drawing-app/shape.cpp -------------------------------------------------------------------------------- /others/Drawing-app/shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Drawing-app/shape.h -------------------------------------------------------------------------------- /others/Drawing-app/triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Drawing-app/triangle.cpp -------------------------------------------------------------------------------- /others/Example/Example.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Example/Example.pro -------------------------------------------------------------------------------- /others/Example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Example/README.md -------------------------------------------------------------------------------- /others/Example/logicclass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Example/logicclass.cpp -------------------------------------------------------------------------------- /others/Example/logicclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Example/logicclass.h -------------------------------------------------------------------------------- /others/Example/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Example/main.cpp -------------------------------------------------------------------------------- /others/Example/maincontainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Example/maincontainer.cpp -------------------------------------------------------------------------------- /others/Example/maincontainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Example/maincontainer.h -------------------------------------------------------------------------------- /others/Example/maincontainer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Example/maincontainer.ui -------------------------------------------------------------------------------- /others/FilterTable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/FilterTable/README.md -------------------------------------------------------------------------------- /others/FilterTable/Rts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/FilterTable/Rts.csv -------------------------------------------------------------------------------- /others/FilterTable/filter.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/FilterTable/filter.ui -------------------------------------------------------------------------------- /others/FilterTable/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /others/FilterTable/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/FilterTable/main.py -------------------------------------------------------------------------------- /others/GProjectComplete/README.md: -------------------------------------------------------------------------------- 1 | GProjectComplete 2 | -------------------------------------------------------------------------------- /others/GraphicsScene/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/GraphicsScene/README.md -------------------------------------------------------------------------------- /others/GraphicsScene/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/GraphicsScene/main.cpp -------------------------------------------------------------------------------- /others/JSTestingQt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/JSTestingQt/README.md -------------------------------------------------------------------------------- /others/JSTestingQt/TestPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/JSTestingQt/TestPage.html -------------------------------------------------------------------------------- /others/JSTestingQt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/JSTestingQt/main.cpp -------------------------------------------------------------------------------- /others/JSTestingQt/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/JSTestingQt/main.qml -------------------------------------------------------------------------------- /others/JSTestingQt/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/JSTestingQt/qml.qrc -------------------------------------------------------------------------------- /others/JSTestingQt/testJava.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/JSTestingQt/testJava.js -------------------------------------------------------------------------------- /others/LabelQChartView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/LabelQChartView/README.md -------------------------------------------------------------------------------- /others/LabelQChartView/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/LabelQChartView/main.cpp -------------------------------------------------------------------------------- /others/MediaManagerV2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/MediaManagerV2/README.md -------------------------------------------------------------------------------- /others/MediaManagerV2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/MediaManagerV2/main.cpp -------------------------------------------------------------------------------- /others/MediaManagerV2/qdarkstyle/.gitignore: -------------------------------------------------------------------------------- 1 | /*.pyc 2 | -------------------------------------------------------------------------------- /others/MediaManagerV2/resources.qrc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /others/OpenglPyQtTest/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/OpenglPyQtTest/main.py -------------------------------------------------------------------------------- /others/OpenglPyQtTest/minimal.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/OpenglPyQtTest/minimal.ui -------------------------------------------------------------------------------- /others/PopUpExample/README.md: -------------------------------------------------------------------------------- 1 | PopUpExample 2 | -------------------------------------------------------------------------------- /others/PopUpExample/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/PopUpExample/main.cpp -------------------------------------------------------------------------------- /others/PopUpExample/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/PopUpExample/mainwindow.h -------------------------------------------------------------------------------- /others/PopUpExample/popup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/PopUpExample/popup.cpp -------------------------------------------------------------------------------- /others/PopUpExample/popup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/PopUpExample/popup.h -------------------------------------------------------------------------------- /others/QtAnimate/QtAnimate.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/QtAnimate/QtAnimate.pro -------------------------------------------------------------------------------- /others/QtAnimate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/QtAnimate/README.md -------------------------------------------------------------------------------- /others/QtAnimate/ellipseobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/QtAnimate/ellipseobject.h -------------------------------------------------------------------------------- /others/QtAnimate/graphicsview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/QtAnimate/graphicsview.h -------------------------------------------------------------------------------- /others/QtAnimate/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/QtAnimate/main.cpp -------------------------------------------------------------------------------- /others/QtAnimate/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/QtAnimate/widget.cpp -------------------------------------------------------------------------------- /others/QtAnimate/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/QtAnimate/widget.h -------------------------------------------------------------------------------- /others/QtAnimate/widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/QtAnimate/widget.ui -------------------------------------------------------------------------------- /others/QtUnitTestingTest/HelloWorldLib/src/helloworldlib.cpp: -------------------------------------------------------------------------------- 1 | #include "helloworldlib.h" 2 | -------------------------------------------------------------------------------- /others/RE_LightScan/icon.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/RE_LightScan/icon.qrc -------------------------------------------------------------------------------- /others/RE_LightScan/icon/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/RE_LightScan/icon/12.png -------------------------------------------------------------------------------- /others/RE_LightScan/icon/abs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/RE_LightScan/icon/abs.png -------------------------------------------------------------------------------- /others/RE_LightScan/icon/net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/RE_LightScan/icon/net.png -------------------------------------------------------------------------------- /others/RE_LightScan/icon/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/RE_LightScan/icon/ref.png -------------------------------------------------------------------------------- /others/RE_LightScan/lscurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/RE_LightScan/lscurve.cpp -------------------------------------------------------------------------------- /others/RE_LightScan/lscurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/RE_LightScan/lscurve.h -------------------------------------------------------------------------------- /others/RE_LightScan/lsplot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/RE_LightScan/lsplot.cpp -------------------------------------------------------------------------------- /others/RE_LightScan/lsplot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/RE_LightScan/lsplot.h -------------------------------------------------------------------------------- /others/RE_LightScan/luck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/RE_LightScan/luck.h -------------------------------------------------------------------------------- /others/RE_LightScan/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/RE_LightScan/main.cpp -------------------------------------------------------------------------------- /others/RE_LightScan/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/RE_LightScan/mainwindow.h -------------------------------------------------------------------------------- /others/RectAnimation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/RectAnimation/README.md -------------------------------------------------------------------------------- /others/RectAnimation/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/RectAnimation/main.cpp -------------------------------------------------------------------------------- /others/RectAnimation/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/RectAnimation/widget.cpp -------------------------------------------------------------------------------- /others/RectAnimation/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/RectAnimation/widget.h -------------------------------------------------------------------------------- /others/Save2CSV/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Save2CSV/README.md -------------------------------------------------------------------------------- /others/Save2CSV/Rts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Save2CSV/Rts.csv -------------------------------------------------------------------------------- /others/Save2CSV/filter.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Save2CSV/filter.csv -------------------------------------------------------------------------------- /others/Save2CSV/filter.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Save2CSV/filter.ui -------------------------------------------------------------------------------- /others/Save2CSV/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Save2CSV/main.py -------------------------------------------------------------------------------- /others/SideBar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/SideBar/README.md -------------------------------------------------------------------------------- /others/SideBar/SideBar.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/SideBar/SideBar.pro -------------------------------------------------------------------------------- /others/SideBar/icons/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/SideBar/icons/icon0.png -------------------------------------------------------------------------------- /others/SideBar/icons/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/SideBar/icons/icon1.png -------------------------------------------------------------------------------- /others/SideBar/icons/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/SideBar/icons/icon2.png -------------------------------------------------------------------------------- /others/SideBar/icons/icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/SideBar/icons/icon3.png -------------------------------------------------------------------------------- /others/SideBar/icons/icon4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/SideBar/icons/icon4.png -------------------------------------------------------------------------------- /others/SideBar/icons/icon5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/SideBar/icons/icon5.png -------------------------------------------------------------------------------- /others/SideBar/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/SideBar/main.cpp -------------------------------------------------------------------------------- /others/SideBar/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/SideBar/mainwindow.cpp -------------------------------------------------------------------------------- /others/SideBar/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/SideBar/mainwindow.h -------------------------------------------------------------------------------- /others/SideBar/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/SideBar/mainwindow.ui -------------------------------------------------------------------------------- /others/SideBar/resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/SideBar/resource.qrc -------------------------------------------------------------------------------- /others/SideBar/sidebar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/SideBar/sidebar.cpp -------------------------------------------------------------------------------- /others/SideBar/sidebar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/SideBar/sidebar.h -------------------------------------------------------------------------------- /others/SoftwareHEN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/SoftwareHEN/README.md -------------------------------------------------------------------------------- /others/StopMainWindow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/StopMainWindow/README.md -------------------------------------------------------------------------------- /others/StopMainWindow/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/StopMainWindow/main.cpp -------------------------------------------------------------------------------- /others/StopMainWindow/tik.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/StopMainWindow/tik.mp3 -------------------------------------------------------------------------------- /others/Test/README.md: -------------------------------------------------------------------------------- 1 | TEST 2 | ==== 3 | 4 | -------------------------------------------------------------------------------- /others/Test/Test.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Test/Test.pro -------------------------------------------------------------------------------- /others/Test/dataexchange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Test/dataexchange.cpp -------------------------------------------------------------------------------- /others/Test/dataexchange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Test/dataexchange.h -------------------------------------------------------------------------------- /others/Test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Test/main.cpp -------------------------------------------------------------------------------- /others/Test/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Test/mainwindow.cpp -------------------------------------------------------------------------------- /others/Test/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Test/mainwindow.h -------------------------------------------------------------------------------- /others/Test/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/Test/mainwindow.ui -------------------------------------------------------------------------------- /others/TestMdiArea/HomeWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/TestMdiArea/HomeWindow.py -------------------------------------------------------------------------------- /others/TestMdiArea/MainWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/TestMdiArea/MainWindow.py -------------------------------------------------------------------------------- /others/TestMdiArea/ValveSim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/TestMdiArea/ValveSim.py -------------------------------------------------------------------------------- /others/TestMdiArea/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/TestMdiArea/main.py -------------------------------------------------------------------------------- /others/TestOpenCVQt/README.md: -------------------------------------------------------------------------------- 1 | TestOpenCVQt 2 | -------------------------------------------------------------------------------- /others/TestOpenCVQt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/TestOpenCVQt/main.cpp -------------------------------------------------------------------------------- /others/TestOpenCVQt/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/TestOpenCVQt/mainwindow.h -------------------------------------------------------------------------------- /others/TextEditExample/README.md: -------------------------------------------------------------------------------- 1 | TextEditExample 2 | -------------------------------------------------------------------------------- /others/TextEditExample/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/TextEditExample/main.cpp -------------------------------------------------------------------------------- /others/TranslateStatic/es.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/TranslateStatic/es.qm -------------------------------------------------------------------------------- /others/TranslateStatic/es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/TranslateStatic/es.ts -------------------------------------------------------------------------------- /others/TranslateStatic/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/TranslateStatic/main.m -------------------------------------------------------------------------------- /others/WorkHelper/Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/WorkHelper/Main.py -------------------------------------------------------------------------------- /others/WorkHelper/Main_GUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/WorkHelper/Main_GUI.py -------------------------------------------------------------------------------- /others/WorkHelper/Main_GUI.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/WorkHelper/Main_GUI.ui -------------------------------------------------------------------------------- /others/WorkHelper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/WorkHelper/README.md -------------------------------------------------------------------------------- /others/basicshapes-cpp-modified/README.md: -------------------------------------------------------------------------------- 1 | basicshapes-cpp-modified 2 | -------------------------------------------------------------------------------- /others/controller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/controller/README.md -------------------------------------------------------------------------------- /others/controller/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/controller/main.cpp -------------------------------------------------------------------------------- /others/downloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/downloader/README.md -------------------------------------------------------------------------------- /others/downloader/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/downloader/main.cpp -------------------------------------------------------------------------------- /others/libre-coupe/README.md: -------------------------------------------------------------------------------- 1 | # libre-coupe 2 | 3 | My personal project 4 | -------------------------------------------------------------------------------- /others/libre-coupe/book.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/libre-coupe/book.cpp -------------------------------------------------------------------------------- /others/libre-coupe/book.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/libre-coupe/book.h -------------------------------------------------------------------------------- /others/libre-coupe/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/libre-coupe/dialog.cpp -------------------------------------------------------------------------------- /others/libre-coupe/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/libre-coupe/dialog.h -------------------------------------------------------------------------------- /others/libre-coupe/dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/libre-coupe/dialog.ui -------------------------------------------------------------------------------- /others/libre-coupe/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/libre-coupe/library.h -------------------------------------------------------------------------------- /others/libre-coupe/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/libre-coupe/main.cpp -------------------------------------------------------------------------------- /others/qimvi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/qimvi/LICENSE -------------------------------------------------------------------------------- /others/qimvi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/qimvi/README.md -------------------------------------------------------------------------------- /others/qimvi/qimvi.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/qimvi/qimvi.pro -------------------------------------------------------------------------------- /others/qimvi/res/qimvi.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/qimvi/res/qimvi.qrc -------------------------------------------------------------------------------- /others/qimvi/src/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/qimvi/src/MainWindow.h -------------------------------------------------------------------------------- /others/qimvi/src/RubberBand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/qimvi/src/RubberBand.h -------------------------------------------------------------------------------- /others/qimvi/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/qimvi/src/main.cpp -------------------------------------------------------------------------------- /others/qimvi/ui/MainWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/qimvi/ui/MainWindow.ui -------------------------------------------------------------------------------- /others/rpi-tkinter/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/rpi-tkinter/main.py -------------------------------------------------------------------------------- /others/so_QrcRelativePath-master/View.cpp: -------------------------------------------------------------------------------- 1 | #include "View.h" 2 | -------------------------------------------------------------------------------- /others/systray/images/bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/systray/images/bad.png -------------------------------------------------------------------------------- /others/systray/systray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/systray/systray.py -------------------------------------------------------------------------------- /others/systray/systray.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/systray/systray.qrc -------------------------------------------------------------------------------- /others/systray/systray_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/systray/systray_rc.py -------------------------------------------------------------------------------- /others/webview-test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/webview-test/main.cpp -------------------------------------------------------------------------------- /others/webview-test/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/webview-test/main.qml -------------------------------------------------------------------------------- /others/webview-test/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/others/webview-test/qml.qrc -------------------------------------------------------------------------------- /questions/43600848/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/43600848/README.md -------------------------------------------------------------------------------- /questions/43600848/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/43600848/main.py -------------------------------------------------------------------------------- /questions/44234204/CV.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/44234204/CV.pdf -------------------------------------------------------------------------------- /questions/44234204/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/44234204/README.md -------------------------------------------------------------------------------- /questions/44234204/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/44234204/main.cpp -------------------------------------------------------------------------------- /questions/44427868/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/44427868/README.md -------------------------------------------------------------------------------- /questions/44427868/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/44427868/main.cpp -------------------------------------------------------------------------------- /questions/44603119/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/44603119/README.md -------------------------------------------------------------------------------- /questions/44603119/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/44603119/data.csv -------------------------------------------------------------------------------- /questions/44603119/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/44603119/main.py -------------------------------------------------------------------------------- /questions/44608954/README.md: -------------------------------------------------------------------------------- 1 | Arduino-QML 2 | -------------------------------------------------------------------------------- /questions/45319476/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/45319476/README.md -------------------------------------------------------------------------------- /questions/45319476/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/45319476/main.cpp -------------------------------------------------------------------------------- /questions/45929404/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/45929404/main.cpp -------------------------------------------------------------------------------- /questions/45964913/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/45964913/README.md -------------------------------------------------------------------------------- /questions/45964913/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/45964913/config.txt -------------------------------------------------------------------------------- /questions/45964913/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/45964913/run.py -------------------------------------------------------------------------------- /questions/45964913/work.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/45964913/work.py -------------------------------------------------------------------------------- /questions/46007131/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46007131/README.md -------------------------------------------------------------------------------- /questions/46007131/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46007131/main.py -------------------------------------------------------------------------------- /questions/46049009/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46049009/README.md -------------------------------------------------------------------------------- /questions/46049009/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46049009/main.cpp -------------------------------------------------------------------------------- /questions/46068390/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46068390/README.md -------------------------------------------------------------------------------- /questions/46068390/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46068390/main.cpp -------------------------------------------------------------------------------- /questions/46137500/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46137500/README.md -------------------------------------------------------------------------------- /questions/46137500/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46137500/main.cpp -------------------------------------------------------------------------------- /questions/46140962/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46140962/README.md -------------------------------------------------------------------------------- /questions/46140962/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46140962/main.cpp -------------------------------------------------------------------------------- /questions/46142167/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46142167/README.md -------------------------------------------------------------------------------- /questions/46142167/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46142167/main.py -------------------------------------------------------------------------------- /questions/46169378/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46169378/README.md -------------------------------------------------------------------------------- /questions/46169378/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46169378/dialog.cpp -------------------------------------------------------------------------------- /questions/46169378/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46169378/dialog.h -------------------------------------------------------------------------------- /questions/46169378/dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46169378/dialog.ui -------------------------------------------------------------------------------- /questions/46169378/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46169378/main.cpp -------------------------------------------------------------------------------- /questions/46189816/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46189816/README.md -------------------------------------------------------------------------------- /questions/46189816/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46189816/main.cpp -------------------------------------------------------------------------------- /questions/46265368/all.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46265368/all.csv -------------------------------------------------------------------------------- /questions/46265368/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46265368/dialog.cpp -------------------------------------------------------------------------------- /questions/46265368/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46265368/dialog.h -------------------------------------------------------------------------------- /questions/46265368/dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46265368/dialog.ui -------------------------------------------------------------------------------- /questions/46265368/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46265368/main.cpp -------------------------------------------------------------------------------- /questions/46327656/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46327656/README.md -------------------------------------------------------------------------------- /questions/46327656/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46327656/main.cpp -------------------------------------------------------------------------------- /questions/46329431/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46329431/README.md -------------------------------------------------------------------------------- /questions/46329431/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46329431/main.cpp -------------------------------------------------------------------------------- /questions/46367568/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46367568/README.md -------------------------------------------------------------------------------- /questions/46367568/Test.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46367568/Test.pro -------------------------------------------------------------------------------- /questions/46367568/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46367568/main.cpp -------------------------------------------------------------------------------- /questions/46367568/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46367568/main.qml -------------------------------------------------------------------------------- /questions/46367568/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46367568/qml.qrc -------------------------------------------------------------------------------- /questions/46375673/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46375673/README.md -------------------------------------------------------------------------------- /questions/46431491/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46431491/README.md -------------------------------------------------------------------------------- /questions/46431491/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46431491/main.cpp -------------------------------------------------------------------------------- /questions/46469720/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46469720/README.md -------------------------------------------------------------------------------- /questions/46469720/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46469720/main.cpp -------------------------------------------------------------------------------- /questions/46547089/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46547089/README.md -------------------------------------------------------------------------------- /questions/46547089/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46547089/main.cpp -------------------------------------------------------------------------------- /questions/46551444/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46551444/README.md -------------------------------------------------------------------------------- /questions/46551444/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46551444/main.cpp -------------------------------------------------------------------------------- /questions/46721954/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46721954/README.md -------------------------------------------------------------------------------- /questions/46721954/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46721954/main.py -------------------------------------------------------------------------------- /questions/46721954/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46721954/main.qml -------------------------------------------------------------------------------- /questions/46854262/login.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46854262/login.h -------------------------------------------------------------------------------- /questions/46854262/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46854262/main.cpp -------------------------------------------------------------------------------- /questions/46854262/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46854262/main.qml -------------------------------------------------------------------------------- /questions/46854262/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46854262/qml.qrc -------------------------------------------------------------------------------- /questions/46895943/data.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46895943/data.db -------------------------------------------------------------------------------- /questions/46895943/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46895943/main.py -------------------------------------------------------------------------------- /questions/46895943/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46895943/util.py -------------------------------------------------------------------------------- /questions/46920221/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46920221/main.cpp -------------------------------------------------------------------------------- /questions/46944670/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46944670/main.cpp -------------------------------------------------------------------------------- /questions/46959824/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/46959824/main.cpp -------------------------------------------------------------------------------- /questions/47024950/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47024950/main.py -------------------------------------------------------------------------------- /questions/47094871/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47094871/main.cpp -------------------------------------------------------------------------------- /questions/47127975/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47127975/data.h -------------------------------------------------------------------------------- /questions/47127975/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47127975/main.cpp -------------------------------------------------------------------------------- /questions/47127975/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47127975/main.qml -------------------------------------------------------------------------------- /questions/47127975/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47127975/qml.qrc -------------------------------------------------------------------------------- /questions/47127975/runnable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47127975/runnable.h -------------------------------------------------------------------------------- /questions/47252632/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47252632/main.py -------------------------------------------------------------------------------- /questions/47252632/useless.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47252632/useless.js -------------------------------------------------------------------------------- /questions/47259825/form.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47259825/form.ui -------------------------------------------------------------------------------- /questions/47259825/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47259825/main.py -------------------------------------------------------------------------------- /questions/47259825/small.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47259825/small.mp4 -------------------------------------------------------------------------------- /questions/47296103/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47296103/main.cpp -------------------------------------------------------------------------------- /questions/47318601/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47318601/main.cpp -------------------------------------------------------------------------------- /questions/47328152/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47328152/main.cpp -------------------------------------------------------------------------------- /questions/47328152/timeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47328152/timeline.h -------------------------------------------------------------------------------- /questions/47328152/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47328152/timers.h -------------------------------------------------------------------------------- /questions/47336766/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47336766/main.py -------------------------------------------------------------------------------- /questions/47338259/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47338259/main.cpp -------------------------------------------------------------------------------- /questions/47338259/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47338259/main.qml -------------------------------------------------------------------------------- /questions/47338259/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47338259/qml.qrc -------------------------------------------------------------------------------- /questions/47359847/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47359847/main.py -------------------------------------------------------------------------------- /questions/47361731/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47361731/data.json -------------------------------------------------------------------------------- /questions/47361731/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47361731/main.cpp -------------------------------------------------------------------------------- /questions/47376517/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47376517/main.py -------------------------------------------------------------------------------- /questions/47376517/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47376517/main.qml -------------------------------------------------------------------------------- /questions/47382617/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47382617/main.py -------------------------------------------------------------------------------- /questions/47383722/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47383722/main.cpp -------------------------------------------------------------------------------- /questions/47390437/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47390437/data.csv -------------------------------------------------------------------------------- /questions/47390437/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47390437/main.cpp -------------------------------------------------------------------------------- /questions/47390437/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47390437/main.qml -------------------------------------------------------------------------------- /questions/47390437/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47390437/qml.qrc -------------------------------------------------------------------------------- /questions/47400049/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47400049/main.cpp -------------------------------------------------------------------------------- /questions/47482282/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47482282/main.cpp -------------------------------------------------------------------------------- /questions/47482282/mybutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47482282/mybutton.h -------------------------------------------------------------------------------- /questions/47494200/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47494200/main.py -------------------------------------------------------------------------------- /questions/47500617/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47500617/main.cpp -------------------------------------------------------------------------------- /questions/47520108/car.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47520108/car.cpp -------------------------------------------------------------------------------- /questions/47520108/car.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47520108/car.h -------------------------------------------------------------------------------- /questions/47520108/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47520108/main.cpp -------------------------------------------------------------------------------- /questions/47520108/vehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47520108/vehicle.h -------------------------------------------------------------------------------- /questions/47529509/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47529509/main.py -------------------------------------------------------------------------------- /questions/47569710/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47569710/main.cpp -------------------------------------------------------------------------------- /questions/47569710/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47569710/main.qml -------------------------------------------------------------------------------- /questions/47569710/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47569710/qml.qrc -------------------------------------------------------------------------------- /questions/47621727/login.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47621727/login.cpp -------------------------------------------------------------------------------- /questions/47621727/login.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47621727/login.h -------------------------------------------------------------------------------- /questions/47621727/login.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47621727/login.ui -------------------------------------------------------------------------------- /questions/47621727/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47621727/main.cpp -------------------------------------------------------------------------------- /questions/47621727/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47621727/user.h -------------------------------------------------------------------------------- /questions/47622771/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47622771/main.cpp -------------------------------------------------------------------------------- /questions/47622771/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47622771/widget.cpp -------------------------------------------------------------------------------- /questions/47622771/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47622771/widget.h -------------------------------------------------------------------------------- /questions/47622771/widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47622771/widget.ui -------------------------------------------------------------------------------- /questions/47625754/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47625754/dialog.cpp -------------------------------------------------------------------------------- /questions/47625754/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47625754/dialog.h -------------------------------------------------------------------------------- /questions/47625754/dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47625754/dialog.ui -------------------------------------------------------------------------------- /questions/47625754/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47625754/main.cpp -------------------------------------------------------------------------------- /questions/47642978/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47642978/main.cpp -------------------------------------------------------------------------------- /questions/47642978/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47642978/widget.cpp -------------------------------------------------------------------------------- /questions/47642978/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47642978/widget.h -------------------------------------------------------------------------------- /questions/47642978/widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47642978/widget.ui -------------------------------------------------------------------------------- /questions/47660289/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47660289/main.cpp -------------------------------------------------------------------------------- /questions/47701474/glwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47701474/glwidget.h -------------------------------------------------------------------------------- /questions/47701474/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47701474/main.cpp -------------------------------------------------------------------------------- /questions/47715491/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47715491/main.cpp -------------------------------------------------------------------------------- /questions/47715491/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47715491/main.qml -------------------------------------------------------------------------------- /questions/47715491/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47715491/qml.qrc -------------------------------------------------------------------------------- /questions/47723954/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47723954/main.cpp -------------------------------------------------------------------------------- /questions/47728237/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47728237/main.cpp -------------------------------------------------------------------------------- /questions/47735042/data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47735042/data.cpp -------------------------------------------------------------------------------- /questions/47735042/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47735042/data.h -------------------------------------------------------------------------------- /questions/47735042/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47735042/main.cpp -------------------------------------------------------------------------------- /questions/47735042/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47735042/main.qml -------------------------------------------------------------------------------- /questions/47735042/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47735042/qml.qrc -------------------------------------------------------------------------------- /questions/47775985/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47775985/main.cpp -------------------------------------------------------------------------------- /questions/47803531/limits_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47803531/limits_t.h -------------------------------------------------------------------------------- /questions/47803531/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47803531/main.cpp -------------------------------------------------------------------------------- /questions/47803531/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47803531/main.qml -------------------------------------------------------------------------------- /questions/47803531/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47803531/qml.qrc -------------------------------------------------------------------------------- /questions/47908654/Marker.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47908654/Marker.qml -------------------------------------------------------------------------------- /questions/47908654/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47908654/main.cpp -------------------------------------------------------------------------------- /questions/47908654/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47908654/main.qml -------------------------------------------------------------------------------- /questions/47908654/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47908654/qml.qrc -------------------------------------------------------------------------------- /questions/47962257/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47962257/main.cpp -------------------------------------------------------------------------------- /questions/47962257/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47962257/main.qml -------------------------------------------------------------------------------- /questions/47962257/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47962257/qml.qrc -------------------------------------------------------------------------------- /questions/47971176/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47971176/main.cpp -------------------------------------------------------------------------------- /questions/47971176/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47971176/widget.h -------------------------------------------------------------------------------- /questions/47971176/worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47971176/worker.h -------------------------------------------------------------------------------- /questions/47972795/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47972795/main.cpp -------------------------------------------------------------------------------- /questions/47982295/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47982295/main.cpp -------------------------------------------------------------------------------- /questions/47982295/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47982295/main.qml -------------------------------------------------------------------------------- /questions/47982295/mainmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47982295/mainmenu.h -------------------------------------------------------------------------------- /questions/47982295/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47982295/qml.qrc -------------------------------------------------------------------------------- /questions/47984647/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47984647/main.cpp -------------------------------------------------------------------------------- /questions/47988595/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47988595/main.cpp -------------------------------------------------------------------------------- /questions/47988595/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47988595/main.qml -------------------------------------------------------------------------------- /questions/47988595/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/47988595/qml.qrc -------------------------------------------------------------------------------- /questions/48043443/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48043443/data.csv -------------------------------------------------------------------------------- /questions/48043443/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48043443/main.cpp -------------------------------------------------------------------------------- /questions/48043443/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48043443/main.qml -------------------------------------------------------------------------------- /questions/48043443/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48043443/qml.qrc -------------------------------------------------------------------------------- /questions/48053045/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48053045/main.py -------------------------------------------------------------------------------- /questions/48053045/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48053045/main.qml -------------------------------------------------------------------------------- /questions/48069595/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48069595/config.cpp -------------------------------------------------------------------------------- /questions/48069595/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48069595/config.h -------------------------------------------------------------------------------- /questions/48069595/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48069595/main.cpp -------------------------------------------------------------------------------- /questions/48069595/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48069595/main.qml -------------------------------------------------------------------------------- /questions/48069595/maincpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48069595/maincpp.h -------------------------------------------------------------------------------- /questions/48069595/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48069595/qml.qrc -------------------------------------------------------------------------------- /questions/48071952/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48071952/main.cpp -------------------------------------------------------------------------------- /questions/48071952/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48071952/main.qml -------------------------------------------------------------------------------- /questions/48071952/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48071952/qml.qrc -------------------------------------------------------------------------------- /questions/48074369/drawitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48074369/drawitem.h -------------------------------------------------------------------------------- /questions/48074369/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48074369/main.cpp -------------------------------------------------------------------------------- /questions/48074369/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48074369/main.qml -------------------------------------------------------------------------------- /questions/48074369/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48074369/qml.qrc -------------------------------------------------------------------------------- /questions/48081448/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48081448/main.cpp -------------------------------------------------------------------------------- /questions/48081448/tux.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48081448/tux.jpeg -------------------------------------------------------------------------------- /questions/48123219/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48123219/main.py -------------------------------------------------------------------------------- /questions/48126896/Marker.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48126896/Marker.qml -------------------------------------------------------------------------------- /questions/48126896/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48126896/main.cpp -------------------------------------------------------------------------------- /questions/48126896/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48126896/main.qml -------------------------------------------------------------------------------- /questions/48126896/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48126896/qml.qrc -------------------------------------------------------------------------------- /questions/48138605/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48138605/main.cpp -------------------------------------------------------------------------------- /questions/48138605/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48138605/widget.cpp -------------------------------------------------------------------------------- /questions/48138605/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48138605/widget.h -------------------------------------------------------------------------------- /questions/48138605/widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48138605/widget.ui -------------------------------------------------------------------------------- /questions/48139716/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48139716/main.cpp -------------------------------------------------------------------------------- /questions/48151862/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48151862/main.cpp -------------------------------------------------------------------------------- /questions/48151862/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48151862/main.qml -------------------------------------------------------------------------------- /questions/48151862/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48151862/qml.qrc -------------------------------------------------------------------------------- /questions/48207970/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48207970/main.cpp -------------------------------------------------------------------------------- /questions/48207970/map.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48207970/map.qml -------------------------------------------------------------------------------- /questions/48243686/.gitignore: -------------------------------------------------------------------------------- 1 | *.user 2 | bin 3 | build 4 | lib 5 | -------------------------------------------------------------------------------- /questions/48243686/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48243686/README.md -------------------------------------------------------------------------------- /questions/48243936/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48243936/main.cpp -------------------------------------------------------------------------------- /questions/48243936/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48243936/main.qml -------------------------------------------------------------------------------- /questions/48243936/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48243936/qml.qrc -------------------------------------------------------------------------------- /questions/48243936/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48243936/qmldir -------------------------------------------------------------------------------- /questions/48243936/tmp.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2.0 2 | 3 | QtObject { 4 | property var obj: SingletonClass 5 | } 6 | -------------------------------------------------------------------------------- /questions/48303751/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48303751/main.cpp -------------------------------------------------------------------------------- /questions/48306251/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48306251/main.cpp -------------------------------------------------------------------------------- /questions/48306251/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48306251/style.css -------------------------------------------------------------------------------- /questions/48327558/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48327558/main.cpp -------------------------------------------------------------------------------- /questions/48349672/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48349672/main.cpp -------------------------------------------------------------------------------- /questions/48349672/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48349672/main.qml -------------------------------------------------------------------------------- /questions/48349672/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48349672/qml.qrc -------------------------------------------------------------------------------- /questions/48365707/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48365707/main.cpp -------------------------------------------------------------------------------- /questions/48372528/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48372528/main.cpp -------------------------------------------------------------------------------- /questions/48372528/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48372528/main.qml -------------------------------------------------------------------------------- /questions/48372528/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48372528/qml.qrc -------------------------------------------------------------------------------- /questions/48490310/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48490310/main.cpp -------------------------------------------------------------------------------- /questions/48490310/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48490310/main.qml -------------------------------------------------------------------------------- /questions/48490310/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48490310/qml.qrc -------------------------------------------------------------------------------- /questions/48534529-1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48534529-1/main.cpp -------------------------------------------------------------------------------- /questions/48534529-1/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48534529-1/main.qml -------------------------------------------------------------------------------- /questions/48534529-1/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48534529-1/qml.qrc -------------------------------------------------------------------------------- /questions/48534529-2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48534529-2/main.cpp -------------------------------------------------------------------------------- /questions/48534529-2/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48534529-2/main.qml -------------------------------------------------------------------------------- /questions/48534529-2/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48534529-2/qml.qrc -------------------------------------------------------------------------------- /questions/48648573/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48648573/main.cpp -------------------------------------------------------------------------------- /questions/48681580/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48681580/main.cpp -------------------------------------------------------------------------------- /questions/48687705/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48687705/main.cpp -------------------------------------------------------------------------------- /questions/48687705/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48687705/main.qml -------------------------------------------------------------------------------- /questions/48687705/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48687705/qml.qrc -------------------------------------------------------------------------------- /questions/48690490/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48690490/main.cpp -------------------------------------------------------------------------------- /questions/48690490/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48690490/main.qml -------------------------------------------------------------------------------- /questions/48690490/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48690490/qml.qrc -------------------------------------------------------------------------------- /questions/48711986/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48711986/main.cpp -------------------------------------------------------------------------------- /questions/48711986/plotter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48711986/plotter.h -------------------------------------------------------------------------------- /questions/48729828/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48729828/main.cpp -------------------------------------------------------------------------------- /questions/48746536/Marker.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48746536/Marker.qml -------------------------------------------------------------------------------- /questions/48746536/airport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48746536/airport.h -------------------------------------------------------------------------------- /questions/48746536/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48746536/main.cpp -------------------------------------------------------------------------------- /questions/48746536/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48746536/main.qml -------------------------------------------------------------------------------- /questions/48746536/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48746536/qml.qrc -------------------------------------------------------------------------------- /questions/48813037/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48813037/main.cpp -------------------------------------------------------------------------------- /questions/48813037/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48813037/main.qml -------------------------------------------------------------------------------- /questions/48813037/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48813037/qml.qrc -------------------------------------------------------------------------------- /questions/48837105/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48837105/main.cpp -------------------------------------------------------------------------------- /questions/48852348/Card.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48852348/Card.qml -------------------------------------------------------------------------------- /questions/48852348/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48852348/main.cpp -------------------------------------------------------------------------------- /questions/48852348/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48852348/main.qml -------------------------------------------------------------------------------- /questions/48852348/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48852348/qml.qrc -------------------------------------------------------------------------------- /questions/48853221/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48853221/main.cpp -------------------------------------------------------------------------------- /questions/48874873/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48874873/main.cpp -------------------------------------------------------------------------------- /questions/48874873/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48874873/main.qml -------------------------------------------------------------------------------- /questions/48874873/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48874873/qml.qrc -------------------------------------------------------------------------------- /questions/48889600/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48889600/Makefile -------------------------------------------------------------------------------- /questions/48889600/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48889600/main.cpp -------------------------------------------------------------------------------- /questions/48889600/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48889600/main.qml -------------------------------------------------------------------------------- /questions/48889600/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48889600/qml.qrc -------------------------------------------------------------------------------- /questions/48891034/Shared.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48891034/Shared.qml -------------------------------------------------------------------------------- /questions/48891034/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48891034/main.cpp -------------------------------------------------------------------------------- /questions/48891034/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48891034/main.qml -------------------------------------------------------------------------------- /questions/48891034/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48891034/qml.qrc -------------------------------------------------------------------------------- /questions/48891034/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48891034/qmldir -------------------------------------------------------------------------------- /questions/48972688/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48972688/main.cpp -------------------------------------------------------------------------------- /questions/48972688/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48972688/main.qml -------------------------------------------------------------------------------- /questions/48972688/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48972688/qml.qrc -------------------------------------------------------------------------------- /questions/48972688/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/48972688/utils.js -------------------------------------------------------------------------------- /questions/49018463/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49018463/main.cpp -------------------------------------------------------------------------------- /questions/49018463/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49018463/main.qml -------------------------------------------------------------------------------- /questions/49018463/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49018463/qml.qrc -------------------------------------------------------------------------------- /questions/49055538/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49055538/main.cpp -------------------------------------------------------------------------------- /questions/49055538/player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49055538/player.cpp -------------------------------------------------------------------------------- /questions/49055538/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49055538/player.h -------------------------------------------------------------------------------- /questions/49096407/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49096407/main.cpp -------------------------------------------------------------------------------- /questions/49099606/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49099606/main.cpp -------------------------------------------------------------------------------- /questions/49162969/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49162969/main.cpp -------------------------------------------------------------------------------- /questions/49163921/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49163921/main.cpp -------------------------------------------------------------------------------- /questions/49172604/icons.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49172604/icons.qrc -------------------------------------------------------------------------------- /questions/49196328/glwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49196328/glwidget.h -------------------------------------------------------------------------------- /questions/49196328/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49196328/main.cpp -------------------------------------------------------------------------------- /questions/49197080/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49197080/main.cpp -------------------------------------------------------------------------------- /questions/49197080/testsize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49197080/testsize.h -------------------------------------------------------------------------------- /questions/49203661/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49203661/main.cpp -------------------------------------------------------------------------------- /questions/49312744/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49312744/main.cpp -------------------------------------------------------------------------------- /questions/49326344/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49326344/main.cpp -------------------------------------------------------------------------------- /questions/49326344/myserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49326344/myserver.h -------------------------------------------------------------------------------- /questions/49332159/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49332159/main.cpp -------------------------------------------------------------------------------- /questions/49344638/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49344638/main.cpp -------------------------------------------------------------------------------- /questions/49344638/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49344638/main.qml -------------------------------------------------------------------------------- /questions/49369519/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49369519/main.cpp -------------------------------------------------------------------------------- /questions/49410557/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49410557/main.cpp -------------------------------------------------------------------------------- /questions/49417693/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49417693/main.py -------------------------------------------------------------------------------- /questions/49527395/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49527395/main.cpp -------------------------------------------------------------------------------- /questions/49527395/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49527395/main.qml -------------------------------------------------------------------------------- /questions/49527395/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49527395/qml.qrc -------------------------------------------------------------------------------- /questions/49536899/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49536899/block.cpp -------------------------------------------------------------------------------- /questions/49536899/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49536899/block.h -------------------------------------------------------------------------------- /questions/49536899/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49536899/main.cpp -------------------------------------------------------------------------------- /questions/49536899/pix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49536899/pix.png -------------------------------------------------------------------------------- /questions/49542472/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49542472/main.cpp -------------------------------------------------------------------------------- /questions/49568486/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49568486/main.cpp -------------------------------------------------------------------------------- /questions/49568486/player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49568486/player.cpp -------------------------------------------------------------------------------- /questions/49568486/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49568486/player.h -------------------------------------------------------------------------------- /questions/49568486/player.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49568486/player.pro -------------------------------------------------------------------------------- /questions/49568486/slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49568486/slider.h -------------------------------------------------------------------------------- /questions/49605955/book.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49605955/book.cpp -------------------------------------------------------------------------------- /questions/49605955/book.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49605955/book.h -------------------------------------------------------------------------------- /questions/49605955/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49605955/dialog.cpp -------------------------------------------------------------------------------- /questions/49605955/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49605955/dialog.h -------------------------------------------------------------------------------- /questions/49605955/dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49605955/dialog.ui -------------------------------------------------------------------------------- /questions/49605955/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49605955/library.h -------------------------------------------------------------------------------- /questions/49605955/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49605955/main.cpp -------------------------------------------------------------------------------- /questions/49727462/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49727462/arrow.png -------------------------------------------------------------------------------- /questions/49727462/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49727462/main.cpp -------------------------------------------------------------------------------- /questions/49727462/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49727462/main.qml -------------------------------------------------------------------------------- /questions/49727462/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49727462/qml.qrc -------------------------------------------------------------------------------- /questions/49760457/Scene.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49760457/Scene.qml -------------------------------------------------------------------------------- /questions/49760457/Style.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49760457/Style.qml -------------------------------------------------------------------------------- /questions/49760457/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49760457/main.cpp -------------------------------------------------------------------------------- /questions/49760457/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49760457/main.qml -------------------------------------------------------------------------------- /questions/49760457/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49760457/qml.qrc -------------------------------------------------------------------------------- /questions/49760457/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49760457/qmldir -------------------------------------------------------------------------------- /questions/49803820/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49803820/main.cpp -------------------------------------------------------------------------------- /questions/49803820/owl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49803820/owl.png -------------------------------------------------------------------------------- /questions/49844075/location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49844075/location.h -------------------------------------------------------------------------------- /questions/49844075/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49844075/main.cpp -------------------------------------------------------------------------------- /questions/49844075/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49844075/main.qml -------------------------------------------------------------------------------- /questions/49844075/main.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49844075/main.qmlc -------------------------------------------------------------------------------- /questions/49844075/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49844075/qml.qrc -------------------------------------------------------------------------------- /questions/49850513/keypad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49850513/keypad.cpp -------------------------------------------------------------------------------- /questions/49850513/keypad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49850513/keypad.h -------------------------------------------------------------------------------- /questions/49850513/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49850513/main.cpp -------------------------------------------------------------------------------- /questions/49910514/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/49910514/main.cpp -------------------------------------------------------------------------------- /questions/50007170/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50007170/main.cpp -------------------------------------------------------------------------------- /questions/50007170/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50007170/main.qml -------------------------------------------------------------------------------- /questions/50007170/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50007170/qml.qrc -------------------------------------------------------------------------------- /questions/50046645/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50046645/main.cpp -------------------------------------------------------------------------------- /questions/50046645/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50046645/main.qml -------------------------------------------------------------------------------- /questions/50046645/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50046645/qml.qrc -------------------------------------------------------------------------------- /questions/50138172/bubble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50138172/bubble.cpp -------------------------------------------------------------------------------- /questions/50138172/bubble.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50138172/bubble.hh -------------------------------------------------------------------------------- /questions/50138172/images.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50138172/images.qrc -------------------------------------------------------------------------------- /questions/50138172/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50138172/main.cpp -------------------------------------------------------------------------------- /questions/50178597/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50178597/main.cpp -------------------------------------------------------------------------------- /questions/50178597/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50178597/main.qml -------------------------------------------------------------------------------- /questions/50178597/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50178597/qml.qrc -------------------------------------------------------------------------------- /questions/50180990/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50180990/main.cpp -------------------------------------------------------------------------------- /questions/50180990/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50180990/main.qml -------------------------------------------------------------------------------- /questions/50180990/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50180990/qml.qrc -------------------------------------------------------------------------------- /questions/50198751/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50198751/main.cpp -------------------------------------------------------------------------------- /questions/50259197/edge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50259197/edge.cpp -------------------------------------------------------------------------------- /questions/50259197/edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50259197/edge.h -------------------------------------------------------------------------------- /questions/50259197/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50259197/main.cpp -------------------------------------------------------------------------------- /questions/50259197/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50259197/node.cpp -------------------------------------------------------------------------------- /questions/50259197/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50259197/node.h -------------------------------------------------------------------------------- /questions/50259197/win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50259197/win.cpp -------------------------------------------------------------------------------- /questions/50259197/win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50259197/win.h -------------------------------------------------------------------------------- /questions/50279503/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50279503/block.cpp -------------------------------------------------------------------------------- /questions/50279503/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50279503/block.h -------------------------------------------------------------------------------- /questions/50279503/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50279503/main.cpp -------------------------------------------------------------------------------- /questions/50279503/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50279503/scene.cpp -------------------------------------------------------------------------------- /questions/50279503/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50279503/scene.h -------------------------------------------------------------------------------- /questions/50378537/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50378537/main.cpp -------------------------------------------------------------------------------- /questions/50456263/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50456263/image.png -------------------------------------------------------------------------------- /questions/50456263/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50456263/main.cpp -------------------------------------------------------------------------------- /questions/50477761/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50477761/main.cpp -------------------------------------------------------------------------------- /questions/50477761/webpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50477761/webpage.h -------------------------------------------------------------------------------- /questions/50498219/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50498219/ball.png -------------------------------------------------------------------------------- /questions/50498219/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50498219/main.cpp -------------------------------------------------------------------------------- /questions/50550089/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50550089/circle.png -------------------------------------------------------------------------------- /questions/50550089/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50550089/main.cpp -------------------------------------------------------------------------------- /questions/50570554/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50570554/main.cpp -------------------------------------------------------------------------------- /questions/50609108/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50609108/main.cpp -------------------------------------------------------------------------------- /questions/50609108/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50609108/main.qml -------------------------------------------------------------------------------- /questions/50609108/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50609108/qml.qrc -------------------------------------------------------------------------------- /questions/50676066/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50676066/main.cpp -------------------------------------------------------------------------------- /questions/50704574/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50704574/README.md -------------------------------------------------------------------------------- /questions/50704574/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50704574/main.cpp -------------------------------------------------------------------------------- /questions/50704574/myarrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50704574/myarrow.h -------------------------------------------------------------------------------- /questions/50847204/lena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50847204/lena.png -------------------------------------------------------------------------------- /questions/50847204/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/50847204/main.cpp -------------------------------------------------------------------------------- /questions/51034391/QQ.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51034391/QQ.pro -------------------------------------------------------------------------------- /questions/51034391/data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51034391/data.cpp -------------------------------------------------------------------------------- /questions/51034391/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51034391/data.h -------------------------------------------------------------------------------- /questions/51034391/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51034391/main.cpp -------------------------------------------------------------------------------- /questions/51034391/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51034391/main.qml -------------------------------------------------------------------------------- /questions/51034391/mymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51034391/mymodel.h -------------------------------------------------------------------------------- /questions/51034391/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51034391/qml.qrc -------------------------------------------------------------------------------- /questions/51055511/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51055511/main.cpp -------------------------------------------------------------------------------- /questions/51085719/callout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51085719/callout.h -------------------------------------------------------------------------------- /questions/51085719/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51085719/main.cpp -------------------------------------------------------------------------------- /questions/51085719/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51085719/view.cpp -------------------------------------------------------------------------------- /questions/51085719/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51085719/view.h -------------------------------------------------------------------------------- /questions/51092115/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51092115/main.cpp -------------------------------------------------------------------------------- /questions/51106914/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51106914/index.html -------------------------------------------------------------------------------- /questions/51106914/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51106914/main.py -------------------------------------------------------------------------------- /questions/51106914/utils.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51106914/utils.css -------------------------------------------------------------------------------- /questions/51106914/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51106914/utils.js -------------------------------------------------------------------------------- /questions/51144569/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51144569/main.py -------------------------------------------------------------------------------- /questions/51145763/lineitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51145763/lineitem.h -------------------------------------------------------------------------------- /questions/51145763/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51145763/main.cpp -------------------------------------------------------------------------------- /questions/51145763/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51145763/main.qml -------------------------------------------------------------------------------- /questions/51145763/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51145763/qml.qrc -------------------------------------------------------------------------------- /questions/51149966/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51149966/main.cpp -------------------------------------------------------------------------------- /questions/51149966/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51149966/main.qml -------------------------------------------------------------------------------- /questions/51149966/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51149966/qml.qrc -------------------------------------------------------------------------------- /questions/51149966/sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51149966/sample.h -------------------------------------------------------------------------------- /questions/51151806/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51151806/main.cpp -------------------------------------------------------------------------------- /questions/51151806/test.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51151806/test.jpeg -------------------------------------------------------------------------------- /questions/51173216/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51173216/main.cpp -------------------------------------------------------------------------------- /questions/51192832/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51192832/main.cpp -------------------------------------------------------------------------------- /questions/51199137/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51199137/main.py -------------------------------------------------------------------------------- /questions/51261464/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51261464/main.cpp -------------------------------------------------------------------------------- /questions/51261464/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51261464/main.qml -------------------------------------------------------------------------------- /questions/51261464/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51261464/model.cpp -------------------------------------------------------------------------------- /questions/51261464/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51261464/model.h -------------------------------------------------------------------------------- /questions/51261464/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51261464/qml.qrc -------------------------------------------------------------------------------- /questions/51313111/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51313111/index.html -------------------------------------------------------------------------------- /questions/51313111/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51313111/main.cpp -------------------------------------------------------------------------------- /questions/51313111/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51313111/main.qml -------------------------------------------------------------------------------- /questions/51313111/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51313111/qml.qrc -------------------------------------------------------------------------------- /questions/51356559-1/empdb.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51356559-1/empdb.db -------------------------------------------------------------------------------- /questions/51356559-1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51356559-1/main.cpp -------------------------------------------------------------------------------- /questions/51356559/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51356559/main.cpp -------------------------------------------------------------------------------- /questions/51364623/item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51364623/item.h -------------------------------------------------------------------------------- /questions/51364623/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51364623/main.cpp -------------------------------------------------------------------------------- /questions/51364623/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51364623/main.qml -------------------------------------------------------------------------------- /questions/51364623/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51364623/qml.qrc -------------------------------------------------------------------------------- /questions/51382435/item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51382435/item.h -------------------------------------------------------------------------------- /questions/51382435/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51382435/main.cpp -------------------------------------------------------------------------------- /questions/51382435/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51382435/main.qml -------------------------------------------------------------------------------- /questions/51382435/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51382435/qml.qrc -------------------------------------------------------------------------------- /questions/51490722/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51490722/main.cpp -------------------------------------------------------------------------------- /questions/51492181/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51492181/image.png -------------------------------------------------------------------------------- /questions/51492181/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51492181/main.cpp -------------------------------------------------------------------------------- /questions/51492181/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51492181/utils.h -------------------------------------------------------------------------------- /questions/51577711/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51577711/main.cpp -------------------------------------------------------------------------------- /questions/51593476/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51593476/main.cpp -------------------------------------------------------------------------------- /questions/51629014/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51629014/main.cpp -------------------------------------------------------------------------------- /questions/51635985/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51635985/main.cpp -------------------------------------------------------------------------------- /questions/51635985/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51635985/main.qml -------------------------------------------------------------------------------- /questions/51635985/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51635985/test.cpp -------------------------------------------------------------------------------- /questions/51635985/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51635985/test.h -------------------------------------------------------------------------------- /questions/51729672/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51729672/main.cpp -------------------------------------------------------------------------------- /questions/51729672/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51729672/main.qml -------------------------------------------------------------------------------- /questions/51729672/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51729672/qml.qrc -------------------------------------------------------------------------------- /questions/51747950/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51747950/backend.h -------------------------------------------------------------------------------- /questions/51747950/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51747950/main.cpp -------------------------------------------------------------------------------- /questions/51747950/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51747950/main.qml -------------------------------------------------------------------------------- /questions/51747950/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51747950/qml.qrc -------------------------------------------------------------------------------- /questions/51751453/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51751453/main.cpp -------------------------------------------------------------------------------- /questions/51757280/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51757280/main.cpp -------------------------------------------------------------------------------- /questions/51757280/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51757280/main.qml -------------------------------------------------------------------------------- /questions/51757280/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51757280/qml.qrc -------------------------------------------------------------------------------- /questions/51793635/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51793635/main.cpp -------------------------------------------------------------------------------- /questions/51793635/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51793635/main.qml -------------------------------------------------------------------------------- /questions/51793635/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51793635/qml.qrc -------------------------------------------------------------------------------- /questions/51793635/uidata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51793635/uidata.cpp -------------------------------------------------------------------------------- /questions/51793635/uidata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/51793635/uidata.h -------------------------------------------------------------------------------- /questions/52003389/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52003389/main.cpp -------------------------------------------------------------------------------- /questions/52083923/MyItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52083923/MyItem.qml -------------------------------------------------------------------------------- /questions/52083923/currency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52083923/currency.h -------------------------------------------------------------------------------- /questions/52083923/factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52083923/factory.h -------------------------------------------------------------------------------- /questions/52083923/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52083923/main.cpp -------------------------------------------------------------------------------- /questions/52083923/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52083923/main.qml -------------------------------------------------------------------------------- /questions/52083923/money.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52083923/money.h -------------------------------------------------------------------------------- /questions/52083923/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52083923/qml.qrc -------------------------------------------------------------------------------- /questions/52213021/Curve1.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52213021/Curve1.qml -------------------------------------------------------------------------------- /questions/52213021/Curve2.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2.0 2 | 3 | Rectangle{ 4 | color: "blue" 5 | } 6 | -------------------------------------------------------------------------------- /questions/52213021/Curve3.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52213021/Curve3.qml -------------------------------------------------------------------------------- /questions/52213021/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52213021/main.cpp -------------------------------------------------------------------------------- /questions/52435692/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52435692/main.cpp -------------------------------------------------------------------------------- /questions/52442271/counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52442271/counter.h -------------------------------------------------------------------------------- /questions/52483937/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52483937/main.cpp -------------------------------------------------------------------------------- /questions/52483937/userinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52483937/userinfo.h -------------------------------------------------------------------------------- /questions/52486746/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52486746/main.cpp -------------------------------------------------------------------------------- /questions/52486746/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52486746/main.qml -------------------------------------------------------------------------------- /questions/52486746/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52486746/marker.png -------------------------------------------------------------------------------- /questions/52524574/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52524574/main.cpp -------------------------------------------------------------------------------- /questions/52524574/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52524574/main.qml -------------------------------------------------------------------------------- /questions/52524574/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52524574/qml.qrc -------------------------------------------------------------------------------- /questions/52581687/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52581687/main.cpp -------------------------------------------------------------------------------- /questions/52581687/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52581687/main.qml -------------------------------------------------------------------------------- /questions/52581687/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52581687/qml.qrc -------------------------------------------------------------------------------- /questions/52583391/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52583391/main.cpp -------------------------------------------------------------------------------- /questions/52843694/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52843694/main.cpp -------------------------------------------------------------------------------- /questions/52843694/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52843694/main.qml -------------------------------------------------------------------------------- /questions/52843694/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52843694/qml.qrc -------------------------------------------------------------------------------- /questions/52931088/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52931088/main.cpp -------------------------------------------------------------------------------- /questions/52931088/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52931088/main.qml -------------------------------------------------------------------------------- /questions/52931088/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52931088/qml.qrc -------------------------------------------------------------------------------- /questions/52944567/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52944567/main.py -------------------------------------------------------------------------------- /questions/52944567/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/52944567/main.qml -------------------------------------------------------------------------------- /questions/53018492/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53018492/index.html -------------------------------------------------------------------------------- /questions/53018492/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53018492/main.cpp -------------------------------------------------------------------------------- /questions/53032423/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53032423/main.py -------------------------------------------------------------------------------- /questions/53288644/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53288644/main.cpp -------------------------------------------------------------------------------- /questions/53288886/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53288886/main.cpp -------------------------------------------------------------------------------- /questions/53288886/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53288886/main.qml -------------------------------------------------------------------------------- /questions/53288886/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53288886/qml.qrc -------------------------------------------------------------------------------- /questions/53349623/eng-chs.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53349623/eng-chs.qm -------------------------------------------------------------------------------- /questions/53349623/eng-chs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53349623/eng-chs.ts -------------------------------------------------------------------------------- /questions/53349623/eng-fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53349623/eng-fr.qm -------------------------------------------------------------------------------- /questions/53349623/eng-fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53349623/eng-fr.ts -------------------------------------------------------------------------------- /questions/53349623/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53349623/main.py -------------------------------------------------------------------------------- /questions/53489455/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53489455/main.cpp -------------------------------------------------------------------------------- /questions/53489455/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53489455/main.qml -------------------------------------------------------------------------------- /questions/53489455/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53489455/qml.qrc -------------------------------------------------------------------------------- /questions/53489455/textitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53489455/textitem.h -------------------------------------------------------------------------------- /questions/53496605/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53496605/main.py -------------------------------------------------------------------------------- /questions/53630483/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53630483/main.cpp -------------------------------------------------------------------------------- /questions/53630483/wizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53630483/wizard.cpp -------------------------------------------------------------------------------- /questions/53630483/wizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53630483/wizard.h -------------------------------------------------------------------------------- /questions/53639514/src/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53639514/src/base.h -------------------------------------------------------------------------------- /questions/53673924/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53673924/main.cpp -------------------------------------------------------------------------------- /questions/53673924/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53673924/main.qml -------------------------------------------------------------------------------- /questions/53673924/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53673924/qml.qrc -------------------------------------------------------------------------------- /questions/53711633/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53711633/main.cpp -------------------------------------------------------------------------------- /questions/53724753/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53724753/main.cpp -------------------------------------------------------------------------------- /questions/53724753/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53724753/main.qml -------------------------------------------------------------------------------- /questions/53724753/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53724753/qml.qrc -------------------------------------------------------------------------------- /questions/53807281/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53807281/main.cpp -------------------------------------------------------------------------------- /questions/53807281/qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53807281/qt.png -------------------------------------------------------------------------------- /questions/53829786/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53829786/main.cpp -------------------------------------------------------------------------------- /questions/53829786/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53829786/main.qml -------------------------------------------------------------------------------- /questions/53829786/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53829786/qml.qrc -------------------------------------------------------------------------------- /questions/53855799/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53855799/main.py -------------------------------------------------------------------------------- /questions/53883924/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53883924/main.py -------------------------------------------------------------------------------- /questions/53899209/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53899209/main.py -------------------------------------------------------------------------------- /questions/53899209/ui/fan.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53899209/ui/fan.ui -------------------------------------------------------------------------------- /questions/53899209/ui/home.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53899209/ui/home.ui -------------------------------------------------------------------------------- /questions/53899209/ui/main.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/53899209/ui/main.ui -------------------------------------------------------------------------------- /questions/55176915/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | PreviewsShown=false 3 | Timestamp=2019,3,15,10,4,21 4 | Version=4 5 | -------------------------------------------------------------------------------- /questions/55176915/flower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55176915/flower.cpp -------------------------------------------------------------------------------- /questions/55176915/flower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55176915/flower.h -------------------------------------------------------------------------------- /questions/55176915/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55176915/main.cpp -------------------------------------------------------------------------------- /questions/55176915/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55176915/main.qml -------------------------------------------------------------------------------- /questions/55176915/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55176915/qml.qrc -------------------------------------------------------------------------------- /questions/55200746/foomodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55200746/foomodel.h -------------------------------------------------------------------------------- /questions/55200746/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55200746/main.cpp -------------------------------------------------------------------------------- /questions/55200746/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55200746/main.qml -------------------------------------------------------------------------------- /questions/55200746/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55200746/qml.qrc -------------------------------------------------------------------------------- /questions/55212321/yellowpagescraper/requirements.txt: -------------------------------------------------------------------------------- 1 | Scrapy==2.11.2 2 | PyQt5==5.12 3 | -------------------------------------------------------------------------------- /questions/55212321/yellowpagescraper/scrape/scrape/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /questions/55241644/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55241644/main.py -------------------------------------------------------------------------------- /questions/55366046/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55366046/key.svg -------------------------------------------------------------------------------- /questions/55366046/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55366046/main.py -------------------------------------------------------------------------------- /questions/55390091/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55390091/main.cpp -------------------------------------------------------------------------------- /questions/55390091/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55390091/main.qml -------------------------------------------------------------------------------- /questions/55390091/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55390091/marker.png -------------------------------------------------------------------------------- /questions/55390091/marker.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55390091/marker.qml -------------------------------------------------------------------------------- /questions/55390091/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55390091/qml.qrc -------------------------------------------------------------------------------- /questions/55505012/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55505012/main.py -------------------------------------------------------------------------------- /questions/55505012/test.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55505012/test.ui -------------------------------------------------------------------------------- /questions/55505012/test_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55505012/test_ui.py -------------------------------------------------------------------------------- /questions/55541882/py/pub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55541882/py/pub.py -------------------------------------------------------------------------------- /questions/55541882/py/sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55541882/py/sub.py -------------------------------------------------------------------------------- /questions/55585443/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55585443/main.cpp -------------------------------------------------------------------------------- /questions/55586755/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55586755/main.cpp -------------------------------------------------------------------------------- /questions/55586755/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55586755/main.qml -------------------------------------------------------------------------------- /questions/55586755/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55586755/qml.qrc -------------------------------------------------------------------------------- /questions/55610163/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55610163/main.cpp -------------------------------------------------------------------------------- /questions/55610163/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55610163/main.qml -------------------------------------------------------------------------------- /questions/55610163/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55610163/qml.qrc -------------------------------------------------------------------------------- /questions/55685163/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55685163/main.cpp -------------------------------------------------------------------------------- /questions/55695104/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55695104/main.cpp -------------------------------------------------------------------------------- /questions/55695104/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55695104/main.qml -------------------------------------------------------------------------------- /questions/55695104/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55695104/qml.qrc -------------------------------------------------------------------------------- /questions/55707726/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55707726/main.py -------------------------------------------------------------------------------- /questions/55787138/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55787138/main.cpp -------------------------------------------------------------------------------- /questions/55787138/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55787138/main.qml -------------------------------------------------------------------------------- /questions/55787138/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55787138/qml.qrc -------------------------------------------------------------------------------- /questions/55857689/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55857689/.gitignore -------------------------------------------------------------------------------- /questions/55857689/cbottom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55857689/cbottom.h -------------------------------------------------------------------------------- /questions/55857689/cmiddle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55857689/cmiddle.h -------------------------------------------------------------------------------- /questions/55857689/ctop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55857689/ctop.h -------------------------------------------------------------------------------- /questions/55857689/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55857689/main.cpp -------------------------------------------------------------------------------- /questions/55857689/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55857689/main.qml -------------------------------------------------------------------------------- /questions/55857689/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55857689/qml.qrc -------------------------------------------------------------------------------- /questions/55945085/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55945085/README.md -------------------------------------------------------------------------------- /questions/55945085/slam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/55945085/slam.cpp -------------------------------------------------------------------------------- /questions/56264007/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/56264007/main.cpp -------------------------------------------------------------------------------- /questions/56264007/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/56264007/main.qml -------------------------------------------------------------------------------- /questions/56264007/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/56264007/qml.qrc -------------------------------------------------------------------------------- /questions/56285169/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/56285169/main.cpp -------------------------------------------------------------------------------- /questions/56285169/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/56285169/main.qml -------------------------------------------------------------------------------- /questions/56285169/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/56285169/marker.png -------------------------------------------------------------------------------- /questions/56285169/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/56285169/qml.qrc -------------------------------------------------------------------------------- /questions/56425038/Marker.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/56425038/Marker.qml -------------------------------------------------------------------------------- /questions/56425038/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/56425038/main.cpp -------------------------------------------------------------------------------- /questions/56614203/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/56614203/main.cpp -------------------------------------------------------------------------------- /questions/56614203/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/56614203/main.qml -------------------------------------------------------------------------------- /questions/56614203/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/56614203/qml.qrc -------------------------------------------------------------------------------- /questions/57201204/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/57201204/main.py -------------------------------------------------------------------------------- /questions/57212814/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/57212814/main.cpp -------------------------------------------------------------------------------- /questions/57246615/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/57246615/main.py -------------------------------------------------------------------------------- /questions/59229716/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/59229716/Dockerfile -------------------------------------------------------------------------------- /questions/59229716/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/59229716/README.md -------------------------------------------------------------------------------- /questions/59229716/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/59229716/main.py -------------------------------------------------------------------------------- /questions/59331063/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/59331063/Dockerfile -------------------------------------------------------------------------------- /questions/59331063/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/59331063/README.md -------------------------------------------------------------------------------- /questions/59336957/host/README: -------------------------------------------------------------------------------- 1 | cp org.eyllanesc.qt_host.json ~/.config/google-chrome/NativeMessagingHosts 2 | -------------------------------------------------------------------------------- /questions/59405296/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/59405296/main.cpp -------------------------------------------------------------------------------- /questions/59708421/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/59708421/main.cpp -------------------------------------------------------------------------------- /questions/59711301/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/59711301/Dockerfile -------------------------------------------------------------------------------- /questions/59711301/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/59711301/README.md -------------------------------------------------------------------------------- /questions/59711301/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/59711301/main.py -------------------------------------------------------------------------------- /questions/59777150/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/59777150/helper.cpp -------------------------------------------------------------------------------- /questions/59777150/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/59777150/helper.h -------------------------------------------------------------------------------- /questions/59777150/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/59777150/main.cpp -------------------------------------------------------------------------------- /questions/59777150/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/59777150/main.qml -------------------------------------------------------------------------------- /questions/59777150/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/59777150/qml.qrc -------------------------------------------------------------------------------- /questions/59780153/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/59780153/main.cpp -------------------------------------------------------------------------------- /questions/59780153/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/59780153/main.qml -------------------------------------------------------------------------------- /questions/59780153/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/59780153/qml.qrc -------------------------------------------------------------------------------- /questions/59828470/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/59828470/main.py -------------------------------------------------------------------------------- /questions/59847739/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/59847739/main.cpp -------------------------------------------------------------------------------- /questions/59847739/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/59847739/main.qml -------------------------------------------------------------------------------- /questions/59847739/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/59847739/qml.qrc -------------------------------------------------------------------------------- /questions/60354837/Config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/60354837/Config.ini -------------------------------------------------------------------------------- /questions/60354837/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/60354837/main.py -------------------------------------------------------------------------------- /questions/60354837/main.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/60354837/main.ui -------------------------------------------------------------------------------- /questions/60354837/main_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/60354837/main_ui.py -------------------------------------------------------------------------------- /questions/60442347/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/60442347/Dockerfile -------------------------------------------------------------------------------- /questions/60442347/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/60442347/README.md -------------------------------------------------------------------------------- /questions/61127606/websocket_java/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /questions/61303341/README.md: -------------------------------------------------------------------------------- 1 | Output: 2 | 3 | ![](Screenshot.png) -------------------------------------------------------------------------------- /questions/61303341/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/61303341/main.cpp -------------------------------------------------------------------------------- /questions/61303341/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/61303341/qml.qrc -------------------------------------------------------------------------------- /questions/62069201/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/62069201/backend.h -------------------------------------------------------------------------------- /questions/62069201/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/62069201/main.cpp -------------------------------------------------------------------------------- /questions/62069201/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/62069201/main.qml -------------------------------------------------------------------------------- /questions/62069201/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/62069201/qml.qrc -------------------------------------------------------------------------------- /questions/62555286/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/62555286/Dockerfile -------------------------------------------------------------------------------- /questions/62555286/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/62555286/README.md -------------------------------------------------------------------------------- /questions/62676199/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/62676199/Dockerfile -------------------------------------------------------------------------------- /questions/62676199/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/62676199/main.py -------------------------------------------------------------------------------- /questions/62745413/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/62745413/Dockerfile -------------------------------------------------------------------------------- /questions/62745413/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/62745413/main.py -------------------------------------------------------------------------------- /questions/62765004/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/62765004/main.py -------------------------------------------------------------------------------- /questions/62927504/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/62927504/main.py -------------------------------------------------------------------------------- /questions/62927504/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/62927504/main.qml -------------------------------------------------------------------------------- /questions/63489592/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/63489592/main.py -------------------------------------------------------------------------------- /questions/63577032/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/63577032/main.cpp -------------------------------------------------------------------------------- /questions/64591348/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/64591348/main.cpp -------------------------------------------------------------------------------- /questions/64746801/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/64746801/main.cpp -------------------------------------------------------------------------------- /questions/64746801/score.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/64746801/score.cpp -------------------------------------------------------------------------------- /questions/64746801/score.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/64746801/score.h -------------------------------------------------------------------------------- /questions/65231036/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/65231036/main.cpp -------------------------------------------------------------------------------- /questions/65646117/arrow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/65646117/arrow.cpp -------------------------------------------------------------------------------- /questions/65646117/arrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/65646117/arrow.h -------------------------------------------------------------------------------- /questions/65646117/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/65646117/main.cpp -------------------------------------------------------------------------------- /questions/68528179/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/68528179/main.py -------------------------------------------------------------------------------- /questions/68554025/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/68554025/main.py -------------------------------------------------------------------------------- /questions/68605331/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/68605331/main.cpp -------------------------------------------------------------------------------- /questions/68721681/plugin/fooplugin.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /questions/68769134/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/68769134/main.py -------------------------------------------------------------------------------- /questions/68795702/3rdParty/OpenSAEJ1939/OpenSAEJ1939.pri: -------------------------------------------------------------------------------- 1 | INCLUDEPATH += $$PWD 2 | -------------------------------------------------------------------------------- /questions/68795702/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/68795702/main.cpp -------------------------------------------------------------------------------- /questions/69432427/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/69432427/main.cpp -------------------------------------------------------------------------------- /questions/69432427/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/69432427/main.qml -------------------------------------------------------------------------------- /questions/69432427/producer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/69432427/producer.h -------------------------------------------------------------------------------- /questions/69432427/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/questions/69432427/qml.qrc -------------------------------------------------------------------------------- /templates/TemplateQWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/templates/TemplateQWidget.py -------------------------------------------------------------------------------- /templates/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyllanesc/stackoverflow/HEAD/templates/main.qml --------------------------------------------------------------------------------