├── .gitignore ├── JellyButtonBox.pro ├── LICENSE ├── README.md ├── interactive_buttons ├── interactivebuttonbase.cpp ├── interactivebuttonbase.h ├── watercirclebutton.cpp └── watercirclebutton.h ├── jelly_button_box ├── jellybutton.cpp ├── jellybutton.h ├── jellybuttonbox.cpp └── jellybuttonbox.h ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── pictures └── picture.gif ├── resources.qrc └── resources └── icons ├── icon1.png ├── icon2.png └── icon3.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-JellyButtonBox/HEAD/.gitignore -------------------------------------------------------------------------------- /JellyButtonBox.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-JellyButtonBox/HEAD/JellyButtonBox.pro -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-JellyButtonBox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-JellyButtonBox/HEAD/README.md -------------------------------------------------------------------------------- /interactive_buttons/interactivebuttonbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-JellyButtonBox/HEAD/interactive_buttons/interactivebuttonbase.cpp -------------------------------------------------------------------------------- /interactive_buttons/interactivebuttonbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-JellyButtonBox/HEAD/interactive_buttons/interactivebuttonbase.h -------------------------------------------------------------------------------- /interactive_buttons/watercirclebutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-JellyButtonBox/HEAD/interactive_buttons/watercirclebutton.cpp -------------------------------------------------------------------------------- /interactive_buttons/watercirclebutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-JellyButtonBox/HEAD/interactive_buttons/watercirclebutton.h -------------------------------------------------------------------------------- /jelly_button_box/jellybutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-JellyButtonBox/HEAD/jelly_button_box/jellybutton.cpp -------------------------------------------------------------------------------- /jelly_button_box/jellybutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-JellyButtonBox/HEAD/jelly_button_box/jellybutton.h -------------------------------------------------------------------------------- /jelly_button_box/jellybuttonbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-JellyButtonBox/HEAD/jelly_button_box/jellybuttonbox.cpp -------------------------------------------------------------------------------- /jelly_button_box/jellybuttonbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-JellyButtonBox/HEAD/jelly_button_box/jellybuttonbox.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-JellyButtonBox/HEAD/main.cpp -------------------------------------------------------------------------------- /mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-JellyButtonBox/HEAD/mainwindow.cpp -------------------------------------------------------------------------------- /mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-JellyButtonBox/HEAD/mainwindow.h -------------------------------------------------------------------------------- /mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-JellyButtonBox/HEAD/mainwindow.ui -------------------------------------------------------------------------------- /pictures/picture.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-JellyButtonBox/HEAD/pictures/picture.gif -------------------------------------------------------------------------------- /resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-JellyButtonBox/HEAD/resources.qrc -------------------------------------------------------------------------------- /resources/icons/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-JellyButtonBox/HEAD/resources/icons/icon1.png -------------------------------------------------------------------------------- /resources/icons/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-JellyButtonBox/HEAD/resources/icons/icon2.png -------------------------------------------------------------------------------- /resources/icons/icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-JellyButtonBox/HEAD/resources/icons/icon3.png --------------------------------------------------------------------------------