├── .gitignore ├── Qt-Notepad.pro ├── README.md ├── finddialog.cpp ├── finddialog.h ├── finddialog.ui ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui └── screenshots ├── p1.png ├── p2.png ├── p3.png ├── p4.png └── p5.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-notepad/HEAD/.gitignore -------------------------------------------------------------------------------- /Qt-Notepad.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-notepad/HEAD/Qt-Notepad.pro -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-notepad/HEAD/README.md -------------------------------------------------------------------------------- /finddialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-notepad/HEAD/finddialog.cpp -------------------------------------------------------------------------------- /finddialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-notepad/HEAD/finddialog.h -------------------------------------------------------------------------------- /finddialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-notepad/HEAD/finddialog.ui -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-notepad/HEAD/main.cpp -------------------------------------------------------------------------------- /mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-notepad/HEAD/mainwindow.cpp -------------------------------------------------------------------------------- /mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-notepad/HEAD/mainwindow.h -------------------------------------------------------------------------------- /mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-notepad/HEAD/mainwindow.ui -------------------------------------------------------------------------------- /screenshots/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-notepad/HEAD/screenshots/p1.png -------------------------------------------------------------------------------- /screenshots/p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-notepad/HEAD/screenshots/p2.png -------------------------------------------------------------------------------- /screenshots/p3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-notepad/HEAD/screenshots/p3.png -------------------------------------------------------------------------------- /screenshots/p4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-notepad/HEAD/screenshots/p4.png -------------------------------------------------------------------------------- /screenshots/p5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwxyi/Qt-notepad/HEAD/screenshots/p5.png --------------------------------------------------------------------------------