├── .gitignore ├── .travis.yml ├── CHANGELOG.txt ├── CMakeLists.txt ├── COPYING ├── CliParser.cpp ├── CliParser.h ├── CompilerInfo.h ├── CopyEngineManager.cpp ├── CopyEngineManager.h ├── CopyListener.cpp ├── CopyListener.h ├── Core.cpp ├── Core.h ├── DebugEngine.cpp ├── DebugEngine.h ├── DebugEngineMacro.h ├── DebugModel.cpp ├── Environment.h ├── EventDispatcher.cpp ├── EventDispatcher.h ├── ExtraSocket.cpp ├── ExtraSocket.h ├── FacilityEngine.cpp ├── FacilityEngine.h ├── FacilityEngineVersion.cpp ├── HelpDialog.cpp ├── HelpDialog.h ├── HelpDialog.ui ├── InternetUpdater.cpp ├── InternetUpdater.h ├── LanguagesManager.cpp ├── LanguagesManager.h ├── LocalListener.cpp ├── LocalListener.h ├── LocalPluginOptions.cpp ├── LocalPluginOptions.h ├── LogThread.cpp ├── LogThread.h ├── OSSpecific.cpp ├── OSSpecific.h ├── OSSpecific.ui ├── OptionDialog.cpp ├── OptionDialog.h ├── OptionDialog.ui ├── OptionEngine.cpp ├── OptionEngine.h ├── PlatformMacro.h ├── PluginInformation.cpp ├── PluginInformation.h ├── PluginInformation.ui ├── PluginLoaderCore.cpp ├── PluginLoaderCore.h ├── PluginsManager.cpp ├── PluginsManager.h ├── ProductKey.cpp ├── ProductKey.h ├── ProductKey.ui ├── README.md ├── README.sources ├── ResourcesManager.cpp ├── ResourcesManager.h ├── SessionLoader.cpp ├── SessionLoader.h ├── StructEnumDefinition.h ├── StructEnumDefinition_UltracopierSpecific.h ├── SystrayIcon.cpp ├── SystrayIcon.h ├── ThemesManager.cpp ├── ThemesManager.h ├── Variable.h ├── Version.h ├── android-libultracopier.so-deployment-settings.json ├── android-sources ├── AndroidManifest.xml ├── build.sh └── res │ ├── drawable-hdpi │ └── icon.png │ ├── drawable-ldpi │ └── icon.png │ └── drawable-mdpi │ └── icon.png ├── catchcopy-windows-explorer-plugin ├── CatchCopy.cpp ├── CatchCopy.def ├── CatchCopy.pro ├── ClassFactory.cpp ├── ClassFactory.h ├── ClientCatchcopy.cpp ├── ClientCatchcopy.h ├── DDShellExt.cpp ├── DDShellExt.h ├── Deque.cpp ├── Deque.h ├── Reg.cpp ├── Reg.h ├── Variable.h └── resource.h ├── cpp11addition.cpp ├── cpp11addition.h ├── cpp11additionstringtointcpp.cpp ├── docs └── ultracopier.1 ├── file-manager ├── libfm-qt-uc.patch ├── pcmanfm-qt-uc-0.14.patch ├── pcmanfm-qt-uc-0.16.patch ├── pcmanfm-qt-uc-1.12.patch ├── pcmanfm-qt-uc.patch └── pcmanfm-qt.txt ├── interface ├── FacilityInterface.h ├── OptionInterface.h ├── PluginInterface_CopyEngine.h ├── PluginInterface_Listener.h ├── PluginInterface_PluginLoader.h ├── PluginInterface_SessionLoader.h └── PluginInterface_Themes.h ├── lib └── qt-tar-xz │ ├── QTarDecode.cpp │ ├── QTarDecode.h │ ├── QXzDecode.cpp │ ├── QXzDecode.h │ ├── QXzDecodeThread.cpp │ ├── QXzDecodeThread.h │ ├── xz.h │ ├── xz_config.h │ ├── xz_crc32.c │ ├── xz_dec_bcj.c │ ├── xz_dec_lzma2.c │ ├── xz_dec_stream.c │ ├── xz_lzma2.h │ ├── xz_private.h │ └── xz_stream.h ├── libfm-qt-ultracopier ├── README ├── libfm-qt-ultracopier.pro ├── utilities.cpp └── utilities.h ├── little ├── OptionsEngineLittle.cpp ├── OptionsEngineLittle.h └── main-little.cpp ├── main.cpp ├── other-pro ├── CMakeLists.txt ├── android │ ├── AndroidManifest.xml │ ├── build.sh │ ├── oldAndroidManifest.xml │ └── res │ │ ├── drawable-hdpi │ │ └── icon.png │ │ ├── drawable-ldpi │ │ └── icon.png │ │ ├── drawable-mdpi │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ └── icon.png │ │ └── drawable-xxxhdpi │ │ └── icon.png ├── static.pro ├── supercopier-core.pro ├── ultracopier-core.pro ├── ultracopier-little-random.pro ├── ultracopier-little.pri ├── ultracopier-little.pro └── ultracopier-static.pro ├── plugins-unmaintained ├── CopyEngine │ └── Ultracopier-Qt │ │ ├── AvancedQFile.cpp │ │ ├── AvancedQFile.h │ │ ├── CompilerInfo.h │ │ ├── CopyEngine-collision-and-error.cpp │ │ ├── CopyEngine.cpp │ │ ├── CopyEngine.h │ │ ├── CopyEngine.pro │ │ ├── CopyEngineFactory.cpp │ │ ├── CopyEngineFactory.h │ │ ├── CopyEngineUltracopierVariable.h │ │ ├── DebugDialog.cpp │ │ ├── DebugDialog.h │ │ ├── DebugEngineMacro.h │ │ ├── DiskSpace.cpp │ │ ├── DiskSpace.h │ │ ├── DiskSpace.ui │ │ ├── DriveManagement.cpp │ │ ├── DriveManagement.h │ │ ├── Environment.h │ │ ├── FileErrorDialog.cpp │ │ ├── FileErrorDialog.h │ │ ├── FileExistsDialog.cpp │ │ ├── FileExistsDialog.h │ │ ├── FileIsSameDialog.cpp │ │ ├── FileIsSameDialog.h │ │ ├── FilterRules.cpp │ │ ├── FilterRules.h │ │ ├── FilterRules.ui │ │ ├── Filters.cpp │ │ ├── Filters.h │ │ ├── Filters.ui │ │ ├── FolderExistsDialog.cpp │ │ ├── FolderExistsDialog.h │ │ ├── Languages │ │ ├── ar │ │ │ └── translation.ts │ │ ├── de │ │ │ └── translation.ts │ │ ├── el │ │ │ └── translation.ts │ │ ├── en │ │ │ └── translation.ts │ │ ├── es │ │ │ └── translation.ts │ │ ├── fr │ │ │ └── translation.ts │ │ ├── hi │ │ │ └── translation.ts │ │ ├── hu │ │ │ └── translation.ts │ │ ├── id │ │ │ └── translation.ts │ │ ├── it │ │ │ └── translation.ts │ │ ├── ja │ │ │ └── translation.ts │ │ ├── ko │ │ │ └── translation.ts │ │ ├── nl │ │ │ └── translation.ts │ │ ├── no │ │ │ └── translation.ts │ │ ├── pl │ │ │ └── translation.ts │ │ ├── pt │ │ │ └── translation.ts │ │ ├── ru │ │ │ └── translation.ts │ │ ├── th │ │ │ └── translation.ts │ │ ├── tr │ │ │ └── translation.ts │ │ └── zh │ │ │ └── translation.ts │ │ ├── ListThread.cpp │ │ ├── ListThread.h │ │ ├── ListThread_InodeAction.cpp │ │ ├── MkPath.cpp │ │ ├── MkPath.h │ │ ├── README.md │ │ ├── ReadThread.cpp │ │ ├── ReadThread.h │ │ ├── RenamingRules.cpp │ │ ├── RenamingRules.h │ │ ├── RenamingRules.ui │ │ ├── ScanFileOrFolder.cpp │ │ ├── ScanFileOrFolder.h │ │ ├── StructEnumDefinition.h │ │ ├── StructEnumDefinition_CopyEngine.h │ │ ├── TransferThread.cpp │ │ ├── TransferThread.h │ │ ├── WriteThread.cpp │ │ ├── WriteThread.h │ │ ├── copyEngineOptions.ui │ │ ├── copyEngineResources.qrc │ │ ├── debugDialog.ui │ │ ├── documentation.dox │ │ ├── fileErrorDialog.ui │ │ ├── fileExistsDialog.ui │ │ ├── fileIsSameDialog.ui │ │ ├── folderExistsDialog.ui │ │ ├── informations.xml │ │ ├── plugin.json │ │ └── resources │ │ ├── add.png │ │ ├── edit.png │ │ ├── filter.png │ │ └── remove.png ├── Listener │ └── dbus │ │ ├── Catchcopy.cpp │ │ ├── Catchcopy.h │ │ ├── DebugEngineMacro.h │ │ ├── Environment.h │ │ ├── StructEnumDefinition.h │ │ ├── Variable.h │ │ ├── documentation.dox │ │ ├── informations.xml │ │ ├── listener.cpp │ │ ├── listener.h │ │ ├── listener.pro │ │ └── plugin.json ├── PluginLoader │ └── keybinding │ │ ├── DebugEngineMacro.h │ │ ├── Environment.h │ │ ├── KeyBind.cpp │ │ ├── KeyBind.h │ │ ├── Languages │ │ ├── ar │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── de │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── el │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── en │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── es │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── fr │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── hi │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── hu │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── id │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── it │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── ja │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── ko │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── nl │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── no │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── pl │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── pt │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── ru │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── th │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── tr │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ └── zh │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── OptionsWidget.cpp │ │ ├── OptionsWidget.h │ │ ├── OptionsWidget.ui │ │ ├── PlatformMacro.h │ │ ├── StructEnumDefinition.h │ │ ├── Variable.h │ │ ├── documentation.dox │ │ ├── informations.xml │ │ ├── plugin.json │ │ ├── pluginLoader.cpp │ │ ├── pluginLoader.h │ │ └── pluginLoader.pro ├── SessionLoader │ └── KDE4 │ │ ├── DebugEngineMacro.h │ │ ├── Environment.h │ │ ├── StructEnumDefinition.h │ │ ├── Variable.h │ │ ├── documentation.dox │ │ ├── informations.xml │ │ ├── plugin.json │ │ ├── sessionLoader.cpp │ │ ├── sessionLoader.h │ │ └── sessionLoader.pro └── Themes │ ├── Clean │ ├── Languages │ │ ├── ar │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── de │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── el │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── en │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── es │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── fr │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── hi │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── hu │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── id │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── it │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── ja │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── ko │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── nl │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── no │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── pl │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── ru │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── th │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── tr │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ └── zh │ │ │ ├── translation.qm │ │ │ └── translation.ts │ ├── StructEnumDefinition.h │ ├── documentation.dox │ ├── factory.cpp │ ├── factory.h │ ├── informations.xml │ ├── interface.cpp │ ├── interface.h │ ├── interface.pro │ ├── interface.ui │ ├── plugin.json │ ├── resources.qrc │ ├── resources │ │ └── SystemTrayIcon │ │ │ ├── informations.png │ │ │ ├── systray_Caught_Unix.png │ │ │ ├── systray_Caught_Windows.png │ │ │ ├── systray_Semiuncaught_Unix.png │ │ │ ├── systray_Semiuncaught_Windows.png │ │ │ ├── systray_Uncaught_Unix.png │ │ │ └── systray_Uncaught_Windows.png │ ├── resources_unix.qrc │ └── resources_windows.qrc │ ├── Teracopy │ ├── DebugEngineMacro.h │ ├── Environment.h │ ├── Languages │ │ ├── ar │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── de │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── el │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── en │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── es │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── fr │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── hi │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── hu │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── id │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── it │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── ja │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── ko │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── nl │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── no │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── pl │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── ru │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── th │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── tr │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ └── zh │ │ │ ├── translation.qm │ │ │ └── translation.ts │ ├── StructEnumDefinition.h │ ├── TransferModel.cpp │ ├── TransferModel.h │ ├── Variable.h │ ├── documentation.dox │ ├── factory.cpp │ ├── factory.h │ ├── informations.xml │ ├── interface.cpp │ ├── interface.h │ ├── interface.pro │ ├── interface.ui │ ├── plugin.json │ ├── resources.qrc │ ├── resources │ │ ├── SystemTrayIcon │ │ │ ├── add.png │ │ │ ├── exit.png │ │ │ ├── informations.png │ │ │ ├── options.png │ │ │ ├── systray_Caught_Unix.png │ │ │ ├── systray_Caught_Windows.png │ │ │ ├── systray_Semiuncaught_Unix.png │ │ │ ├── systray_Semiuncaught_Windows.png │ │ │ ├── systray_Uncaught_Unix.png │ │ │ └── systray_Uncaught_Windows.png │ │ ├── checkbox.png │ │ ├── main.png │ │ ├── player_pause.png │ │ └── player_play.png │ ├── resources_unix.qrc │ └── resources_windows.qrc │ └── Windows │ ├── DebugEngineMacro.h │ ├── Environment.h │ ├── Languages │ ├── ar │ │ ├── translation.qm │ │ └── translation.ts │ ├── de │ │ ├── translation.qm │ │ └── translation.ts │ ├── el │ │ ├── translation.qm │ │ └── translation.ts │ ├── en │ │ ├── translation.qm │ │ └── translation.ts │ ├── es │ │ ├── translation.qm │ │ └── translation.ts │ ├── fr │ │ ├── translation.qm │ │ └── translation.ts │ ├── hi │ │ ├── translation.qm │ │ └── translation.ts │ ├── hu │ │ ├── translation.qm │ │ └── translation.ts │ ├── id │ │ ├── translation.qm │ │ └── translation.ts │ ├── it │ │ ├── translation.qm │ │ └── translation.ts │ ├── ja │ │ ├── translation.qm │ │ └── translation.ts │ ├── ko │ │ ├── translation.qm │ │ └── translation.ts │ ├── nl │ │ ├── translation.qm │ │ └── translation.ts │ ├── no │ │ ├── translation.qm │ │ └── translation.ts │ ├── pl │ │ ├── translation.qm │ │ └── translation.ts │ ├── ru │ │ ├── translation.qm │ │ └── translation.ts │ ├── th │ │ ├── translation.qm │ │ └── translation.ts │ ├── tr │ │ ├── translation.qm │ │ └── translation.ts │ └── zh │ │ ├── translation.qm │ │ └── translation.ts │ ├── StructEnumDefinition.h │ ├── TransferModel.cpp │ ├── TransferModel.h │ ├── Variable.h │ ├── documentation.dox │ ├── factory.cpp │ ├── factory.h │ ├── informations.xml │ ├── interface.cpp │ ├── interface.h │ ├── interface.pro │ ├── interface.ui │ ├── plugin.json │ ├── resources.qrc │ ├── resources │ ├── SystemTrayIcon │ │ ├── informations.png │ │ ├── systray_Caught_Unix.png │ │ ├── systray_Caught_Windows.png │ │ ├── systray_Semiuncaught_Unix.png │ │ ├── systray_Semiuncaught_Windows.png │ │ ├── systray_Uncaught_Unix.png │ │ └── systray_Uncaught_Windows.png │ ├── arrow-down.png │ ├── arrow-up.png │ ├── empty.png │ ├── icon-top.png │ ├── icon-top.xcf │ └── icon.png │ ├── resources_unix.qrc │ └── resources_windows.qrc ├── plugins ├── CopyEngine │ ├── README.md │ ├── Random │ │ ├── CopyEngine.cpp │ │ ├── CopyEngine.h │ │ ├── CopyEngine.pro │ │ ├── CopyEngineFactory.cpp │ │ ├── CopyEngineFactory.h │ │ ├── README.md │ │ ├── informations.xml │ │ └── plugin.json │ ├── Rsync │ │ ├── CopyEngine.pro │ │ ├── README.md │ │ ├── Rsync.pro │ │ └── informations.xml │ └── Ultracopier-Spec │ │ ├── CallBackEventLoop.h │ │ ├── CompilerInfo.h │ │ ├── CopyEngine-collision-and-error.cpp │ │ ├── CopyEngine.cpp │ │ ├── CopyEngine.h │ │ ├── CopyEngine.pro │ │ ├── CopyEngineFactory.cpp │ │ ├── CopyEngineFactory.h │ │ ├── CopyEngineUltracopier-SpecVariable.h │ │ ├── DebugDialog.cpp │ │ ├── DebugDialog.h │ │ ├── DebugEngineMacro.h │ │ ├── DiskSpace.cpp │ │ ├── DiskSpace.h │ │ ├── DiskSpace.ui │ │ ├── DriveManagement.cpp │ │ ├── DriveManagement.h │ │ ├── Environment.h │ │ ├── EventLoop.cpp │ │ ├── EventLoop.h │ │ ├── FileErrorDialog.cpp │ │ ├── FileErrorDialog.h │ │ ├── FileExistsDialog.cpp │ │ ├── FileExistsDialog.h │ │ ├── FileIsSameDialog.cpp │ │ ├── FileIsSameDialog.h │ │ ├── FilterRules.cpp │ │ ├── FilterRules.h │ │ ├── FilterRules.ui │ │ ├── Filters.cpp │ │ ├── Filters.h │ │ ├── Filters.ui │ │ ├── FolderExistsDialog.cpp │ │ ├── FolderExistsDialog.h │ │ ├── Languages │ │ ├── ar │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── de │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── el │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── en │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── es │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── fr │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── hi │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── hu │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── id │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── it │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── ja │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── ko │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── nl │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── no │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── pl │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── pt │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── ru │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── th │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── tr │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ └── zh │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── ListThread.cpp │ │ ├── ListThread.h │ │ ├── ListThreadActions.cpp │ │ ├── ListThreadListChange.cpp │ │ ├── ListThreadMedia.cpp │ │ ├── ListThreadNew.cpp │ │ ├── ListThreadOptions.cpp │ │ ├── ListThreadScan.cpp │ │ ├── ListThreadStat.cpp │ │ ├── ListThread_InodeAction.cpp │ │ ├── MkPath.cpp │ │ ├── MkPath.h │ │ ├── README.md │ │ ├── RenamingRules.cpp │ │ ├── RenamingRules.h │ │ ├── RenamingRules.ui │ │ ├── ScanFileOrFolder.cpp │ │ ├── ScanFileOrFolder.h │ │ ├── StructEnumDefinition.h │ │ ├── StructEnumDefinition_CopyEngine.h │ │ ├── TransferThread.cpp │ │ ├── TransferThread.h │ │ ├── async │ │ ├── ReadThread.cpp │ │ ├── ReadThread.h │ │ ├── TransferThreadAsync.cpp │ │ ├── TransferThreadAsync.h │ │ ├── WriteThread.cpp │ │ └── WriteThread.h │ │ ├── copyEngineOptions.ui │ │ ├── copyEngineResources.qrc │ │ ├── debugDialog.ui │ │ ├── documentation.dox │ │ ├── fileErrorDialog.ui │ │ ├── fileExistsDialog.ui │ │ ├── fileIsSameDialog.ui │ │ ├── folderExistsDialog.ui │ │ ├── informations.xml │ │ ├── plugin.json │ │ ├── ports.h │ │ └── resources │ │ ├── add.png │ │ ├── edit.png │ │ ├── filter.png │ │ └── remove.png ├── Languages │ ├── README.md │ ├── ar │ │ ├── flag.png │ │ ├── informations.xml │ │ ├── translation.qm │ │ └── translation.ts │ ├── de │ │ ├── flag.png │ │ ├── informations.xml │ │ ├── translation.qm │ │ └── translation.ts │ ├── el │ │ ├── flag.png │ │ ├── informations.xml │ │ ├── translation.qm │ │ └── translation.ts │ ├── es │ │ ├── flag.png │ │ ├── informations.xml │ │ ├── translation.qm │ │ └── translation.ts │ ├── fr │ │ ├── flag.png │ │ ├── informations.xml │ │ ├── translation.qm │ │ └── translation.ts │ ├── hi │ │ ├── flag.png │ │ ├── informations.xml │ │ ├── translation.qm │ │ └── translation.ts │ ├── hu │ │ ├── flag.png │ │ ├── informations.xml │ │ ├── translation.qm │ │ └── translation.ts │ ├── id │ │ ├── flag.png │ │ ├── informations.xml │ │ ├── translation.qm │ │ └── translation.ts │ ├── it │ │ ├── flag.png │ │ ├── informations.xml │ │ ├── translation.qm │ │ └── translation.ts │ ├── ja │ │ ├── flag.png │ │ ├── informations.xml │ │ ├── translation.qm │ │ └── translation.ts │ ├── ko │ │ ├── flag.png │ │ ├── informations.xml │ │ ├── translation.qm │ │ └── translation.ts │ ├── nl │ │ ├── flag.png │ │ ├── informations.xml │ │ ├── translation.qm │ │ └── translation.ts │ ├── no │ │ ├── flag.png │ │ ├── informations.xml │ │ ├── translation.qm │ │ └── translation.ts │ ├── pl │ │ ├── flag.png │ │ ├── informations.xml │ │ ├── translation.qm │ │ └── translation.ts │ ├── pt │ │ ├── flag.png │ │ ├── informations.xml │ │ ├── translation.qm │ │ └── translation.ts │ ├── ru │ │ ├── flag.png │ │ ├── informations.xml │ │ ├── translation.qm │ │ └── translation.ts │ ├── th │ │ ├── flag.png │ │ ├── informations.xml │ │ ├── translation.qm │ │ └── translation.ts │ ├── tr │ │ ├── flag.png │ │ ├── informations.xml │ │ ├── translation.qm │ │ └── translation.ts │ ├── zh │ │ ├── flag.png │ │ ├── informations.xml │ │ ├── translation.qm │ │ └── translation.ts │ └── zh_TW │ │ ├── flag.png │ │ ├── informations.xml │ │ ├── translation.qm │ │ └── translation.ts ├── Listener │ ├── README.md │ └── catchcopy-v0002 │ │ ├── DebugEngineMacro.h │ │ ├── Environment.h │ │ ├── Listenercatchcopy-v0002Variable.h │ │ ├── README.md │ │ ├── StructEnumDefinition.h │ │ ├── catchcopy-api-0002 │ │ ├── ClientCatchcopy.cpp │ │ ├── ClientCatchcopy.h │ │ ├── ExtraSocketCatchcopy.cpp │ │ ├── ExtraSocketCatchcopy.h │ │ ├── ServerCatchcopy.cpp │ │ ├── ServerCatchcopy.h │ │ └── VariablesCatchcopy.h │ │ ├── documentation.dox │ │ ├── informations.xml │ │ ├── listener.cpp │ │ ├── listener.h │ │ ├── listener.pro │ │ └── plugin.json ├── PluginLoader │ ├── README.md │ └── catchcopy-v0002 │ │ ├── DebugEngineMacro.h │ │ ├── Environment.h │ │ ├── Languages │ │ ├── ar │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── de │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── el │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── en │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── es │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── fr │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── hi │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── hu │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── id │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── it │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── ja │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── ko │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── nl │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── no │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── pl │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── pt │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── ru │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── th │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── tr │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ └── zh │ │ │ ├── translation.qm │ │ │ └── translation.ts │ │ ├── OptionsWidget.cpp │ │ ├── OptionsWidget.h │ │ ├── OptionsWidget.ui │ │ ├── PlatformMacro.h │ │ ├── PluginLoadercatchcopy-v0002Variable.h │ │ ├── README.md │ │ ├── StructEnumDefinition.h │ │ ├── documentation.dox │ │ ├── informations.xml │ │ ├── plugin.json │ │ ├── pluginLoader.cpp │ │ ├── pluginLoader.h │ │ └── pluginLoader.pro ├── README.md ├── SessionLoader │ ├── README.md │ └── Windows │ │ ├── DebugEngineMacro.h │ │ ├── Environment.h │ │ ├── README.md │ │ ├── SessionLoaderWindowsVariable.h │ │ ├── StructEnumDefinition.h │ │ ├── documentation.dox │ │ ├── informations.xml │ │ ├── plugin.json │ │ ├── sessionLoader.cpp │ │ ├── sessionLoader.h │ │ └── sessionLoader.pro ├── Themes │ ├── Oxygen │ │ ├── DebugEngineMacro.h │ │ ├── Environment.h │ │ ├── Languages │ │ │ ├── ar │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── de │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── el │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── en │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── es │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── fr │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── hi │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── hu │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── id │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── it │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── ja │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── ko │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── nl │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── no │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── pl │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── pt │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── ru │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── th │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── tr │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ └── zh │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ ├── OxygenVariable.h │ │ ├── README.md │ │ ├── StructEnumDefinition.h │ │ ├── ThemesFactory.cpp │ │ ├── ThemesFactory.h │ │ ├── TransferModel.cpp │ │ ├── TransferModel.h │ │ ├── documentation.dox │ │ ├── informations.xml │ │ ├── interface.cpp │ │ ├── interface.h │ │ ├── interface.pro │ │ ├── interface.ui │ │ ├── interfaceInclude.pri │ │ ├── interfaceResources.qrc │ │ ├── interfaceResources_unix.qrc │ │ ├── interfaceResources_windows.qrc │ │ ├── options.ui │ │ ├── plugin.json │ │ ├── resources │ │ │ ├── SystemTrayIcon │ │ │ │ ├── add.png │ │ │ │ ├── exit.png │ │ │ │ ├── informations.png │ │ │ │ ├── options.png │ │ │ │ ├── systray_Caught_Unix.png │ │ │ │ ├── systray_Caught_Windows.png │ │ │ │ ├── systray_Semiuncaught_Unix.png │ │ │ │ ├── systray_Semiuncaught_Windows.png │ │ │ │ ├── systray_Uncaught_Unix.png │ │ │ │ └── systray_Uncaught_Windows.png │ │ │ ├── add.png │ │ │ ├── cancel.png │ │ │ ├── export-transfer-list.png │ │ │ ├── import-transfer-list.png │ │ │ ├── main.png │ │ │ ├── moveDown.png │ │ │ ├── moveUp.png │ │ │ ├── player_end.png │ │ │ ├── player_pause.png │ │ │ ├── player_play.png │ │ │ ├── putOnBottom.png │ │ │ ├── putOnTop.png │ │ │ ├── remove.png │ │ │ └── search.png │ │ └── themesOptions.ui │ ├── Oxygen2 │ │ ├── DarkButton.cpp │ │ ├── DarkButton.h │ │ ├── DebugEngineMacro.h │ │ ├── Environment.h │ │ ├── Languages │ │ │ ├── ar │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── de │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── el │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── en │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── es │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── fr │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── hi │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── hu │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── id │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── it │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── ja │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── ko │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── nl │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── no │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── pl │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── pt │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── ru │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── th │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ ├── tr │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ │ └── zh │ │ │ │ ├── translation.qm │ │ │ │ └── translation.ts │ │ ├── Oxygen2Environment.h │ │ ├── Oxygen2Variable.h │ │ ├── ProgressBarDark.cpp │ │ ├── ProgressBarDark.h │ │ ├── README.md │ │ ├── StructEnumDefinition.h │ │ ├── ThemesFactory.cpp │ │ ├── ThemesFactory.h │ │ ├── TransferModel.cpp │ │ ├── TransferModel.h │ │ ├── VerticalLabel.cpp │ │ ├── VerticalLabel.h │ │ ├── chartarea.cpp │ │ ├── chartarea.h │ │ ├── documentation.dox │ │ ├── fileTree.cpp │ │ ├── fileTree.h │ │ ├── informations.xml │ │ ├── interface.cpp │ │ ├── interface.h │ │ ├── interface.pro │ │ ├── interface.ui │ │ ├── interfaceInclude.pri │ │ ├── interfaceResources.qrc │ │ ├── interfaceResources_unix.qrc │ │ ├── interfaceResources_windows.qrc │ │ ├── options.ui │ │ ├── plugin.json │ │ ├── radialMap │ │ │ ├── labels.cpp │ │ │ ├── map.cpp │ │ │ ├── map.h │ │ │ ├── radialMap.h │ │ │ ├── widget.cpp │ │ │ ├── widget.h │ │ │ └── widgetEvents.cpp │ │ ├── resources │ │ │ ├── SystemTrayIcon │ │ │ │ ├── add.png │ │ │ │ ├── exit.png │ │ │ │ ├── informations.png │ │ │ │ ├── options.png │ │ │ │ ├── systray_Caught_Unix.png │ │ │ │ ├── systray_Caught_Windows.png │ │ │ │ ├── systray_Semiuncaught_Unix.png │ │ │ │ ├── systray_Semiuncaught_Windows.png │ │ │ │ ├── systray_Uncaught_Unix.png │ │ │ │ └── systray_Uncaught_Windows.png │ │ │ ├── add.png │ │ │ ├── cancel.png │ │ │ ├── cancelDarkD.png │ │ │ ├── cancelDarkE.png │ │ │ ├── darkButton.png │ │ │ ├── darkButtonOver.png │ │ │ ├── darkButtonPushed.png │ │ │ ├── darkmoveDown.png │ │ │ ├── darkmoveUp.png │ │ │ ├── darkplayer_end.png │ │ │ ├── darkplayer_pause.png │ │ │ ├── darkplayer_play.png │ │ │ ├── export-transfer-list.png │ │ │ ├── import-transfer-list.png │ │ │ ├── main.png │ │ │ ├── moveDown.png │ │ │ ├── moveUp.png │ │ │ ├── player_end.png │ │ │ ├── player_pause.png │ │ │ ├── player_play.png │ │ │ ├── progressBarin.png │ │ │ ├── progressBarout.png │ │ │ ├── putOnBottom.png │ │ │ ├── putOnTop.png │ │ │ ├── remove.png │ │ │ └── search.png │ │ └── themesOptions.ui │ ├── README.md │ └── Supercopier │ │ ├── README.md │ │ ├── informations.xml │ │ ├── interface.pro │ │ ├── interfaceResources.qrc │ │ ├── interfaceResources_unix.qrc │ │ ├── interfaceResources_windows.qrc │ │ └── resources │ │ ├── SystemTrayIcon │ │ ├── add.png │ │ ├── exit.png │ │ ├── informations.png │ │ ├── options.png │ │ ├── systray_Caught_Unix.png │ │ ├── systray_Caught_Windows.png │ │ ├── systray_Semiuncaught_Unix.png │ │ ├── systray_Semiuncaught_Windows.png │ │ ├── systray_Uncaught_Unix.png │ │ └── systray_Uncaught_Windows.png │ │ ├── add.png │ │ ├── cancel.png │ │ ├── export-transfer-list.png │ │ ├── import-transfer-list.png │ │ ├── main.png │ │ ├── moveDown.png │ │ ├── moveUp.png │ │ ├── player_end.png │ │ ├── player_pause.png │ │ ├── player_play.png │ │ ├── progressbarleft.png │ │ ├── progressbarright.png │ │ ├── putOnBottom.png │ │ ├── putOnTop.png │ │ ├── remove.png │ │ └── search.png ├── static-plugins-oxygen.qrc ├── static-plugins-windows.qrc └── static-plugins.qrc ├── recipe-haiku.txt ├── resources ├── Languages │ └── en │ │ ├── flag.png │ │ ├── informations.xml │ │ ├── translation.qm │ │ └── translation.ts ├── bug-128x128.png ├── img-src │ ├── application-exit.svgz │ ├── applications-development.svgz │ ├── arrow-down-double.svgz │ ├── arrow-down.svgz │ ├── arrow-up-double.svgz │ ├── arrow-up.svgz │ ├── checkbox.svgz │ ├── document-encrypt.svgz │ ├── document-preview.svgz │ ├── document-save_16.svgz │ ├── document-save_22.svgz │ ├── drive-removable-media-usb.svgz │ ├── help-about.svgz │ ├── kbugbuster.svgz │ ├── list-add.svgz │ ├── media-playback-pause.svgz │ ├── media-playback-start.svgz │ ├── media-skip-forward.svgz │ ├── process-stop.svgz │ ├── system-shutdown.svgz │ └── text-formatting.svg ├── moveDown.png ├── moveUp.png ├── none-128x128.png ├── options.png ├── qt.conf ├── resources-windows-qt-plugin.qrc ├── resources-windows.rc ├── supercopier-128x128.png ├── supercopier-16x16.png ├── supercopier-all-in-one.ico ├── supercopier.icns ├── supercopier.ico ├── systray_Caught_Unix.png ├── systray_Caught_Windows.png ├── systray_Semiuncaught_Unix.png ├── systray_Semiuncaught_Windows.png ├── systray_Uncaught_Unix.png ├── systray_Uncaught_Windows.png ├── ultracopier-128x128.png ├── ultracopier-16x16.png ├── ultracopier-36x36.png ├── ultracopier-48x48.png ├── ultracopier-72x72.png ├── ultracopier-all-in-one.ico ├── ultracopier-oxygen.png ├── ultracopier-oxygen2.png ├── ultracopier-resources.qrc ├── ultracopier-resources_unix.qrc ├── ultracopier-resources_windows.qrc ├── ultracopier-supercopier.png ├── ultracopier.desktop ├── ultracopier.icns ├── ultracopier.ico └── warning.png ├── test-client-catchcopy ├── catchcopy-api-0002 │ ├── ClientCatchcopy.cpp │ ├── ClientCatchcopy.h │ ├── ExtraSocketCatchcopy.cpp │ ├── ExtraSocketCatchcopy.h │ ├── ServerCatchcopy.cpp │ ├── ServerCatchcopy.h │ ├── VariablesCatchcopy.h │ └── documentation.dox ├── icon.ico ├── images │ ├── dialog-ok-apply.png │ ├── download.png │ ├── main.png │ ├── process-stop.png │ ├── tools-report-bug.png │ └── upload.png ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── resources-windows.rc ├── resources.qrc └── test-client-catchcopy.pro ├── test ├── button.png ├── button.xcf ├── chartarea │ ├── MainWindow.cpp │ ├── MainWindow.h │ ├── MainWindow.ui │ ├── chartarea.pro │ ├── main.cpp │ ├── widget.cpp │ └── widget.h ├── darkbutton │ ├── DarkButton.cpp │ ├── DarkButton.h │ ├── MainWindow.cpp │ ├── MainWindow.h │ ├── MainWindow.ui │ ├── cancelDarkD.png │ ├── cancelDarkE.png │ ├── darkButton.png │ ├── darkButtonOver.png │ ├── darkButtonPushed.png │ ├── darkbutton.pro │ ├── main.cpp │ └── res.qrc ├── progressbardark │ ├── MainWindow.cpp │ ├── MainWindow.h │ ├── MainWindow.ui │ ├── ProgressBarDark.cpp │ ├── ProgressBarDark.h │ ├── main.cpp │ ├── progressBarin.png │ ├── progressBarout.png │ ├── progressbardark.pro │ └── res.qrc └── radialmap │ ├── Config.cpp │ ├── Config.h │ ├── MainWindow.cpp │ ├── MainWindow.h │ ├── MainWindow.ui │ ├── fileTree.cpp │ ├── fileTree.h │ ├── main.cpp │ ├── radialMap │ ├── labels.cpp │ ├── map.cpp │ ├── map.h │ ├── radialMap.h │ ├── sincos.h │ ├── widget.cpp │ ├── widget.h │ └── widgetEvents.cpp │ └── radialmap.pro ├── tools ├── doc │ ├── Doxyfile │ ├── Doxyfile-plugin-template │ ├── footer.html │ └── ultracopier-logo.png ├── scripts │ ├── UltraCP │ └── UltraMV ├── to-pack │ ├── 1-pre-send.sh │ ├── 1-update-translation.sh │ ├── 2-compil-wine32.sh │ ├── 2-compil-wine64.sh │ ├── 2-send-sources.sh │ ├── 3-compil-mac.sh │ ├── 4-clean-all.sh │ ├── 4-upload.sh │ ├── 5-upload.sh │ ├── 6-sendmail.sh │ ├── data │ │ ├── gentoo │ │ │ └── ultracopier.ebuild │ │ └── windows │ │ │ ├── install-static.nsi │ │ │ ├── install.nsi │ │ │ ├── resources-windows-ultracopier-plugins.rc │ │ │ └── ultracopier.ico │ ├── grouped.sh │ ├── old-3-compil-linux.sh │ ├── sub-script │ │ ├── assemble-source-version.sh │ │ ├── assemble-windows-version-32.sh │ │ ├── assemble-windows-version-64.sh │ │ ├── assemble.sh │ │ ├── clean-all.sh │ │ ├── compil-windows32.sh │ │ ├── compil-windows64.sh │ │ ├── compil.sh │ │ ├── doc.sh │ │ ├── linux.sh │ │ ├── mac.sh │ │ ├── sendmail.sh │ │ ├── test.sh │ │ ├── translation-local.sh │ │ ├── translation.sh │ │ ├── upload-local.sh │ │ └── upload.sh │ └── test.sh └── unit-tester │ ├── copyEngine.cpp │ ├── copyEngine.h │ ├── copyEngineUnitTester.cpp │ ├── copyEngineUnitTester.h │ ├── main.cpp │ └── unit-tester.pro ├── ultracopier-cp-clipboard.desktop ├── ultracopier-cp.desktop ├── ultracopier-mv-clipboard.desktop ├── ultracopier-mv.desktop ├── ultracopier.dox └── ultracopier.pro /.travis.yml: -------------------------------------------------------------------------------- 1 | # language target 2 | language: cpp 3 | compiler: gcc 4 | 5 | name: "Bionic Ubuntu Linux" 6 | os: linux 7 | dist: bionic 8 | sudo: required 9 | 10 | addons: 11 | apt: 12 | packages: 13 | - make 14 | - gcc 15 | - qt5-default 16 | - qtmultimedia5-dev 17 | - libogg-dev 18 | - libopus-dev 19 | - libgl1-mesa-dev 20 | 21 | script: 22 | - find ./ -name '*.ts' -exec lrelease {} \; 23 | - qmake ./ultracopier.pro 24 | - make -j$(nproc) 25 | 26 | # deploy to Github 27 | after_success: 28 | # listing the result 29 | - ls -lh 30 | # get the tag version 31 | - wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh 32 | - export GITHUB_TOKEN="$OAUTHTOKEN" 33 | - bash upload.sh ultracopier 34 | -------------------------------------------------------------------------------- /CompilerInfo.h: -------------------------------------------------------------------------------- 1 | /** \file CompilerInfo.h 2 | \brief Define the compiler info 3 | \author alpha_one_x86 4 | \licence GPL3, see the file COPYING */ 5 | 6 | #include 7 | 8 | /// \def COMPILERINFO the string to identify the compiler 9 | #if defined(Q_CC_GNU) 10 | #define COMPILERINFO std::string("GCC ")+std::to_string(__GNUC__)+"."+std::to_string(__GNUC_MINOR__)+"."+std::to_string(__GNUC_PATCHLEVEL__) 11 | #else 12 | #define COMPILERINFO std::string("Unknown compiler: ") 13 | #endif 14 | -------------------------------------------------------------------------------- /Environment.h: -------------------------------------------------------------------------------- 1 | /** \file Environment.h 2 | \brief Define the environment variable and global function 3 | \author alpha_one_x86 4 | \licence GPL3, see the file COPYING */ 5 | 6 | #include "Variable.h" 7 | /// \brief The global include 8 | #include "StructEnumDefinition.h" 9 | #include "StructEnumDefinition_UltracopierSpecific.h" 10 | #include "PlatformMacro.h" 11 | #include "DebugEngineMacro.h" 12 | 13 | #ifdef ULTRACOPIER_VERSION_PORTABLE 14 | #define ULTRACOPIER_VERSION_PORTABLE_BOOL true 15 | #else 16 | #define ULTRACOPIER_VERSION_PORTABLE_BOOL false 17 | #endif 18 | 19 | #ifdef ULTRACOPIER_PLUGIN_ALL_IN_ONE 20 | #undef ULTRACOPIER_PLUGIN_IMPORT_SUPPORT 21 | #endif 22 | -------------------------------------------------------------------------------- /ExtraSocket.h: -------------------------------------------------------------------------------- 1 | /** \file ExtraSocket.h 2 | \brief Define the socket for ultracopier 3 | \author alpha_one_x86 4 | \licence GPL3, see the file COPYING */ 5 | 6 | #ifndef EXTRASOCKET_H 7 | #define EXTRASOCKET_H 8 | 9 | #include 10 | 11 | #ifdef Q_OS_UNIX 12 | #include 13 | #include 14 | #else 15 | #ifndef NOMINMAX 16 | #define NOMINMAX 17 | #endif 18 | #include 19 | #endif 20 | 21 | /** \brief class to have general socket options */ 22 | class ExtraSocket 23 | { 24 | public: 25 | /** \brief class to return always the same socket resolution */ 26 | static std::string pathSocket(const std::string &name); 27 | static char * toHex(const char *str); 28 | }; 29 | 30 | #endif // EXTRASOCKET_H 31 | -------------------------------------------------------------------------------- /FacilityEngineVersion.cpp: -------------------------------------------------------------------------------- 1 | #include "FacilityEngine.h" 2 | #include "Version.h" 3 | 4 | std::string FacilityEngine::version() 5 | { 6 | return ULTRACOPIER_VERSION; 7 | } 8 | -------------------------------------------------------------------------------- /OSSpecific.h: -------------------------------------------------------------------------------- 1 | #ifndef OSSPECIFIC_H 2 | #define OSSPECIFIC_H 3 | 4 | #include "Environment.h" 5 | 6 | #include 7 | 8 | namespace Ui { 9 | class OSSpecific; 10 | } 11 | 12 | class OSSpecific : public QDialog 13 | { 14 | Q_OBJECT 15 | 16 | public: 17 | explicit OSSpecific(QWidget *parent = 0); 18 | ~OSSpecific(); 19 | bool dontShowAgain(); 20 | QString theme(); 21 | private slots: 22 | void on_pushButton_clicked(); 23 | void updateText(); 24 | void on_comboBox_currentIndexChanged(int index); 25 | protected slots: 26 | void changeEvent(QEvent *e); 27 | private: 28 | Ui::OSSpecific *ui; 29 | }; 30 | 31 | #endif // OSSPECIFIC_H 32 | -------------------------------------------------------------------------------- /ProductKey.h: -------------------------------------------------------------------------------- 1 | #ifndef PRODUCTKEY_H 2 | #define PRODUCTKEY_H 3 | 4 | #include 5 | 6 | namespace Ui { 7 | class ProductKey; 8 | } 9 | 10 | class ProductKey : public QDialog 11 | { 12 | Q_OBJECT 13 | 14 | public: 15 | explicit ProductKey(QWidget *parent = 0); 16 | ~ProductKey(); 17 | bool isUltimate() const; 18 | static ProductKey *productKey; 19 | bool parseKey(QString orgkey=QString()); 20 | private slots: 21 | void on_buttonBox_accepted(); 22 | void on_buttonBox_rejected(); 23 | private: 24 | Ui::ProductKey *ui; 25 | bool ultimate; 26 | signals: 27 | void changeToUltimate(); 28 | }; 29 | 30 | #endif // PRODUCTKEY_H 31 | -------------------------------------------------------------------------------- /Version.h: -------------------------------------------------------------------------------- 1 | #ifndef VERSIONUC_H 2 | #define VERSIONUC_H 3 | 4 | /// \brief the version 5 | #define ULTRACOPIER_VERSION "3.0.1.0" 6 | /// \brief the windows version 7 | #define ULTRACOPIER_WINDOWS_VERSION 3,0,1,0 8 | 9 | #endif // VARIABLE_H 10 | -------------------------------------------------------------------------------- /android-libultracopier.so-deployment-settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "This file is generated by qmake to be read by androiddeployqt and should not be modified by hand.", 3 | "qt": "/usr", 4 | "sdk": "", 5 | "sdkBuildToolsRevision": "", 6 | "ndk": "/opt/android/android-ndk", 7 | "toolchain-prefix": "arm-linux-androideabi", 8 | "tool-prefix": "arm-linux-androideabi", 9 | "toolchain-version": "4.9", 10 | "ndk-host": "", 11 | "target-architecture": "", 12 | "qml-root-path": "/data", 13 | "application-binary": "/data/libultracopier.so" 14 | } 15 | -------------------------------------------------------------------------------- /android-sources/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/android-sources/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /android-sources/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/android-sources/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /android-sources/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/android-sources/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /catchcopy-windows-explorer-plugin/CatchCopy.def: -------------------------------------------------------------------------------- 1 | LIBRARY "CatchCopy.DLL" 2 | 3 | EXPORTS 4 | DllGetClassObject = DllGetClassObject@12 5 | DllCanUnloadNow = DllCanUnloadNow@0 6 | DllRegisterServer = DllRegisterServer@0 7 | DllUnregisterServer = DllUnregisterServer@0 8 | -------------------------------------------------------------------------------- /catchcopy-windows-explorer-plugin/ClassFactory.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include // For IClassFactory 4 | #include 5 | 6 | 7 | class ClassFactory : public IClassFactory 8 | { 9 | public: 10 | //interface iunknown 11 | virtual HRESULT __stdcall QueryInterface(const IID& iid, void **ppv); 12 | virtual ULONG __stdcall AddRef(); 13 | virtual ULONG __stdcall Release(); 14 | //interface iclassfactory 15 | virtual HRESULT __stdcall CreateInstance(IUnknown *pIUnknownOuter, const IID& iid, void **ppv); 16 | virtual HRESULT __stdcall LockServer(BOOL bLock); 17 | 18 | ClassFactory(); 19 | ~ClassFactory(); 20 | private: 21 | long m_cRef; 22 | }; 23 | -------------------------------------------------------------------------------- /catchcopy-windows-explorer-plugin/Deque.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define MAX_STR_LEN 512 4 | #define MAX_DEQUE 512 5 | 6 | class CNode 7 | { 8 | public: 9 | wchar_t str[MAX_STR_LEN]; 10 | class CNode *next; 11 | class CNode *prev; 12 | }; 13 | 14 | class CDeque : public CNode 15 | { 16 | public: 17 | CDeque(void); 18 | ~CDeque(void); 19 | 20 | private: 21 | CNode *head,*tail; 22 | int top1,top2; 23 | 24 | public: 25 | void push_front(wchar_t *str); 26 | void push_back(wchar_t *str); 27 | int size(); 28 | wchar_t *at(int pos); 29 | }; 30 | -------------------------------------------------------------------------------- /catchcopy-windows-explorer-plugin/Variable.h: -------------------------------------------------------------------------------- 1 | #ifndef VARIABLE_H 2 | #define VARIABLE_H 3 | 4 | /// \brief Un-comment this next line to put ultracopier in debug mode 5 | //#define CATCHCOPY_EXPLORER_PLUGIN_DEBUG 6 | 7 | #endif // VARIABLE_H 8 | -------------------------------------------------------------------------------- /catchcopy-windows-explorer-plugin/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by CatchCopy.rc 4 | // 5 | #define IDS_PROJNAME 100 6 | #define IDR_CATCHCOPY 101 7 | #define IDR_DDSHELLEXT 102 8 | 9 | // Next default values for new objects 10 | // 11 | #ifdef APSTUDIO_INVOKED 12 | #ifndef APSTUDIO_READONLY_SYMBOLS 13 | #define _APS_NEXT_RESOURCE_VALUE 201 14 | #define _APS_NEXT_COMMAND_VALUE 32768 15 | #define _APS_NEXT_CONTROL_VALUE 201 16 | #define _APS_NEXT_SYMED_VALUE 103 17 | #endif 18 | #endif 19 | -------------------------------------------------------------------------------- /file-manager/pcmanfm-qt.txt: -------------------------------------------------------------------------------- 1 | mkdir -v build;cd build;cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DPULL_TRANSLATIONS=no .. 2 | 3 | make 4 | -------------------------------------------------------------------------------- /libfm-qt-ultracopier/README: -------------------------------------------------------------------------------- 1 | LD_LIBRARY_PATH=/home/user/Desktop/ultracopier/sources/build-libfm-qt-ultracopier-Desktop-Debug/libfm-qt.so.1.0.0 pcmanfm-qt 2 | -------------------------------------------------------------------------------- /libfm-qt-ultracopier/libfm-qt-ultracopier.pro: -------------------------------------------------------------------------------- 1 | CONFIG += c++11 2 | 3 | TEMPLATE = lib 4 | QT += network widgets 5 | TARGET = $$qtLibraryTarget(fm-qt) 6 | LIBS += -Llibfm-qt 7 | INCLUDEPATH += /usr/include/glib-2.0/ /usr/lib64/glib-2.0/include/ 8 | DEFINES += QT_NO_KEYWORDS 9 | 10 | HEADERS += \ 11 | utilities.h 12 | 13 | SOURCES += \ 14 | utilities.cpp 15 | -------------------------------------------------------------------------------- /libfm-qt-ultracopier/utilities.h: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | 5 | #include 6 | #include 7 | 8 | #ifndef FM_UTILITIESUC_H 9 | #define FM_UTILITIESUC_H 10 | 11 | namespace Fm { 12 | 13 | __attribute__((visibility("default"))) void pasteFilesFromClipboard(const Fm::FilePath& destPath, QWidget* parent); 14 | 15 | std::string pathSocket(); 16 | char * toHex(const char *str); 17 | void sendRawOrderList(const QStringList & order, QLocalSocket &socket); 18 | 19 | } 20 | 21 | #endif // FM_UTILITIESUC_H 22 | -------------------------------------------------------------------------------- /other-pro/android/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/other-pro/android/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /other-pro/android/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/other-pro/android/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /other-pro/android/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/other-pro/android/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /other-pro/android/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/other-pro/android/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /other-pro/android/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/other-pro/android/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /other-pro/android/res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/other-pro/android/res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /other-pro/supercopier-core.pro: -------------------------------------------------------------------------------- 1 | #DEFINES += ULTRACOPIER_MODE_SUPERCOPIER done via .sh and Variable.h 2 | 3 | include(ultracopier-core.pro) 4 | -------------------------------------------------------------------------------- /other-pro/ultracopier-little-random.pro: -------------------------------------------------------------------------------- 1 | include(ultracopier-little.pri) 2 | 3 | DEFINES += ULTRACOPIER_LITTLE_RANDOM NOAUDIO 4 | 5 | SOURCES += \ 6 | ../plugins/CopyEngine/Random/CopyEngine.cpp \ 7 | ../plugins/CopyEngine/Random/CopyEngineFactory.cpp 8 | 9 | HEADERS += \ 10 | ../plugins/CopyEngine/Random/CopyEngine.h \ 11 | ../plugins/CopyEngine/Random/CopyEngineFactory.h 12 | -------------------------------------------------------------------------------- /other-pro/ultracopier-static.pro: -------------------------------------------------------------------------------- 1 | include(static.pro) 2 | 3 | RESOURCES += $$PWD/../plugins/static-plugins-oxygen.qrc \ 4 | $$PWD/../plugins/Themes/Oxygen/interfaceResources_windows.qrc \ 5 | $$PWD/../plugins/Themes/Oxygen/interfaceResources_unix.qrc \ 6 | $$PWD/../plugins/Themes/Oxygen/interfaceResources.qrc 7 | -------------------------------------------------------------------------------- /plugins-unmaintained/CopyEngine/Ultracopier-Qt/CompilerInfo.h: -------------------------------------------------------------------------------- 1 | #include "../../../CompilerInfo.h" 2 | -------------------------------------------------------------------------------- /plugins-unmaintained/CopyEngine/Ultracopier-Qt/DiskSpace.h: -------------------------------------------------------------------------------- 1 | #ifndef DISKSPACE_H 2 | #define DISKSPACE_H 3 | 4 | #include 5 | #include 6 | #include "../../../interface/PluginInterface_CopyEngine.h" 7 | #include "StructEnumDefinition_CopyEngine.h" 8 | 9 | namespace Ui { 10 | class DiskSpace; 11 | } 12 | 13 | class DiskSpace : public QDialog 14 | { 15 | Q_OBJECT 16 | 17 | public: 18 | explicit DiskSpace(FacilityInterface * facilityEngine,std::vector list,QWidget *parent = 0); 19 | ~DiskSpace(); 20 | bool getAction() const; 21 | private slots: 22 | void on_ok_clicked(); 23 | void on_cancel_clicked(); 24 | private: 25 | Ui::DiskSpace *ui; 26 | bool ok; 27 | }; 28 | 29 | #endif // DISKSPACE_H 30 | -------------------------------------------------------------------------------- /plugins-unmaintained/CopyEngine/Ultracopier-Qt/Environment.h: -------------------------------------------------------------------------------- 1 | /** \file Environment.h 2 | \brief Define the environment variable and global function 3 | \author alpha_one_x86 4 | \licence GPL3, see the file COPYING */ 5 | 6 | #include "CopyEngineUltracopierVariable.h" 7 | /// \brief The global include 8 | #include "StructEnumDefinition.h" 9 | #include "StructEnumDefinition_CopyEngine.h" 10 | #include "DebugEngineMacro.h" 11 | #include "CompilerInfo.h" 12 | -------------------------------------------------------------------------------- /plugins-unmaintained/CopyEngine/Ultracopier-Qt/README.md: -------------------------------------------------------------------------------- 1 | # Copy Engine: Ultracopier 2 | 3 | This is the default copy engine. 4 | -------------------------------------------------------------------------------- /plugins-unmaintained/CopyEngine/Ultracopier-Qt/StructEnumDefinition.h: -------------------------------------------------------------------------------- 1 | #include "../../../StructEnumDefinition.h" 2 | -------------------------------------------------------------------------------- /plugins-unmaintained/CopyEngine/Ultracopier-Qt/copyEngineResources.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | resources/add.png 4 | resources/edit.png 5 | resources/remove.png 6 | resources/filter.png 7 | 8 | 9 | -------------------------------------------------------------------------------- /plugins-unmaintained/CopyEngine/Ultracopier-Qt/plugin.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /plugins-unmaintained/CopyEngine/Ultracopier-Qt/resources/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/CopyEngine/Ultracopier-Qt/resources/add.png -------------------------------------------------------------------------------- /plugins-unmaintained/CopyEngine/Ultracopier-Qt/resources/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/CopyEngine/Ultracopier-Qt/resources/edit.png -------------------------------------------------------------------------------- /plugins-unmaintained/CopyEngine/Ultracopier-Qt/resources/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/CopyEngine/Ultracopier-Qt/resources/filter.png -------------------------------------------------------------------------------- /plugins-unmaintained/CopyEngine/Ultracopier-Qt/resources/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/CopyEngine/Ultracopier-Qt/resources/remove.png -------------------------------------------------------------------------------- /plugins-unmaintained/Listener/dbus/Catchcopy.cpp: -------------------------------------------------------------------------------- 1 | #include "Catchcopy.h" 2 | 3 | #include 4 | 5 | Catchcopy::Catchcopy() 6 | { 7 | } 8 | 9 | void Catchcopy::copy(const QStringList &sources,const QString &destination) 10 | { 11 | emit newCopy(0,sources,destination); 12 | } 13 | 14 | void Catchcopy::move(const QStringList &sources,const QString &destination) 15 | { 16 | emit newMove(0,sources,destination); 17 | } 18 | -------------------------------------------------------------------------------- /plugins-unmaintained/Listener/dbus/Catchcopy.h: -------------------------------------------------------------------------------- 1 | #ifndef CATCHCOPY_H 2 | #define CATCHCOPY_H 3 | 4 | #include 5 | #include 6 | 7 | class Catchcopy : public QObject 8 | { 9 | Q_OBJECT 10 | public: 11 | explicit Catchcopy(); 12 | signals: 13 | void newCopy(const quint32 &id,const QStringList &sources,const QString &destination); 14 | void newMove(const quint32 &id,const QStringList &sources,const QString &destination); 15 | public slots: 16 | Q_SCRIPTABLE void copy(const QStringList &sources,const QString &destination); 17 | Q_SCRIPTABLE void move(const QStringList &sources,const QString &destination); 18 | }; 19 | 20 | #endif // CATCHCOPY_H 21 | -------------------------------------------------------------------------------- /plugins-unmaintained/Listener/dbus/Environment.h: -------------------------------------------------------------------------------- 1 | /** \file Environment.h 2 | \brief Define the environment variable and global function 3 | \author alpha_one_x86 4 | \licence GPL3, see the file COPYING */ 5 | 6 | #include "Variable.h" 7 | /// \brief The global include 8 | #include "StructEnumDefinition.h" 9 | #include "DebugEngineMacro.h" 10 | 11 | -------------------------------------------------------------------------------- /plugins-unmaintained/Listener/dbus/StructEnumDefinition.h: -------------------------------------------------------------------------------- 1 | #include "../../../StructEnumDefinition.h" 2 | -------------------------------------------------------------------------------- /plugins-unmaintained/Listener/dbus/Variable.h: -------------------------------------------------------------------------------- 1 | /** \file Variable.h 2 | \brief Define the environment variable 3 | \author alpha_one_x86 4 | \licence GPL3, see the file COPYING */ 5 | 6 | #ifndef VARIABLE_H 7 | #define VARIABLE_H 8 | 9 | //Un-comment this next line to put ultracopier plugin in debug mode 10 | #define ULTRACOPIER_PLUGIN_DEBUG 11 | 12 | #endif // VARIABLE_H 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /plugins-unmaintained/Listener/dbus/listener.pro: -------------------------------------------------------------------------------- 1 | CONFIG += c++11 2 | QMAKE_CXXFLAGS+="-std=c++0x -Wall -Wextra" 3 | mac:QMAKE_CXXFLAGS+="-stdlib=libc++" 4 | 5 | TEMPLATE = lib 6 | CONFIG += plugin 7 | QT += network dbus 8 | HEADERS = \ 9 | $$PWD/listener.h \ 10 | $$PWD/Environment.h \ 11 | $$PWD/Variable.h \ 12 | $$PWD/DebugEngineMacro.h \ 13 | $$PWD/StructEnumDefinition.h \ 14 | $$PWD/../../../interface/PluginInterface_Listener.h \ 15 | $$PWD/Catchcopy.h 16 | SOURCES = \ 17 | $$PWD/listener.cpp \ 18 | $$PWD/Catchcopy.cpp 19 | TARGET = $$qtLibraryTarget(listener) 20 | -------------------------------------------------------------------------------- /plugins-unmaintained/Listener/dbus/plugin.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Environment.h: -------------------------------------------------------------------------------- 1 | /** \file Environment.h 2 | \brief Define the environment variable and global function 3 | \author alpha_one_x86 4 | \licence GPL3, see the file COPYING */ 5 | 6 | #include "Variable.h" 7 | /// \brief The global include 8 | #include "StructEnumDefinition.h" 9 | #include "DebugEngineMacro.h" 10 | 11 | -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/KeyBind.cpp: -------------------------------------------------------------------------------- 1 | #include "KeyBind.h" 2 | 3 | KeyBind::KeyBind(QWidget *parent) : 4 | QLineEdit(parent) 5 | { 6 | } 7 | 8 | void KeyBind::keyPressEvent(QKeyEvent * event) 9 | { 10 | emit newKey(event); 11 | } 12 | -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/KeyBind.h: -------------------------------------------------------------------------------- 1 | #ifndef KEYBIND_H 2 | #define KEYBIND_H 3 | 4 | #include 5 | 6 | class KeyBind : public QLineEdit 7 | { 8 | Q_OBJECT 9 | public: 10 | explicit KeyBind(QWidget *parent = 0); 11 | 12 | signals: 13 | void newKey(QKeyEvent * event); 14 | public slots: 15 | void keyPressEvent(QKeyEvent * event); 16 | }; 17 | 18 | #endif // KEYBIND_H 19 | -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/ar/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/PluginLoader/keybinding/Languages/ar/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/ar/translation.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/de/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/PluginLoader/keybinding/Languages/de/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/de/translation.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/el/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/PluginLoader/keybinding/Languages/el/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/el/translation.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/en/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/PluginLoader/keybinding/Languages/en/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/en/translation.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/es/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/PluginLoader/keybinding/Languages/es/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/es/translation.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/fr/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/PluginLoader/keybinding/Languages/fr/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/fr/translation.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/hi/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/PluginLoader/keybinding/Languages/hi/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/hi/translation.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/hu/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/PluginLoader/keybinding/Languages/hu/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/hu/translation.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/id/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/PluginLoader/keybinding/Languages/id/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/id/translation.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/it/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/PluginLoader/keybinding/Languages/it/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/it/translation.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/ja/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/PluginLoader/keybinding/Languages/ja/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/ja/translation.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/ko/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/PluginLoader/keybinding/Languages/ko/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/ko/translation.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/nl/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/PluginLoader/keybinding/Languages/nl/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/nl/translation.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/no/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/PluginLoader/keybinding/Languages/no/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/no/translation.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/pl/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/PluginLoader/keybinding/Languages/pl/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/pl/translation.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/pt/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/PluginLoader/keybinding/Languages/pt/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/pt/translation.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/ru/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/PluginLoader/keybinding/Languages/ru/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/ru/translation.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/th/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/PluginLoader/keybinding/Languages/th/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/th/translation.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/tr/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/PluginLoader/keybinding/Languages/tr/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/tr/translation.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/zh/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/PluginLoader/keybinding/Languages/zh/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Languages/zh/translation.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/OptionsWidget.h: -------------------------------------------------------------------------------- 1 | #ifndef OptionsWidget_H 2 | #define OptionsWidget_H 3 | 4 | #include 5 | #include "KeyBind.h" 6 | 7 | namespace Ui { 8 | class OptionsWidget; 9 | } 10 | 11 | class OptionsWidget : public QWidget 12 | { 13 | Q_OBJECT 14 | 15 | public: 16 | explicit OptionsWidget(QWidget *parent = 0); 17 | ~OptionsWidget(); 18 | void setKeyBind(const QKeySequence &keySequence); 19 | void retranslate(); 20 | private: 21 | const QList modifier; 22 | Ui::OptionsWidget *ui; 23 | KeyBind *keyBind; 24 | private slots: 25 | void newKey(QKeyEvent * event); 26 | signals: 27 | void sendKeyBind(const QKeySequence &keySequence); 28 | void newKeyBind(QKeyEvent * event); 29 | }; 30 | 31 | #endif // OptionsWidget_H 32 | -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/PlatformMacro.h: -------------------------------------------------------------------------------- 1 | #include "../../../PlatformMacro.h" 2 | -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/StructEnumDefinition.h: -------------------------------------------------------------------------------- 1 | #include "../../../StructEnumDefinition.h" 2 | -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/Variable.h: -------------------------------------------------------------------------------- 1 | /** \file Variable.h 2 | \brief Define the environment variable 3 | \author alpha_one_x86 4 | \licence GPL3, see the file COPYING */ 5 | 6 | #ifndef VARIABLE_H 7 | #define VARIABLE_H 8 | 9 | //Un-comment this next line to put ultracopier plugin in debug mode 10 | #define ULTRACOPIER_PLUGIN_DEBUG 11 | //#define ULTRACOPIER_PLUGIN_ALL_IN_ONE 12 | 13 | #endif // VARIABLE_H 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /plugins-unmaintained/PluginLoader/keybinding/plugin.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /plugins-unmaintained/SessionLoader/KDE4/Environment.h: -------------------------------------------------------------------------------- 1 | /** \file Environment.h 2 | \brief Define the environment variable and global function 3 | \author alpha_one_x86 4 | \licence GPL3, see the file COPYING */ 5 | 6 | #include "Variable.h" 7 | /// \brief The global include 8 | #include "StructEnumDefinition.h" 9 | #include "DebugEngineMacro.h" 10 | 11 | -------------------------------------------------------------------------------- /plugins-unmaintained/SessionLoader/KDE4/StructEnumDefinition.h: -------------------------------------------------------------------------------- 1 | #include "../../../StructEnumDefinition.h" 2 | -------------------------------------------------------------------------------- /plugins-unmaintained/SessionLoader/KDE4/Variable.h: -------------------------------------------------------------------------------- 1 | /** \file Variable.h 2 | \brief Define the environment variable 3 | \author alpha_one_x86 4 | \licence GPL3, see the file COPYING */ 5 | 6 | #ifndef VARIABLE_H 7 | #define VARIABLE_H 8 | 9 | //Un-comment this next line to put ultracopier plugin in debug mode 10 | #define ULTRACOPIER_PLUGIN_DEBUG 11 | 12 | #endif // VARIABLE_H 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /plugins-unmaintained/SessionLoader/KDE4/plugin.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /plugins-unmaintained/SessionLoader/KDE4/sessionLoader.pro: -------------------------------------------------------------------------------- 1 | CONFIG += c++11 2 | QMAKE_CXXFLAGS+="-std=c++0x -Wall -Wextra" 3 | mac:QMAKE_CXXFLAGS+="-stdlib=libc++" 4 | 5 | TEMPLATE = lib 6 | CONFIG += plugin 7 | HEADERS = \ 8 | $$PWD/sessionLoader.h \ 9 | $$PWD/StructEnumDefinition.h \ 10 | $$PWD/Variable.h \ 11 | $$PWD/Environment.h \ 12 | $$PWD/DebugEngineMacro.h \ 13 | $$PWD/../../../interface/PluginInterface_SessionLoader.h 14 | SOURCES = sessionLoader.cpp 15 | TARGET = $$qtLibraryTarget(sessionLoader) 16 | -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/Languages/ar/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Clean/Languages/ar/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/Languages/de/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Clean/Languages/de/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/Languages/el/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Clean/Languages/el/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/Languages/en/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Clean/Languages/en/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/Languages/es/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Clean/Languages/es/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/Languages/fr/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Clean/Languages/fr/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/Languages/hi/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Clean/Languages/hi/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/Languages/hu/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Clean/Languages/hu/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/Languages/id/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Clean/Languages/id/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/Languages/it/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Clean/Languages/it/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/Languages/ja/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Clean/Languages/ja/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/Languages/ko/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Clean/Languages/ko/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/Languages/nl/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Clean/Languages/nl/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/Languages/no/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Clean/Languages/no/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/Languages/pl/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Clean/Languages/pl/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/Languages/ru/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Clean/Languages/ru/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/Languages/th/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Clean/Languages/th/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/Languages/tr/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Clean/Languages/tr/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/Languages/zh/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Clean/Languages/zh/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/StructEnumDefinition.h: -------------------------------------------------------------------------------- 1 | #include "../../../StructEnumDefinition.h" 2 | -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/plugin.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/resources.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | resources/SystemTrayIcon/informations.png 4 | 5 | 6 | -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/resources/SystemTrayIcon/informations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Clean/resources/SystemTrayIcon/informations.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/resources/SystemTrayIcon/systray_Caught_Unix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Clean/resources/SystemTrayIcon/systray_Caught_Unix.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/resources/SystemTrayIcon/systray_Caught_Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Clean/resources/SystemTrayIcon/systray_Caught_Windows.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/resources/SystemTrayIcon/systray_Semiuncaught_Unix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Clean/resources/SystemTrayIcon/systray_Semiuncaught_Unix.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/resources/SystemTrayIcon/systray_Semiuncaught_Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Clean/resources/SystemTrayIcon/systray_Semiuncaught_Windows.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/resources/SystemTrayIcon/systray_Uncaught_Unix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Clean/resources/SystemTrayIcon/systray_Uncaught_Unix.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/resources/SystemTrayIcon/systray_Uncaught_Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Clean/resources/SystemTrayIcon/systray_Uncaught_Windows.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/resources_unix.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | resources/SystemTrayIcon/systray_Caught_Unix.png 4 | resources/SystemTrayIcon/systray_Semiuncaught_Unix.png 5 | resources/SystemTrayIcon/systray_Uncaught_Unix.png 6 | 7 | 8 | -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Clean/resources_windows.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | resources/SystemTrayIcon/systray_Caught_Windows.png 4 | resources/SystemTrayIcon/systray_Semiuncaught_Windows.png 5 | resources/SystemTrayIcon/systray_Uncaught_Windows.png 6 | 7 | 8 | -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/Environment.h: -------------------------------------------------------------------------------- 1 | /** \file Environment.h 2 | \brief Define the environment variable and global function 3 | \author alpha_one_x86 4 | \licence GPL3, see the file COPYING */ 5 | 6 | #include "Variable.h" 7 | /// \brief The global include 8 | #include "StructEnumDefinition.h" 9 | #include "DebugEngineMacro.h" 10 | 11 | -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/Languages/ar/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/Languages/ar/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/Languages/de/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/Languages/de/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/Languages/el/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/Languages/el/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/Languages/en/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/Languages/en/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/Languages/es/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/Languages/es/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/Languages/fr/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/Languages/fr/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/Languages/hi/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/Languages/hi/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/Languages/hu/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/Languages/hu/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/Languages/id/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/Languages/id/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/Languages/it/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/Languages/it/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/Languages/ja/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/Languages/ja/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/Languages/ko/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/Languages/ko/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/Languages/nl/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/Languages/nl/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/Languages/no/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/Languages/no/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/Languages/pl/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/Languages/pl/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/Languages/ru/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/Languages/ru/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/Languages/th/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/Languages/th/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/Languages/tr/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/Languages/tr/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/Languages/zh/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/Languages/zh/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/StructEnumDefinition.h: -------------------------------------------------------------------------------- 1 | #include "../../../StructEnumDefinition.h" 2 | -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/Variable.h: -------------------------------------------------------------------------------- 1 | /** \file Variable.h 2 | \brief Define the environment variable 3 | \author alpha_one_x86 4 | \licence GPL3, see the file COPYING */ 5 | 6 | #ifndef VARIABLE_H 7 | #define VARIABLE_H 8 | 9 | //Un-comment this next line to put ultracopier plugin in debug mode 10 | #define ULTRACOPIER_PLUGIN_DEBUG 11 | 12 | #endif // VARIABLE_H 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/plugin.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/resources.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | resources/SystemTrayIcon/add.png 4 | resources/SystemTrayIcon/exit.png 5 | resources/SystemTrayIcon/informations.png 6 | resources/SystemTrayIcon/options.png 7 | resources/checkbox.png 8 | resources/main.png 9 | resources/player_play.png 10 | resources/player_pause.png 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/resources/SystemTrayIcon/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/resources/SystemTrayIcon/add.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/resources/SystemTrayIcon/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/resources/SystemTrayIcon/exit.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/resources/SystemTrayIcon/informations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/resources/SystemTrayIcon/informations.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/resources/SystemTrayIcon/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/resources/SystemTrayIcon/options.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/resources/SystemTrayIcon/systray_Caught_Unix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/resources/SystemTrayIcon/systray_Caught_Unix.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/resources/SystemTrayIcon/systray_Caught_Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/resources/SystemTrayIcon/systray_Caught_Windows.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/resources/SystemTrayIcon/systray_Semiuncaught_Unix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/resources/SystemTrayIcon/systray_Semiuncaught_Unix.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/resources/SystemTrayIcon/systray_Semiuncaught_Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/resources/SystemTrayIcon/systray_Semiuncaught_Windows.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/resources/SystemTrayIcon/systray_Uncaught_Unix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/resources/SystemTrayIcon/systray_Uncaught_Unix.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/resources/SystemTrayIcon/systray_Uncaught_Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/resources/SystemTrayIcon/systray_Uncaught_Windows.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/resources/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/resources/checkbox.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/resources/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/resources/main.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/resources/player_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/resources/player_pause.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/resources/player_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Teracopy/resources/player_play.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/resources_unix.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | resources/SystemTrayIcon/systray_Caught_Unix.png 4 | resources/SystemTrayIcon/systray_Semiuncaught_Unix.png 5 | resources/SystemTrayIcon/systray_Uncaught_Unix.png 6 | 7 | 8 | -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Teracopy/resources_windows.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | resources/SystemTrayIcon/systray_Caught_Windows.png 4 | resources/SystemTrayIcon/systray_Semiuncaught_Windows.png 5 | resources/SystemTrayIcon/systray_Uncaught_Windows.png 6 | 7 | 8 | -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/Environment.h: -------------------------------------------------------------------------------- 1 | /** \file Environment.h 2 | \brief Define the environment variable and global function 3 | \author alpha_one_x86 4 | \licence GPL3, see the file COPYING */ 5 | 6 | #include "Variable.h" 7 | /// \brief The global include 8 | #include "StructEnumDefinition.h" 9 | #include "DebugEngineMacro.h" 10 | 11 | -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/Languages/ar/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/Languages/ar/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/Languages/de/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/Languages/de/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/Languages/el/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/Languages/el/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/Languages/en/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/Languages/en/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/Languages/es/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/Languages/es/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/Languages/fr/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/Languages/fr/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/Languages/hi/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/Languages/hi/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/Languages/hu/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/Languages/hu/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/Languages/id/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/Languages/id/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/Languages/it/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/Languages/it/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/Languages/ja/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/Languages/ja/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/Languages/ko/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/Languages/ko/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/Languages/nl/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/Languages/nl/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/Languages/no/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/Languages/no/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/Languages/pl/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/Languages/pl/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/Languages/ru/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/Languages/ru/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/Languages/th/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/Languages/th/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/Languages/tr/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/Languages/tr/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/Languages/zh/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/Languages/zh/translation.qm -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/StructEnumDefinition.h: -------------------------------------------------------------------------------- 1 | #include "../../../StructEnumDefinition.h" 2 | -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/Variable.h: -------------------------------------------------------------------------------- 1 | /** \file Variable.h 2 | \brief Define the environment variable 3 | \author alpha_one_x86 4 | \licence GPL3, see the file COPYING */ 5 | 6 | #ifndef VARIABLE_H 7 | #define VARIABLE_H 8 | 9 | //Un-comment this next line to put ultracopier plugin in debug mode 10 | #define ULTRACOPIER_PLUGIN_DEBUG 11 | 12 | #endif // VARIABLE_H 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/plugin.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/resources.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | resources/icon.png 4 | resources/arrow-down.png 5 | resources/arrow-up.png 6 | resources/SystemTrayIcon/informations.png 7 | resources/icon-top.png 8 | resources/empty.png 9 | 10 | 11 | -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/resources/SystemTrayIcon/informations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/resources/SystemTrayIcon/informations.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/resources/SystemTrayIcon/systray_Caught_Unix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/resources/SystemTrayIcon/systray_Caught_Unix.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/resources/SystemTrayIcon/systray_Caught_Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/resources/SystemTrayIcon/systray_Caught_Windows.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/resources/SystemTrayIcon/systray_Semiuncaught_Unix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/resources/SystemTrayIcon/systray_Semiuncaught_Unix.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/resources/SystemTrayIcon/systray_Semiuncaught_Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/resources/SystemTrayIcon/systray_Semiuncaught_Windows.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/resources/SystemTrayIcon/systray_Uncaught_Unix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/resources/SystemTrayIcon/systray_Uncaught_Unix.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/resources/SystemTrayIcon/systray_Uncaught_Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/resources/SystemTrayIcon/systray_Uncaught_Windows.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/resources/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/resources/arrow-down.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/resources/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/resources/arrow-up.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/resources/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/resources/empty.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/resources/icon-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/resources/icon-top.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/resources/icon-top.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/resources/icon-top.xcf -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins-unmaintained/Themes/Windows/resources/icon.png -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/resources_unix.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | resources/SystemTrayIcon/systray_Caught_Unix.png 4 | resources/SystemTrayIcon/systray_Semiuncaught_Unix.png 5 | resources/SystemTrayIcon/systray_Uncaught_Unix.png 6 | 7 | 8 | -------------------------------------------------------------------------------- /plugins-unmaintained/Themes/Windows/resources_windows.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | resources/SystemTrayIcon/systray_Caught_Windows.png 4 | resources/SystemTrayIcon/systray_Semiuncaught_Windows.png 5 | resources/SystemTrayIcon/systray_Uncaught_Windows.png 6 | 7 | 8 | -------------------------------------------------------------------------------- /plugins/CopyEngine/README.md: -------------------------------------------------------------------------------- 1 | # Copy Engine 2 | 3 | This plugin type execute the copy/move to do 4 | -------------------------------------------------------------------------------- /plugins/CopyEngine/Random/README.md: -------------------------------------------------------------------------------- 1 | # Copy Engine: Ultracopier 2 | 3 | This is the default copy engine. 4 | -------------------------------------------------------------------------------- /plugins/CopyEngine/Random/plugin.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /plugins/CopyEngine/Rsync/CopyEngine.pro: -------------------------------------------------------------------------------- 1 | include($$PWD/../Ultracopier/Ultracopier.pro) 2 | DEFINES += ULTRACOPIER_PLUGIN_RSYNC 3 | -------------------------------------------------------------------------------- /plugins/CopyEngine/Rsync/README.md: -------------------------------------------------------------------------------- 1 | # Copy Engine: Rsync 2 | 3 | This copy engine uses the `rsync` command. It is implemented by compile switches 4 | in the same code as the default _Ultracopier_ copy engine. 5 | 6 | Not same code due to delete part, to prevent error from some user 7 | -------------------------------------------------------------------------------- /plugins/CopyEngine/Rsync/Rsync.pro: -------------------------------------------------------------------------------- 1 | include($$PWD/../Ultracopier-Spec/CopyEngine.pro) 2 | DEFINES += ULTRACOPIER_PLUGIN_RSYNC 3 | -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/CallBackEventLoop.h: -------------------------------------------------------------------------------- 1 | #ifndef CALLBACKEVENTLOOP_H 2 | #define CALLBACKEVENTLOOP_H 3 | 4 | #include 5 | #include "Variable.h" 6 | 7 | #ifdef POSIXFILEMANIP 8 | class CallBackEventLoop 9 | { 10 | public: 11 | virtual void callBack() = 0; 12 | }; 13 | #endif 14 | 15 | #endif // CALLBACKEVENTLOOP_H 16 | -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/CompilerInfo.h: -------------------------------------------------------------------------------- 1 | #include "../../../CompilerInfo.h" 2 | -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/DiskSpace.h: -------------------------------------------------------------------------------- 1 | #ifndef DISKSPACE_H 2 | #define DISKSPACE_H 3 | 4 | #include 5 | #include 6 | #include "../../../interface/PluginInterface_CopyEngine.h" 7 | #include "StructEnumDefinition_CopyEngine.h" 8 | 9 | namespace Ui { 10 | class DiskSpace; 11 | } 12 | 13 | class DiskSpace : public QDialog 14 | { 15 | Q_OBJECT 16 | 17 | public: 18 | explicit DiskSpace(FacilityInterface * facilityEngine,std::vector list,QWidget *parent = 0); 19 | ~DiskSpace(); 20 | bool getAction() const; 21 | private slots: 22 | void on_ok_clicked(); 23 | void on_cancel_clicked(); 24 | private: 25 | Ui::DiskSpace *ui; 26 | bool ok; 27 | }; 28 | 29 | #endif // DISKSPACE_H 30 | -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/Environment.h: -------------------------------------------------------------------------------- 1 | /** \file Environment.h 2 | \brief Define the environment variable and global function 3 | \author alpha_one_x86 4 | \licence GPL3, see the file COPYING */ 5 | 6 | #include "CopyEngineUltracopier-SpecVariable.h" 7 | /// \brief The global include 8 | #include "StructEnumDefinition.h" 9 | #include "StructEnumDefinition_CopyEngine.h" 10 | #include "DebugEngineMacro.h" 11 | #include "CompilerInfo.h" 12 | -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/EventLoop.h: -------------------------------------------------------------------------------- 1 | #ifndef EVENTLOOP_H 2 | #define EVENTLOOP_H 3 | 4 | #include "Variable.h" 5 | 6 | #ifdef ASYNCFILEMANIP 7 | #include 8 | #include "CallBackEventLoop.h" 9 | #include 10 | #define MAXEVENTS 64 11 | 12 | class EventLoop : public QThread 13 | { 14 | public: 15 | EventLoop(); 16 | ~EventLoop(); 17 | static EventLoop eventLoop; 18 | void watchSource(CallBackEventLoop * const object,const int &fd); 19 | void watchDestination(CallBackEventLoop * const object,const int &fd); 20 | protected: 21 | void run(); 22 | void stop(); 23 | private: 24 | epoll_event events[MAXEVENTS]; 25 | int efd; 26 | bool stopIt; 27 | }; 28 | #endif 29 | 30 | #endif // EVENTLOOP_H 31 | -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/Languages/ar/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/CopyEngine/Ultracopier-Spec/Languages/ar/translation.qm -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/Languages/de/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/CopyEngine/Ultracopier-Spec/Languages/de/translation.qm -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/Languages/el/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/CopyEngine/Ultracopier-Spec/Languages/el/translation.qm -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/Languages/en/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/CopyEngine/Ultracopier-Spec/Languages/en/translation.qm -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/Languages/es/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/CopyEngine/Ultracopier-Spec/Languages/es/translation.qm -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/Languages/fr/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/CopyEngine/Ultracopier-Spec/Languages/fr/translation.qm -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/Languages/hi/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/CopyEngine/Ultracopier-Spec/Languages/hi/translation.qm -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/Languages/hu/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/CopyEngine/Ultracopier-Spec/Languages/hu/translation.qm -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/Languages/id/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/CopyEngine/Ultracopier-Spec/Languages/id/translation.qm -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/Languages/it/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/CopyEngine/Ultracopier-Spec/Languages/it/translation.qm -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/Languages/ja/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/CopyEngine/Ultracopier-Spec/Languages/ja/translation.qm -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/Languages/ko/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/CopyEngine/Ultracopier-Spec/Languages/ko/translation.qm -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/Languages/nl/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/CopyEngine/Ultracopier-Spec/Languages/nl/translation.qm -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/Languages/no/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/CopyEngine/Ultracopier-Spec/Languages/no/translation.qm -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/Languages/pl/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/CopyEngine/Ultracopier-Spec/Languages/pl/translation.qm -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/Languages/pt/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/CopyEngine/Ultracopier-Spec/Languages/pt/translation.qm -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/Languages/ru/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/CopyEngine/Ultracopier-Spec/Languages/ru/translation.qm -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/Languages/th/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/CopyEngine/Ultracopier-Spec/Languages/th/translation.qm -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/Languages/tr/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/CopyEngine/Ultracopier-Spec/Languages/tr/translation.qm -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/Languages/zh/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/CopyEngine/Ultracopier-Spec/Languages/zh/translation.qm -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/README.md: -------------------------------------------------------------------------------- 1 | # Copy Engine: Ultracopier 2 | 3 | This is the default copy engine. 4 | -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/StructEnumDefinition.h: -------------------------------------------------------------------------------- 1 | #include "../../../StructEnumDefinition.h" 2 | -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/copyEngineResources.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | resources/add.png 4 | resources/edit.png 5 | resources/remove.png 6 | resources/filter.png 7 | 8 | 9 | -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/plugin.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/ports.h: -------------------------------------------------------------------------------- 1 | #if defined(PLATFORM_MAC) || defined(PLATFORM_HAIKU) 2 | #define fseeko64 stat 3 | #define ftruncate64 ftruncate 4 | #define off64_t off_t 5 | #define O_LARGEFILE 0 6 | #endif 7 | -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/resources/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/CopyEngine/Ultracopier-Spec/resources/add.png -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/resources/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/CopyEngine/Ultracopier-Spec/resources/edit.png -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/resources/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/CopyEngine/Ultracopier-Spec/resources/filter.png -------------------------------------------------------------------------------- /plugins/CopyEngine/Ultracopier-Spec/resources/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/CopyEngine/Ultracopier-Spec/resources/remove.png -------------------------------------------------------------------------------- /plugins/Languages/README.md: -------------------------------------------------------------------------------- 1 | # Translations 2 | 3 | Please put all translations of the core in the corresponding subfolders. 4 | Keep in mind that every plugin has its own translations! 5 | -------------------------------------------------------------------------------- /plugins/Languages/ar/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/ar/flag.png -------------------------------------------------------------------------------- /plugins/Languages/ar/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/ar/translation.qm -------------------------------------------------------------------------------- /plugins/Languages/de/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/de/flag.png -------------------------------------------------------------------------------- /plugins/Languages/de/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/de/translation.qm -------------------------------------------------------------------------------- /plugins/Languages/el/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/el/flag.png -------------------------------------------------------------------------------- /plugins/Languages/el/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/el/translation.qm -------------------------------------------------------------------------------- /plugins/Languages/es/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/es/flag.png -------------------------------------------------------------------------------- /plugins/Languages/es/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/es/translation.qm -------------------------------------------------------------------------------- /plugins/Languages/fr/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/fr/flag.png -------------------------------------------------------------------------------- /plugins/Languages/fr/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/fr/translation.qm -------------------------------------------------------------------------------- /plugins/Languages/hi/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/hi/flag.png -------------------------------------------------------------------------------- /plugins/Languages/hi/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/hi/translation.qm -------------------------------------------------------------------------------- /plugins/Languages/hu/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/hu/flag.png -------------------------------------------------------------------------------- /plugins/Languages/hu/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/hu/translation.qm -------------------------------------------------------------------------------- /plugins/Languages/id/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/id/flag.png -------------------------------------------------------------------------------- /plugins/Languages/id/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/id/translation.qm -------------------------------------------------------------------------------- /plugins/Languages/it/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/it/flag.png -------------------------------------------------------------------------------- /plugins/Languages/it/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/it/translation.qm -------------------------------------------------------------------------------- /plugins/Languages/ja/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/ja/flag.png -------------------------------------------------------------------------------- /plugins/Languages/ja/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/ja/translation.qm -------------------------------------------------------------------------------- /plugins/Languages/ko/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/ko/flag.png -------------------------------------------------------------------------------- /plugins/Languages/ko/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/ko/translation.qm -------------------------------------------------------------------------------- /plugins/Languages/nl/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/nl/flag.png -------------------------------------------------------------------------------- /plugins/Languages/nl/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/nl/translation.qm -------------------------------------------------------------------------------- /plugins/Languages/no/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/no/flag.png -------------------------------------------------------------------------------- /plugins/Languages/no/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/no/translation.qm -------------------------------------------------------------------------------- /plugins/Languages/pl/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/pl/flag.png -------------------------------------------------------------------------------- /plugins/Languages/pl/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/pl/translation.qm -------------------------------------------------------------------------------- /plugins/Languages/pt/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/pt/flag.png -------------------------------------------------------------------------------- /plugins/Languages/pt/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/pt/translation.qm -------------------------------------------------------------------------------- /plugins/Languages/ru/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/ru/flag.png -------------------------------------------------------------------------------- /plugins/Languages/ru/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/ru/translation.qm -------------------------------------------------------------------------------- /plugins/Languages/th/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/th/flag.png -------------------------------------------------------------------------------- /plugins/Languages/th/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/th/translation.qm -------------------------------------------------------------------------------- /plugins/Languages/tr/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/tr/flag.png -------------------------------------------------------------------------------- /plugins/Languages/tr/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/tr/translation.qm -------------------------------------------------------------------------------- /plugins/Languages/zh/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/zh/flag.png -------------------------------------------------------------------------------- /plugins/Languages/zh/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/zh/translation.qm -------------------------------------------------------------------------------- /plugins/Languages/zh_TW/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/zh_TW/flag.png -------------------------------------------------------------------------------- /plugins/Languages/zh_TW/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Languages/zh_TW/translation.qm -------------------------------------------------------------------------------- /plugins/Listener/README.md: -------------------------------------------------------------------------------- 1 | # Listener 2 | 3 | Listen and wait new copy to do 4 | -------------------------------------------------------------------------------- /plugins/Listener/catchcopy-v0002/DebugEngineMacro.h: -------------------------------------------------------------------------------- 1 | /** \file DebugEngineMacro.h 2 | \brief Define the macro for the debug 3 | \author alpha_one_x86 4 | \licence GPL3, see the file COPYING */ 5 | 6 | #ifndef DEBUGENGINEMACRO_H 7 | #define DEBUGENGINEMACRO_H 8 | 9 | #ifdef WIN32 10 | # define __func__ __FUNCTION__ 11 | #endif 12 | 13 | /// \brief Macro for the debug log 14 | #ifdef ULTRACOPIER_PLUGIN_DEBUG 15 | #if defined (__FILE__) && defined (__LINE__) 16 | #define ULTRACOPIER_DEBUGCONSOLE(a,b) emit debugInformation(a,__func__,b,__FILE__,__LINE__) 17 | #else 18 | #define ULTRACOPIER_DEBUGCONSOLE(a,b) emit debugInformation(a,__func__,b) 19 | #endif 20 | #else // ULTRACOPIER_DEBUG 21 | #define ULTRACOPIER_DEBUGCONSOLE(a,b) void() 22 | #endif // ULTRACOPIER_DEBUG 23 | 24 | #endif // DEBUGENGINEMACRO_H 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /plugins/Listener/catchcopy-v0002/Environment.h: -------------------------------------------------------------------------------- 1 | /** \file Environment.h 2 | \brief Define the environment variable and global function 3 | \author alpha_one_x86 4 | \licence GPL3, see the file COPYING */ 5 | 6 | #include "Listenercatchcopy-v0002Variable.h" 7 | /// \brief The global include 8 | #include "StructEnumDefinition.h" 9 | #include "DebugEngineMacro.h" 10 | 11 | -------------------------------------------------------------------------------- /plugins/Listener/catchcopy-v0002/Listenercatchcopy-v0002Variable.h: -------------------------------------------------------------------------------- 1 | /** \file Variable.h 2 | \brief Define the environment variable 3 | \author alpha_one_x86 4 | \licence GPL3, see the file COPYING */ 5 | 6 | #ifndef VARIABLE_H 7 | #define VARIABLE_H 8 | 9 | //Un-comment this next line to put ultracopier plugin in debug mode 10 | //#define ULTRACOPIER_PLUGIN_DEBUG 11 | 12 | #endif // VARIABLE_H 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /plugins/Listener/catchcopy-v0002/README.md: -------------------------------------------------------------------------------- 1 | # Listener: catchcopy-v0002 2 | 3 | Wait on windows on named piped new copy/move to do. explorer.exe with catchcopy*.dll loaded will connect on it to send it. 4 | -------------------------------------------------------------------------------- /plugins/Listener/catchcopy-v0002/StructEnumDefinition.h: -------------------------------------------------------------------------------- 1 | #include "../../../StructEnumDefinition.h" 2 | -------------------------------------------------------------------------------- /plugins/Listener/catchcopy-v0002/catchcopy-api-0002/VariablesCatchcopy.h: -------------------------------------------------------------------------------- 1 | /** \file VariablesCatchcopy.h 2 | \brief Define the variable for catchcopy 3 | \author alpha_one_x86 4 | \licence GPL3, see the file COPYING */ 5 | 6 | #ifndef VARIABLECATCHCOPY_H 7 | #define VARIABLECATCHCOPY_H 8 | 9 | #define CATCHCOPY_PROTOCOL_VERSION "0002" 10 | #define CATCHCOPY_COMMUNICATION_TIMEOUT 200 11 | 12 | #endif // VARIABLECATCHCOPY_H 13 | 14 | -------------------------------------------------------------------------------- /plugins/Listener/catchcopy-v0002/plugin.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /plugins/PluginLoader/README.md: -------------------------------------------------------------------------------- 1 | # Plugin Loader 2 | 3 | To load the plugin as file explorer plugin 4 | -------------------------------------------------------------------------------- /plugins/PluginLoader/catchcopy-v0002/Environment.h: -------------------------------------------------------------------------------- 1 | /** \file Environment.h 2 | \brief Define the environment variable and global function 3 | \author alpha_one_x86 4 | \licence GPL3, see the file COPYING */ 5 | 6 | #include "PluginLoadercatchcopy-v0002Variable.h" 7 | /// \brief The global include 8 | #include "StructEnumDefinition.h" 9 | #include "DebugEngineMacro.h" 10 | 11 | -------------------------------------------------------------------------------- /plugins/PluginLoader/catchcopy-v0002/Languages/ar/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/PluginLoader/catchcopy-v0002/Languages/ar/translation.qm -------------------------------------------------------------------------------- /plugins/PluginLoader/catchcopy-v0002/Languages/de/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/PluginLoader/catchcopy-v0002/Languages/de/translation.qm -------------------------------------------------------------------------------- /plugins/PluginLoader/catchcopy-v0002/Languages/el/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/PluginLoader/catchcopy-v0002/Languages/el/translation.qm -------------------------------------------------------------------------------- /plugins/PluginLoader/catchcopy-v0002/Languages/en/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/PluginLoader/catchcopy-v0002/Languages/en/translation.qm -------------------------------------------------------------------------------- /plugins/PluginLoader/catchcopy-v0002/Languages/es/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/PluginLoader/catchcopy-v0002/Languages/es/translation.qm -------------------------------------------------------------------------------- /plugins/PluginLoader/catchcopy-v0002/Languages/fr/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/PluginLoader/catchcopy-v0002/Languages/fr/translation.qm -------------------------------------------------------------------------------- /plugins/PluginLoader/catchcopy-v0002/Languages/hi/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/PluginLoader/catchcopy-v0002/Languages/hi/translation.qm -------------------------------------------------------------------------------- /plugins/PluginLoader/catchcopy-v0002/Languages/hu/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/PluginLoader/catchcopy-v0002/Languages/hu/translation.qm -------------------------------------------------------------------------------- /plugins/PluginLoader/catchcopy-v0002/Languages/id/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/PluginLoader/catchcopy-v0002/Languages/id/translation.qm -------------------------------------------------------------------------------- /plugins/PluginLoader/catchcopy-v0002/Languages/it/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/PluginLoader/catchcopy-v0002/Languages/it/translation.qm -------------------------------------------------------------------------------- /plugins/PluginLoader/catchcopy-v0002/Languages/ja/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/PluginLoader/catchcopy-v0002/Languages/ja/translation.qm -------------------------------------------------------------------------------- /plugins/PluginLoader/catchcopy-v0002/Languages/ko/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/PluginLoader/catchcopy-v0002/Languages/ko/translation.qm -------------------------------------------------------------------------------- /plugins/PluginLoader/catchcopy-v0002/Languages/nl/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/PluginLoader/catchcopy-v0002/Languages/nl/translation.qm -------------------------------------------------------------------------------- /plugins/PluginLoader/catchcopy-v0002/Languages/no/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/PluginLoader/catchcopy-v0002/Languages/no/translation.qm -------------------------------------------------------------------------------- /plugins/PluginLoader/catchcopy-v0002/Languages/pl/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/PluginLoader/catchcopy-v0002/Languages/pl/translation.qm -------------------------------------------------------------------------------- /plugins/PluginLoader/catchcopy-v0002/Languages/pt/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/PluginLoader/catchcopy-v0002/Languages/pt/translation.qm -------------------------------------------------------------------------------- /plugins/PluginLoader/catchcopy-v0002/Languages/ru/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/PluginLoader/catchcopy-v0002/Languages/ru/translation.qm -------------------------------------------------------------------------------- /plugins/PluginLoader/catchcopy-v0002/Languages/th/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/PluginLoader/catchcopy-v0002/Languages/th/translation.qm -------------------------------------------------------------------------------- /plugins/PluginLoader/catchcopy-v0002/Languages/tr/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/PluginLoader/catchcopy-v0002/Languages/tr/translation.qm -------------------------------------------------------------------------------- /plugins/PluginLoader/catchcopy-v0002/Languages/zh/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/PluginLoader/catchcopy-v0002/Languages/zh/translation.qm -------------------------------------------------------------------------------- /plugins/PluginLoader/catchcopy-v0002/PlatformMacro.h: -------------------------------------------------------------------------------- 1 | #include "../../../PlatformMacro.h" 2 | -------------------------------------------------------------------------------- /plugins/PluginLoader/catchcopy-v0002/PluginLoadercatchcopy-v0002Variable.h: -------------------------------------------------------------------------------- 1 | /** \file Variable.h 2 | \brief Define the environment variable 3 | \author alpha_one_x86 4 | \licence GPL3, see the file COPYING */ 5 | 6 | #ifndef VARIABLE_H 7 | #define VARIABLE_H 8 | 9 | //Un-comment this next line to put ultracopier plugin in debug mode 10 | //#define ULTRACOPIER_PLUGIN_DEBUG 11 | //#define ULTRACOPIER_PLUGIN_ALL_IN_ONE 12 | 13 | #endif // VARIABLE_H 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /plugins/PluginLoader/catchcopy-v0002/README.md: -------------------------------------------------------------------------------- 1 | # PluginLoader: catchcopy-v0002 2 | 3 | To load the dll as file explorer plugin (explorer.exe) 4 | -------------------------------------------------------------------------------- /plugins/PluginLoader/catchcopy-v0002/StructEnumDefinition.h: -------------------------------------------------------------------------------- 1 | #include "../../../StructEnumDefinition.h" 2 | -------------------------------------------------------------------------------- /plugins/PluginLoader/catchcopy-v0002/plugin.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- 1 | # Plugins 2 | 3 | Plugins can be used to customize most parts of the software. 4 | 5 | The following plugin types are available: 6 | - Copy engine 7 | - Listener 8 | - Plugin loader 9 | - Session loader 10 | - Themes 11 | 12 | They must implement the corresponding interface contained in the`interface` folder. 13 | 14 | Plugin files 15 | - `informations.xml` 16 | - `MyPlugin.pro`, `MyPlugin.h`, `MyPlugin.cpp` 17 | - `Environment.h` -> `Variable.h`, `StructEnumDefinition.h`, `DebugEngineMacro.h` 18 | - `plugin.json` 19 | - `documentation.dox` 20 | - `Languages/XX/translation.ts` 21 | - `resources/` -> `MyPlugin.qrc` 22 | 23 | ## Installation 24 | 25 | Distribute the following files: 26 | - `informations.xml` 27 | - `libMyPlugin.so` 28 | - `Languages/XX/translation.qm` 29 | -------------------------------------------------------------------------------- /plugins/SessionLoader/README.md: -------------------------------------------------------------------------------- 1 | # Session Loader 2 | 3 | To start with your session when you open your computer 4 | -------------------------------------------------------------------------------- /plugins/SessionLoader/Windows/Environment.h: -------------------------------------------------------------------------------- 1 | /** \file Environment.h 2 | \brief Define the environment variable and global function 3 | \author alpha_one_x86 4 | \licence GPL3, see the file COPYING */ 5 | 6 | #include "SessionLoaderWindowsVariable.h" 7 | /// \brief The global include 8 | #include "StructEnumDefinition.h" 9 | #include "DebugEngineMacro.h" 10 | 11 | -------------------------------------------------------------------------------- /plugins/SessionLoader/Windows/README.md: -------------------------------------------------------------------------------- 1 | # Session Loader: Windows 2 | 3 | To start with your session when you open your computer 4 | -------------------------------------------------------------------------------- /plugins/SessionLoader/Windows/SessionLoaderWindowsVariable.h: -------------------------------------------------------------------------------- 1 | /** \file Variable.h 2 | \brief Define the environment variable 3 | \author alpha_one_x86 4 | \licence GPL3, see the file COPYING */ 5 | 6 | #ifndef VARIABLE_H 7 | #define VARIABLE_H 8 | 9 | //Un-comment this next line to put ultracopier plugin in debug mode 10 | //#define ULTRACOPIER_PLUGIN_DEBUG 11 | 12 | #endif // VARIABLE_H 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /plugins/SessionLoader/Windows/StructEnumDefinition.h: -------------------------------------------------------------------------------- 1 | #include "../../../StructEnumDefinition.h" 2 | -------------------------------------------------------------------------------- /plugins/SessionLoader/Windows/plugin.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /plugins/SessionLoader/Windows/sessionLoader.pro: -------------------------------------------------------------------------------- 1 | CONFIG += c++17 2 | QMAKE_CXXFLAGS+="-std=c++0x -Wall -Wextra" 3 | mac:QMAKE_CXXFLAGS+="-stdlib=libc++" 4 | 5 | TEMPLATE = lib 6 | CONFIG += plugin 7 | LIBS += -ladvapi32 8 | HEADERS = \ 9 | $$PWD/sessionLoader.h \ 10 | $$PWD/StructEnumDefinition.h \ 11 | $$PWD/SessionLoaderWindowsVariable.h \ 12 | $$PWD/Environment.h \ 13 | $$PWD/DebugEngineMacro.h \ 14 | $$PWD/../../../interface/PluginInterface_SessionLoader.h 15 | SOURCES = sessionLoader.cpp 16 | TARGET = $$qtLibraryTarget(sessionLoader) 17 | -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/DebugEngineMacro.h: -------------------------------------------------------------------------------- 1 | /** \file DebugEngineMacro.h 2 | \brief Define the macro for the debug 3 | \author alpha_one_x86 4 | \licence GPL3, see the file COPYING */ 5 | 6 | #ifndef DEBUGENGINEMACRO_H 7 | #define DEBUGENGINEMACRO_H 8 | 9 | #ifdef WIN32 10 | # define __func__ __FUNCTION__ 11 | #endif 12 | 13 | /// \brief Macro for the debug log 14 | #ifdef ULTRACOPIER_PLUGIN_DEBUG 15 | #if defined (__FILE__) && defined (__LINE__) 16 | #define ULTRACOPIER_DEBUGCONSOLE(a,b) emit debugInformation(a,__func__,b,__FILE__,__LINE__) 17 | #else 18 | #define ULTRACOPIER_DEBUGCONSOLE(a,b) emit debugInformation(a,__func__,b) 19 | #endif 20 | #else // ULTRACOPIER_DEBUG 21 | #define ULTRACOPIER_DEBUGCONSOLE(a,b) void() 22 | #endif // ULTRACOPIER_DEBUG 23 | 24 | #endif // DEBUGENGINEMACRO_H 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/Environment.h: -------------------------------------------------------------------------------- 1 | /** \file Environment.h 2 | \brief Define the environment variable and global function 3 | \author alpha_one_x86 4 | \licence GPL3, see the file COPYING */ 5 | 6 | #include "OxygenVariable.h" 7 | /// \brief The global include 8 | #include "StructEnumDefinition.h" 9 | #include "DebugEngineMacro.h" 10 | 11 | -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/Languages/ar/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/Languages/ar/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/Languages/de/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/Languages/de/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/Languages/el/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/Languages/el/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/Languages/en/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/Languages/en/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/Languages/es/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/Languages/es/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/Languages/fr/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/Languages/fr/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/Languages/hi/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/Languages/hi/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/Languages/hu/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/Languages/hu/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/Languages/id/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/Languages/id/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/Languages/it/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/Languages/it/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/Languages/ja/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/Languages/ja/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/Languages/ko/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/Languages/ko/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/Languages/nl/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/Languages/nl/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/Languages/no/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/Languages/no/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/Languages/pl/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/Languages/pl/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/Languages/pt/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/Languages/pt/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/Languages/ru/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/Languages/ru/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/Languages/th/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/Languages/th/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/Languages/tr/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/Languages/tr/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/Languages/zh/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/Languages/zh/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/OxygenVariable.h: -------------------------------------------------------------------------------- 1 | /** \file Variable.h 2 | \brief Define the environment variable 3 | \author alpha_one_x86 4 | \licence GPL3, see the file COPYING */ 5 | 6 | #ifndef VARIABLE_H 7 | #define VARIABLE_H 8 | 9 | 10 | //Un-comment this next line to put ultracopier plugin in debug mode 11 | #ifndef ULTRACOPIER_NODEBUG 12 | //#define ULTRACOPIER_PLUGIN_DEBUG 13 | #endif 14 | 15 | #endif // VARIABLE_H 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/README.md: -------------------------------------------------------------------------------- 1 | # Themes: Oxygen 2 | 3 | This theme is based on the the Oxygen project for KDE Plasma desktops. It is the 4 | default theme for _Ultracopier_. 5 | -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/StructEnumDefinition.h: -------------------------------------------------------------------------------- 1 | #include "../../../StructEnumDefinition.h" 2 | -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/interface.pro: -------------------------------------------------------------------------------- 1 | include($$PWD/../Oxygen/interfaceInclude.pri) 2 | TEMPLATE = lib 3 | CONFIG += plugin 4 | 5 | !CONFIG(static) { 6 | RESOURCES += \ 7 | $$PWD/../Oxygen/interfaceResources.qrc \ 8 | $$PWD/../Oxygen/interfaceResources_unix.qrc \ 9 | $$PWD/../Oxygen/interfaceResources_windows.qrc 10 | } 11 | -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/interfaceResources_unix.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | resources/SystemTrayIcon/systray_Caught_Unix.png 4 | resources/SystemTrayIcon/systray_Semiuncaught_Unix.png 5 | resources/SystemTrayIcon/systray_Uncaught_Unix.png 6 | 7 | 8 | -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/interfaceResources_windows.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | resources/SystemTrayIcon/systray_Caught_Windows.png 4 | resources/SystemTrayIcon/systray_Semiuncaught_Windows.png 5 | resources/SystemTrayIcon/systray_Uncaught_Windows.png 6 | 7 | 8 | -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/plugin.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/resources/SystemTrayIcon/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/resources/SystemTrayIcon/add.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/resources/SystemTrayIcon/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/resources/SystemTrayIcon/exit.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/resources/SystemTrayIcon/informations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/resources/SystemTrayIcon/informations.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/resources/SystemTrayIcon/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/resources/SystemTrayIcon/options.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/resources/SystemTrayIcon/systray_Caught_Unix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/resources/SystemTrayIcon/systray_Caught_Unix.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/resources/SystemTrayIcon/systray_Caught_Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/resources/SystemTrayIcon/systray_Caught_Windows.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/resources/SystemTrayIcon/systray_Semiuncaught_Unix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/resources/SystemTrayIcon/systray_Semiuncaught_Unix.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/resources/SystemTrayIcon/systray_Semiuncaught_Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/resources/SystemTrayIcon/systray_Semiuncaught_Windows.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/resources/SystemTrayIcon/systray_Uncaught_Unix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/resources/SystemTrayIcon/systray_Uncaught_Unix.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/resources/SystemTrayIcon/systray_Uncaught_Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/resources/SystemTrayIcon/systray_Uncaught_Windows.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/resources/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/resources/add.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/resources/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/resources/cancel.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/resources/export-transfer-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/resources/export-transfer-list.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/resources/import-transfer-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/resources/import-transfer-list.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/resources/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/resources/main.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/resources/moveDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/resources/moveDown.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/resources/moveUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/resources/moveUp.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/resources/player_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/resources/player_end.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/resources/player_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/resources/player_pause.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/resources/player_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/resources/player_play.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/resources/putOnBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/resources/putOnBottom.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/resources/putOnTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/resources/putOnTop.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/resources/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/resources/remove.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen/resources/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen/resources/search.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/DarkButton.h: -------------------------------------------------------------------------------- 1 | #ifndef DarkButton_H 2 | #define DarkButton_H 3 | 4 | #include 5 | 6 | class DarkButton : public QPushButton 7 | { 8 | public: 9 | DarkButton(QWidget *parent = nullptr); 10 | void paintEvent(QPaintEvent *) override; 11 | protected: 12 | #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) 13 | void enterEvent(QEvent *e) override; 14 | void leaveEvent(QEvent *e) override; 15 | #endif 16 | private: 17 | QPixmap backgroundLeft,backgroundMiddle,backgroundRight; 18 | QPixmap backgroundPushedLeft,backgroundPushedMiddle,backgroundPushedRight; 19 | QPixmap overLeft,overMiddle,overRight; 20 | bool over; 21 | bool enabled; 22 | }; 23 | 24 | #endif // PROGRESSBARDARK_H 25 | -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/DebugEngineMacro.h: -------------------------------------------------------------------------------- 1 | /** \file DebugEngineMacro.h 2 | \brief Define the macro for the debug 3 | \author alpha_one_x86 4 | \licence GPL3, see the file COPYING */ 5 | 6 | #ifndef DEBUGENGINEMACRO_H 7 | #define DEBUGENGINEMACRO_H 8 | 9 | #ifdef WIN32 10 | # define __func__ __FUNCTION__ 11 | #endif 12 | 13 | /// \brief Macro for the debug log 14 | #ifdef ULTRACOPIER_PLUGIN_DEBUG 15 | #if defined (__FILE__) && defined (__LINE__) 16 | #define ULTRACOPIER_DEBUGCONSOLE(a,b) emit debugInformation(a,__func__,b,__FILE__,__LINE__) 17 | #else 18 | #define ULTRACOPIER_DEBUGCONSOLE(a,b) emit debugInformation(a,__func__,b) 19 | #endif 20 | #else // ULTRACOPIER_DEBUG 21 | #define ULTRACOPIER_DEBUGCONSOLE(a,b) void() 22 | #endif // ULTRACOPIER_DEBUG 23 | 24 | #endif // DEBUGENGINEMACRO_H 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/Environment.h: -------------------------------------------------------------------------------- 1 | /** \file Environment.h 2 | \brief Define the environment variable and global function 3 | \author alpha_one_x86 4 | \licence GPL3, see the file COPYING */ 5 | 6 | #include "Variable.h" 7 | /// \brief The global include 8 | #include "StructEnumDefinition.h" 9 | #include "DebugEngineMacro.h" 10 | 11 | -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/Languages/ar/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/Languages/ar/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/Languages/de/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/Languages/de/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/Languages/el/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/Languages/el/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/Languages/en/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/Languages/en/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/Languages/es/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/Languages/es/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/Languages/fr/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/Languages/fr/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/Languages/hi/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/Languages/hi/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/Languages/hu/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/Languages/hu/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/Languages/id/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/Languages/id/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/Languages/it/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/Languages/it/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/Languages/ja/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/Languages/ja/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/Languages/ko/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/Languages/ko/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/Languages/nl/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/Languages/nl/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/Languages/no/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/Languages/no/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/Languages/pl/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/Languages/pl/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/Languages/pt/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/Languages/pt/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/Languages/ru/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/Languages/ru/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/Languages/th/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/Languages/th/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/Languages/tr/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/Languages/tr/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/Languages/zh/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/Languages/zh/translation.qm -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/Oxygen2Environment.h: -------------------------------------------------------------------------------- 1 | /** \file Environment.h 2 | \brief Define the environment variable and global function 3 | \author alpha_one_x86 4 | \licence GPL3, see the file COPYING */ 5 | 6 | #include "Oxygen2Variable.h" 7 | /// \brief The global include 8 | #include "StructEnumDefinition.h" 9 | #include "DebugEngineMacro.h" 10 | 11 | -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/Oxygen2Variable.h: -------------------------------------------------------------------------------- 1 | /** \file Variable.h 2 | \brief Define the environment variable 3 | \author alpha_one_x86 4 | \licence GPL3, see the file COPYING */ 5 | 6 | #ifndef VARIABLEINTERFACEO2_H 7 | #define VARIABLEINTERFACEO2_H 8 | 9 | 10 | //Un-comment this next line to put ultracopier plugin in debug mode 11 | #ifndef ULTRACOPIER_NODEBUG 12 | //#define ULTRACOPIER_PLUGIN_DEBUG 13 | #endif 14 | 15 | #endif // VARIABLEINTERFACEO2_H 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/ProgressBarDark.h: -------------------------------------------------------------------------------- 1 | #ifndef PROGRESSBARDARK_H 2 | #define PROGRESSBARDARK_H 3 | 4 | #include 5 | 6 | class ProgressBarDark : public QProgressBar 7 | { 8 | public: 9 | ProgressBarDark(QWidget *parent = nullptr); 10 | ~ProgressBarDark(); 11 | void paintEvent(QPaintEvent *) override; 12 | private: 13 | QPixmap backgroundLeft,backgroundMiddle,backgroundRight; 14 | QPixmap barLeft,barMiddle,barRight; 15 | }; 16 | 17 | #endif // PROGRESSBARDARK_H 18 | -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/README.md: -------------------------------------------------------------------------------- 1 | # Themes: Oxygen 2 | 3 | This theme is based on the the Oxygen project for KDE Plasma desktops. It is the 4 | default theme for _Ultracopier_. 5 | -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/StructEnumDefinition.h: -------------------------------------------------------------------------------- 1 | #include "../../../StructEnumDefinition.h" 2 | -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/VerticalLabel.h: -------------------------------------------------------------------------------- 1 | #ifndef VERTICALLABELCUSTOM_H 2 | #define VERTICALLABELCUSTOM_H 3 | 4 | #include 5 | 6 | class VerticalLabel : public QLabel 7 | { 8 | public: 9 | explicit VerticalLabel(QWidget *parent=0); 10 | explicit VerticalLabel(const QString &text, QWidget *parent=0); 11 | ~VerticalLabel() override; 12 | void setColor(QColor color); 13 | protected: 14 | void paintEvent(QPaintEvent*) override; 15 | QSize sizeHint() const override; 16 | QSize minimumSizeHint() const override; 17 | private: 18 | QColor color; 19 | }; 20 | 21 | #endif // VERTICALLABELCUSTOM_H 22 | -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/chartarea.h: -------------------------------------------------------------------------------- 1 | #ifndef ChartAreaWIDGET_H 2 | #define ChartAreaWIDGET_H 3 | 4 | #include 5 | #include 6 | 7 | #include "../../../interface/FacilityInterface.h" 8 | 9 | namespace ChartArea 10 | { 11 | 12 | class Widget : public QWidget 13 | { 14 | Q_OBJECT 15 | 16 | public: 17 | explicit Widget(FacilityInterface * facilityEngine,QWidget* = nullptr); 18 | ~Widget() override; 19 | void addValue(uint64_t value); 20 | public Q_SLOTS: 21 | void invalidate(); 22 | protected: 23 | void paintEvent(QPaintEvent*) override; 24 | void resizeEvent(QResizeEvent*) override; 25 | private: 26 | FacilityInterface * facilityEngine; 27 | std::vector m_values; 28 | }; 29 | } 30 | 31 | #endif 32 | -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/interface.pro: -------------------------------------------------------------------------------- 1 | include($$PWD/../Oxygen2/interfaceInclude.pri) 2 | 3 | !CONFIG(static) { 4 | RESOURCES += \ 5 | $$PWD/../Oxygen2/interfaceResources.qrc \ 6 | $$PWD/../Oxygen2/interfaceResources_unix.qrc \ 7 | $$PWD/../Oxygen2/interfaceResources_windows.qrc 8 | } 9 | -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/interfaceResources_unix.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | resources/SystemTrayIcon/systray_Caught_Unix.png 4 | resources/SystemTrayIcon/systray_Semiuncaught_Unix.png 5 | resources/SystemTrayIcon/systray_Uncaught_Unix.png 6 | 7 | 8 | -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/interfaceResources_windows.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | resources/SystemTrayIcon/systray_Caught_Windows.png 4 | resources/SystemTrayIcon/systray_Semiuncaught_Windows.png 5 | resources/SystemTrayIcon/systray_Uncaught_Windows.png 6 | 7 | 8 | -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/plugin.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/SystemTrayIcon/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/SystemTrayIcon/add.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/SystemTrayIcon/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/SystemTrayIcon/exit.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/SystemTrayIcon/informations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/SystemTrayIcon/informations.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/SystemTrayIcon/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/SystemTrayIcon/options.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/SystemTrayIcon/systray_Caught_Unix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/SystemTrayIcon/systray_Caught_Unix.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/SystemTrayIcon/systray_Caught_Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/SystemTrayIcon/systray_Caught_Windows.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/SystemTrayIcon/systray_Semiuncaught_Unix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/SystemTrayIcon/systray_Semiuncaught_Unix.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/SystemTrayIcon/systray_Semiuncaught_Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/SystemTrayIcon/systray_Semiuncaught_Windows.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/SystemTrayIcon/systray_Uncaught_Unix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/SystemTrayIcon/systray_Uncaught_Unix.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/SystemTrayIcon/systray_Uncaught_Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/SystemTrayIcon/systray_Uncaught_Windows.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/add.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/cancel.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/cancelDarkD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/cancelDarkD.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/cancelDarkE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/cancelDarkE.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/darkButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/darkButton.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/darkButtonOver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/darkButtonOver.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/darkButtonPushed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/darkButtonPushed.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/darkmoveDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/darkmoveDown.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/darkmoveUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/darkmoveUp.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/darkplayer_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/darkplayer_end.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/darkplayer_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/darkplayer_pause.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/darkplayer_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/darkplayer_play.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/export-transfer-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/export-transfer-list.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/import-transfer-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/import-transfer-list.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/main.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/moveDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/moveDown.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/moveUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/moveUp.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/player_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/player_end.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/player_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/player_pause.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/player_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/player_play.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/progressBarin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/progressBarin.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/progressBarout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/progressBarout.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/putOnBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/putOnBottom.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/putOnTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/putOnTop.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/remove.png -------------------------------------------------------------------------------- /plugins/Themes/Oxygen2/resources/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Oxygen2/resources/search.png -------------------------------------------------------------------------------- /plugins/Themes/README.md: -------------------------------------------------------------------------------- 1 | # Themes 2 | 3 | This type of plugins can be used to customize the look (user interface) of 4 | Ultracopier. This includes dialogs, icons, ... 5 | -------------------------------------------------------------------------------- /plugins/Themes/Supercopier/README.md: -------------------------------------------------------------------------------- 1 | # Themes: Supercopier 2 | 3 | This theme mimics the classical _Supercopier_ tool which provided similar 4 | functionality. 5 | -------------------------------------------------------------------------------- /plugins/Themes/Supercopier/interface.pro: -------------------------------------------------------------------------------- 1 | DEFINES+=SUPERCOPIER 2 | 3 | include($$PWD/../Oxygen/interfaceInclude.pri) 4 | TEMPLATE = lib 5 | CONFIG += plugin 6 | 7 | !CONFIG(static) { 8 | RESOURCES += \ 9 | $$PWD/../Supercopier/interfaceResources.qrc \ 10 | $$PWD/../Supercopier/interfaceResources_unix.qrc \ 11 | $$PWD/../Supercopier/interfaceResources_windows.qrc 12 | } 13 | -------------------------------------------------------------------------------- /plugins/Themes/Supercopier/interfaceResources_unix.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | resources/SystemTrayIcon/systray_Caught_Unix.png 4 | resources/SystemTrayIcon/systray_Semiuncaught_Unix.png 5 | resources/SystemTrayIcon/systray_Uncaught_Unix.png 6 | 7 | 8 | -------------------------------------------------------------------------------- /plugins/Themes/Supercopier/interfaceResources_windows.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | resources/SystemTrayIcon/systray_Caught_Windows.png 4 | resources/SystemTrayIcon/systray_Semiuncaught_Windows.png 5 | resources/SystemTrayIcon/systray_Uncaught_Windows.png 6 | 7 | 8 | -------------------------------------------------------------------------------- /plugins/Themes/Supercopier/resources/SystemTrayIcon/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Supercopier/resources/SystemTrayIcon/add.png -------------------------------------------------------------------------------- /plugins/Themes/Supercopier/resources/SystemTrayIcon/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Supercopier/resources/SystemTrayIcon/exit.png -------------------------------------------------------------------------------- /plugins/Themes/Supercopier/resources/SystemTrayIcon/informations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Supercopier/resources/SystemTrayIcon/informations.png -------------------------------------------------------------------------------- /plugins/Themes/Supercopier/resources/SystemTrayIcon/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Supercopier/resources/SystemTrayIcon/options.png -------------------------------------------------------------------------------- /plugins/Themes/Supercopier/resources/SystemTrayIcon/systray_Caught_Unix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Supercopier/resources/SystemTrayIcon/systray_Caught_Unix.png -------------------------------------------------------------------------------- /plugins/Themes/Supercopier/resources/SystemTrayIcon/systray_Caught_Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Supercopier/resources/SystemTrayIcon/systray_Caught_Windows.png -------------------------------------------------------------------------------- /plugins/Themes/Supercopier/resources/SystemTrayIcon/systray_Semiuncaught_Unix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Supercopier/resources/SystemTrayIcon/systray_Semiuncaught_Unix.png -------------------------------------------------------------------------------- /plugins/Themes/Supercopier/resources/SystemTrayIcon/systray_Semiuncaught_Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Supercopier/resources/SystemTrayIcon/systray_Semiuncaught_Windows.png -------------------------------------------------------------------------------- /plugins/Themes/Supercopier/resources/SystemTrayIcon/systray_Uncaught_Unix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Supercopier/resources/SystemTrayIcon/systray_Uncaught_Unix.png -------------------------------------------------------------------------------- /plugins/Themes/Supercopier/resources/SystemTrayIcon/systray_Uncaught_Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Supercopier/resources/SystemTrayIcon/systray_Uncaught_Windows.png -------------------------------------------------------------------------------- /plugins/Themes/Supercopier/resources/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Supercopier/resources/add.png -------------------------------------------------------------------------------- /plugins/Themes/Supercopier/resources/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Supercopier/resources/cancel.png -------------------------------------------------------------------------------- /plugins/Themes/Supercopier/resources/export-transfer-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Supercopier/resources/export-transfer-list.png -------------------------------------------------------------------------------- /plugins/Themes/Supercopier/resources/import-transfer-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Supercopier/resources/import-transfer-list.png -------------------------------------------------------------------------------- /plugins/Themes/Supercopier/resources/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Supercopier/resources/main.png -------------------------------------------------------------------------------- /plugins/Themes/Supercopier/resources/moveDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Supercopier/resources/moveDown.png -------------------------------------------------------------------------------- /plugins/Themes/Supercopier/resources/moveUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Supercopier/resources/moveUp.png -------------------------------------------------------------------------------- /plugins/Themes/Supercopier/resources/player_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Supercopier/resources/player_end.png -------------------------------------------------------------------------------- /plugins/Themes/Supercopier/resources/player_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Supercopier/resources/player_pause.png -------------------------------------------------------------------------------- /plugins/Themes/Supercopier/resources/player_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Supercopier/resources/player_play.png -------------------------------------------------------------------------------- /plugins/Themes/Supercopier/resources/progressbarleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Supercopier/resources/progressbarleft.png -------------------------------------------------------------------------------- /plugins/Themes/Supercopier/resources/progressbarright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Supercopier/resources/progressbarright.png -------------------------------------------------------------------------------- /plugins/Themes/Supercopier/resources/putOnBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Supercopier/resources/putOnBottom.png -------------------------------------------------------------------------------- /plugins/Themes/Supercopier/resources/putOnTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Supercopier/resources/putOnTop.png -------------------------------------------------------------------------------- /plugins/Themes/Supercopier/resources/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Supercopier/resources/remove.png -------------------------------------------------------------------------------- /plugins/Themes/Supercopier/resources/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/plugins/Themes/Supercopier/resources/search.png -------------------------------------------------------------------------------- /plugins/static-plugins-oxygen.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | Themes/Oxygen/informations.xml 4 | 5 | 6 | -------------------------------------------------------------------------------- /plugins/static-plugins-windows.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | PluginLoader/catchcopy-v0002/informations.xml 4 | 5 | 6 | -------------------------------------------------------------------------------- /plugins/static-plugins.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyEngine/Ultracopier-Spec/informations.xml 4 | Listener/catchcopy-v0002/informations.xml 5 | Themes/Oxygen/informations.xml 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/Languages/en/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/Languages/en/flag.png -------------------------------------------------------------------------------- /resources/Languages/en/translation.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/Languages/en/translation.qm -------------------------------------------------------------------------------- /resources/bug-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/bug-128x128.png -------------------------------------------------------------------------------- /resources/img-src/application-exit.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/img-src/application-exit.svgz -------------------------------------------------------------------------------- /resources/img-src/applications-development.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/img-src/applications-development.svgz -------------------------------------------------------------------------------- /resources/img-src/arrow-down-double.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/img-src/arrow-down-double.svgz -------------------------------------------------------------------------------- /resources/img-src/arrow-down.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/img-src/arrow-down.svgz -------------------------------------------------------------------------------- /resources/img-src/arrow-up-double.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/img-src/arrow-up-double.svgz -------------------------------------------------------------------------------- /resources/img-src/arrow-up.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/img-src/arrow-up.svgz -------------------------------------------------------------------------------- /resources/img-src/checkbox.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/img-src/checkbox.svgz -------------------------------------------------------------------------------- /resources/img-src/document-encrypt.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/img-src/document-encrypt.svgz -------------------------------------------------------------------------------- /resources/img-src/document-preview.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/img-src/document-preview.svgz -------------------------------------------------------------------------------- /resources/img-src/document-save_16.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/img-src/document-save_16.svgz -------------------------------------------------------------------------------- /resources/img-src/document-save_22.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/img-src/document-save_22.svgz -------------------------------------------------------------------------------- /resources/img-src/drive-removable-media-usb.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/img-src/drive-removable-media-usb.svgz -------------------------------------------------------------------------------- /resources/img-src/help-about.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/img-src/help-about.svgz -------------------------------------------------------------------------------- /resources/img-src/kbugbuster.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/img-src/kbugbuster.svgz -------------------------------------------------------------------------------- /resources/img-src/list-add.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/img-src/list-add.svgz -------------------------------------------------------------------------------- /resources/img-src/media-playback-pause.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/img-src/media-playback-pause.svgz -------------------------------------------------------------------------------- /resources/img-src/media-playback-start.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/img-src/media-playback-start.svgz -------------------------------------------------------------------------------- /resources/img-src/media-skip-forward.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/img-src/media-skip-forward.svgz -------------------------------------------------------------------------------- /resources/img-src/process-stop.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/img-src/process-stop.svgz -------------------------------------------------------------------------------- /resources/img-src/system-shutdown.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/img-src/system-shutdown.svgz -------------------------------------------------------------------------------- /resources/moveDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/moveDown.png -------------------------------------------------------------------------------- /resources/moveUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/moveUp.png -------------------------------------------------------------------------------- /resources/none-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/none-128x128.png -------------------------------------------------------------------------------- /resources/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/options.png -------------------------------------------------------------------------------- /resources/qt.conf: -------------------------------------------------------------------------------- 1 | [Paths] 2 | Plugins = qt-plugins/ 3 | -------------------------------------------------------------------------------- /resources/resources-windows-qt-plugin.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | qt.conf 4 | 5 | 6 | -------------------------------------------------------------------------------- /resources/supercopier-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/supercopier-128x128.png -------------------------------------------------------------------------------- /resources/supercopier-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/supercopier-16x16.png -------------------------------------------------------------------------------- /resources/supercopier-all-in-one.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/supercopier-all-in-one.ico -------------------------------------------------------------------------------- /resources/supercopier.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/supercopier.icns -------------------------------------------------------------------------------- /resources/supercopier.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/supercopier.ico -------------------------------------------------------------------------------- /resources/systray_Caught_Unix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/systray_Caught_Unix.png -------------------------------------------------------------------------------- /resources/systray_Caught_Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/systray_Caught_Windows.png -------------------------------------------------------------------------------- /resources/systray_Semiuncaught_Unix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/systray_Semiuncaught_Unix.png -------------------------------------------------------------------------------- /resources/systray_Semiuncaught_Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/systray_Semiuncaught_Windows.png -------------------------------------------------------------------------------- /resources/systray_Uncaught_Unix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/systray_Uncaught_Unix.png -------------------------------------------------------------------------------- /resources/systray_Uncaught_Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/systray_Uncaught_Windows.png -------------------------------------------------------------------------------- /resources/ultracopier-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/ultracopier-128x128.png -------------------------------------------------------------------------------- /resources/ultracopier-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/ultracopier-16x16.png -------------------------------------------------------------------------------- /resources/ultracopier-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/ultracopier-36x36.png -------------------------------------------------------------------------------- /resources/ultracopier-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/ultracopier-48x48.png -------------------------------------------------------------------------------- /resources/ultracopier-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/ultracopier-72x72.png -------------------------------------------------------------------------------- /resources/ultracopier-all-in-one.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/ultracopier-all-in-one.ico -------------------------------------------------------------------------------- /resources/ultracopier-oxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/ultracopier-oxygen.png -------------------------------------------------------------------------------- /resources/ultracopier-oxygen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/ultracopier-oxygen2.png -------------------------------------------------------------------------------- /resources/ultracopier-resources.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | ultracopier-128x128.png 4 | ultracopier-16x16.png 5 | moveUp.png 6 | moveDown.png 7 | bug-128x128.png 8 | none-128x128.png 9 | Languages/en/flag.png 10 | Languages/en/informations.xml 11 | Languages/en/translation.qm 12 | options.png 13 | warning.png 14 | ultracopier-oxygen.png 15 | ultracopier-oxygen2.png 16 | ultracopier-supercopier.png 17 | 18 | 19 | -------------------------------------------------------------------------------- /resources/ultracopier-resources_unix.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | systray_Caught_Unix.png 4 | systray_Semiuncaught_Unix.png 5 | systray_Uncaught_Unix.png 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/ultracopier-resources_windows.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | systray_Caught_Windows.png 4 | systray_Semiuncaught_Windows.png 5 | systray_Uncaught_Windows.png 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/ultracopier-supercopier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/ultracopier-supercopier.png -------------------------------------------------------------------------------- /resources/ultracopier.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Categories=Qt;Utility; 3 | Comment[en_US]=Copy/Move files with lot of options 4 | Comment=Copy/Move files with lot of options 5 | Exec=ultracopier %u 6 | GenericName[en_US]=Advanced copier 7 | GenericName=Advanced copier 8 | Icon=ultracopier.png 9 | MimeType= 10 | Name[en_US]=Ultracopier 11 | Name=Ultracopier 12 | Path= 13 | StartupNotify=true 14 | Terminal=false 15 | TerminalOptions= 16 | Type=Application 17 | X-DBUS-ServiceName= 18 | X-DBUS-StartupType= 19 | X-KDE-SubstituteUID=false 20 | X-KDE-Username= 21 | -------------------------------------------------------------------------------- /resources/ultracopier.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/ultracopier.icns -------------------------------------------------------------------------------- /resources/ultracopier.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/ultracopier.ico -------------------------------------------------------------------------------- /resources/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/resources/warning.png -------------------------------------------------------------------------------- /test-client-catchcopy/catchcopy-api-0002/ExtraSocketCatchcopy.h: -------------------------------------------------------------------------------- 1 | /** \file ExtraSocketCatchcopy.h 2 | \brief Define the socket of catchcopy 3 | \author alpha_one_x86 4 | \version 0002 5 | \date 2010 */ 6 | 7 | #ifndef EXTRASOCKETCATCHCOPY_H 8 | #define EXTRASOCKETCATCHCOPY_H 9 | 10 | #include 11 | 12 | #ifdef Q_OS_UNIX 13 | #include 14 | #include 15 | #else 16 | #include 17 | #endif 18 | 19 | /// \brief to have extra socket function 20 | class ExtraSocketCatchcopy 21 | { 22 | public: 23 | /// \brief to get the socket path 24 | static const QString pathSocket(); 25 | }; 26 | 27 | #endif // EXTRASOCKETCATCHCOPY_H 28 | -------------------------------------------------------------------------------- /test-client-catchcopy/catchcopy-api-0002/VariablesCatchcopy.h: -------------------------------------------------------------------------------- 1 | /** \file VariablesCatchcopy.h 2 | \brief Define the variable for catchcopy 3 | \author alpha_one_x86 4 | \version 0002 5 | \date 2010 */ 6 | 7 | #ifndef VARIABLECATCHCOPY_H 8 | #define VARIABLECATCHCOPY_H 9 | 10 | #define CATCHCOPY_PROTOCOL_VERSION "0002" 11 | #define CATCHCOPY_COMMUNICATION_TIMEOUT 200 12 | 13 | #endif // VARIABLECATCHCOPY_H 14 | 15 | -------------------------------------------------------------------------------- /test-client-catchcopy/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/test-client-catchcopy/icon.ico -------------------------------------------------------------------------------- /test-client-catchcopy/images/dialog-ok-apply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/test-client-catchcopy/images/dialog-ok-apply.png -------------------------------------------------------------------------------- /test-client-catchcopy/images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/test-client-catchcopy/images/download.png -------------------------------------------------------------------------------- /test-client-catchcopy/images/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/test-client-catchcopy/images/main.png -------------------------------------------------------------------------------- /test-client-catchcopy/images/process-stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/test-client-catchcopy/images/process-stop.png -------------------------------------------------------------------------------- /test-client-catchcopy/images/tools-report-bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/test-client-catchcopy/images/tools-report-bug.png -------------------------------------------------------------------------------- /test-client-catchcopy/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/test-client-catchcopy/images/upload.png -------------------------------------------------------------------------------- /test-client-catchcopy/main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #include "mainwindow.h" 3 | 4 | int main(int argc, char *argv[]) 5 | { 6 | QApplication a(argc, argv); 7 | MainWindow w; 8 | w.show(); 9 | return a.exec(); 10 | } 11 | -------------------------------------------------------------------------------- /test-client-catchcopy/resources-windows.rc: -------------------------------------------------------------------------------- 1 | IDI_ICON1 ICON DISCARDABLE "icon.ico" 2 | 3 | -------------------------------------------------------------------------------- /test-client-catchcopy/resources.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | images/dialog-ok-apply.png 4 | images/download.png 5 | images/main.png 6 | images/process-stop.png 7 | images/upload.png 8 | images/tools-report-bug.png 9 | 10 | 11 | -------------------------------------------------------------------------------- /test-client-catchcopy/test-client-catchcopy.pro: -------------------------------------------------------------------------------- 1 | #------------------------------------------------- 2 | # 3 | # Project created by QtCreator 2010-11-14T13:02:19 4 | # 5 | #------------------------------------------------- 6 | 7 | QT += core gui network widgets 8 | 9 | TARGET = test-client-catchcopy 10 | TEMPLATE = app 11 | 12 | 13 | SOURCES += main.cpp\ 14 | mainwindow.cpp \ 15 | catchcopy-api-0002/ClientCatchcopy.cpp \ 16 | catchcopy-api-0002/ExtraSocketCatchcopy.cpp 17 | 18 | HEADERS += mainwindow.h \ 19 | catchcopy-api-0002/ClientCatchcopy.h \ 20 | catchcopy-api-0002/ExtraSocketCatchcopy.h 21 | 22 | FORMS += mainwindow.ui 23 | win32:RC_FILE += resources-windows.rc 24 | RESOURCES += resources.qrc 25 | -------------------------------------------------------------------------------- /test/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/test/button.png -------------------------------------------------------------------------------- /test/button.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/test/button.xcf -------------------------------------------------------------------------------- /test/chartarea/MainWindow.cpp: -------------------------------------------------------------------------------- 1 | #include "MainWindow.h" 2 | #include "ui_MainWindow.h" 3 | #include 4 | 5 | MainWindow::MainWindow(QWidget *parent) : 6 | QMainWindow(parent), 7 | ui(new Ui::MainWindow), 8 | m_map(new ChartArea::Widget(this)) 9 | { 10 | ui->setupUi(this); 11 | //m_map->hide(); 12 | ui->verticalLayout->addWidget(m_map); 13 | 14 | connect(&timer,&QTimer::timeout,this,&MainWindow::addValue); 15 | timer.start(1000); 16 | } 17 | 18 | MainWindow::~MainWindow() 19 | { 20 | delete ui; 21 | } 22 | 23 | void MainWindow::addValue() 24 | { 25 | m_map->addValue(rand()%5000); 26 | } 27 | -------------------------------------------------------------------------------- /test/chartarea/MainWindow.h: -------------------------------------------------------------------------------- 1 | #ifndef MAINWINDOW_H 2 | #define MAINWINDOW_H 3 | 4 | #include 5 | #include 6 | #include "widget.h" 7 | 8 | namespace Ui { 9 | class MainWindow; 10 | } 11 | 12 | class MainWindow : public QMainWindow 13 | { 14 | Q_OBJECT 15 | 16 | public: 17 | explicit MainWindow(QWidget *parent = 0); 18 | ~MainWindow(); 19 | void addValue(); 20 | private: 21 | Ui::MainWindow *ui; 22 | ChartArea::Widget * m_map; 23 | QTimer timer; 24 | }; 25 | 26 | #endif // MAINWINDOW_H 27 | -------------------------------------------------------------------------------- /test/chartarea/main.cpp: -------------------------------------------------------------------------------- 1 | #include "MainWindow.h" 2 | #include 3 | 4 | int main(int argc, char *argv[]) 5 | { 6 | QApplication a(argc, argv); 7 | MainWindow w; 8 | w.show(); 9 | 10 | return a.exec(); 11 | } 12 | -------------------------------------------------------------------------------- /test/darkbutton/DarkButton.h: -------------------------------------------------------------------------------- 1 | #ifndef DarkButton_H 2 | #define DarkButton_H 3 | 4 | #include 5 | 6 | class DarkButton : public QPushButton 7 | { 8 | public: 9 | DarkButton(QWidget *parent = nullptr); 10 | void paintEvent(QPaintEvent *) override; 11 | protected: 12 | void enterEvent(QEvent *e) override; 13 | void leaveEvent(QEvent *e) override; 14 | private: 15 | QPixmap backgroundLeft,backgroundMiddle,backgroundRight; 16 | QPixmap backgroundPushedLeft,backgroundPushedMiddle,backgroundPushedRight; 17 | QPixmap overLeft,overMiddle,overRight; 18 | bool over; 19 | bool enabled; 20 | }; 21 | 22 | #endif // PROGRESSBARDARK_H 23 | -------------------------------------------------------------------------------- /test/darkbutton/MainWindow.h: -------------------------------------------------------------------------------- 1 | #ifndef MAINWINDOW_H 2 | #define MAINWINDOW_H 3 | 4 | #include 5 | #include 6 | #include "DarkButton.h" 7 | 8 | namespace Ui { 9 | class MainWindow; 10 | } 11 | 12 | class MainWindow : public QMainWindow 13 | { 14 | Q_OBJECT 15 | 16 | public: 17 | explicit MainWindow(QWidget *parent = 0); 18 | ~MainWindow(); 19 | void create(); 20 | private: 21 | Ui::MainWindow *ui; 22 | DarkButton * darkButton; 23 | QTimer timer; 24 | }; 25 | 26 | #endif // MAINWINDOW_H 27 | -------------------------------------------------------------------------------- /test/darkbutton/cancelDarkD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/test/darkbutton/cancelDarkD.png -------------------------------------------------------------------------------- /test/darkbutton/cancelDarkE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/test/darkbutton/cancelDarkE.png -------------------------------------------------------------------------------- /test/darkbutton/darkButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/test/darkbutton/darkButton.png -------------------------------------------------------------------------------- /test/darkbutton/darkButtonOver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/test/darkbutton/darkButtonOver.png -------------------------------------------------------------------------------- /test/darkbutton/darkButtonPushed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/test/darkbutton/darkButtonPushed.png -------------------------------------------------------------------------------- /test/darkbutton/main.cpp: -------------------------------------------------------------------------------- 1 | #include "MainWindow.h" 2 | #include 3 | 4 | int main(int argc, char *argv[]) 5 | { 6 | QApplication a(argc, argv); 7 | MainWindow w; 8 | w.show(); 9 | 10 | return a.exec(); 11 | } 12 | -------------------------------------------------------------------------------- /test/darkbutton/res.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | darkButton.png 4 | darkButtonPushed.png 5 | darkButtonOver.png 6 | cancelDarkE.png 7 | cancelDarkD.png 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/progressbardark/MainWindow.cpp: -------------------------------------------------------------------------------- 1 | #include "MainWindow.h" 2 | #include "ui_MainWindow.h" 3 | #include 4 | #include 5 | #include 6 | #include 7 | 8 | MainWindow::MainWindow(QWidget *parent) : 9 | QMainWindow(parent), 10 | ui(new Ui::MainWindow), 11 | progressBarDark(new ProgressBarDark) 12 | { 13 | ui->setupUi(this); 14 | ui->verticalLayout->addWidget(progressBarDark); 15 | connect(&treeTimer,&QTimer::timeout,this,&MainWindow::create); 16 | treeTimer.start(100); 17 | } 18 | 19 | MainWindow::~MainWindow() 20 | { 21 | delete ui; 22 | } 23 | 24 | void MainWindow::create() 25 | { 26 | int val=progressBarDark->value(); 27 | if(val>=100) 28 | val=0; 29 | else 30 | val++; 31 | progressBarDark->setValue(val); 32 | } 33 | -------------------------------------------------------------------------------- /test/progressbardark/MainWindow.h: -------------------------------------------------------------------------------- 1 | #ifndef MAINWINDOW_H 2 | #define MAINWINDOW_H 3 | 4 | #include 5 | #include 6 | #include "ProgressBarDark.h" 7 | 8 | namespace Ui { 9 | class MainWindow; 10 | } 11 | 12 | class MainWindow : public QMainWindow 13 | { 14 | Q_OBJECT 15 | 16 | public: 17 | explicit MainWindow(QWidget *parent = 0); 18 | ~MainWindow(); 19 | void create(); 20 | private: 21 | Ui::MainWindow *ui; 22 | ProgressBarDark * progressBarDark; 23 | QTimer treeTimer; 24 | }; 25 | 26 | #endif // MAINWINDOW_H 27 | -------------------------------------------------------------------------------- /test/progressbardark/ProgressBarDark.h: -------------------------------------------------------------------------------- 1 | #ifndef PROGRESSBARDARK_H 2 | #define PROGRESSBARDARK_H 3 | 4 | #include 5 | 6 | class ProgressBarDark : public QProgressBar 7 | { 8 | public: 9 | ProgressBarDark(QWidget *parent = nullptr); 10 | void paintEvent(QPaintEvent *) override; 11 | private: 12 | QPixmap backgroundLeft,backgroundMiddle,backgroundRight; 13 | QPixmap barLeft,barMiddle,barRight; 14 | }; 15 | 16 | #endif // PROGRESSBARDARK_H 17 | -------------------------------------------------------------------------------- /test/progressbardark/main.cpp: -------------------------------------------------------------------------------- 1 | #include "MainWindow.h" 2 | #include 3 | 4 | int main(int argc, char *argv[]) 5 | { 6 | QApplication a(argc, argv); 7 | MainWindow w; 8 | w.show(); 9 | 10 | return a.exec(); 11 | } 12 | -------------------------------------------------------------------------------- /test/progressbardark/progressBarin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/test/progressbardark/progressBarin.png -------------------------------------------------------------------------------- /test/progressbardark/progressBarout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/test/progressbardark/progressBarout.png -------------------------------------------------------------------------------- /test/progressbardark/res.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | progressBarin.png 4 | progressBarout.png 5 | 6 | 7 | -------------------------------------------------------------------------------- /test/radialmap/MainWindow.h: -------------------------------------------------------------------------------- 1 | #ifndef MAINWINDOW_H 2 | #define MAINWINDOW_H 3 | 4 | #include 5 | #include 6 | #include "radialMap/widget.h" 7 | 8 | namespace Ui { 9 | class MainWindow; 10 | } 11 | 12 | class MainWindow : public QMainWindow 13 | { 14 | Q_OBJECT 15 | 16 | public: 17 | explicit MainWindow(QWidget *parent = 0); 18 | ~MainWindow(); 19 | void create(); 20 | private: 21 | Ui::MainWindow *ui; 22 | RadialMap::Widget * m_map; 23 | Folder * tree; 24 | QTimer treeTimer; 25 | 26 | uint64_t recursiveTreeLoad(Folder * tree, std::string folder); 27 | }; 28 | 29 | #endif // MAINWINDOW_H 30 | -------------------------------------------------------------------------------- /test/radialmap/main.cpp: -------------------------------------------------------------------------------- 1 | #include "MainWindow.h" 2 | #include 3 | 4 | int main(int argc, char *argv[]) 5 | { 6 | QApplication a(argc, argv); 7 | MainWindow w; 8 | w.show(); 9 | 10 | return a.exec(); 11 | } 12 | -------------------------------------------------------------------------------- /tools/doc/footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tools/doc/ultracopier-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/tools/doc/ultracopier-logo.png -------------------------------------------------------------------------------- /tools/to-pack/2-send-sources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd ../../ 4 | find ./ -name "Thumbs.db" -exec rm {} \; >> /dev/null 2>&1 5 | find ./ -name ".directory" -exec rm {} \; >> /dev/null 2>&1 6 | 7 | echo "Send sources..." 8 | /usr/bin/rsync -avrtz --compress-level=9 --rsh='ssh -p54973' --delete --partial --progress /home/user/Desktop/ultracopier/sources/ root@ssh.first-world.info:/root/ultracopier/sources/ --exclude='*build*' --exclude='*Qt_5*' --exclude='*qt5*' --exclude='*.pro.user' --exclude='*.qm' 9 | echo "Send sources... done" 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tools/to-pack/data/windows/ultracopier.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaonex86/Ultracopier/f93db2adadf7122eca6b601f6495c53ae15fd644/tools/to-pack/data/windows/ultracopier.ico -------------------------------------------------------------------------------- /tools/to-pack/grouped.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | export ULTRACOPIERSOURCESPATH="/root/ultracopier/sources/" 3 | export ULTRACOPIER_VERSION=`grep -F "ULTRACOPIER_VERSION" ${ULTRACOPIERSOURCESPATH}/Variable.h | grep -F "1.4" | sed -r "s/^.*([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+).*$/\1/g"` 4 | 5 | ./1-pre-send.sh 6 | ./2-compil-wine32.sh 7 | #./2-compil-wine64.sh 8 | ./4-clean-all.sh 9 | #mv /home/ultracopier-temp/ultracopier-*.* /home/first-world.info/files-rw/ultracopier/${ULTRACOPIER_VERSION}/ 10 | #mv /home/ultracopier-temp/supercopier-*.* /home/first-world.info/files-rw/supercopier/${ULTRACOPIER_VERSION}/ 11 | #rsync -avrt /home/ultracopier-temp/plugins/ /home/first-world.info/files-rw/ultracopier/plugins/ 12 | #rm -Rf /home/ultracopier-temp/plugins/ 13 | -------------------------------------------------------------------------------- /tools/to-pack/sub-script/clean-all.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if [ "${TEMP_PATH}" = "" ] 4 | then 5 | exit; 6 | fi 7 | 8 | cd ${TEMP_PATH}/ 9 | for folder in `ls -1` 10 | do 11 | if [ -d "${folder}" ] && [ "${folder}" != "plugins" ] && [ "${folder}" != "doc" ] 12 | then 13 | rm -Rf ${folder}/ 14 | fi 15 | done 16 | 17 | -------------------------------------------------------------------------------- /tools/to-pack/sub-script/sendmail.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if [ "${TEMP_PATH}" = "" ] 4 | then 5 | exit; 6 | fi 7 | if [ "${ULTRACOPIER_VERSION}" = "" ] 8 | then 9 | exit; 10 | fi 11 | SUPERCOPIER_VERSION=`echo "${ULTRACOPIER_VERSION}"` 12 | 13 | cd ${TEMP_PATH}/ 14 | 15 | echo "Send mail..." 16 | /usr/bin/php /home/first-world.info/shop/sendmail_ultracopier_version.php ${ULTRACOPIER_VERSION} 17 | echo "Send mail... done" 18 | -------------------------------------------------------------------------------- /tools/unit-tester/main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(int argc, char *argv[]) 4 | { 5 | QCoreApplication a(argc, argv); 6 | 7 | return a.exec(); 8 | } 9 | -------------------------------------------------------------------------------- /ultracopier-cp-clipboard.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Actions=CopyWithUltracopierClipBoard; 3 | Type=Service 4 | ServiceTypes=KonqPopupMenu/Plugin 5 | MimeType=inode/directory; 6 | 7 | [Desktop Action CopyWithUltracopierClipBoard] 8 | Exec=ultracopier CBcp %U 9 | Name=Copy here with Ultracopier 10 | Icon=Ultracopier 11 | -------------------------------------------------------------------------------- /ultracopier-cp.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Actions=CopyWithUltracopier; 3 | Type=Service 4 | ServiceTypes=KonqPopupMenu/Plugin 5 | MimeType=application/octet-stream;inode/directory; 6 | 7 | [Desktop Action CopyWithUltracopier] 8 | Exec=ultracopier cp %U ? 9 | Name=Copy with Ultracopier 10 | Icon=Ultracopier 11 | -------------------------------------------------------------------------------- /ultracopier-mv-clipboard.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Actions=MoveWithUltracopierClipBoard; 3 | Type=Service 4 | ServiceTypes=KonqPopupMenu/Plugin 5 | MimeType=inode/directory; 6 | 7 | [Desktop Action MoveWithUltracopierClipBoard] 8 | Exec=ultracopier CBmv %U 9 | Name=Move here with Ultracopier 10 | Icon=Ultracopier 11 | -------------------------------------------------------------------------------- /ultracopier-mv.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Actions=MoveWithUltracopier; 3 | Type=Service 4 | ServiceTypes=KonqPopupMenu/Plugin 5 | MimeType=application/octet-stream;inode/directory; 6 | 7 | [Desktop Action MoveWithUltracopier] 8 | Exec=ultracopier mv %U ? 9 | Name=Move with Ultracopier 10 | Icon=Ultracopier 11 | --------------------------------------------------------------------------------