├── .gitattributes ├── .gitignore ├── README.md ├── SideBar.sln ├── SideBar ├── GeneratedFiles │ └── ui_showcontroller.h ├── SideBar.vcxproj ├── SideBar.vcxproj.filters ├── SideBarEnum.h ├── showcontroller.cpp ├── showcontroller.h ├── showcontroller.ui ├── showctrlmgr.cpp ├── showctrlmgr.h ├── sidebar.cpp ├── sidebar.h └── sidebar_global.h └── SideBarApp ├── GeneratedFiles ├── qrc_sidebarapp.cpp ├── ui_sidebarapp.h └── ui_textwidget.h ├── SideBarApp.vcxproj ├── SideBarApp.vcxproj.filters ├── main.cpp ├── sidebarapp.cpp ├── sidebarapp.h ├── sidebarapp.qrc ├── sidebarapp.ui ├── textwidget.cpp ├── textwidget.h └── textwidget.ui /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvgugylu/SideBar/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvgugylu/SideBar/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SideBar 2 | Qt自定义的侧边栏控件,为继承接口的QWidget界面类提供显隐控制按钮,并实现显隐动画效果。 3 | -------------------------------------------------------------------------------- /SideBar.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvgugylu/SideBar/HEAD/SideBar.sln -------------------------------------------------------------------------------- /SideBar/GeneratedFiles/ui_showcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvgugylu/SideBar/HEAD/SideBar/GeneratedFiles/ui_showcontroller.h -------------------------------------------------------------------------------- /SideBar/SideBar.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvgugylu/SideBar/HEAD/SideBar/SideBar.vcxproj -------------------------------------------------------------------------------- /SideBar/SideBar.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvgugylu/SideBar/HEAD/SideBar/SideBar.vcxproj.filters -------------------------------------------------------------------------------- /SideBar/SideBarEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvgugylu/SideBar/HEAD/SideBar/SideBarEnum.h -------------------------------------------------------------------------------- /SideBar/showcontroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvgugylu/SideBar/HEAD/SideBar/showcontroller.cpp -------------------------------------------------------------------------------- /SideBar/showcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvgugylu/SideBar/HEAD/SideBar/showcontroller.h -------------------------------------------------------------------------------- /SideBar/showcontroller.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvgugylu/SideBar/HEAD/SideBar/showcontroller.ui -------------------------------------------------------------------------------- /SideBar/showctrlmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvgugylu/SideBar/HEAD/SideBar/showctrlmgr.cpp -------------------------------------------------------------------------------- /SideBar/showctrlmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvgugylu/SideBar/HEAD/SideBar/showctrlmgr.h -------------------------------------------------------------------------------- /SideBar/sidebar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvgugylu/SideBar/HEAD/SideBar/sidebar.cpp -------------------------------------------------------------------------------- /SideBar/sidebar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvgugylu/SideBar/HEAD/SideBar/sidebar.h -------------------------------------------------------------------------------- /SideBar/sidebar_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvgugylu/SideBar/HEAD/SideBar/sidebar_global.h -------------------------------------------------------------------------------- /SideBarApp/GeneratedFiles/qrc_sidebarapp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvgugylu/SideBar/HEAD/SideBarApp/GeneratedFiles/qrc_sidebarapp.cpp -------------------------------------------------------------------------------- /SideBarApp/GeneratedFiles/ui_sidebarapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvgugylu/SideBar/HEAD/SideBarApp/GeneratedFiles/ui_sidebarapp.h -------------------------------------------------------------------------------- /SideBarApp/GeneratedFiles/ui_textwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvgugylu/SideBar/HEAD/SideBarApp/GeneratedFiles/ui_textwidget.h -------------------------------------------------------------------------------- /SideBarApp/SideBarApp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvgugylu/SideBar/HEAD/SideBarApp/SideBarApp.vcxproj -------------------------------------------------------------------------------- /SideBarApp/SideBarApp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvgugylu/SideBar/HEAD/SideBarApp/SideBarApp.vcxproj.filters -------------------------------------------------------------------------------- /SideBarApp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvgugylu/SideBar/HEAD/SideBarApp/main.cpp -------------------------------------------------------------------------------- /SideBarApp/sidebarapp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvgugylu/SideBar/HEAD/SideBarApp/sidebarapp.cpp -------------------------------------------------------------------------------- /SideBarApp/sidebarapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvgugylu/SideBar/HEAD/SideBarApp/sidebarapp.h -------------------------------------------------------------------------------- /SideBarApp/sidebarapp.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvgugylu/SideBar/HEAD/SideBarApp/sidebarapp.qrc -------------------------------------------------------------------------------- /SideBarApp/sidebarapp.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvgugylu/SideBar/HEAD/SideBarApp/sidebarapp.ui -------------------------------------------------------------------------------- /SideBarApp/textwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvgugylu/SideBar/HEAD/SideBarApp/textwidget.cpp -------------------------------------------------------------------------------- /SideBarApp/textwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvgugylu/SideBar/HEAD/SideBarApp/textwidget.h -------------------------------------------------------------------------------- /SideBarApp/textwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvgugylu/SideBar/HEAD/SideBarApp/textwidget.ui --------------------------------------------------------------------------------