├── .gitattributes ├── .gitignore ├── FileMenu.py ├── RecentFilesManager.py ├── Ribbon.py ├── __init__.py ├── common.py ├── license.txt └── readme.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/PyQtRibbon/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/PyQtRibbon/HEAD/.gitignore -------------------------------------------------------------------------------- /FileMenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/PyQtRibbon/HEAD/FileMenu.py -------------------------------------------------------------------------------- /RecentFilesManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/PyQtRibbon/HEAD/RecentFilesManager.py -------------------------------------------------------------------------------- /Ribbon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/PyQtRibbon/HEAD/Ribbon.py -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/PyQtRibbon/HEAD/__init__.py -------------------------------------------------------------------------------- /common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/PyQtRibbon/HEAD/common.py -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/PyQtRibbon/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoadrunnerWMC/PyQtRibbon/HEAD/readme.md --------------------------------------------------------------------------------