├── .gitignore ├── LICENSE ├── Qt-RandomVerification.pro ├── README.md ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── random_verification ├── captchalabel.cpp ├── captchalabel.h ├── captchamovablelabel.cpp └── captchamovablelabel.h └── 截图.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-RandomVerification/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-RandomVerification/HEAD/LICENSE -------------------------------------------------------------------------------- /Qt-RandomVerification.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-RandomVerification/HEAD/Qt-RandomVerification.pro -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-RandomVerification/HEAD/README.md -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-RandomVerification/HEAD/main.cpp -------------------------------------------------------------------------------- /mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-RandomVerification/HEAD/mainwindow.cpp -------------------------------------------------------------------------------- /mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-RandomVerification/HEAD/mainwindow.h -------------------------------------------------------------------------------- /mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-RandomVerification/HEAD/mainwindow.ui -------------------------------------------------------------------------------- /random_verification/captchalabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-RandomVerification/HEAD/random_verification/captchalabel.cpp -------------------------------------------------------------------------------- /random_verification/captchalabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-RandomVerification/HEAD/random_verification/captchalabel.h -------------------------------------------------------------------------------- /random_verification/captchamovablelabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-RandomVerification/HEAD/random_verification/captchamovablelabel.cpp -------------------------------------------------------------------------------- /random_verification/captchamovablelabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-RandomVerification/HEAD/random_verification/captchamovablelabel.h -------------------------------------------------------------------------------- /截图.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-RandomVerification/HEAD/截图.gif --------------------------------------------------------------------------------