├── .gitignore ├── .gitmodules ├── LICENSE ├── VibratoNotes-Desktop.pro ├── compile.sh ├── devlog.org ├── include ├── fts_fuzzy_match.hpp └── helper-io.hpp ├── readme.md ├── resources ├── dummy-data.qrc ├── dummy │ ├── example-markdown.md │ ├── jsonexample.json │ ├── notebooks.json │ ├── notes-1000.json │ ├── notes.json │ ├── tags.json │ └── test.py ├── fonts.qrc ├── fonts │ ├── Cantarell-Bold.ttf │ ├── Cantarell-BoldOblique.ttf │ ├── Cantarell-Oblique.ttf │ ├── Cantarell-Regular.ttf │ └── SIL Open Font License.txt ├── icons.qrc ├── icons │ ├── vibrato-default-dark │ │ ├── icons │ │ │ ├── dialog-ok-apply.svg │ │ │ ├── document-new.svg │ │ │ ├── draw-star.svg │ │ │ ├── edit-find.svg │ │ │ ├── favorite.svg │ │ │ ├── folder.svg │ │ │ ├── im-user.svg │ │ │ ├── tag.svg │ │ │ └── trash-empty.svg │ │ └── index.theme │ └── vibrato-default │ │ ├── icons │ │ ├── dialog-ok-apply.svg │ │ ├── document-new.svg │ │ ├── document-revert.svg │ │ ├── edit-find.svg │ │ ├── favorite.svg │ │ ├── folder.svg │ │ ├── im-user.svg │ │ ├── tag.svg │ │ ├── trash-empty.svg │ │ ├── trash-empty2.svg │ │ ├── vibrato-draw-star-solid.svg │ │ ├── vibrato-draw-star.svg │ │ └── window-close.svg │ │ └── index.theme ├── qdarkstyle.qrc ├── rc │ ├── Hmovetoolbar.png │ ├── Hsepartoolbar.png │ ├── Vmovetoolbar.png │ ├── Vsepartoolbar.png │ ├── branch_closed-on.png │ ├── branch_closed.png │ ├── branch_open-on.png │ ├── branch_open.png │ ├── checkbox_checked.png │ ├── checkbox_checked_disabled.png │ ├── checkbox_checked_focus.png │ ├── checkbox_indeterminate.png │ ├── checkbox_indeterminate_disabled.png │ ├── checkbox_indeterminate_focus.png │ ├── checkbox_unchecked.png │ ├── checkbox_unchecked_disabled.png │ ├── checkbox_unchecked_focus.png │ ├── close-hover.png │ ├── close-pressed.png │ ├── close.png │ ├── down_arrow.png │ ├── down_arrow_disabled.png │ ├── left_arrow.png │ ├── left_arrow_disabled.png │ ├── radio_checked.png │ ├── radio_checked_disabled.png │ ├── radio_checked_focus.png │ ├── radio_unchecked.png │ ├── radio_unchecked_disabled.png │ ├── radio_unchecked_focus.png │ ├── right_arrow.png │ ├── right_arrow_disabled.png │ ├── sizegrip.png │ ├── stylesheet-branch-end.png │ ├── stylesheet-branch-more.png │ ├── stylesheet-vline.png │ ├── transparent.png │ ├── undock.png │ ├── up_arrow.png │ └── up_arrow_disabled.png ├── resource.qrc ├── sql │ └── create.sql ├── sqlfiles.qrc ├── style │ └── DarkSolarized.qss ├── test.qrc ├── tutorial.qrc └── tutorial │ └── 1-welcome.md ├── src ├── cloud │ ├── cloudmanager.cpp │ └── cloudmanager.h ├── crypto │ ├── vcrypto.cpp │ └── vcrypto.h ├── custom-components │ ├── customlineedit.cpp │ └── customlineedit.h ├── iconutils.cpp ├── iconutils.h ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── meta │ ├── db │ │ ├── database.cpp │ │ ├── database.h │ │ ├── notebookdatabase.cpp │ │ ├── notebookdatabase.h │ │ ├── notedatabase.cpp │ │ ├── notedatabase.h │ │ ├── tagdatabase.cpp │ │ └── tagdatabase.h │ ├── info │ │ ├── appconfig.cpp │ │ ├── appconfig.h │ │ └── appinfo.h │ ├── note.cpp │ ├── note.h │ ├── notebook.cpp │ ├── notebook.h │ ├── tag.cpp │ └── tag.h ├── models │ ├── delegates │ │ ├── noteitemdelegate.cpp │ │ └── noteitemdelegate.h │ ├── items │ │ ├── basictreeitem.cpp │ │ ├── basictreeitem.h │ │ ├── listitemwithid.cpp │ │ ├── listitemwithid.h │ │ ├── notelistitem.cpp │ │ ├── notelistitem.h │ │ ├── treeitemwithid.cpp │ │ └── treeitemwithid.h │ ├── notelistmodel.cpp │ ├── notelistmodel.h │ ├── sortfilter │ │ ├── notelistproxymodel.cpp │ │ └── notelistproxymodel.h │ ├── treemodel.cpp │ ├── treemodel.h │ └── views │ │ ├── customlistview.cpp │ │ ├── customlistview.h │ │ ├── customtreeview.cpp │ │ └── customtreeview.h ├── scripting-api │ ├── scriptingengine.cpp │ └── scriptingengine.h ├── sql │ ├── sqlmanager.cpp │ └── sqlmanager.h ├── ui-managers │ ├── escribamanager.cpp │ ├── escribamanager.h │ ├── manager.cpp │ ├── manager.h │ ├── notelist-views │ │ ├── genericview.cpp │ │ ├── genericview.h │ │ ├── trashview.cpp │ │ └── trashview.h │ ├── notelistmanager.cpp │ ├── notelistmanager.h │ ├── treemanager.cpp │ └── treemanager.h ├── userwindow.cpp └── userwindow.h ├── tests ├── VibratoNotes-Desktop-Tests.pro ├── resources │ ├── heroes-error.sql │ ├── heroes.sql │ └── testresources.qrc └── unit-tests.cpp └── ui ├── edittags.cpp ├── edittags.h ├── edittags.ui ├── escribaaddons.ui ├── mainwindow.ui ├── note_editnotebook.cpp ├── note_editnotebook.h ├── note_editnotebook.ui ├── note_edittags.cpp ├── note_edittags.h ├── note_edittags.ui ├── notebook_editparent.cpp ├── notebook_editparent.h ├── notebook_editparent.ui ├── notelist_addons.ui ├── notelistitem.ui ├── tagitem.ui ├── trashitem.cpp ├── trashitem.h ├── trashitem.ui └── userwindow.ui /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/LICENSE -------------------------------------------------------------------------------- /VibratoNotes-Desktop.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/VibratoNotes-Desktop.pro -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/compile.sh -------------------------------------------------------------------------------- /devlog.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/devlog.org -------------------------------------------------------------------------------- /include/fts_fuzzy_match.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/include/fts_fuzzy_match.hpp -------------------------------------------------------------------------------- /include/helper-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/include/helper-io.hpp -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/readme.md -------------------------------------------------------------------------------- /resources/dummy-data.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/dummy-data.qrc -------------------------------------------------------------------------------- /resources/dummy/example-markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/dummy/example-markdown.md -------------------------------------------------------------------------------- /resources/dummy/jsonexample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/dummy/jsonexample.json -------------------------------------------------------------------------------- /resources/dummy/notebooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/dummy/notebooks.json -------------------------------------------------------------------------------- /resources/dummy/notes-1000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/dummy/notes-1000.json -------------------------------------------------------------------------------- /resources/dummy/notes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/dummy/notes.json -------------------------------------------------------------------------------- /resources/dummy/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/dummy/tags.json -------------------------------------------------------------------------------- /resources/dummy/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/dummy/test.py -------------------------------------------------------------------------------- /resources/fonts.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/fonts.qrc -------------------------------------------------------------------------------- /resources/fonts/Cantarell-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/fonts/Cantarell-Bold.ttf -------------------------------------------------------------------------------- /resources/fonts/Cantarell-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/fonts/Cantarell-BoldOblique.ttf -------------------------------------------------------------------------------- /resources/fonts/Cantarell-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/fonts/Cantarell-Oblique.ttf -------------------------------------------------------------------------------- /resources/fonts/Cantarell-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/fonts/Cantarell-Regular.ttf -------------------------------------------------------------------------------- /resources/fonts/SIL Open Font License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/fonts/SIL Open Font License.txt -------------------------------------------------------------------------------- /resources/icons.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/icons.qrc -------------------------------------------------------------------------------- /resources/icons/vibrato-default-dark/icons/dialog-ok-apply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/icons/vibrato-default-dark/icons/dialog-ok-apply.svg -------------------------------------------------------------------------------- /resources/icons/vibrato-default-dark/icons/document-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/icons/vibrato-default-dark/icons/document-new.svg -------------------------------------------------------------------------------- /resources/icons/vibrato-default-dark/icons/draw-star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/icons/vibrato-default-dark/icons/draw-star.svg -------------------------------------------------------------------------------- /resources/icons/vibrato-default-dark/icons/edit-find.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/icons/vibrato-default-dark/icons/edit-find.svg -------------------------------------------------------------------------------- /resources/icons/vibrato-default-dark/icons/favorite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/icons/vibrato-default-dark/icons/favorite.svg -------------------------------------------------------------------------------- /resources/icons/vibrato-default-dark/icons/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/icons/vibrato-default-dark/icons/folder.svg -------------------------------------------------------------------------------- /resources/icons/vibrato-default-dark/icons/im-user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/icons/vibrato-default-dark/icons/im-user.svg -------------------------------------------------------------------------------- /resources/icons/vibrato-default-dark/icons/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/icons/vibrato-default-dark/icons/tag.svg -------------------------------------------------------------------------------- /resources/icons/vibrato-default-dark/icons/trash-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/icons/vibrato-default-dark/icons/trash-empty.svg -------------------------------------------------------------------------------- /resources/icons/vibrato-default-dark/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/icons/vibrato-default-dark/index.theme -------------------------------------------------------------------------------- /resources/icons/vibrato-default/icons/dialog-ok-apply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/icons/vibrato-default/icons/dialog-ok-apply.svg -------------------------------------------------------------------------------- /resources/icons/vibrato-default/icons/document-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/icons/vibrato-default/icons/document-new.svg -------------------------------------------------------------------------------- /resources/icons/vibrato-default/icons/document-revert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/icons/vibrato-default/icons/document-revert.svg -------------------------------------------------------------------------------- /resources/icons/vibrato-default/icons/edit-find.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/icons/vibrato-default/icons/edit-find.svg -------------------------------------------------------------------------------- /resources/icons/vibrato-default/icons/favorite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/icons/vibrato-default/icons/favorite.svg -------------------------------------------------------------------------------- /resources/icons/vibrato-default/icons/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/icons/vibrato-default/icons/folder.svg -------------------------------------------------------------------------------- /resources/icons/vibrato-default/icons/im-user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/icons/vibrato-default/icons/im-user.svg -------------------------------------------------------------------------------- /resources/icons/vibrato-default/icons/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/icons/vibrato-default/icons/tag.svg -------------------------------------------------------------------------------- /resources/icons/vibrato-default/icons/trash-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/icons/vibrato-default/icons/trash-empty.svg -------------------------------------------------------------------------------- /resources/icons/vibrato-default/icons/trash-empty2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/icons/vibrato-default/icons/trash-empty2.svg -------------------------------------------------------------------------------- /resources/icons/vibrato-default/icons/vibrato-draw-star-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/icons/vibrato-default/icons/vibrato-draw-star-solid.svg -------------------------------------------------------------------------------- /resources/icons/vibrato-default/icons/vibrato-draw-star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/icons/vibrato-default/icons/vibrato-draw-star.svg -------------------------------------------------------------------------------- /resources/icons/vibrato-default/icons/window-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/icons/vibrato-default/icons/window-close.svg -------------------------------------------------------------------------------- /resources/icons/vibrato-default/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/icons/vibrato-default/index.theme -------------------------------------------------------------------------------- /resources/qdarkstyle.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/qdarkstyle.qrc -------------------------------------------------------------------------------- /resources/rc/Hmovetoolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/Hmovetoolbar.png -------------------------------------------------------------------------------- /resources/rc/Hsepartoolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/Hsepartoolbar.png -------------------------------------------------------------------------------- /resources/rc/Vmovetoolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/Vmovetoolbar.png -------------------------------------------------------------------------------- /resources/rc/Vsepartoolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/Vsepartoolbar.png -------------------------------------------------------------------------------- /resources/rc/branch_closed-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/branch_closed-on.png -------------------------------------------------------------------------------- /resources/rc/branch_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/branch_closed.png -------------------------------------------------------------------------------- /resources/rc/branch_open-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/branch_open-on.png -------------------------------------------------------------------------------- /resources/rc/branch_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/branch_open.png -------------------------------------------------------------------------------- /resources/rc/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/checkbox_checked.png -------------------------------------------------------------------------------- /resources/rc/checkbox_checked_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/checkbox_checked_disabled.png -------------------------------------------------------------------------------- /resources/rc/checkbox_checked_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/checkbox_checked_focus.png -------------------------------------------------------------------------------- /resources/rc/checkbox_indeterminate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/checkbox_indeterminate.png -------------------------------------------------------------------------------- /resources/rc/checkbox_indeterminate_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/checkbox_indeterminate_disabled.png -------------------------------------------------------------------------------- /resources/rc/checkbox_indeterminate_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/checkbox_indeterminate_focus.png -------------------------------------------------------------------------------- /resources/rc/checkbox_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/checkbox_unchecked.png -------------------------------------------------------------------------------- /resources/rc/checkbox_unchecked_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/checkbox_unchecked_disabled.png -------------------------------------------------------------------------------- /resources/rc/checkbox_unchecked_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/checkbox_unchecked_focus.png -------------------------------------------------------------------------------- /resources/rc/close-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/close-hover.png -------------------------------------------------------------------------------- /resources/rc/close-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/close-pressed.png -------------------------------------------------------------------------------- /resources/rc/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/close.png -------------------------------------------------------------------------------- /resources/rc/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/down_arrow.png -------------------------------------------------------------------------------- /resources/rc/down_arrow_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/down_arrow_disabled.png -------------------------------------------------------------------------------- /resources/rc/left_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/left_arrow.png -------------------------------------------------------------------------------- /resources/rc/left_arrow_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/left_arrow_disabled.png -------------------------------------------------------------------------------- /resources/rc/radio_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/radio_checked.png -------------------------------------------------------------------------------- /resources/rc/radio_checked_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/radio_checked_disabled.png -------------------------------------------------------------------------------- /resources/rc/radio_checked_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/radio_checked_focus.png -------------------------------------------------------------------------------- /resources/rc/radio_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/radio_unchecked.png -------------------------------------------------------------------------------- /resources/rc/radio_unchecked_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/radio_unchecked_disabled.png -------------------------------------------------------------------------------- /resources/rc/radio_unchecked_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/radio_unchecked_focus.png -------------------------------------------------------------------------------- /resources/rc/right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/right_arrow.png -------------------------------------------------------------------------------- /resources/rc/right_arrow_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/right_arrow_disabled.png -------------------------------------------------------------------------------- /resources/rc/sizegrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/sizegrip.png -------------------------------------------------------------------------------- /resources/rc/stylesheet-branch-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/stylesheet-branch-end.png -------------------------------------------------------------------------------- /resources/rc/stylesheet-branch-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/stylesheet-branch-more.png -------------------------------------------------------------------------------- /resources/rc/stylesheet-vline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/stylesheet-vline.png -------------------------------------------------------------------------------- /resources/rc/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/transparent.png -------------------------------------------------------------------------------- /resources/rc/undock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/undock.png -------------------------------------------------------------------------------- /resources/rc/up_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/up_arrow.png -------------------------------------------------------------------------------- /resources/rc/up_arrow_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/rc/up_arrow_disabled.png -------------------------------------------------------------------------------- /resources/resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/resource.qrc -------------------------------------------------------------------------------- /resources/sql/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/sql/create.sql -------------------------------------------------------------------------------- /resources/sqlfiles.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/sqlfiles.qrc -------------------------------------------------------------------------------- /resources/style/DarkSolarized.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/style/DarkSolarized.qss -------------------------------------------------------------------------------- /resources/test.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/test.qrc -------------------------------------------------------------------------------- /resources/tutorial.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/tutorial.qrc -------------------------------------------------------------------------------- /resources/tutorial/1-welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/resources/tutorial/1-welcome.md -------------------------------------------------------------------------------- /src/cloud/cloudmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/cloud/cloudmanager.cpp -------------------------------------------------------------------------------- /src/cloud/cloudmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/cloud/cloudmanager.h -------------------------------------------------------------------------------- /src/crypto/vcrypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/crypto/vcrypto.cpp -------------------------------------------------------------------------------- /src/crypto/vcrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/crypto/vcrypto.h -------------------------------------------------------------------------------- /src/custom-components/customlineedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/custom-components/customlineedit.cpp -------------------------------------------------------------------------------- /src/custom-components/customlineedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/custom-components/customlineedit.h -------------------------------------------------------------------------------- /src/iconutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/iconutils.cpp -------------------------------------------------------------------------------- /src/iconutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/iconutils.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/mainwindow.cpp -------------------------------------------------------------------------------- /src/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/mainwindow.h -------------------------------------------------------------------------------- /src/meta/db/database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/meta/db/database.cpp -------------------------------------------------------------------------------- /src/meta/db/database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/meta/db/database.h -------------------------------------------------------------------------------- /src/meta/db/notebookdatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/meta/db/notebookdatabase.cpp -------------------------------------------------------------------------------- /src/meta/db/notebookdatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/meta/db/notebookdatabase.h -------------------------------------------------------------------------------- /src/meta/db/notedatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/meta/db/notedatabase.cpp -------------------------------------------------------------------------------- /src/meta/db/notedatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/meta/db/notedatabase.h -------------------------------------------------------------------------------- /src/meta/db/tagdatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/meta/db/tagdatabase.cpp -------------------------------------------------------------------------------- /src/meta/db/tagdatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/meta/db/tagdatabase.h -------------------------------------------------------------------------------- /src/meta/info/appconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/meta/info/appconfig.cpp -------------------------------------------------------------------------------- /src/meta/info/appconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/meta/info/appconfig.h -------------------------------------------------------------------------------- /src/meta/info/appinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/meta/info/appinfo.h -------------------------------------------------------------------------------- /src/meta/note.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/meta/note.cpp -------------------------------------------------------------------------------- /src/meta/note.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/meta/note.h -------------------------------------------------------------------------------- /src/meta/notebook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/meta/notebook.cpp -------------------------------------------------------------------------------- /src/meta/notebook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/meta/notebook.h -------------------------------------------------------------------------------- /src/meta/tag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/meta/tag.cpp -------------------------------------------------------------------------------- /src/meta/tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/meta/tag.h -------------------------------------------------------------------------------- /src/models/delegates/noteitemdelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/models/delegates/noteitemdelegate.cpp -------------------------------------------------------------------------------- /src/models/delegates/noteitemdelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/models/delegates/noteitemdelegate.h -------------------------------------------------------------------------------- /src/models/items/basictreeitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/models/items/basictreeitem.cpp -------------------------------------------------------------------------------- /src/models/items/basictreeitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/models/items/basictreeitem.h -------------------------------------------------------------------------------- /src/models/items/listitemwithid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/models/items/listitemwithid.cpp -------------------------------------------------------------------------------- /src/models/items/listitemwithid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/models/items/listitemwithid.h -------------------------------------------------------------------------------- /src/models/items/notelistitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/models/items/notelistitem.cpp -------------------------------------------------------------------------------- /src/models/items/notelistitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/models/items/notelistitem.h -------------------------------------------------------------------------------- /src/models/items/treeitemwithid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/models/items/treeitemwithid.cpp -------------------------------------------------------------------------------- /src/models/items/treeitemwithid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/models/items/treeitemwithid.h -------------------------------------------------------------------------------- /src/models/notelistmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/models/notelistmodel.cpp -------------------------------------------------------------------------------- /src/models/notelistmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/models/notelistmodel.h -------------------------------------------------------------------------------- /src/models/sortfilter/notelistproxymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/models/sortfilter/notelistproxymodel.cpp -------------------------------------------------------------------------------- /src/models/sortfilter/notelistproxymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/models/sortfilter/notelistproxymodel.h -------------------------------------------------------------------------------- /src/models/treemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/models/treemodel.cpp -------------------------------------------------------------------------------- /src/models/treemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/models/treemodel.h -------------------------------------------------------------------------------- /src/models/views/customlistview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/models/views/customlistview.cpp -------------------------------------------------------------------------------- /src/models/views/customlistview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/models/views/customlistview.h -------------------------------------------------------------------------------- /src/models/views/customtreeview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/models/views/customtreeview.cpp -------------------------------------------------------------------------------- /src/models/views/customtreeview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/models/views/customtreeview.h -------------------------------------------------------------------------------- /src/scripting-api/scriptingengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/scripting-api/scriptingengine.cpp -------------------------------------------------------------------------------- /src/scripting-api/scriptingengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/scripting-api/scriptingengine.h -------------------------------------------------------------------------------- /src/sql/sqlmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/sql/sqlmanager.cpp -------------------------------------------------------------------------------- /src/sql/sqlmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/sql/sqlmanager.h -------------------------------------------------------------------------------- /src/ui-managers/escribamanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/ui-managers/escribamanager.cpp -------------------------------------------------------------------------------- /src/ui-managers/escribamanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/ui-managers/escribamanager.h -------------------------------------------------------------------------------- /src/ui-managers/manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/ui-managers/manager.cpp -------------------------------------------------------------------------------- /src/ui-managers/manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/ui-managers/manager.h -------------------------------------------------------------------------------- /src/ui-managers/notelist-views/genericview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/ui-managers/notelist-views/genericview.cpp -------------------------------------------------------------------------------- /src/ui-managers/notelist-views/genericview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/ui-managers/notelist-views/genericview.h -------------------------------------------------------------------------------- /src/ui-managers/notelist-views/trashview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/ui-managers/notelist-views/trashview.cpp -------------------------------------------------------------------------------- /src/ui-managers/notelist-views/trashview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/ui-managers/notelist-views/trashview.h -------------------------------------------------------------------------------- /src/ui-managers/notelistmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/ui-managers/notelistmanager.cpp -------------------------------------------------------------------------------- /src/ui-managers/notelistmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/ui-managers/notelistmanager.h -------------------------------------------------------------------------------- /src/ui-managers/treemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/ui-managers/treemanager.cpp -------------------------------------------------------------------------------- /src/ui-managers/treemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/ui-managers/treemanager.h -------------------------------------------------------------------------------- /src/userwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/userwindow.cpp -------------------------------------------------------------------------------- /src/userwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/src/userwindow.h -------------------------------------------------------------------------------- /tests/VibratoNotes-Desktop-Tests.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/tests/VibratoNotes-Desktop-Tests.pro -------------------------------------------------------------------------------- /tests/resources/heroes-error.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/tests/resources/heroes-error.sql -------------------------------------------------------------------------------- /tests/resources/heroes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/tests/resources/heroes.sql -------------------------------------------------------------------------------- /tests/resources/testresources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/tests/resources/testresources.qrc -------------------------------------------------------------------------------- /tests/unit-tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/tests/unit-tests.cpp -------------------------------------------------------------------------------- /ui/edittags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/ui/edittags.cpp -------------------------------------------------------------------------------- /ui/edittags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/ui/edittags.h -------------------------------------------------------------------------------- /ui/edittags.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/ui/edittags.ui -------------------------------------------------------------------------------- /ui/escribaaddons.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/ui/escribaaddons.ui -------------------------------------------------------------------------------- /ui/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/ui/mainwindow.ui -------------------------------------------------------------------------------- /ui/note_editnotebook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/ui/note_editnotebook.cpp -------------------------------------------------------------------------------- /ui/note_editnotebook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/ui/note_editnotebook.h -------------------------------------------------------------------------------- /ui/note_editnotebook.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/ui/note_editnotebook.ui -------------------------------------------------------------------------------- /ui/note_edittags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/ui/note_edittags.cpp -------------------------------------------------------------------------------- /ui/note_edittags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/ui/note_edittags.h -------------------------------------------------------------------------------- /ui/note_edittags.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/ui/note_edittags.ui -------------------------------------------------------------------------------- /ui/notebook_editparent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/ui/notebook_editparent.cpp -------------------------------------------------------------------------------- /ui/notebook_editparent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/ui/notebook_editparent.h -------------------------------------------------------------------------------- /ui/notebook_editparent.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/ui/notebook_editparent.ui -------------------------------------------------------------------------------- /ui/notelist_addons.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/ui/notelist_addons.ui -------------------------------------------------------------------------------- /ui/notelistitem.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/ui/notelistitem.ui -------------------------------------------------------------------------------- /ui/tagitem.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/ui/tagitem.ui -------------------------------------------------------------------------------- /ui/trashitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/ui/trashitem.cpp -------------------------------------------------------------------------------- /ui/trashitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/ui/trashitem.h -------------------------------------------------------------------------------- /ui/trashitem.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/ui/trashitem.ui -------------------------------------------------------------------------------- /ui/userwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-App-Library/Vibrato-Notes-Desktop/HEAD/ui/userwindow.ui --------------------------------------------------------------------------------