├── LICENSE ├── Qt-Ribbon.pro ├── README.md ├── docs ├── image_linux1.png ├── image_windows1.png └── image_windows2.png ├── icons ├── add_database_2.svg ├── add_folder_2.svg ├── add_link_2.svg ├── briefcase_1.svg ├── create_new_2.svg ├── engineering_1.svg ├── file_2.svg ├── information_1.svg ├── live_folder_2.svg ├── monitor_1.svg └── save_2.svg ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── resource.qrc ├── ribbon.cpp ├── ribbon.h ├── ribbonbuttongroup.cpp ├── ribbonbuttongroup.h ├── ribbonbuttongroup.ui ├── ribbontabcontent.cpp ├── ribbontabcontent.h └── ribbontabcontent.ui /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnkoopman/Qt-Ribbon-Widget/HEAD/LICENSE -------------------------------------------------------------------------------- /Qt-Ribbon.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnkoopman/Qt-Ribbon-Widget/HEAD/Qt-Ribbon.pro -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnkoopman/Qt-Ribbon-Widget/HEAD/README.md -------------------------------------------------------------------------------- /docs/image_linux1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnkoopman/Qt-Ribbon-Widget/HEAD/docs/image_linux1.png -------------------------------------------------------------------------------- /docs/image_windows1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnkoopman/Qt-Ribbon-Widget/HEAD/docs/image_windows1.png -------------------------------------------------------------------------------- /docs/image_windows2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnkoopman/Qt-Ribbon-Widget/HEAD/docs/image_windows2.png -------------------------------------------------------------------------------- /icons/add_database_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnkoopman/Qt-Ribbon-Widget/HEAD/icons/add_database_2.svg -------------------------------------------------------------------------------- /icons/add_folder_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnkoopman/Qt-Ribbon-Widget/HEAD/icons/add_folder_2.svg -------------------------------------------------------------------------------- /icons/add_link_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnkoopman/Qt-Ribbon-Widget/HEAD/icons/add_link_2.svg -------------------------------------------------------------------------------- /icons/briefcase_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnkoopman/Qt-Ribbon-Widget/HEAD/icons/briefcase_1.svg -------------------------------------------------------------------------------- /icons/create_new_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnkoopman/Qt-Ribbon-Widget/HEAD/icons/create_new_2.svg -------------------------------------------------------------------------------- /icons/engineering_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnkoopman/Qt-Ribbon-Widget/HEAD/icons/engineering_1.svg -------------------------------------------------------------------------------- /icons/file_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnkoopman/Qt-Ribbon-Widget/HEAD/icons/file_2.svg -------------------------------------------------------------------------------- /icons/information_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnkoopman/Qt-Ribbon-Widget/HEAD/icons/information_1.svg -------------------------------------------------------------------------------- /icons/live_folder_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnkoopman/Qt-Ribbon-Widget/HEAD/icons/live_folder_2.svg -------------------------------------------------------------------------------- /icons/monitor_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnkoopman/Qt-Ribbon-Widget/HEAD/icons/monitor_1.svg -------------------------------------------------------------------------------- /icons/save_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnkoopman/Qt-Ribbon-Widget/HEAD/icons/save_2.svg -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnkoopman/Qt-Ribbon-Widget/HEAD/main.cpp -------------------------------------------------------------------------------- /mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnkoopman/Qt-Ribbon-Widget/HEAD/mainwindow.cpp -------------------------------------------------------------------------------- /mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnkoopman/Qt-Ribbon-Widget/HEAD/mainwindow.h -------------------------------------------------------------------------------- /mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnkoopman/Qt-Ribbon-Widget/HEAD/mainwindow.ui -------------------------------------------------------------------------------- /resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnkoopman/Qt-Ribbon-Widget/HEAD/resource.qrc -------------------------------------------------------------------------------- /ribbon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnkoopman/Qt-Ribbon-Widget/HEAD/ribbon.cpp -------------------------------------------------------------------------------- /ribbon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnkoopman/Qt-Ribbon-Widget/HEAD/ribbon.h -------------------------------------------------------------------------------- /ribbonbuttongroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnkoopman/Qt-Ribbon-Widget/HEAD/ribbonbuttongroup.cpp -------------------------------------------------------------------------------- /ribbonbuttongroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnkoopman/Qt-Ribbon-Widget/HEAD/ribbonbuttongroup.h -------------------------------------------------------------------------------- /ribbonbuttongroup.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnkoopman/Qt-Ribbon-Widget/HEAD/ribbonbuttongroup.ui -------------------------------------------------------------------------------- /ribbontabcontent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnkoopman/Qt-Ribbon-Widget/HEAD/ribbontabcontent.cpp -------------------------------------------------------------------------------- /ribbontabcontent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnkoopman/Qt-Ribbon-Widget/HEAD/ribbontabcontent.h -------------------------------------------------------------------------------- /ribbontabcontent.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnkoopman/Qt-Ribbon-Widget/HEAD/ribbontabcontent.ui --------------------------------------------------------------------------------