├── .clang-format ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── feature_request.md │ └── question.md └── workflows │ ├── build.yml │ ├── check-format.yml │ ├── cpack-deb.yml │ └── cpack-nsis.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── assets ├── CREDIT.md ├── notepanda.desktop └── notepanda.rc ├── images ├── banner.png ├── fluentui-icon │ ├── LICENSE │ ├── add.svg │ ├── clipboard.svg │ ├── color_background.svg │ ├── copy.svg │ ├── cut.svg │ ├── delete.svg │ ├── document.svg │ ├── document_edit.svg │ ├── info.svg │ ├── open.svg │ ├── pin.svg │ ├── preview.svg │ ├── print.svg │ ├── read_only.svg │ ├── redo.svg │ ├── save.svg │ ├── save_as.svg │ ├── settings.svg │ ├── sticker.svg │ └── undo.svg ├── notepanda-sc1.png ├── notepanda-sc2.png ├── notepanda-sc3.png ├── notepanda-sc4.png ├── notepanda.png └── panda.ico ├── makespec ├── BUILDVERSION ├── VERSION └── VERSIONSUFFIX ├── resources.qrc └── src ├── core ├── configmanager.cpp ├── configmanager.h ├── texteditor.cpp └── texteditor.h ├── main.cpp └── ui ├── aboutwindow.cpp ├── aboutwindow.h ├── aboutwindow.ui ├── linenumberarea.h ├── mainwindow.cpp ├── mainwindow.h ├── preferenceswindow.cpp ├── preferenceswindow.h └── preferenceswindow.ui /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/check-format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/.github/workflows/check-format.yml -------------------------------------------------------------------------------- /.github/workflows/cpack-deb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/.github/workflows/cpack-deb.yml -------------------------------------------------------------------------------- /.github/workflows/cpack-nsis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/.github/workflows/cpack-nsis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/README.md -------------------------------------------------------------------------------- /assets/CREDIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/assets/CREDIT.md -------------------------------------------------------------------------------- /assets/notepanda.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/assets/notepanda.desktop -------------------------------------------------------------------------------- /assets/notepanda.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/assets/notepanda.rc -------------------------------------------------------------------------------- /images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/images/banner.png -------------------------------------------------------------------------------- /images/fluentui-icon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/images/fluentui-icon/LICENSE -------------------------------------------------------------------------------- /images/fluentui-icon/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/images/fluentui-icon/add.svg -------------------------------------------------------------------------------- /images/fluentui-icon/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/images/fluentui-icon/clipboard.svg -------------------------------------------------------------------------------- /images/fluentui-icon/color_background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/images/fluentui-icon/color_background.svg -------------------------------------------------------------------------------- /images/fluentui-icon/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/images/fluentui-icon/copy.svg -------------------------------------------------------------------------------- /images/fluentui-icon/cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/images/fluentui-icon/cut.svg -------------------------------------------------------------------------------- /images/fluentui-icon/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/images/fluentui-icon/delete.svg -------------------------------------------------------------------------------- /images/fluentui-icon/document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/images/fluentui-icon/document.svg -------------------------------------------------------------------------------- /images/fluentui-icon/document_edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/images/fluentui-icon/document_edit.svg -------------------------------------------------------------------------------- /images/fluentui-icon/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/images/fluentui-icon/info.svg -------------------------------------------------------------------------------- /images/fluentui-icon/open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/images/fluentui-icon/open.svg -------------------------------------------------------------------------------- /images/fluentui-icon/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/images/fluentui-icon/pin.svg -------------------------------------------------------------------------------- /images/fluentui-icon/preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/images/fluentui-icon/preview.svg -------------------------------------------------------------------------------- /images/fluentui-icon/print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/images/fluentui-icon/print.svg -------------------------------------------------------------------------------- /images/fluentui-icon/read_only.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/images/fluentui-icon/read_only.svg -------------------------------------------------------------------------------- /images/fluentui-icon/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/images/fluentui-icon/redo.svg -------------------------------------------------------------------------------- /images/fluentui-icon/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/images/fluentui-icon/save.svg -------------------------------------------------------------------------------- /images/fluentui-icon/save_as.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/images/fluentui-icon/save_as.svg -------------------------------------------------------------------------------- /images/fluentui-icon/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/images/fluentui-icon/settings.svg -------------------------------------------------------------------------------- /images/fluentui-icon/sticker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/images/fluentui-icon/sticker.svg -------------------------------------------------------------------------------- /images/fluentui-icon/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/images/fluentui-icon/undo.svg -------------------------------------------------------------------------------- /images/notepanda-sc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/images/notepanda-sc1.png -------------------------------------------------------------------------------- /images/notepanda-sc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/images/notepanda-sc2.png -------------------------------------------------------------------------------- /images/notepanda-sc3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/images/notepanda-sc3.png -------------------------------------------------------------------------------- /images/notepanda-sc4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/images/notepanda-sc4.png -------------------------------------------------------------------------------- /images/notepanda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/images/notepanda.png -------------------------------------------------------------------------------- /images/panda.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/images/panda.ico -------------------------------------------------------------------------------- /makespec/BUILDVERSION: -------------------------------------------------------------------------------- 1 | 3300 2 | -------------------------------------------------------------------------------- /makespec/VERSION: -------------------------------------------------------------------------------- 1 | 0.1.4 2 | -------------------------------------------------------------------------------- /makespec/VERSIONSUFFIX: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/resources.qrc -------------------------------------------------------------------------------- /src/core/configmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/src/core/configmanager.cpp -------------------------------------------------------------------------------- /src/core/configmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/src/core/configmanager.h -------------------------------------------------------------------------------- /src/core/texteditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/src/core/texteditor.cpp -------------------------------------------------------------------------------- /src/core/texteditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/src/core/texteditor.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/ui/aboutwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/src/ui/aboutwindow.cpp -------------------------------------------------------------------------------- /src/ui/aboutwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/src/ui/aboutwindow.h -------------------------------------------------------------------------------- /src/ui/aboutwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/src/ui/aboutwindow.ui -------------------------------------------------------------------------------- /src/ui/linenumberarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/src/ui/linenumberarea.h -------------------------------------------------------------------------------- /src/ui/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/src/ui/mainwindow.cpp -------------------------------------------------------------------------------- /src/ui/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/src/ui/mainwindow.h -------------------------------------------------------------------------------- /src/ui/preferenceswindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/src/ui/preferenceswindow.cpp -------------------------------------------------------------------------------- /src/ui/preferenceswindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/src/ui/preferenceswindow.h -------------------------------------------------------------------------------- /src/ui/preferenceswindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChungZH/notepanda/HEAD/src/ui/preferenceswindow.ui --------------------------------------------------------------------------------