├── .gitignore ├── CMakeLists.txt ├── LICENSE.GPL.txt ├── LICENSE.txt ├── README.md ├── doc ├── .gitignore ├── CMakeLists.txt ├── Doxyfile ├── Doxyfile.in ├── DoxygenLayout.xml ├── customdoxygen.css ├── logo_64.png ├── logo_96.png ├── qt-tagfiles.py ├── qttagsfix.py └── tagfiles │ └── qt.tags ├── examples └── imageviewer │ ├── CMakeLists.txt │ ├── GraphicsImageView.cpp │ ├── GraphicsImageView.h │ ├── ImageGrid.cpp │ ├── ImageGrid.h │ ├── ImageViewer.cpp │ ├── ImageViewer.h │ ├── README.md │ ├── doc │ ├── imageviewer-grid_alt.jpg │ ├── imageviewer-grid_infobox.jpg │ ├── imageviewer-grid_loaded.jpg │ ├── imageviewer-image_alt.jpg │ ├── imageviewer-image_info.jpg │ └── imageviewer-image_tbleft.jpg │ ├── imageviewer.css │ ├── imageviewer.qrc │ └── main.cpp ├── maxLibQt.pri ├── maxLibQt.pro └── src ├── CMakeLists.txt ├── core ├── AppDebugMessageHandler ├── AppDebugMessageHandler.cpp ├── AppDebugMessageHandler.h ├── CMakeLists.txt ├── core.pro └── maxLibQtCore.pri ├── itemmodels ├── CMakeLists.txt ├── GroupedItemsProxyModel ├── GroupedItemsProxyModel.cpp ├── GroupedItemsProxyModel.h ├── itemmodels.pro └── maxLibQtItemModels.pri ├── quick ├── maxLibQt │ ├── controls │ │ ├── MLDoubleSpinBox.qml │ │ ├── MLHexSpinBox.qml │ │ ├── controls.pri │ │ ├── controls.pro │ │ ├── qmldir │ │ └── tests.qml │ └── maxLibQt.dox └── quick.pro ├── src.pro └── widgets ├── ActionPushButton.cpp ├── ActionPushButton.h ├── BuddyLabel.h ├── CMakeLists.txt ├── CollapsingToolBar.h ├── ExportableTableView ├── ExportableTableView.cpp ├── ExportableTableView.h ├── OverlayStackLayout ├── OverlayStackLayout.cpp ├── OverlayStackLayout.h ├── RoundedMessageBox.h ├── ScrollableMessageBox ├── ScrollableMessageBox.cpp ├── ScrollableMessageBox.h ├── TimerEdit ├── TimerEdit.cpp ├── TimerEdit.h ├── TreeComboBox ├── TreeComboBox.cpp ├── TreeComboBox.h ├── maxLibQtWidgets.pri └── widgets.pro /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.GPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/LICENSE.GPL.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/README.md -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | html*/ 2 | -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/doc/Doxyfile.in -------------------------------------------------------------------------------- /doc/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/doc/DoxygenLayout.xml -------------------------------------------------------------------------------- /doc/customdoxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/doc/customdoxygen.css -------------------------------------------------------------------------------- /doc/logo_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/doc/logo_64.png -------------------------------------------------------------------------------- /doc/logo_96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/doc/logo_96.png -------------------------------------------------------------------------------- /doc/qt-tagfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/doc/qt-tagfiles.py -------------------------------------------------------------------------------- /doc/qttagsfix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/doc/qttagsfix.py -------------------------------------------------------------------------------- /doc/tagfiles/qt.tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/doc/tagfiles/qt.tags -------------------------------------------------------------------------------- /examples/imageviewer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/examples/imageviewer/CMakeLists.txt -------------------------------------------------------------------------------- /examples/imageviewer/GraphicsImageView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/examples/imageviewer/GraphicsImageView.cpp -------------------------------------------------------------------------------- /examples/imageviewer/GraphicsImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/examples/imageviewer/GraphicsImageView.h -------------------------------------------------------------------------------- /examples/imageviewer/ImageGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/examples/imageviewer/ImageGrid.cpp -------------------------------------------------------------------------------- /examples/imageviewer/ImageGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/examples/imageviewer/ImageGrid.h -------------------------------------------------------------------------------- /examples/imageviewer/ImageViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/examples/imageviewer/ImageViewer.cpp -------------------------------------------------------------------------------- /examples/imageviewer/ImageViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/examples/imageviewer/ImageViewer.h -------------------------------------------------------------------------------- /examples/imageviewer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/examples/imageviewer/README.md -------------------------------------------------------------------------------- /examples/imageviewer/doc/imageviewer-grid_alt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/examples/imageviewer/doc/imageviewer-grid_alt.jpg -------------------------------------------------------------------------------- /examples/imageviewer/doc/imageviewer-grid_infobox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/examples/imageviewer/doc/imageviewer-grid_infobox.jpg -------------------------------------------------------------------------------- /examples/imageviewer/doc/imageviewer-grid_loaded.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/examples/imageviewer/doc/imageviewer-grid_loaded.jpg -------------------------------------------------------------------------------- /examples/imageviewer/doc/imageviewer-image_alt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/examples/imageviewer/doc/imageviewer-image_alt.jpg -------------------------------------------------------------------------------- /examples/imageviewer/doc/imageviewer-image_info.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/examples/imageviewer/doc/imageviewer-image_info.jpg -------------------------------------------------------------------------------- /examples/imageviewer/doc/imageviewer-image_tbleft.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/examples/imageviewer/doc/imageviewer-image_tbleft.jpg -------------------------------------------------------------------------------- /examples/imageviewer/imageviewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/examples/imageviewer/imageviewer.css -------------------------------------------------------------------------------- /examples/imageviewer/imageviewer.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/examples/imageviewer/imageviewer.qrc -------------------------------------------------------------------------------- /examples/imageviewer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/examples/imageviewer/main.cpp -------------------------------------------------------------------------------- /maxLibQt.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/maxLibQt.pri -------------------------------------------------------------------------------- /maxLibQt.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/maxLibQt.pro -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/core/AppDebugMessageHandler: -------------------------------------------------------------------------------- 1 | #include "AppDebugMessageHandler.h" 2 | -------------------------------------------------------------------------------- /src/core/AppDebugMessageHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/core/AppDebugMessageHandler.cpp -------------------------------------------------------------------------------- /src/core/AppDebugMessageHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/core/AppDebugMessageHandler.h -------------------------------------------------------------------------------- /src/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/core/CMakeLists.txt -------------------------------------------------------------------------------- /src/core/core.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/core/core.pro -------------------------------------------------------------------------------- /src/core/maxLibQtCore.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/core/maxLibQtCore.pri -------------------------------------------------------------------------------- /src/itemmodels/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/itemmodels/CMakeLists.txt -------------------------------------------------------------------------------- /src/itemmodels/GroupedItemsProxyModel: -------------------------------------------------------------------------------- 1 | #include "GroupedItemsProxyModel.h" 2 | -------------------------------------------------------------------------------- /src/itemmodels/GroupedItemsProxyModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/itemmodels/GroupedItemsProxyModel.cpp -------------------------------------------------------------------------------- /src/itemmodels/GroupedItemsProxyModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/itemmodels/GroupedItemsProxyModel.h -------------------------------------------------------------------------------- /src/itemmodels/itemmodels.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/itemmodels/itemmodels.pro -------------------------------------------------------------------------------- /src/itemmodels/maxLibQtItemModels.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/itemmodels/maxLibQtItemModels.pri -------------------------------------------------------------------------------- /src/quick/maxLibQt/controls/MLDoubleSpinBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/quick/maxLibQt/controls/MLDoubleSpinBox.qml -------------------------------------------------------------------------------- /src/quick/maxLibQt/controls/MLHexSpinBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/quick/maxLibQt/controls/MLHexSpinBox.qml -------------------------------------------------------------------------------- /src/quick/maxLibQt/controls/controls.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/quick/maxLibQt/controls/controls.pri -------------------------------------------------------------------------------- /src/quick/maxLibQt/controls/controls.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/quick/maxLibQt/controls/controls.pro -------------------------------------------------------------------------------- /src/quick/maxLibQt/controls/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/quick/maxLibQt/controls/qmldir -------------------------------------------------------------------------------- /src/quick/maxLibQt/controls/tests.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/quick/maxLibQt/controls/tests.qml -------------------------------------------------------------------------------- /src/quick/maxLibQt/maxLibQt.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/quick/maxLibQt/maxLibQt.dox -------------------------------------------------------------------------------- /src/quick/quick.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | SUBDIRS += maxLibQt/controls 4 | -------------------------------------------------------------------------------- /src/src.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/src.pro -------------------------------------------------------------------------------- /src/widgets/ActionPushButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/widgets/ActionPushButton.cpp -------------------------------------------------------------------------------- /src/widgets/ActionPushButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/widgets/ActionPushButton.h -------------------------------------------------------------------------------- /src/widgets/BuddyLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/widgets/BuddyLabel.h -------------------------------------------------------------------------------- /src/widgets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/widgets/CMakeLists.txt -------------------------------------------------------------------------------- /src/widgets/CollapsingToolBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/widgets/CollapsingToolBar.h -------------------------------------------------------------------------------- /src/widgets/ExportableTableView: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/widgets/ExportableTableView -------------------------------------------------------------------------------- /src/widgets/ExportableTableView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/widgets/ExportableTableView.cpp -------------------------------------------------------------------------------- /src/widgets/ExportableTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/widgets/ExportableTableView.h -------------------------------------------------------------------------------- /src/widgets/OverlayStackLayout: -------------------------------------------------------------------------------- 1 | #include "OverlayStackLayout.h" 2 | -------------------------------------------------------------------------------- /src/widgets/OverlayStackLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/widgets/OverlayStackLayout.cpp -------------------------------------------------------------------------------- /src/widgets/OverlayStackLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/widgets/OverlayStackLayout.h -------------------------------------------------------------------------------- /src/widgets/RoundedMessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/widgets/RoundedMessageBox.h -------------------------------------------------------------------------------- /src/widgets/ScrollableMessageBox: -------------------------------------------------------------------------------- 1 | #include "ScrollableMessageBox.h" 2 | -------------------------------------------------------------------------------- /src/widgets/ScrollableMessageBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/widgets/ScrollableMessageBox.cpp -------------------------------------------------------------------------------- /src/widgets/ScrollableMessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/widgets/ScrollableMessageBox.h -------------------------------------------------------------------------------- /src/widgets/TimerEdit: -------------------------------------------------------------------------------- 1 | #include "TimerEdit.h" 2 | -------------------------------------------------------------------------------- /src/widgets/TimerEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/widgets/TimerEdit.cpp -------------------------------------------------------------------------------- /src/widgets/TimerEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/widgets/TimerEdit.h -------------------------------------------------------------------------------- /src/widgets/TreeComboBox: -------------------------------------------------------------------------------- 1 | #include "TreeComboBox.h" 2 | -------------------------------------------------------------------------------- /src/widgets/TreeComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/widgets/TreeComboBox.cpp -------------------------------------------------------------------------------- /src/widgets/TreeComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/widgets/TreeComboBox.h -------------------------------------------------------------------------------- /src/widgets/maxLibQtWidgets.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/widgets/maxLibQtWidgets.pri -------------------------------------------------------------------------------- /src/widgets/widgets.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpaperno/maxLibQt/HEAD/src/widgets/widgets.pro --------------------------------------------------------------------------------