├── version ├── base_version ├── debian ├── compat ├── docs ├── source │ ├── format │ └── options ├── juffed-plugins.install ├── lintian-overrides ├── juffed-dev.install ├── fix.scanned.copyright ├── watch ├── juffed.install ├── .gitignore ├── README.debian ├── copyright-scan-patterns.yml └── rules ├── cmake ├── version.cmake ├── cmake_uninstall.cmake.in ├── LibSuffix.cmake ├── AppInfo.win.h.cmake ├── AppInfo.nix.h.cmake ├── COPYING-CMAKE-SCRIPTS ├── AppInfo.apple.h.cmake └── SomeLexers.cmake ├── plugins ├── todolist │ ├── todolist.qrc │ ├── todolist.pro │ ├── CMakeLists.txt │ ├── TODOParser.h │ ├── TODOList.h │ └── TODOParser.cpp ├── fm │ ├── install.sh │ ├── go-up.png │ ├── go-home.png │ ├── folder-new.png │ ├── go-current.png │ ├── go-previous.png │ ├── bookmark-new.png │ ├── view-refresh.png │ ├── INSTALL │ ├── fm.pro │ ├── README │ ├── CMakeLists.txt │ ├── fm.qrc │ ├── ManageDlg.h │ ├── TreeView.h │ ├── ManageDlg.cpp │ ├── ManageDlg.ui │ └── FMPlugin.h ├── doclist │ ├── install.sh │ ├── doc_icon.png │ ├── edit-clear.png │ ├── INSTALL │ ├── doclistplugin.qrc │ ├── doclist.pro │ ├── README │ ├── l10n │ │ └── doclist_ru.ts │ ├── CMakeLists.txt │ ├── DocListPlugin.h │ └── doclist_l10n.diff ├── TODO ├── favorites │ ├── install.sh │ ├── INSTALL │ ├── favorites.pro │ ├── README │ ├── CMakeLists.txt │ ├── ManageDlg.h │ ├── ManageDlg.cpp │ ├── FavoritesPlugin.h │ └── ManageDlg.ui ├── colorpicker │ ├── 32.png │ ├── 64.png │ ├── colorpicker.qrc │ ├── ColorFormatDlg.h │ ├── CMakeLists.txt │ ├── ColorPickerPlugin.h │ └── ColorFormatDlg.cpp ├── compare │ ├── meld.png │ ├── compare.qrc │ ├── CMakeLists.txt │ └── compare.h ├── xmlformat │ ├── xmlwrap.png │ ├── xmlformat.qrc │ └── CMakeLists.txt ├── findinfiles │ ├── process-stop.png │ ├── findinfiles.qrc │ ├── findinfiles.pro │ ├── CMakeLists.txt │ ├── SearchDlg.h │ ├── FindWorker.h │ └── FindInFilesPlugin.h ├── symbolbrowser │ ├── symbols │ │ ├── images │ │ │ ├── class.png │ │ │ ├── enum.png │ │ │ ├── func.png │ │ │ ├── macro.png │ │ │ ├── slot.png │ │ │ ├── var.png │ │ │ ├── keyword.png │ │ │ ├── signal.png │ │ │ ├── enumerator.png │ │ │ ├── func-proto.png │ │ │ ├── func_priv.png │ │ │ ├── func_prot.png │ │ │ ├── namespace.png │ │ │ ├── slot_priv.png │ │ │ ├── slot_prot.png │ │ │ ├── var_priv.png │ │ │ └── var_prot.png │ │ ├── common.h │ │ ├── symbols.qrc │ │ └── parserthread.h │ ├── test.sh │ ├── CMakeLists.txt │ └── symbolbrowser.pro ├── juffed-plugins.pro ├── autosave │ ├── CMakeLists.txt │ └── autosave.h ├── sort │ ├── CMakeLists.txt │ ├── QuickSettings.h │ └── QuickSettings.cpp ├── keybindings │ ├── CMakeLists.txt │ ├── KeysPage.h │ ├── KeysPlugin.h │ ├── KeysPlugin.cpp │ └── KeysPage.ui ├── zencoding │ ├── CMakeLists.txt │ ├── ZenCoding.h │ └── DocWrapper.h ├── python │ ├── CMakeLists.txt │ └── PythonPlugin.h ├── juffed-plugins.pri ├── terminal │ ├── CMakeLists.txt │ └── TerminalPlugin.h ├── cmake │ └── FindJuffed.cmake └── make_tarball.sh ├── .gitignore ├── juffed.png ├── src ├── app │ ├── juffed.rc │ ├── juffed.ico │ ├── qsci │ │ ├── QSciLibConfig.h │ │ ├── lexers │ │ │ ├── my │ │ │ │ ├── QsciLexerMatlab.h │ │ │ │ └── QsciLexerMatlab.cpp │ │ │ ├── qscilexerada.h │ │ │ ├── qscilexerlisp.h │ │ │ ├── qscilexerhaskell.h │ │ │ └── qscilexernsis.h │ │ ├── settings │ │ │ ├── PrintSettings.h │ │ │ ├── FileTypeSettings.h │ │ │ └── FileTypesPage.h │ │ └── QSciSettings.h │ ├── ui │ │ ├── SearchComboBox.h │ │ ├── SelectFilesDlg.h │ │ ├── JumpToFileDlg.h │ │ ├── settings │ │ │ ├── PluginPage.h │ │ │ ├── CharsetsSettingsPage.h │ │ │ ├── MultiPage.h │ │ │ └── PluginPage.cpp │ │ ├── SessionDlg.h │ │ ├── TabBar.h │ │ ├── TabWidget.h │ │ ├── AboutDlg.h │ │ ├── ProjectTree.h │ │ └── Popup.h │ ├── Resources.qrc │ ├── PluginManager.h │ └── DocManager.h ├── images │ ├── res │ │ ├── 16 │ │ │ ├── mac.png │ │ │ ├── tux.png │ │ │ ├── win.png │ │ │ ├── close.png │ │ │ ├── trash.png │ │ │ ├── doc_icon.png │ │ │ ├── find_next.png │ │ │ ├── find_prev.png │ │ │ ├── arrow_left.png │ │ │ ├── arrow_right.png │ │ │ ├── replace_all.png │ │ │ ├── doc_icon_red.png │ │ │ ├── doc_modified16.png │ │ │ ├── replace_next.png │ │ │ ├── replace_prev.png │ │ │ ├── doc_icon_warning.png │ │ │ └── doc_unmodified16.png │ │ ├── 32 │ │ │ └── juffed_32.png │ │ └── 48 │ │ │ └── juffed_48.png │ ├── icons │ │ ├── 16 │ │ │ ├── zoom-in.png │ │ │ ├── edit-copy.png │ │ │ ├── edit-cut.png │ │ │ ├── edit-find.png │ │ │ ├── edit-redo.png │ │ │ ├── edit-undo.png │ │ │ ├── zoom-out.png │ │ │ ├── document-new.png │ │ │ ├── edit-paste.png │ │ │ ├── help-browser.png │ │ │ ├── view-refresh.png │ │ │ ├── document-open.png │ │ │ ├── document-print.png │ │ │ ├── document-save.png │ │ │ ├── zoom-original.png │ │ │ ├── application-exit.png │ │ │ ├── document-save-as.png │ │ │ ├── edit-find-replace.png │ │ │ ├── view-fullscreen.png │ │ │ └── preferences-system.png │ │ ├── 24 │ │ │ ├── zoom-in.png │ │ │ ├── edit-copy.png │ │ │ ├── edit-cut.png │ │ │ ├── edit-find.png │ │ │ ├── edit-redo.png │ │ │ ├── edit-undo.png │ │ │ ├── zoom-out.png │ │ │ ├── document-new.png │ │ │ ├── edit-paste.png │ │ │ ├── help-browser.png │ │ │ ├── view-refresh.png │ │ │ ├── document-open.png │ │ │ ├── document-print.png │ │ │ ├── document-save.png │ │ │ ├── zoom-original.png │ │ │ ├── application-exit.png │ │ │ ├── document-save-as.png │ │ │ ├── edit-find-replace.png │ │ │ ├── view-fullscreen.png │ │ │ └── preferences-system.png │ │ └── 32 │ │ │ ├── zoom-in.png │ │ │ ├── edit-copy.png │ │ │ ├── edit-cut.png │ │ │ ├── edit-find.png │ │ │ ├── edit-redo.png │ │ │ ├── edit-undo.png │ │ │ ├── zoom-out.png │ │ │ ├── document-new.png │ │ │ ├── edit-paste.png │ │ │ ├── help-browser.png │ │ │ ├── view-refresh.png │ │ │ ├── document-open.png │ │ │ ├── document-print.png │ │ │ ├── document-save.png │ │ │ ├── zoom-original.png │ │ │ ├── application-exit.png │ │ │ ├── document-save-as.png │ │ │ ├── edit-find-replace.png │ │ │ ├── view-fullscreen.png │ │ │ └── preferences-system.png │ └── mimetypes │ │ ├── text-xml.png │ │ ├── text-x-chdr.png │ │ ├── text-x-java.png │ │ ├── text-x-c++src.png │ │ ├── text-x-cmake.png │ │ ├── text-x-python.png │ │ ├── text-x-script.png │ │ ├── text-x-generic.png │ │ └── text-x-makefile.png └── lib │ ├── SettingsPage.cpp │ ├── Utils.cpp │ ├── PluginNotifier.cpp │ ├── NullDoc.cpp │ ├── StatusLabel.cpp │ ├── KeySettings.cpp │ ├── SettingsItem.cpp │ ├── SettingsColorItem.cpp │ ├── SettingsCheckItem.cpp │ └── DocEngine.cpp ├── win32 ├── enca.exe └── cygwin1.dll ├── macosx ├── juffed.icns └── strip_bundle.sh ├── example └── example.pro ├── hlschemes ├── makefile.xml ├── xml.xml ├── batch.xml ├── properties.xml ├── diff.xml ├── sql.xml ├── java.xml ├── javascript.xml ├── bash.xml ├── cplusplus.xml ├── fortran.xml ├── python.xml ├── cmake.xml ├── html.xml ├── perl.xml ├── qore.xml ├── qorus.xml ├── css.xml ├── ruby.xml └── php.xml ├── include ├── SettingsPage.h ├── Utils.h ├── LibConfig.h ├── IconManagerInt.h ├── AppInfo.h ├── KeySettings.h ├── CharsetSettings.h ├── NullDoc.h ├── StatusLabel.h ├── AutocompleteSettings.h ├── ColorButton.h ├── FileTypeSettings.h ├── SettingsCheckItem.h ├── SettingsColorItem.h ├── IconManager.h ├── SettingsItem.h ├── SettingsSelectItem.h ├── EditorSettings.h └── SearchResults.h ├── apis ├── vhdl.api ├── qore.api └── qorus.api ├── juffed.desktop ├── README ├── pack.bat └── juffed.spec /version: -------------------------------------------------------------------------------- 1 | 0.10 2 | -------------------------------------------------------------------------------- /base_version: -------------------------------------------------------------------------------- 1 | 0.10 2 | -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | README 2 | -------------------------------------------------------------------------------- /cmake/version.cmake: -------------------------------------------------------------------------------- 1 | @VERSION@ 2 | -------------------------------------------------------------------------------- /plugins/todolist/todolist.qrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /cmake-build-*/ 3 | *.user 4 | -------------------------------------------------------------------------------- /debian/source/options: -------------------------------------------------------------------------------- 1 | tar-ignore = .gitignore 2 | -------------------------------------------------------------------------------- /debian/juffed-plugins.install: -------------------------------------------------------------------------------- 1 | usr/lib/*/libjuff/juffed/plugins/*.so 2 | -------------------------------------------------------------------------------- /juffed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/juffed.png -------------------------------------------------------------------------------- /debian/lintian-overrides: -------------------------------------------------------------------------------- 1 | juffed: binary-without-manpage usr/bin/juffed 2 | 3 | -------------------------------------------------------------------------------- /plugins/fm/install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cp ../libfm.so ~/.config/juff/plugins/ 4 | -------------------------------------------------------------------------------- /src/app/juffed.rc: -------------------------------------------------------------------------------- 1 | IDI_ICON1 ICON DISCARDABLE "juffed.ico" 2 | -------------------------------------------------------------------------------- /win32/enca.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/win32/enca.exe -------------------------------------------------------------------------------- /debian/juffed-dev.install: -------------------------------------------------------------------------------- 1 | usr/include/juffed/*.h 2 | usr/lib/*/libjuff/*.so 3 | 4 | -------------------------------------------------------------------------------- /macosx/juffed.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/macosx/juffed.icns -------------------------------------------------------------------------------- /src/app/juffed.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/app/juffed.ico -------------------------------------------------------------------------------- /win32/cygwin1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/win32/cygwin1.dll -------------------------------------------------------------------------------- /debian/fix.scanned.copyright: -------------------------------------------------------------------------------- 1 | ! Files:"plugins/xmlformat/*" License short_name=GPL-2 2 | 3 | -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- 1 | version=3 2 | https://github.com/mezomish/juffed/releases .*/([\d\.]+).tar.gz -------------------------------------------------------------------------------- /plugins/doclist/install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cp ../libdoclist.so ~/.config/juff/plugins/ 4 | -------------------------------------------------------------------------------- /plugins/fm/go-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/fm/go-up.png -------------------------------------------------------------------------------- /plugins/TODO: -------------------------------------------------------------------------------- 1 | DocListPlugin 2 | ------------- 3 | * close button 4 | * moving items (?) 5 | 6 | -------------------------------------------------------------------------------- /plugins/favorites/install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cp ../libfavorites.so ~/.config/juff/plugins/ 4 | -------------------------------------------------------------------------------- /plugins/fm/go-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/fm/go-home.png -------------------------------------------------------------------------------- /plugins/colorpicker/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/colorpicker/32.png -------------------------------------------------------------------------------- /plugins/colorpicker/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/colorpicker/64.png -------------------------------------------------------------------------------- /plugins/compare/meld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/compare/meld.png -------------------------------------------------------------------------------- /plugins/fm/folder-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/fm/folder-new.png -------------------------------------------------------------------------------- /plugins/fm/go-current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/fm/go-current.png -------------------------------------------------------------------------------- /plugins/fm/go-previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/fm/go-previous.png -------------------------------------------------------------------------------- /src/images/res/16/mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/res/16/mac.png -------------------------------------------------------------------------------- /src/images/res/16/tux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/res/16/tux.png -------------------------------------------------------------------------------- /src/images/res/16/win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/res/16/win.png -------------------------------------------------------------------------------- /plugins/doclist/doc_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/doclist/doc_icon.png -------------------------------------------------------------------------------- /plugins/fm/bookmark-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/fm/bookmark-new.png -------------------------------------------------------------------------------- /plugins/fm/view-refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/fm/view-refresh.png -------------------------------------------------------------------------------- /src/images/res/16/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/res/16/close.png -------------------------------------------------------------------------------- /src/images/res/16/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/res/16/trash.png -------------------------------------------------------------------------------- /plugins/doclist/edit-clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/doclist/edit-clear.png -------------------------------------------------------------------------------- /plugins/xmlformat/xmlwrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/xmlformat/xmlwrap.png -------------------------------------------------------------------------------- /src/images/icons/16/zoom-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/16/zoom-in.png -------------------------------------------------------------------------------- /src/images/icons/24/zoom-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/24/zoom-in.png -------------------------------------------------------------------------------- /src/images/icons/32/zoom-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/32/zoom-in.png -------------------------------------------------------------------------------- /src/images/res/16/doc_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/res/16/doc_icon.png -------------------------------------------------------------------------------- /src/images/res/16/find_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/res/16/find_next.png -------------------------------------------------------------------------------- /src/images/res/16/find_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/res/16/find_prev.png -------------------------------------------------------------------------------- /src/images/res/32/juffed_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/res/32/juffed_32.png -------------------------------------------------------------------------------- /src/images/res/48/juffed_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/res/48/juffed_48.png -------------------------------------------------------------------------------- /src/images/icons/16/edit-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/16/edit-copy.png -------------------------------------------------------------------------------- /src/images/icons/16/edit-cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/16/edit-cut.png -------------------------------------------------------------------------------- /src/images/icons/16/edit-find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/16/edit-find.png -------------------------------------------------------------------------------- /src/images/icons/16/edit-redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/16/edit-redo.png -------------------------------------------------------------------------------- /src/images/icons/16/edit-undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/16/edit-undo.png -------------------------------------------------------------------------------- /src/images/icons/16/zoom-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/16/zoom-out.png -------------------------------------------------------------------------------- /src/images/icons/24/edit-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/24/edit-copy.png -------------------------------------------------------------------------------- /src/images/icons/24/edit-cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/24/edit-cut.png -------------------------------------------------------------------------------- /src/images/icons/24/edit-find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/24/edit-find.png -------------------------------------------------------------------------------- /src/images/icons/24/edit-redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/24/edit-redo.png -------------------------------------------------------------------------------- /src/images/icons/24/edit-undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/24/edit-undo.png -------------------------------------------------------------------------------- /src/images/icons/24/zoom-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/24/zoom-out.png -------------------------------------------------------------------------------- /src/images/icons/32/edit-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/32/edit-copy.png -------------------------------------------------------------------------------- /src/images/icons/32/edit-cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/32/edit-cut.png -------------------------------------------------------------------------------- /src/images/icons/32/edit-find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/32/edit-find.png -------------------------------------------------------------------------------- /src/images/icons/32/edit-redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/32/edit-redo.png -------------------------------------------------------------------------------- /src/images/icons/32/edit-undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/32/edit-undo.png -------------------------------------------------------------------------------- /src/images/icons/32/zoom-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/32/zoom-out.png -------------------------------------------------------------------------------- /src/images/mimetypes/text-xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/mimetypes/text-xml.png -------------------------------------------------------------------------------- /src/images/res/16/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/res/16/arrow_left.png -------------------------------------------------------------------------------- /src/images/res/16/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/res/16/arrow_right.png -------------------------------------------------------------------------------- /src/images/res/16/replace_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/res/16/replace_all.png -------------------------------------------------------------------------------- /plugins/findinfiles/process-stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/findinfiles/process-stop.png -------------------------------------------------------------------------------- /src/images/icons/16/document-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/16/document-new.png -------------------------------------------------------------------------------- /src/images/icons/16/edit-paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/16/edit-paste.png -------------------------------------------------------------------------------- /src/images/icons/16/help-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/16/help-browser.png -------------------------------------------------------------------------------- /src/images/icons/16/view-refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/16/view-refresh.png -------------------------------------------------------------------------------- /src/images/icons/24/document-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/24/document-new.png -------------------------------------------------------------------------------- /src/images/icons/24/edit-paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/24/edit-paste.png -------------------------------------------------------------------------------- /src/images/icons/24/help-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/24/help-browser.png -------------------------------------------------------------------------------- /src/images/icons/24/view-refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/24/view-refresh.png -------------------------------------------------------------------------------- /src/images/icons/32/document-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/32/document-new.png -------------------------------------------------------------------------------- /src/images/icons/32/edit-paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/32/edit-paste.png -------------------------------------------------------------------------------- /src/images/icons/32/help-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/32/help-browser.png -------------------------------------------------------------------------------- /src/images/icons/32/view-refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/32/view-refresh.png -------------------------------------------------------------------------------- /src/images/mimetypes/text-x-chdr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/mimetypes/text-x-chdr.png -------------------------------------------------------------------------------- /src/images/mimetypes/text-x-java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/mimetypes/text-x-java.png -------------------------------------------------------------------------------- /src/images/res/16/doc_icon_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/res/16/doc_icon_red.png -------------------------------------------------------------------------------- /src/images/res/16/doc_modified16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/res/16/doc_modified16.png -------------------------------------------------------------------------------- /src/images/res/16/replace_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/res/16/replace_next.png -------------------------------------------------------------------------------- /src/images/res/16/replace_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/res/16/replace_prev.png -------------------------------------------------------------------------------- /src/images/icons/16/document-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/16/document-open.png -------------------------------------------------------------------------------- /src/images/icons/16/document-print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/16/document-print.png -------------------------------------------------------------------------------- /src/images/icons/16/document-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/16/document-save.png -------------------------------------------------------------------------------- /src/images/icons/16/zoom-original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/16/zoom-original.png -------------------------------------------------------------------------------- /src/images/icons/24/document-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/24/document-open.png -------------------------------------------------------------------------------- /src/images/icons/24/document-print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/24/document-print.png -------------------------------------------------------------------------------- /src/images/icons/24/document-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/24/document-save.png -------------------------------------------------------------------------------- /src/images/icons/24/zoom-original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/24/zoom-original.png -------------------------------------------------------------------------------- /src/images/icons/32/document-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/32/document-open.png -------------------------------------------------------------------------------- /src/images/icons/32/document-print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/32/document-print.png -------------------------------------------------------------------------------- /src/images/icons/32/document-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/32/document-save.png -------------------------------------------------------------------------------- /src/images/icons/32/zoom-original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/32/zoom-original.png -------------------------------------------------------------------------------- /src/images/mimetypes/text-x-c++src.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/mimetypes/text-x-c++src.png -------------------------------------------------------------------------------- /src/images/mimetypes/text-x-cmake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/mimetypes/text-x-cmake.png -------------------------------------------------------------------------------- /src/images/mimetypes/text-x-python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/mimetypes/text-x-python.png -------------------------------------------------------------------------------- /src/images/mimetypes/text-x-script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/mimetypes/text-x-script.png -------------------------------------------------------------------------------- /src/images/res/16/doc_icon_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/res/16/doc_icon_warning.png -------------------------------------------------------------------------------- /src/images/res/16/doc_unmodified16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/res/16/doc_unmodified16.png -------------------------------------------------------------------------------- /src/images/icons/16/application-exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/16/application-exit.png -------------------------------------------------------------------------------- /src/images/icons/16/document-save-as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/16/document-save-as.png -------------------------------------------------------------------------------- /src/images/icons/16/edit-find-replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/16/edit-find-replace.png -------------------------------------------------------------------------------- /src/images/icons/16/view-fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/16/view-fullscreen.png -------------------------------------------------------------------------------- /src/images/icons/24/application-exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/24/application-exit.png -------------------------------------------------------------------------------- /src/images/icons/24/document-save-as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/24/document-save-as.png -------------------------------------------------------------------------------- /src/images/icons/24/edit-find-replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/24/edit-find-replace.png -------------------------------------------------------------------------------- /src/images/icons/24/view-fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/24/view-fullscreen.png -------------------------------------------------------------------------------- /src/images/icons/32/application-exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/32/application-exit.png -------------------------------------------------------------------------------- /src/images/icons/32/document-save-as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/32/document-save-as.png -------------------------------------------------------------------------------- /src/images/icons/32/edit-find-replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/32/edit-find-replace.png -------------------------------------------------------------------------------- /src/images/icons/32/view-fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/32/view-fullscreen.png -------------------------------------------------------------------------------- /src/images/mimetypes/text-x-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/mimetypes/text-x-generic.png -------------------------------------------------------------------------------- /src/images/mimetypes/text-x-makefile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/mimetypes/text-x-makefile.png -------------------------------------------------------------------------------- /plugins/compare/compare.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | meld.png 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/images/icons/16/preferences-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/16/preferences-system.png -------------------------------------------------------------------------------- /src/images/icons/24/preferences-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/24/preferences-system.png -------------------------------------------------------------------------------- /src/images/icons/32/preferences-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/src/images/icons/32/preferences-system.png -------------------------------------------------------------------------------- /plugins/symbolbrowser/symbols/images/class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/symbolbrowser/symbols/images/class.png -------------------------------------------------------------------------------- /plugins/symbolbrowser/symbols/images/enum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/symbolbrowser/symbols/images/enum.png -------------------------------------------------------------------------------- /plugins/symbolbrowser/symbols/images/func.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/symbolbrowser/symbols/images/func.png -------------------------------------------------------------------------------- /plugins/symbolbrowser/symbols/images/macro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/symbolbrowser/symbols/images/macro.png -------------------------------------------------------------------------------- /plugins/symbolbrowser/symbols/images/slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/symbolbrowser/symbols/images/slot.png -------------------------------------------------------------------------------- /plugins/symbolbrowser/symbols/images/var.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/symbolbrowser/symbols/images/var.png -------------------------------------------------------------------------------- /plugins/symbolbrowser/symbols/images/keyword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/symbolbrowser/symbols/images/keyword.png -------------------------------------------------------------------------------- /plugins/symbolbrowser/symbols/images/signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/symbolbrowser/symbols/images/signal.png -------------------------------------------------------------------------------- /plugins/xmlformat/xmlformat.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | xmlwrap.png 4 | 5 | 6 | -------------------------------------------------------------------------------- /plugins/findinfiles/findinfiles.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | process-stop.png 4 | 5 | 6 | -------------------------------------------------------------------------------- /plugins/symbolbrowser/symbols/images/enumerator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/symbolbrowser/symbols/images/enumerator.png -------------------------------------------------------------------------------- /plugins/symbolbrowser/symbols/images/func-proto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/symbolbrowser/symbols/images/func-proto.png -------------------------------------------------------------------------------- /plugins/symbolbrowser/symbols/images/func_priv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/symbolbrowser/symbols/images/func_priv.png -------------------------------------------------------------------------------- /plugins/symbolbrowser/symbols/images/func_prot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/symbolbrowser/symbols/images/func_prot.png -------------------------------------------------------------------------------- /plugins/symbolbrowser/symbols/images/namespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/symbolbrowser/symbols/images/namespace.png -------------------------------------------------------------------------------- /plugins/symbolbrowser/symbols/images/slot_priv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/symbolbrowser/symbols/images/slot_priv.png -------------------------------------------------------------------------------- /plugins/symbolbrowser/symbols/images/slot_prot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/symbolbrowser/symbols/images/slot_prot.png -------------------------------------------------------------------------------- /plugins/symbolbrowser/symbols/images/var_priv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/symbolbrowser/symbols/images/var_priv.png -------------------------------------------------------------------------------- /plugins/symbolbrowser/symbols/images/var_prot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mezomish/juffed/HEAD/plugins/symbolbrowser/symbols/images/var_prot.png -------------------------------------------------------------------------------- /plugins/symbolbrowser/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | name="symbolbrowser" 4 | 5 | qmake && make && cp lib${name}.so ~/.config/juff/plugins/lib${name}.so && juffed -------------------------------------------------------------------------------- /plugins/fm/INSTALL: -------------------------------------------------------------------------------- 1 | Compilation: 2 | $ qmake 3 | $ make 4 | 5 | Installation: 6 | $ mkdir ~/.config/juff/plugins 7 | $ cp ../libfm.so ~/.config/juffed/plugins/ 8 | -------------------------------------------------------------------------------- /plugins/doclist/INSTALL: -------------------------------------------------------------------------------- 1 | Compilation: 2 | $ qmake 3 | $ make 4 | 5 | Installation: 6 | $ mkdir ~/.config/juff/plugins 7 | $ cp ../libdoclist.so ~/.config/juffed/plugins/ 8 | -------------------------------------------------------------------------------- /plugins/favorites/INSTALL: -------------------------------------------------------------------------------- 1 | Compilation: 2 | $ qmake 3 | $ make 4 | 5 | Installation: 6 | $ mkdir ~/.config/juff/plugins 7 | $ cp ../libfavorites.so ~/.config/juffed/plugins/ 8 | -------------------------------------------------------------------------------- /plugins/colorpicker/colorpicker.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 32.png 4 | 64.png 5 | 6 | 7 | -------------------------------------------------------------------------------- /plugins/todolist/todolist.pro: -------------------------------------------------------------------------------- 1 | include(../juffed-plugins.pri) 2 | 3 | TARGET = todolist 4 | 5 | HEADERS = TODOList.h TODOParser.h 6 | SOURCES = TODOList.cpp TODOParser.cpp 7 | -------------------------------------------------------------------------------- /plugins/doclist/doclistplugin.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | doc_icon.png 4 | edit-clear.png 5 | 6 | 7 | -------------------------------------------------------------------------------- /debian/juffed.install: -------------------------------------------------------------------------------- 1 | usr/bin/juffed 2 | usr/share/pixmaps/juffed.png 3 | usr/share/applications/juffed.desktop 4 | usr/share/juffed/ 5 | 6 | usr/lib/*/libjuff/libjuffed-engine-qsci.so.0.10 7 | usr/lib/*/libjuff/libjuff.so.0.10 8 | 9 | -------------------------------------------------------------------------------- /plugins/doclist/doclist.pro: -------------------------------------------------------------------------------- 1 | include(../juffed-plugins.pri) 2 | 3 | TARGET = doclist 4 | 5 | HEADERS = DocListPlugin.h DocListPanel.h 6 | SOURCES = DocListPlugin.cpp DocListPanel.cpp 7 | RESOURCES = doclistplugin.qrc 8 | -------------------------------------------------------------------------------- /plugins/favorites/favorites.pro: -------------------------------------------------------------------------------- 1 | include(../juffed-plugins.pri) 2 | 3 | TARGET = favorites 4 | 5 | HEADERS = FavoritesPlugin.h ManageDlg.h 6 | SOURCES = FavoritesPlugin.cpp ManageDlg.cpp 7 | FORMS = ManageDlg.ui 8 | -------------------------------------------------------------------------------- /debian/.gitignore: -------------------------------------------------------------------------------- 1 | /*.debhelper.log 2 | /*.substvars 3 | /debhelper-build-stamp 4 | /files 5 | 6 | /.debhelper/ 7 | /juffed-dev/ 8 | /juffed-plugins/ 9 | /juffed/ 10 | /libjuff0.10/ 11 | /libjuffed-engine-qsci0.10/ 12 | /tmp/ 13 | -------------------------------------------------------------------------------- /plugins/fm/fm.pro: -------------------------------------------------------------------------------- 1 | include(../juffed-plugins.pri) 2 | 3 | TARGET = fm 4 | 5 | HEADERS = FMPlugin.h TreeView.h ManageDlg.h 6 | SOURCES = FMPlugin.cpp TreeView.cpp ManageDlg.cpp 7 | FORMS = ManageDlg.ui 8 | RESOURCES = fm.qrc 9 | -------------------------------------------------------------------------------- /plugins/doclist/README: -------------------------------------------------------------------------------- 1 | DocListPlugin 2 | Documents list 3 | 4 | Allows to view all opened documents as a docked list. 5 | 6 | License: 7 | GPLv2 (see COPYING for details). 8 | 9 | Homepage: 10 | http://code.google.com/p/juffed-plugins/ 11 | 12 | -------------------------------------------------------------------------------- /example/example.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = app 2 | INCLUDEPATH += . ../src/app/qsci ../include 3 | LIBS += -ljuffed-engine-qsci -ljuff 4 | SOURCES += example.cpp 5 | 6 | win32 { 7 | CONFIG += release 8 | CONFIG -= debug 9 | LIBS += -L. 10 | } 11 | -------------------------------------------------------------------------------- /plugins/juffed-plugins.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | CONFIG += ordered 3 | SUBDIRS = \ 4 | doclist \ 5 | favorites \ 6 | # findinfiles \ 7 | fm \ 8 | # keybindings \ 9 | symbolbrowser \ 10 | 11 | !win32 { 12 | SUBDIRS += terminal 13 | } 14 | 15 | -------------------------------------------------------------------------------- /plugins/favorites/README: -------------------------------------------------------------------------------- 1 | FavoritesPlugin 2 | Keeping your favorites 3 | 4 | Allows you to add files to favorites and easily reach them. 5 | 6 | License: 7 | GPLv2 (see COPYING for details). 8 | 9 | Homepage: 10 | http://code.google.com/p/juffed-plugins/ 11 | 12 | -------------------------------------------------------------------------------- /plugins/autosave/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # doclist 2 | set(autosave_SRC autosave.cpp) 3 | 4 | add_library(autosave SHARED ${autosave_SRC} ${autosave_UI}) 5 | target_link_libraries(autosave ${JUFFED_LIBRARY} ${JUFF_QT_IMPORTED_TARGETS}) 6 | install(TARGETS autosave DESTINATION ${JUFFED_PLUGINS_DIR}) 7 | -------------------------------------------------------------------------------- /plugins/fm/README: -------------------------------------------------------------------------------- 1 | FMPlugin 2 | Simple file manager 3 | 4 | Allows to navigate through your file system 5 | and open files without using a file open dialog. 6 | 7 | License: 8 | GPLv2 (see COPYING for details). 9 | 10 | Homepage: 11 | http://code.google.com/p/juffed-plugins/ 12 | 13 | -------------------------------------------------------------------------------- /plugins/findinfiles/findinfiles.pro: -------------------------------------------------------------------------------- 1 | include(../juffed-plugins.pri) 2 | 3 | TARGET = findinfiles 4 | 5 | HEADERS = FindInFilesPlugin.h SearchDlg.h FindWorker.h 6 | SOURCES = FindInFilesPlugin.cpp SearchDlg.cpp FindWorker.cpp 7 | FORMS = SearchDlg.ui 8 | RESOURCES = findinfiles.qrc 9 | -------------------------------------------------------------------------------- /src/lib/SettingsPage.cpp: -------------------------------------------------------------------------------- 1 | #include "SettingsPage.h" 2 | 3 | #include "Log.h" 4 | #include "SettingsItem.h" 5 | 6 | SettingsPage::SettingsPage(QWidget* parent) : QWidget(parent) { 7 | } 8 | 9 | void SettingsPage::apply() { 10 | LOGGER; 11 | foreach (SettingsItem* item, items_) 12 | item->writeValue(); 13 | } 14 | -------------------------------------------------------------------------------- /plugins/compare/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # doclist 2 | set(compare_SRC compare.cpp) 3 | 4 | QT_ADD_RESOURCES(compare_RES compare.qrc) 5 | 6 | add_library(compare SHARED ${compare_SRC} ${compare_RES}) 7 | target_link_libraries(compare ${JUFFED_LIBRARY} ${JUFF_QT_IMPORTED_TARGETS}) 8 | install(TARGETS compare DESTINATION ${JUFFED_PLUGINS_DIR}) 9 | -------------------------------------------------------------------------------- /plugins/doclist/l10n/doclist_ru.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DocListPanel 6 | 7 | Documents 8 | Документы 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /plugins/sort/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # doclist 2 | set(sort_SRC sort.cpp QuickSettings.cpp) 3 | 4 | QT_WRAP_UI(sort_UI QuickSettings.ui) 5 | 6 | add_library(sortdocument SHARED ${sort_SRC} ${sort_UI}) 7 | target_link_libraries(sortdocument ${JUFFED_LIBRARY} ${JUFF_QT_IMPORTED_TARGETS}) 8 | install(TARGETS sortdocument DESTINATION ${JUFFED_PLUGINS_DIR}) 9 | -------------------------------------------------------------------------------- /plugins/keybindings/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # keybindings 2 | set(keys_SRC KeysPlugin.cpp KeysPage.cpp) 3 | 4 | QT_WRAP_UI(keys_UI KeysPage.ui) 5 | 6 | add_library(keybindings SHARED ${keys_SRC} ${keys_UI}) 7 | target_link_libraries(keybindings ${JUFFED_LIBRARY} ${JUFF_QT_IMPORTED_TARGETS}) 8 | install(TARGETS keybindings DESTINATION ${JUFFED_PLUGINS_DIR}) 9 | -------------------------------------------------------------------------------- /plugins/xmlformat/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # doclist 2 | set(xmlformat_SRC xmlformat.cpp) 3 | 4 | QT_ADD_RESOURCES(xmlformat_RES xmlformat.qrc) 5 | 6 | add_library(xmlformat SHARED ${xmlformat_SRC} ${xmlformat_RES}) 7 | target_link_libraries(xmlformat ${JUFFED_LIBRARY} ${JUFF_QT_IMPORTED_TARGETS}) 8 | install(TARGETS xmlformat DESTINATION ${JUFFED_PLUGINS_DIR}) 9 | -------------------------------------------------------------------------------- /plugins/todolist/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # todolist 2 | QT4_WRAP_CPP ( todolist_MOC TODOList.h TODOParser.h ) 3 | set ( todolist_SRC TODOList.cpp TODOParser.cpp ) 4 | 5 | add_library( todolist SHARED ${todolist_SRC} ${todolist_RES} ${todolist_MOC} ) 6 | target_link_libraries(todolist ${JUFFED_LIBRARY} ${QT_LIBRARIES}) 7 | install(TARGETS todolist DESTINATION ${JUFFED_PLUGINS_DIR}) 8 | -------------------------------------------------------------------------------- /hlschemes/makefile.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |