gitextract_ckkfy0u8/ ├── .gitignore ├── QQStars.pro ├── README.md ├── deployment.pri ├── faces.qrc ├── images.qrc ├── other.qrc ├── qml/ │ ├── Api/ │ │ ├── QQApi.qml │ │ └── api.js │ ├── Chat/ │ │ ├── ChatPage.qml │ │ ├── ChatWindowCommand.qml │ │ ├── DiscuChatPage.qml │ │ ├── FriendChatPage.qml │ │ ├── GroupChatPage.qml │ │ └── MessageListComponent.qml │ ├── Login/ │ │ ├── LoginPanel/ │ │ │ ├── AccountList.qml │ │ │ ├── LoginCheckBox.qml │ │ │ ├── LoginInputArea.qml │ │ │ └── LoginPage.qml │ │ ├── MyLoginButton.qml │ │ ├── SettingPage.qml │ │ └── main.qml │ ├── MainPanel/ │ │ ├── ListPage/ │ │ │ ├── AllListPage.qml │ │ │ ├── DiscuList.qml │ │ │ ├── FriendList.qml │ │ │ ├── GroupAndDiscuPage.qml │ │ │ ├── GroupList.qml │ │ │ └── RecentList.qml │ │ ├── MainPanelPage.qml │ │ └── main.qml │ ├── QQItemInfo/ │ │ ├── DiscuInfo.qml │ │ ├── FriendInfo.qml │ │ └── GroupInfo.qml │ └── Utility/ │ ├── CodeInput.qml │ ├── ComboBox/ │ │ ├── MyComboBox.qml │ │ └── MyComboBoxComponent.qml │ ├── KeyboardPage/ │ │ ├── SoftKeyboard.qml │ │ └── SoftKeyboardButton.qml │ ├── MyButton.qml │ ├── MyMessageBox.qml │ ├── MyRectangularGlow.qml │ ├── MyScrollView.qml │ ├── MyTextArea.qml │ ├── MyTextField.qml │ ├── MyTextView.qml │ ├── MyWindow.qml │ ├── SystemTray.qml │ └── TrayMessageWindow.qml ├── qml.qrc ├── qmlapplicationviewer.pri ├── qt_zh_CN.qm ├── src/ │ ├── main.cpp │ ├── mywidgets/ │ │ ├── myimage.cpp │ │ ├── myimage.h │ │ ├── mymessagebox.cpp │ │ ├── mymessagebox.h │ │ ├── mysvgview.cpp │ │ ├── mysvgview.h │ │ ├── mywindow.cpp │ │ ├── mywindow.h │ │ ├── systemtrayicon.cpp │ │ └── systemtrayicon.h │ ├── qqstars/ │ │ ├── qqiteminfo.cpp │ │ ├── qqiteminfo.h │ │ ├── qqstars.cpp │ │ └── qqstars.h │ ├── qxtglobalshortcut/ │ │ ├── myshortcut.cpp │ │ ├── myshortcut.h │ │ ├── qxtglobal.h │ │ ├── qxtglobalshortcut.cpp │ │ ├── qxtglobalshortcut.h │ │ ├── qxtglobalshortcut.pri │ │ ├── qxtglobalshortcut_mac.cpp │ │ ├── qxtglobalshortcut_p.h │ │ ├── qxtglobalshortcut_win.cpp │ │ └── qxtglobalshortcut_x11.cpp │ └── utility/ │ ├── downloadimage.cpp │ ├── downloadimage.h │ ├── myhttprequest.cpp │ ├── myhttprequest.h │ ├── mynetworkaccessmanagerfactory.cpp │ ├── mynetworkaccessmanagerfactory.h │ ├── texteditplaygif.cpp │ ├── texteditplaygif.h │ ├── utility.cpp │ └── utility.h ├── style/ │ ├── menuStyle.css │ └── messageBoxStyle.css └── style.qrc