├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── dist └── linux │ └── pydio-ui └── src └── systray ├── .DS_Store ├── JSEventHandler.cpp ├── JSEventHandler.h ├── aboutdialog.cpp ├── aboutdialog.h ├── cmdhelper.cpp ├── cmdhelper.h ├── customtrayicon.cpp ├── customtrayicon.h ├── globals.h ├── httpmanager.cpp ├── httpmanager.h ├── images ├── PydioSync-Systray-Mac-Inactive.png ├── PydioSync-Systray-Mac-Transfer.png ├── PydioSync-Systray-Mac.png ├── PydioSync-Systray-Windows-Transfer.png ├── PydioSync-Systray-Windows.png ├── folder-32.png └── world.png ├── job.cpp ├── job.h ├── jobaction.cpp ├── jobaction.h ├── jobmenu.cpp ├── jobmenu.h ├── languages └── pydioUI_fr_FR.qm ├── localserver.cpp ├── localserver.h ├── main.cpp ├── portconfigurer.cpp ├── portconfigurer.h ├── pydioupdatepinger.cpp ├── pydioupdatepinger.h ├── smoketest.cpp ├── smoketest.h ├── systray.pro ├── systray.qrc ├── updatedialog.cpp ├── updatedialog.h ├── webkit-sources ├── about.html └── reload_python.html ├── window.cpp └── window.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/README.md -------------------------------------------------------------------------------- /dist/linux/pydio-ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/dist/linux/pydio-ui -------------------------------------------------------------------------------- /src/systray/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/.DS_Store -------------------------------------------------------------------------------- /src/systray/JSEventHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/JSEventHandler.cpp -------------------------------------------------------------------------------- /src/systray/JSEventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/JSEventHandler.h -------------------------------------------------------------------------------- /src/systray/aboutdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/aboutdialog.cpp -------------------------------------------------------------------------------- /src/systray/aboutdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/aboutdialog.h -------------------------------------------------------------------------------- /src/systray/cmdhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/cmdhelper.cpp -------------------------------------------------------------------------------- /src/systray/cmdhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/cmdhelper.h -------------------------------------------------------------------------------- /src/systray/customtrayicon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/customtrayicon.cpp -------------------------------------------------------------------------------- /src/systray/customtrayicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/customtrayicon.h -------------------------------------------------------------------------------- /src/systray/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/globals.h -------------------------------------------------------------------------------- /src/systray/httpmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/httpmanager.cpp -------------------------------------------------------------------------------- /src/systray/httpmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/httpmanager.h -------------------------------------------------------------------------------- /src/systray/images/PydioSync-Systray-Mac-Inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/images/PydioSync-Systray-Mac-Inactive.png -------------------------------------------------------------------------------- /src/systray/images/PydioSync-Systray-Mac-Transfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/images/PydioSync-Systray-Mac-Transfer.png -------------------------------------------------------------------------------- /src/systray/images/PydioSync-Systray-Mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/images/PydioSync-Systray-Mac.png -------------------------------------------------------------------------------- /src/systray/images/PydioSync-Systray-Windows-Transfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/images/PydioSync-Systray-Windows-Transfer.png -------------------------------------------------------------------------------- /src/systray/images/PydioSync-Systray-Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/images/PydioSync-Systray-Windows.png -------------------------------------------------------------------------------- /src/systray/images/folder-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/images/folder-32.png -------------------------------------------------------------------------------- /src/systray/images/world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/images/world.png -------------------------------------------------------------------------------- /src/systray/job.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/job.cpp -------------------------------------------------------------------------------- /src/systray/job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/job.h -------------------------------------------------------------------------------- /src/systray/jobaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/jobaction.cpp -------------------------------------------------------------------------------- /src/systray/jobaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/jobaction.h -------------------------------------------------------------------------------- /src/systray/jobmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/jobmenu.cpp -------------------------------------------------------------------------------- /src/systray/jobmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/jobmenu.h -------------------------------------------------------------------------------- /src/systray/languages/pydioUI_fr_FR.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/languages/pydioUI_fr_FR.qm -------------------------------------------------------------------------------- /src/systray/localserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/localserver.cpp -------------------------------------------------------------------------------- /src/systray/localserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/localserver.h -------------------------------------------------------------------------------- /src/systray/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/main.cpp -------------------------------------------------------------------------------- /src/systray/portconfigurer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/portconfigurer.cpp -------------------------------------------------------------------------------- /src/systray/portconfigurer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/portconfigurer.h -------------------------------------------------------------------------------- /src/systray/pydioupdatepinger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/pydioupdatepinger.cpp -------------------------------------------------------------------------------- /src/systray/pydioupdatepinger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/pydioupdatepinger.h -------------------------------------------------------------------------------- /src/systray/smoketest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/smoketest.cpp -------------------------------------------------------------------------------- /src/systray/smoketest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/smoketest.h -------------------------------------------------------------------------------- /src/systray/systray.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/systray.pro -------------------------------------------------------------------------------- /src/systray/systray.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/systray.qrc -------------------------------------------------------------------------------- /src/systray/updatedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/updatedialog.cpp -------------------------------------------------------------------------------- /src/systray/updatedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/updatedialog.h -------------------------------------------------------------------------------- /src/systray/webkit-sources/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/webkit-sources/about.html -------------------------------------------------------------------------------- /src/systray/webkit-sources/reload_python.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/webkit-sources/reload_python.html -------------------------------------------------------------------------------- /src/systray/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/window.cpp -------------------------------------------------------------------------------- /src/systray/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync-ui/HEAD/src/systray/window.h --------------------------------------------------------------------------------