├── .gitmodules ├── LICENSE ├── README.md ├── android_resourcecs ├── AndroidManifest.xml ├── assets │ └── data │ │ └── data.db ├── png │ └── app.png └── res │ ├── drawable-hdpi │ └── icon.png │ ├── drawable-ldpi │ └── icon.png │ └── drawable-mdpi │ └── icon.png ├── app.ico ├── app.png ├── app.qrc ├── bin ├── data │ └── data.db ├── libmymind.so ├── mymind.exe └── sqlite3.dll ├── mymind.pro ├── res ├── add.png ├── app.png ├── background │ ├── 1.jpg │ ├── 10.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ ├── 8.jpg │ └── 9.jpg ├── delete.png ├── flag.png ├── flags │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 16.png │ ├── 17.png │ ├── 18.png │ ├── 19.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png ├── link.png ├── menu.png ├── name.png ├── open.png ├── remark.png └── toolbar │ ├── dropdown.png │ └── picker.png ├── snaps ├── 20200222.png └── 20200321.png └── src ├── aboutdialog.cpp ├── aboutdialog.h ├── aboutdialog.ui ├── editcolordialog.cpp ├── editcolordialog.h ├── editcolordialog.ui ├── editlinkdialog.cpp ├── editlinkdialog.h ├── editlinkdialog.ui ├── editmarknodedialog.cpp ├── editmarknodedialog.h ├── editmarknodedialog.ui ├── editnodedialog.cpp ├── editnodedialog.h ├── editnodedialog.ui ├── editremarkdialog.cpp ├── editremarkdialog.h ├── editremarkdialog.ui ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── mindmapobject.cpp ├── mindmapobject.h ├── mindmapwidget.cpp ├── mindmapwidget.h ├── mindmapwidget.ui ├── mindmapwidgettoolbar.cpp ├── mindmapwidgettoolbar.h ├── mindmapwidgettoolbar.ui ├── mydao.cpp ├── mydao.h ├── openprojectdialog.cpp ├── openprojectdialog.h ├── openprojectdialog.ui ├── openrecentdialog.cpp ├── openrecentdialog.h ├── openrecentdialog.ui ├── searchandreplacedialog.cpp ├── searchandreplacedialog.h ├── searchandreplacedialog.ui ├── setbackgrounddialog.cpp ├── setbackgrounddialog.h ├── setbackgrounddialog.ui ├── showmindlineoutdialog.cpp ├── showmindlineoutdialog.h └── showmindlineoutdialog.ui /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/README.md -------------------------------------------------------------------------------- /android_resourcecs/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/android_resourcecs/AndroidManifest.xml -------------------------------------------------------------------------------- /android_resourcecs/assets/data/data.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/android_resourcecs/assets/data/data.db -------------------------------------------------------------------------------- /android_resourcecs/png/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/android_resourcecs/png/app.png -------------------------------------------------------------------------------- /android_resourcecs/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/android_resourcecs/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /android_resourcecs/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/android_resourcecs/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /android_resourcecs/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/android_resourcecs/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/app.ico -------------------------------------------------------------------------------- /app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/app.png -------------------------------------------------------------------------------- /app.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/app.qrc -------------------------------------------------------------------------------- /bin/data/data.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/bin/data/data.db -------------------------------------------------------------------------------- /bin/libmymind.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/bin/libmymind.so -------------------------------------------------------------------------------- /bin/mymind.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/bin/mymind.exe -------------------------------------------------------------------------------- /bin/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/bin/sqlite3.dll -------------------------------------------------------------------------------- /mymind.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/mymind.pro -------------------------------------------------------------------------------- /res/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/add.png -------------------------------------------------------------------------------- /res/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/app.png -------------------------------------------------------------------------------- /res/background/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/background/1.jpg -------------------------------------------------------------------------------- /res/background/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/background/10.jpg -------------------------------------------------------------------------------- /res/background/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/background/2.jpg -------------------------------------------------------------------------------- /res/background/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/background/3.jpg -------------------------------------------------------------------------------- /res/background/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/background/4.jpg -------------------------------------------------------------------------------- /res/background/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/background/5.jpg -------------------------------------------------------------------------------- /res/background/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/background/6.jpg -------------------------------------------------------------------------------- /res/background/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/background/7.jpg -------------------------------------------------------------------------------- /res/background/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/background/8.jpg -------------------------------------------------------------------------------- /res/background/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/background/9.jpg -------------------------------------------------------------------------------- /res/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/delete.png -------------------------------------------------------------------------------- /res/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/flag.png -------------------------------------------------------------------------------- /res/flags/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/flags/1.png -------------------------------------------------------------------------------- /res/flags/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/flags/10.png -------------------------------------------------------------------------------- /res/flags/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/flags/11.png -------------------------------------------------------------------------------- /res/flags/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/flags/12.png -------------------------------------------------------------------------------- /res/flags/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/flags/13.png -------------------------------------------------------------------------------- /res/flags/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/flags/14.png -------------------------------------------------------------------------------- /res/flags/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/flags/15.png -------------------------------------------------------------------------------- /res/flags/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/flags/16.png -------------------------------------------------------------------------------- /res/flags/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/flags/17.png -------------------------------------------------------------------------------- /res/flags/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/flags/18.png -------------------------------------------------------------------------------- /res/flags/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/flags/19.png -------------------------------------------------------------------------------- /res/flags/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/flags/2.png -------------------------------------------------------------------------------- /res/flags/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/flags/3.png -------------------------------------------------------------------------------- /res/flags/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/flags/4.png -------------------------------------------------------------------------------- /res/flags/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/flags/5.png -------------------------------------------------------------------------------- /res/flags/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/flags/6.png -------------------------------------------------------------------------------- /res/flags/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/flags/7.png -------------------------------------------------------------------------------- /res/flags/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/flags/8.png -------------------------------------------------------------------------------- /res/flags/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/flags/9.png -------------------------------------------------------------------------------- /res/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/link.png -------------------------------------------------------------------------------- /res/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/menu.png -------------------------------------------------------------------------------- /res/name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/name.png -------------------------------------------------------------------------------- /res/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/open.png -------------------------------------------------------------------------------- /res/remark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/remark.png -------------------------------------------------------------------------------- /res/toolbar/dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/toolbar/dropdown.png -------------------------------------------------------------------------------- /res/toolbar/picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/res/toolbar/picker.png -------------------------------------------------------------------------------- /snaps/20200222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/snaps/20200222.png -------------------------------------------------------------------------------- /snaps/20200321.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/snaps/20200321.png -------------------------------------------------------------------------------- /src/aboutdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/aboutdialog.cpp -------------------------------------------------------------------------------- /src/aboutdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/aboutdialog.h -------------------------------------------------------------------------------- /src/aboutdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/aboutdialog.ui -------------------------------------------------------------------------------- /src/editcolordialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/editcolordialog.cpp -------------------------------------------------------------------------------- /src/editcolordialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/editcolordialog.h -------------------------------------------------------------------------------- /src/editcolordialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/editcolordialog.ui -------------------------------------------------------------------------------- /src/editlinkdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/editlinkdialog.cpp -------------------------------------------------------------------------------- /src/editlinkdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/editlinkdialog.h -------------------------------------------------------------------------------- /src/editlinkdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/editlinkdialog.ui -------------------------------------------------------------------------------- /src/editmarknodedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/editmarknodedialog.cpp -------------------------------------------------------------------------------- /src/editmarknodedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/editmarknodedialog.h -------------------------------------------------------------------------------- /src/editmarknodedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/editmarknodedialog.ui -------------------------------------------------------------------------------- /src/editnodedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/editnodedialog.cpp -------------------------------------------------------------------------------- /src/editnodedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/editnodedialog.h -------------------------------------------------------------------------------- /src/editnodedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/editnodedialog.ui -------------------------------------------------------------------------------- /src/editremarkdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/editremarkdialog.cpp -------------------------------------------------------------------------------- /src/editremarkdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/editremarkdialog.h -------------------------------------------------------------------------------- /src/editremarkdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/editremarkdialog.ui -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/mainwindow.cpp -------------------------------------------------------------------------------- /src/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/mainwindow.h -------------------------------------------------------------------------------- /src/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/mainwindow.ui -------------------------------------------------------------------------------- /src/mindmapobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/mindmapobject.cpp -------------------------------------------------------------------------------- /src/mindmapobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/mindmapobject.h -------------------------------------------------------------------------------- /src/mindmapwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/mindmapwidget.cpp -------------------------------------------------------------------------------- /src/mindmapwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/mindmapwidget.h -------------------------------------------------------------------------------- /src/mindmapwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/mindmapwidget.ui -------------------------------------------------------------------------------- /src/mindmapwidgettoolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/mindmapwidgettoolbar.cpp -------------------------------------------------------------------------------- /src/mindmapwidgettoolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/mindmapwidgettoolbar.h -------------------------------------------------------------------------------- /src/mindmapwidgettoolbar.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/mindmapwidgettoolbar.ui -------------------------------------------------------------------------------- /src/mydao.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/mydao.cpp -------------------------------------------------------------------------------- /src/mydao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/mydao.h -------------------------------------------------------------------------------- /src/openprojectdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/openprojectdialog.cpp -------------------------------------------------------------------------------- /src/openprojectdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/openprojectdialog.h -------------------------------------------------------------------------------- /src/openprojectdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/openprojectdialog.ui -------------------------------------------------------------------------------- /src/openrecentdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/openrecentdialog.cpp -------------------------------------------------------------------------------- /src/openrecentdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/openrecentdialog.h -------------------------------------------------------------------------------- /src/openrecentdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/openrecentdialog.ui -------------------------------------------------------------------------------- /src/searchandreplacedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/searchandreplacedialog.cpp -------------------------------------------------------------------------------- /src/searchandreplacedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/searchandreplacedialog.h -------------------------------------------------------------------------------- /src/searchandreplacedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/searchandreplacedialog.ui -------------------------------------------------------------------------------- /src/setbackgrounddialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/setbackgrounddialog.cpp -------------------------------------------------------------------------------- /src/setbackgrounddialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/setbackgrounddialog.h -------------------------------------------------------------------------------- /src/setbackgrounddialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/setbackgrounddialog.ui -------------------------------------------------------------------------------- /src/showmindlineoutdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/showmindlineoutdialog.cpp -------------------------------------------------------------------------------- /src/showmindlineoutdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/showmindlineoutdialog.h -------------------------------------------------------------------------------- /src/showmindlineoutdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengersoft/mymind/HEAD/src/showmindlineoutdialog.ui --------------------------------------------------------------------------------