├── .gitignore ├── README.md ├── SmallTipBox.pro ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── picture.png ├── resources.qrc ├── resources └── hide_right.png ├── tipcard.cpp ├── tipcard.h ├── tipwidget.cpp └── tipwidget.h /.gitignore: -------------------------------------------------------------------------------- 1 | Run 2 | *.user 3 | 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-Notification-Manager/HEAD/README.md -------------------------------------------------------------------------------- /SmallTipBox.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-Notification-Manager/HEAD/SmallTipBox.pro -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-Notification-Manager/HEAD/main.cpp -------------------------------------------------------------------------------- /mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-Notification-Manager/HEAD/mainwindow.cpp -------------------------------------------------------------------------------- /mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-Notification-Manager/HEAD/mainwindow.h -------------------------------------------------------------------------------- /mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-Notification-Manager/HEAD/mainwindow.ui -------------------------------------------------------------------------------- /picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-Notification-Manager/HEAD/picture.png -------------------------------------------------------------------------------- /resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-Notification-Manager/HEAD/resources.qrc -------------------------------------------------------------------------------- /resources/hide_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-Notification-Manager/HEAD/resources/hide_right.png -------------------------------------------------------------------------------- /tipcard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-Notification-Manager/HEAD/tipcard.cpp -------------------------------------------------------------------------------- /tipcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-Notification-Manager/HEAD/tipcard.h -------------------------------------------------------------------------------- /tipwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-Notification-Manager/HEAD/tipwidget.cpp -------------------------------------------------------------------------------- /tipwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-Notification-Manager/HEAD/tipwidget.h --------------------------------------------------------------------------------