├── .gitignore ├── .tx └── config ├── BUILDING ├── README.md ├── plugins ├── CopyTitle │ ├── CopyTitle.pro │ ├── README.md │ ├── copytitle.cpp │ ├── copytitle.h │ ├── copytitle.qrc │ ├── data │ │ └── copytitle.png │ └── translations │ │ ├── ar_SA.ts │ │ ├── bg_BG.ts │ │ ├── ca_ES.ts │ │ ├── cs_CZ.ts │ │ ├── da_DK.ts │ │ ├── de_DE.ts │ │ ├── el_GR.ts │ │ ├── empty.ts │ │ ├── es_ES.ts │ │ ├── es_MX.ts │ │ ├── eu_ES.ts │ │ ├── fi_FI.ts │ │ ├── fr_FR.ts │ │ ├── he_IL.ts │ │ ├── hr_HR.ts │ │ ├── id_ID.ts │ │ ├── is.ts │ │ ├── it_IT.ts │ │ ├── ja_JP.ts │ │ ├── lt.ts │ │ ├── lv_LV.ts │ │ ├── nl_NL.ts │ │ ├── pl_PL.ts │ │ ├── pt_BR.ts │ │ ├── pt_PT.ts │ │ ├── ro_RO.ts │ │ ├── ru_RU.ts │ │ ├── sk_SK.ts │ │ ├── sr.ts │ │ ├── sr@ijekavian.ts │ │ ├── sr@ijekavianlatin.ts │ │ ├── sr@latin.ts │ │ ├── tr_TR.ts │ │ ├── uk_UA.ts │ │ ├── zh_CN.ts │ │ ├── zh_HK.ts │ │ └── zh_TW.ts ├── MailHandle │ ├── MailHandle.pro │ ├── README.md │ ├── TODO │ ├── data │ │ ├── README │ │ ├── fastmail.png │ │ ├── gmail.png │ │ ├── mailhandle.png │ │ ├── mailru.png │ │ ├── myopera.png │ │ ├── outlook.png │ │ ├── roundcube.png │ │ ├── tonline.png │ │ ├── yahoo.png │ │ └── yandex.png │ ├── mailhandle_plugin.cpp │ ├── mailhandle_plugin.h │ ├── mailhandle_res.qrc │ ├── mailhandle_schemehandler.cpp │ ├── mailhandle_schemehandler.h │ ├── mailhandle_settings.cpp │ ├── mailhandle_settings.h │ ├── mailhandle_settings.ui │ └── translations │ │ ├── ar_SA.ts │ │ ├── bg_BG.ts │ │ ├── ca_ES.ts │ │ ├── cs_CZ.ts │ │ ├── da_DK.ts │ │ ├── de_DE.ts │ │ ├── el_GR.ts │ │ ├── empty.ts │ │ ├── es_ES.ts │ │ ├── es_MX.ts │ │ ├── eu_ES.ts │ │ ├── fr_FR.ts │ │ ├── hr_HR.ts │ │ ├── id_ID.ts │ │ ├── is.ts │ │ ├── it_IT.ts │ │ ├── ja_JP.ts │ │ ├── lt.ts │ │ ├── lv_LV.ts │ │ ├── nl_NL.ts │ │ ├── pl_PL.ts │ │ ├── pt_PT.ts │ │ ├── ro_RO.ts │ │ ├── ru_RU.ts │ │ ├── sk_SK.ts │ │ ├── sr.ts │ │ ├── sr@ijekavian.ts │ │ ├── sr@ijekavianlatin.ts │ │ ├── sr@latin.ts │ │ ├── tr_TR.ts │ │ ├── uk_UA.ts │ │ ├── zh_CN.ts │ │ ├── zh_HK.ts │ │ └── zh_TW.ts ├── Readability │ ├── README.md │ ├── Readability.pro │ ├── data │ │ ├── Call.js │ │ ├── RM-Delete-24x24.png │ │ ├── RM-Minus-24x24.png │ │ ├── RM-Plus-24x24.png │ │ ├── RM-Type-Controls-24x24.png │ │ ├── RM-Type-Controls-Arrow.png │ │ ├── RM-close-hover.png │ │ ├── RM-close.png │ │ ├── Readability.js │ │ ├── Toolbar.js │ │ ├── icon.png │ │ └── style.css │ ├── readability.cpp │ ├── readability.h │ └── readability.qrc └── Videoner │ ├── README.md │ ├── Videoner.pro │ ├── data │ └── videoner.png │ ├── translations │ ├── ar_SA.ts │ ├── bg_BG.ts │ ├── ca_ES.ts │ ├── cs_CZ.ts │ ├── de_DE.ts │ ├── el_GR.ts │ ├── empty.ts │ ├── es_ES.ts │ ├── es_MX.ts │ ├── es_VE.ts │ ├── eu_ES.ts │ ├── fa_IR.ts │ ├── fi_FI.ts │ ├── fr_FR.ts │ ├── gl_ES.ts │ ├── he_IL.ts │ ├── hr_HR.ts │ ├── id_ID.ts │ ├── is.ts │ ├── it_IT.ts │ ├── ja_JP.ts │ ├── lt.ts │ ├── lv_LV.ts │ ├── nl_NL.ts │ ├── nqo.ts │ ├── pl_PL.ts │ ├── pt_PT.ts │ ├── ro_RO.ts │ ├── ru_RU.ts │ ├── sk_SK.ts │ ├── sr.ts │ ├── sr@ijekavian.ts │ ├── sr@ijekavianlatin.ts │ ├── sr@latin.ts │ ├── tr_TR.ts │ ├── uk_UA.ts │ ├── uz@Cyrl.ts │ ├── uz@Latn.ts │ ├── zh_CN.ts │ ├── zh_HK.ts │ └── zh_TW.ts │ ├── videoner_handler.cpp │ ├── videoner_handler.h │ ├── videoner_plugin.cpp │ ├── videoner_plugin.h │ ├── videoner_res.qrc │ ├── videoner_settings.cpp │ ├── videoner_settings.h │ └── videoner_settings.ui ├── scripts ├── coding_style.sh ├── cppcheck.sh └── update_translations.sh └── themes ├── breathe ├── README.md ├── images │ ├── add.png │ ├── find.png │ ├── flash.png │ ├── flashstart.png │ ├── goto.png │ ├── home.png │ ├── library-bg-left.png │ ├── library-bg-top-right.png │ ├── library-bg-top.png │ ├── library-search-bg.png │ ├── lineedit-bg.png │ ├── login.png │ ├── menu.png │ ├── navigation-dropdown.png │ ├── next.png │ ├── previous.png │ ├── reload.png │ ├── restore.png │ ├── rss.png │ ├── semi-transp.png │ ├── siteicon-bg-a.png │ ├── siteicon-bg-h.png │ ├── siteicon-bg.png │ ├── siteicon-secure-bg-a.png │ ├── siteicon-secure-bg-h.png │ ├── siteicon-secure-bg.png │ ├── star-a.png │ ├── star.png │ ├── stop.png │ ├── tab-left.png │ ├── tab-right.png │ ├── tabs-list.png │ ├── transp.png │ ├── trash.png │ ├── websearch-bg-a.png │ ├── websearch-bg-h.png │ └── websearch-bg.png ├── main.css ├── rtl.css ├── theme.info └── theme.png ├── cyanotype ├── COPYING ├── README.md ├── images │ ├── adb-bb-new.png │ ├── adb-bma.png │ ├── adb-feed.png │ ├── adb-site-h.png │ ├── adb-site.png │ ├── arrow-down.png │ ├── bb-dd.png │ ├── bb-next.png │ ├── chbxoff.png │ ├── chbxon.png │ ├── flash.png │ ├── flashstart.png │ ├── key.png │ ├── library-bg-blue.png │ ├── navigation-sucksmenu.png │ ├── nb-addt.png │ ├── nb-canc.png │ ├── nb-home.png │ ├── nb-nxt.png │ ├── nb-prvs.png │ ├── nb-refr.png │ ├── rbtnchckd.png │ ├── rbtnunchckd.png │ ├── sb-ip.png │ ├── sb-search.png │ ├── semi-transp.png │ ├── spinbox_dn.png │ ├── spinbox_dn_hvr.png │ ├── spinbox_dn_prsd.png │ ├── spinbox_up.png │ ├── spinbox_up_hvr.png │ ├── spinbox_up_prsd.png │ ├── tabbar-addtab-rtl.png │ ├── tabbar-addtab.png │ ├── tabbar-button-closedtabs.png │ ├── tabbar-button-left.png │ ├── tabbar-button-listtbs.png │ ├── tabbar-button-right.png │ ├── transp.png │ ├── window-close-act.png │ ├── window-close-act_hvr.png │ ├── window-close-act_prsd.png │ ├── window-close-inact.png │ ├── window-close-inact_hvr.png │ └── window-close-inact_prsd.png ├── main.css ├── rtl.css ├── theme.info ├── theme.license └── theme.png ├── fergris ├── LICENSE-GPL2.txt ├── LICENSE-GPL3.txt ├── Mozilla_Public_License_1.1.txt ├── README.md ├── images │ ├── arrow-down.png │ ├── bgmenu.png │ ├── brushed_metal-l.png │ ├── brushed_metal.png │ ├── button-hover.png │ ├── button-normal.png │ ├── button-pressed.png │ ├── combob.png │ ├── feed-icon.png │ ├── flash.png │ ├── flashstart.png │ ├── gotoaddress.png │ ├── indtrmd.png │ ├── key.png │ ├── library-bg-left.png │ ├── library-bg-top-right.png │ ├── library-bg-top.png │ ├── library-search-bg.png │ ├── lineedit-bg.png │ ├── lineedit-lib.png │ ├── navigation-addtab.png │ ├── navigation-back.png │ ├── navigation-dropdown.png │ ├── navigation-forward.png │ ├── navigation-home.png │ ├── navigation-reload.png │ ├── navigation-stop.png │ ├── navigation-supermenu.png │ ├── off.png │ ├── off_hvr.png │ ├── on.png │ ├── on_hvr.png │ ├── onglet-plus-interv.png │ ├── onglet-plus.png │ ├── onglets-droit.png │ ├── onglets-gauche.png │ ├── onglets-list-interv.png │ ├── onglets-list.png │ ├── onglets-renouv-interv.png │ ├── onglets-renouv.png │ ├── radoff.png │ ├── radoff_hvr.png │ ├── radon.png │ ├── radon_hvr.png │ ├── search-bar-provider-bg.png │ ├── search-icon.png │ ├── secured-bg.png │ ├── semi-transp.png │ ├── siteicon-bg.png │ ├── siteicon-bgpressed.png │ ├── siteicon-hover.png │ ├── siteicon-secure-bg.png │ ├── siteicon-secure-bgpressed.png │ ├── siteicon-secure-hover.png │ ├── spin_dn.png │ ├── spin_dn_hvr.png │ ├── spin_dn_prsd.png │ ├── spin_up.png │ ├── spin_up_hvr.png │ ├── spin_up_prsd.png │ ├── splitter.png │ ├── star-a.png │ ├── star.png │ ├── tab_close.png │ ├── tab_close_hvr.png │ ├── tab_close_prsd.png │ ├── tab_inctv_close.png │ ├── tab_inctv_close_hvr.png │ ├── tabbar-button-left.png │ ├── tabbar-button-right.png │ ├── tabs-bg.png │ ├── tabwidget-button-addtab.png │ ├── tabwidget-button-closedtabs.png │ ├── tabwidget-button-opentabs.png │ └── transp.png ├── main.css ├── rtl.css ├── theme.info ├── theme.license └── theme.png └── winstripeclassic ├── README.md ├── images ├── Search-glass.png ├── bookmark.png ├── editBookmark.png ├── flash.png ├── flashplay.png ├── go-home.png ├── go-next.png ├── go-previous.png ├── go.png ├── gotoaddress.png ├── key.png ├── library-bg-left.png ├── library-bg-top-right.png ├── library-bg-top.png ├── library-search-bg.png ├── list-add-small.png ├── list-add.png ├── navigation-dropdown.gif ├── preferences-desktop.png ├── process-stop.png ├── rss.png ├── rss.png.png ├── search-icon.png ├── semi-transp.png ├── star-a.png ├── star.png ├── tabs-list-button.png ├── transp.png ├── view-refresh.png └── websearch-bg.gif ├── main.css ├── rtl.css ├── theme.info ├── theme.license └── theme.png /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | DEBIAN 3 | *.deb 4 | *.pro.user 5 | *.autosave 6 | *~ 7 | *.a 8 | *.orig 9 | *.qm 10 | Makefile* 11 | lib*.so* 12 | *.exe 13 | *.dll 14 | *.lib 15 | *.exp 16 | *.zip 17 | Thumbs.db 18 | -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- 1 | [main] 2 | host = https://www.transifex.com 3 | 4 | [qupzilla.copytitle-plugin] 5 | file_filter = plugins/CopyTitle/translations/.ts 6 | source_lang = en 7 | minimum_perc = 60 8 | 9 | [qupzilla.mailhandle-plugin] 10 | file_filter = plugins/MailHandle/translations/.ts 11 | source_lang = en 12 | minimum_perc = 60 13 | 14 | [qupzilla.videoner-plugin] 15 | file_filter = plugins/Videoner/translations/.ts 16 | source_lang = en 17 | minimum_perc = 60 18 | -------------------------------------------------------------------------------- /BUILDING: -------------------------------------------------------------------------------- 1 | General 2 | ---------------------------------------------------------------------------------- 3 | 4 | Building plugins has the same dependencies as application. 5 | 6 | However, there is possibility to build plugins out of main source directory 7 | (src/plugins) 8 | 9 | In order to build plugins this way, you need to specify 2 env variables: 10 | 11 | QUPZILLA_SRCDIR="Full path to QupZilla source" 12 | QUPZILLA_PLUGINS_SRCDIR="Full path to plugins source" 13 | 14 | 15 | QUPZILLA_SRCDIR must point to top source directory 16 | (eg. where src/ or translations/ ... directories are located) 17 | 18 | QUPZILLA_PLUGINS_SRCDIR must point to top plugins directory 19 | (eg. where CopyTitle/ or Videoner/ ... directories are located) 20 | 21 | 22 | Note: If you are using Qt Creator for building, you need to specify these 23 | variables in Projects/Build Environment section 24 | 25 | ********************************************************************************* 26 | All you need to do now is run qmake && make from QupZilla source directory. 27 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | QupZilla Web Browser 2 | ---------------------------------------------------------------------------------------- 3 | 4 | Homepage: [http://www.qupzilla.com](http://www.qupzilla.com) 5 | Blog: [http://blog.qupzilla.com](http://blog.qupzilla.com) 6 | IRC: `#qupzilla` at `irc.freenode.net` 7 | 8 | Building 9 | ---------------------------------------------------------------------------------------- 10 | The easiest way to build external plugins is to copy plugin directories into QupZilla's 11 | source tree (eg. into `src/plugins`). 12 | 13 | You can also build plugins out of the main source tree. In order to do that, you need to 14 | set two environment variables, namely `$QUPZILLA_PLUGINS_SRCDIR and $QUPZILLA_SRCDIR`, 15 | both pointing to the correct directory. 16 | 17 | echo $QUPZILLA_PLUGINS_SRCDIR $QUPZILLA_SRCDIR 18 | 19 | /home/david/Programming/Qt-C++/QupZilla-plugins/plugins 20 | /home/david/Programming/Qt-C++/QupZilla 21 | -------------------------------------------------------------------------------- /plugins/CopyTitle/CopyTitle.pro: -------------------------------------------------------------------------------- 1 | TARGET = $$qtLibraryTarget(CopyTitle) 2 | # OS/2 allows only 8 chars in TARGET 3 | os2: TARGET = CopTitle 4 | 5 | SOURCES += copytitle.cpp 6 | HEADERS += copytitle.h 7 | RESOURCES += copytitle.qrc 8 | 9 | TRANSLATIONS = \ 10 | translations/ar_SA.ts \ 11 | translations/bg_BG.ts \ 12 | translations/ca_ES.ts \ 13 | translations/cs_CZ.ts \ 14 | translations/da_DK.ts \ 15 | translations/de_DE.ts \ 16 | translations/el_GR.ts \ 17 | translations/es_ES.ts \ 18 | translations/es_MX.ts \ 19 | translations/eu_ES.ts \ 20 | translations/fi_FI.ts \ 21 | translations/fr_FR.ts \ 22 | translations/he_IL.ts \ 23 | translations/hr_HR.ts \ 24 | translations/id_ID.ts \ 25 | translations/is.ts \ 26 | translations/it_IT.ts \ 27 | translations/ja_JP.ts \ 28 | translations/lt.ts \ 29 | translations/lv_LV.ts \ 30 | translations/nl_NL.ts \ 31 | translations/pl_PL.ts \ 32 | translations/pt_BR.ts \ 33 | translations/pt_PT.ts \ 34 | translations/ro_RO.ts \ 35 | translations/ru_RU.ts \ 36 | translations/sk_SK.ts \ 37 | translations/sr.ts \ 38 | translations/sr@ijekavian.ts \ 39 | translations/sr@ijekavianlatin.ts \ 40 | translations/sr@latin.ts \ 41 | translations/tr_TR.ts \ 42 | translations/uk_UA.ts \ 43 | translations/zh_CN.ts \ 44 | translations/zh_HK.ts \ 45 | translations/zh_TW.ts 46 | 47 | PLUGIN_DIR = $$PWD 48 | srcdir = $$(QUPZILLA_SRCDIR) 49 | equals(srcdir, "") { 50 | include(../../plugins.pri) 51 | } 52 | else { 53 | include($$srcdir/src/plugins.pri) 54 | } 55 | -------------------------------------------------------------------------------- /plugins/CopyTitle/README.md: -------------------------------------------------------------------------------- 1 | Copy title extension for QupZilla 2 | ------------------------------------------------- 3 | An extension, that will copy the window title into the clipboard. 4 | 5 | ![context](http://i.imgur.com/3ewZIZU.png) 6 | 7 | You will find more information about the configuration and usage of this extension in the [wiki](https://github.com/QupZilla/qupzilla-plugins/wiki/Copy-Title). 8 | -------------------------------------------------------------------------------- /plugins/CopyTitle/copytitle.h: -------------------------------------------------------------------------------- 1 | /* ============================================================ 2 | * QupZilla - WebKit based browser 3 | * Copyright (C) 2010-2014 David Rosca 4 | * Copyright (C) 2012-2014 Mladen Pejaković 5 | * 6 | * This program is free software: you can redistribute it and/or modify 7 | * it under the terms of the GNU General Public License as published by 8 | * the Free Software Foundation, either version 3 of the License, or 9 | * (at your option) any later version. 10 | * 11 | * This program is distributed in the hope that it will be useful, 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program. If not, see . 18 | * ============================================================ */ 19 | #ifndef COPYTITLE_H 20 | #define COPYTITLE_H 21 | 22 | #include "plugininterface.h" 23 | 24 | #include 25 | 26 | class CopyTitle : public QObject, public PluginInterface 27 | { 28 | Q_OBJECT 29 | Q_INTERFACES(PluginInterface) 30 | 31 | #if QT_VERSION >= 0x050000 32 | Q_PLUGIN_METADATA(IID "QupZilla.Browser.plugin.CopyTitle") 33 | #endif 34 | 35 | public: 36 | explicit CopyTitle(); 37 | PluginSpec pluginSpec(); 38 | 39 | void init(InitState state, const QString &settingsPath); 40 | void unload(); 41 | bool testPlugin(); 42 | 43 | QTranslator* getTranslator(const QString &locale); 44 | 45 | void populateWebViewMenu(QMenu* menu, WebView* view, const WebHitTestResult &r); 46 | 47 | private slots: 48 | void copyPageTitle(); 49 | 50 | private: 51 | WebView* m_view; 52 | }; 53 | 54 | #endif // COPYTITLE_H 55 | -------------------------------------------------------------------------------- /plugins/CopyTitle/copytitle.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | data/copytitle.png 4 | locale/ar_SA.qm 5 | locale/bg_BG.qm 6 | locale/ca_ES.qm 7 | locale/cs_CZ.qm 8 | locale/da_DK.qm 9 | locale/de_DE.qm 10 | locale/el_GR.qm 11 | locale/es_ES.qm 12 | locale/es_MX.qm 13 | locale/eu_ES.qm 14 | locale/fi_FI.qm 15 | locale/fr_FR.qm 16 | locale/he_IL.qm 17 | locale/hr_HR.qm 18 | locale/id_ID.qm 19 | locale/is.qm 20 | locale/it_IT.qm 21 | locale/ja_JP.qm 22 | locale/lt.qm 23 | locale/lv_LV.qm 24 | locale/nl_NL.qm 25 | locale/pl_PL.qm 26 | locale/pt_BR.qm 27 | locale/pt_PT.qm 28 | locale/ro_RO.qm 29 | locale/ru_RU.qm 30 | locale/sk_SK.qm 31 | locale/sr.qm 32 | locale/sr@ijekavian.qm 33 | locale/sr@ijekavianlatin.qm 34 | locale/sr@latin.qm 35 | locale/tr_TR.qm 36 | locale/uk_UA.qm 37 | locale/zh_CN.qm 38 | locale/zh_HK.qm 39 | locale/zh_TW.qm 40 | 41 | 42 | -------------------------------------------------------------------------------- /plugins/CopyTitle/data/copytitle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/plugins/CopyTitle/data/copytitle.png -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/ar_SA.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | انسخ عنوان الصفحة 7 | 8 | 9 | Copy Image Name 10 | انسخ اسم الصورة 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/bg_BG.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | Копиране заглавието на страницата 7 | 8 | 9 | Copy Image Name 10 | Копиране името на изображението 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/ca_ES.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | Copia el títol de la pàgina 7 | 8 | 9 | Copy Image Name 10 | Copia el nom de la imatge 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/cs_CZ.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | Kopírovat nadpis stránky 7 | 8 | 9 | Copy Image Name 10 | Kopírovat název obrázku 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/da_DK.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | Kopiér side titel 7 | 8 | 9 | Copy Image Name 10 | Kopier billednavn 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/de_DE.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | Seitentitel kopieren 7 | 8 | 9 | Copy Image Name 10 | Bildnamen kopieren 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/el_GR.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | Αντιγραφή τίτλου σελίδας 7 | 8 | 9 | Copy Image Name 10 | Αντιγραφή ονομασίας εικόνας 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/empty.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CopyTitle 6 | 7 | Copy Page Title 8 | 9 | 10 | 11 | Copy Image Name 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/es_ES.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | Copiar título de página 7 | 8 | 9 | Copy Image Name 10 | Copiar nombre de imagen 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/es_MX.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | Copiar título de página 7 | 8 | 9 | Copy Image Name 10 | Copiar nombre de imagen 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/eu_ES.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | Kopiatu Orrialdearen Izenburua 7 | 8 | 9 | Copy Image Name 10 | Kopiatu Irudiaren Izena 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/fi_FI.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | Kopio sivun otsikko 7 | 8 | 9 | Copy Image Name 10 | Kopioi kuvan nimi 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/fr_FR.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | Copier le titre de la page 7 | 8 | 9 | Copy Image Name 10 | Copier le nom de l'image 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/he_IL.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | העתק כותרת עמוד 7 | 8 | 9 | Copy Image Name 10 | העתק שם תמונה 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/hr_HR.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | Kopiraj naslov stranice 7 | 8 | 9 | Copy Image Name 10 | Kopiraj naziv slike 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/id_ID.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | Salin Judul Halaman 7 | 8 | 9 | Copy Image Name 10 | Salin Nama Gambar 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/is.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | Afrita titil síðu 7 | 8 | 9 | Copy Image Name 10 | Afrita heiti myndar 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/it_IT.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | Copia il titolo della pagina 7 | 8 | 9 | Copy Image Name 10 | Copia il nome dell'immagine 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/ja_JP.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | ページ名のコピー 7 | 8 | 9 | Copy Image Name 10 | 画像の名前をコピー 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/lt.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | Kopijuoti puslapio pavadinimą 7 | 8 | 9 | Copy Image Name 10 | Kopijuoti paveikslo pavadinimą 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/lv_LV.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | Kopēt lapas nosaukumu 7 | 8 | 9 | Copy Image Name 10 | Kopēt attēla nosaukumu 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/nl_NL.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | Paginatitel kopiëren 7 | 8 | 9 | Copy Image Name 10 | Afbeeldingsnaam kopiëren 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/pl_PL.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | Kopiuj tytuł strony 7 | 8 | 9 | Copy Image Name 10 | Kopiuj nazwę obrazka 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/pt_BR.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | Copiar título da página 7 | 8 | 9 | Copy Image Name 10 | Copiar nome da imagem 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/pt_PT.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | Copiar título da página 7 | 8 | 9 | Copy Image Name 10 | Copiar nome da imagem 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/ro_RO.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | Copiere titlu pagină 7 | 8 | 9 | Copy Image Name 10 | Copiere nume imagine 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/ru_RU.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | Копировать заголовок страницы 7 | 8 | 9 | Copy Image Name 10 | Копировать имя изображения 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/sk_SK.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | Kopírovať názov stránky 7 | 8 | 9 | Copy Image Name 10 | Kopírovať názov obrázku 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/sr.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | Копирај наслов странице 7 | 8 | 9 | Copy Image Name 10 | Копирај име слике 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/sr@ijekavian.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | Копирај наслов странице 7 | 8 | 9 | Copy Image Name 10 | Копирај име слике 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/sr@ijekavianlatin.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | Kopiraj naslov stranice 7 | 8 | 9 | Copy Image Name 10 | Kopiraj ime slike 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/sr@latin.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | Kopiraj naslov stranice 7 | 8 | 9 | Copy Image Name 10 | Kopiraj ime slike 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/tr_TR.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | Sayfa Başlığını Kopyala 7 | 8 | 9 | Copy Image Name 10 | Resim Dosyası Adını Kopyala 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/uk_UA.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | Копіювати заголовок сорінки 7 | 8 | 9 | Copy Image Name 10 | Копіювати назву зображення 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/zh_CN.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | 复制页面标题 7 | 8 | 9 | Copy Image Name 10 | 复制图像名称 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/zh_HK.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | 複製頁面標題 7 | 8 | 9 | Copy Image Name 10 | 複製圖像名稱 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/CopyTitle/translations/zh_TW.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | CopyTitle 4 | 5 | Copy Page Title 6 | 複製頁面標題 7 | 8 | 9 | Copy Image Name 10 | 複製影像名稱 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/MailHandle/MailHandle.pro: -------------------------------------------------------------------------------- 1 | # Disabled for QtWebEngine 2 | !QTWEBENGINE_DISABLED { 3 | TEMPLATE = subdirs 4 | } else { 5 | TARGET = $$qtLibraryTarget(MailHandle) 6 | os2: TARGET = MailHandle 7 | 8 | SOURCES = \ 9 | mailhandle_plugin.cpp \ 10 | mailhandle_settings.cpp \ 11 | mailhandle_schemehandler.cpp 12 | 13 | HEADERS = \ 14 | mailhandle_plugin.h \ 15 | mailhandle_settings.h \ 16 | mailhandle_schemehandler.h 17 | 18 | FORMS += \ 19 | mailhandle_settings.ui 20 | 21 | RESOURCES = mailhandle_res.qrc 22 | 23 | TRANSLATIONS = \ 24 | translations/ar_SA.ts \ 25 | translations/bg_BG.ts \ 26 | translations/ca_ES.ts \ 27 | translations/cs_CZ.ts \ 28 | translations/da_DK.ts \ 29 | translations/de_DE.ts \ 30 | translations/el_GR.ts \ 31 | translations/es_ES.ts \ 32 | translations/es_MX.ts \ 33 | translations/eu_ES.ts \ 34 | translations/fr_FR.ts \ 35 | translations/hr_HR.ts \ 36 | translations/id_ID.ts \ 37 | translations/is.ts \ 38 | translations/it_IT.ts \ 39 | translations/ja_JP.ts \ 40 | translations/lt.ts \ 41 | translations/lv_LV.ts \ 42 | translations/nl_NL.ts \ 43 | translations/pl_PL.ts \ 44 | translations/pt_PT.ts \ 45 | translations/ro_RO.ts \ 46 | translations/ru_RU.ts \ 47 | translations/sk_SK.ts \ 48 | translations/sr.ts \ 49 | translations/sr@ijekavian.ts \ 50 | translations/sr@ijekavianlatin.ts \ 51 | translations/sr@latin.ts \ 52 | translations/tr_TR.ts \ 53 | translations/uk_UA.ts \ 54 | translations/zh_CN.ts \ 55 | translations/zh_HK.ts \ 56 | translations/zh_TW.ts \ 57 | 58 | PLUGIN_DIR = $$PWD 59 | srcdir = $$(QUPZILLA_SRCDIR) 60 | equals(srcdir, "") { 61 | include(../../plugins.pri) 62 | } 63 | else { 64 | include($$srcdir/src/plugins.pri) 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /plugins/MailHandle/README.md: -------------------------------------------------------------------------------- 1 | MailHandle extension for QupZilla 2 | ------------------------------------------------- 3 | This extension allows you to handle mailto links on web-pages. 4 | 5 | ![conf2](http://i.imgur.com/HKj1DY9.png) 6 | 7 | You will find more information about the configuration and usage of this extension in the [wiki](https://github.com/QupZilla/qupzilla-plugins/wiki/Mail-Handle). -------------------------------------------------------------------------------- /plugins/MailHandle/TODO: -------------------------------------------------------------------------------- 1 | MailHandle TODO 2 | * load links in new tab (Do we really need this?) 3 | * optimize code in schemehandler.cpp and make it less ugly -------------------------------------------------------------------------------- /plugins/MailHandle/data/README: -------------------------------------------------------------------------------- 1 | MailHandle icon by http://tooschee.com/ 2 | 3 | License: Creative Commons (Attribution 3.0 Unported) -------------------------------------------------------------------------------- /plugins/MailHandle/data/fastmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/plugins/MailHandle/data/fastmail.png -------------------------------------------------------------------------------- /plugins/MailHandle/data/gmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/plugins/MailHandle/data/gmail.png -------------------------------------------------------------------------------- /plugins/MailHandle/data/mailhandle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/plugins/MailHandle/data/mailhandle.png -------------------------------------------------------------------------------- /plugins/MailHandle/data/mailru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/plugins/MailHandle/data/mailru.png -------------------------------------------------------------------------------- /plugins/MailHandle/data/myopera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/plugins/MailHandle/data/myopera.png -------------------------------------------------------------------------------- /plugins/MailHandle/data/outlook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/plugins/MailHandle/data/outlook.png -------------------------------------------------------------------------------- /plugins/MailHandle/data/roundcube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/plugins/MailHandle/data/roundcube.png -------------------------------------------------------------------------------- /plugins/MailHandle/data/tonline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/plugins/MailHandle/data/tonline.png -------------------------------------------------------------------------------- /plugins/MailHandle/data/yahoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/plugins/MailHandle/data/yahoo.png -------------------------------------------------------------------------------- /plugins/MailHandle/data/yandex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/plugins/MailHandle/data/yandex.png -------------------------------------------------------------------------------- /plugins/MailHandle/mailhandle_plugin.h: -------------------------------------------------------------------------------- 1 | /* ============================================================ 2 | * MailHandle plugin for QupZilla 3 | * Copyright (C) 2012-2014 David Rosca 4 | * Copyright (C) 2012-2014 Mladen Pejaković 5 | * 6 | * This program is free software: you can redistribute it and/or modify 7 | * it under the terms of the GNU General Public License as published by 8 | * the Free Software Foundation, either version 3 of the License, or 9 | * (at your option) any later version. 10 | * 11 | * This program is distributed in the hope that it will be useful, 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program. If not, see . 18 | * ============================================================ */ 19 | #ifndef MAILHANDLE_PLUGIN_H 20 | #define MAILHANDLE_PLUGIN_H 21 | 22 | #include 23 | 24 | #include "plugininterface.h" 25 | 26 | class MailHandle_Settings; 27 | class MailHandle_SchemeHandler; 28 | 29 | class MailHandle_Plugin : public QObject, public PluginInterface 30 | { 31 | Q_OBJECT 32 | Q_INTERFACES(PluginInterface) 33 | 34 | #if QT_VERSION >= 0x050000 35 | Q_PLUGIN_METADATA(IID "QupZilla.Browser.plugin.MailHandle") 36 | #endif 37 | 38 | public: 39 | MailHandle_Plugin(); 40 | PluginSpec pluginSpec(); 41 | 42 | void init(InitState state, const QString &settingsPath); 43 | void unload(); 44 | bool testPlugin(); 45 | 46 | QTranslator* getTranslator(const QString &locale); 47 | void showSettings(QWidget* parent = 0); 48 | 49 | private: 50 | QPointer m_settings; 51 | 52 | MailHandle_SchemeHandler* m_schemehandler; 53 | }; 54 | 55 | #endif // MAILHANDLE_PLUGIN_H 56 | -------------------------------------------------------------------------------- /plugins/MailHandle/mailhandle_res.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | data/mailhandle.png 4 | data/gmail.png 5 | data/mailru.png 6 | data/yandex.png 7 | data/outlook.png 8 | data/yahoo.png 9 | data/myopera.png 10 | data/fastmail.png 11 | data/tonline.png 12 | data/roundcube.png 13 | locale/ar_SA.qm 14 | locale/bg_BG.qm 15 | locale/ca_ES.qm 16 | locale/cs_CZ.qm 17 | locale/da_DK.qm 18 | locale/de_DE.qm 19 | locale/el_GR.qm 20 | locale/es_ES.qm 21 | locale/es_MX.qm 22 | locale/eu_ES.qm 23 | locale/fr_FR.qm 24 | locale/hr_HR.qm 25 | locale/id_ID.qm 26 | locale/is.qm 27 | locale/it_IT.qm 28 | locale/ja_JP.qm 29 | locale/lt.qm 30 | locale/lv_LV.qm 31 | locale/nl_NL.qm 32 | locale/pl_PL.qm 33 | locale/pt_PT.qm 34 | locale/ro_RO.qm 35 | locale/ru_RU.qm 36 | locale/sk_SK.qm 37 | locale/sr.qm 38 | locale/sr@ijekavian.qm 39 | locale/sr@ijekavianlatin.qm 40 | locale/sr@latin.qm 41 | locale/tr_TR.qm 42 | locale/uk_UA.qm 43 | locale/zh_CN.qm 44 | locale/zh_HK.qm 45 | locale/zh_TW.qm 46 | 47 | 48 | -------------------------------------------------------------------------------- /plugins/MailHandle/mailhandle_schemehandler.h: -------------------------------------------------------------------------------- 1 | /* ============================================================ 2 | * MailHandle plugin for QupZilla 3 | * Copyright (C) 2012-2014 David Rosca 4 | * Copyright (C) 2012-2014 Mladen Pejaković 5 | * 6 | * This program is free software: you can redistribute it and/or modify 7 | * it under the terms of the GNU General Public License as published by 8 | * the Free Software Foundation, either version 3 of the License, or 9 | * (at your option) any later version. 10 | * 11 | * This program is distributed in the hope that it will be useful, 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program. If not, see . 18 | * ============================================================ */ 19 | 20 | #ifndef MAILHANDLE_SCHEMEHANDLER_H 21 | #define MAILHANDLE_SCHEMEHANDLER_H 22 | 23 | #include 24 | #include 25 | 26 | #include "schemehandlers/schemehandler.h" 27 | 28 | class MailHandle_SchemeHandler : public SchemeHandler 29 | { 30 | public: 31 | MailHandle_SchemeHandler(const QString &settingsPath); 32 | 33 | QString settingsFile(); 34 | void loadSettings(); 35 | 36 | QNetworkReply* createRequest(QNetworkAccessManager::Operation op, const QNetworkRequest &request, QIODevice* outgoingData); 37 | 38 | private: 39 | typedef QPair QueryItem; 40 | void addQueryItem(QUrl &url, const QString &key, const QString &value); 41 | QList getQueryItems(const QUrl &url); 42 | 43 | int m_wservice; 44 | QString m_wspath; 45 | QString m_settingsFile; 46 | }; 47 | 48 | class MailHandle_Reply : public QNetworkReply 49 | { 50 | Q_OBJECT 51 | public: 52 | explicit MailHandle_Reply(const QNetworkRequest &req, QObject* parent = 0); 53 | 54 | void setUrl(const QUrl &url); 55 | qint64 bytesAvailable() const { return 0; } 56 | 57 | protected: 58 | qint64 readData(char* data, qint64 maxSize); 59 | void abort() { } 60 | 61 | private slots: 62 | void delayedFinish(); 63 | 64 | private: 65 | QUrl m_url; 66 | }; 67 | 68 | #endif // MAILHANDLE_SCHEMEHANDLER_H 69 | -------------------------------------------------------------------------------- /plugins/MailHandle/mailhandle_settings.cpp: -------------------------------------------------------------------------------- 1 | /* ============================================================ 2 | * MailHandle plugin for QupZilla 3 | * Copyright (C) 2012-2014 David Rosca 4 | * Copyright (C) 2012-2014 Mladen Pejaković 5 | * 6 | * This program is free software: you can redistribute it and/or modify 7 | * it under the terms of the GNU General Public License as published by 8 | * the Free Software Foundation, either version 3 of the License, or 9 | * (at your option) any later version. 10 | * 11 | * This program is distributed in the hope that it will be useful, 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program. If not, see . 18 | * ============================================================ */ 19 | 20 | #include "mailhandle_settings.h" 21 | #include "ui_mailhandle_settings.h" 22 | #include "mailhandle_schemehandler.h" 23 | 24 | #include 25 | 26 | MailHandle_Settings::MailHandle_Settings(MailHandle_SchemeHandler* schemehandler, QWidget* parent) 27 | : QDialog(parent) 28 | , ui(new Ui::MailHandle_Settings) 29 | , m_schemehandler(schemehandler) 30 | , m_settingsFile(schemehandler->settingsFile()) 31 | { 32 | setAttribute(Qt::WA_DeleteOnClose); 33 | ui->setupUi(this); 34 | 35 | QSettings settings(m_settingsFile, QSettings::IniFormat); 36 | settings.beginGroup("MailHandle"); 37 | ui->mhservice->setCurrentIndex(settings.value("webservice", 0).toInt()); 38 | ui->mhwspath->setText(settings.value("webservicepath", QString()).toString()); 39 | settings.endGroup(); 40 | 41 | mhserviceChanged(ui->mhservice->currentIndex()); 42 | connect(ui->mhservice, SIGNAL(currentIndexChanged(int)), this, SLOT(mhserviceChanged(int))); 43 | connect(this, SIGNAL(accepted()), this, SLOT(dialogAccepted())); 44 | } 45 | 46 | void MailHandle_Settings::dialogAccepted() 47 | { 48 | QSettings settings(m_settingsFile, QSettings::IniFormat); 49 | settings.beginGroup("MailHandle"); 50 | settings.setValue("webservice", ui->mhservice->currentIndex()); 51 | settings.setValue("webservicepath", ui->mhwspath->text()); 52 | settings.endGroup(); 53 | 54 | m_schemehandler->loadSettings(); 55 | } 56 | 57 | void MailHandle_Settings::mhserviceChanged(int value) 58 | { 59 | ui->webservicepath->setEnabled(value == 8); 60 | } 61 | 62 | 63 | MailHandle_Settings::~MailHandle_Settings() 64 | { 65 | delete ui; 66 | } 67 | -------------------------------------------------------------------------------- /plugins/MailHandle/mailhandle_settings.h: -------------------------------------------------------------------------------- 1 | /* ============================================================ 2 | * MailHandle plugin for QupZilla 3 | * Copyright (C) 2012-2014 David Rosca 4 | * Copyright (C) 2012-2014 Mladen Pejaković 5 | * 6 | * This program is free software: you can redistribute it and/or modify 7 | * it under the terms of the GNU General Public License as published by 8 | * the Free Software Foundation, either version 3 of the License, or 9 | * (at your option) any later version. 10 | * 11 | * This program is distributed in the hope that it will be useful, 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program. If not, see . 18 | * ============================================================ */ 19 | #ifndef MAILHANDLE_SETTINGS_H 20 | #define MAILHANDLE_SETTINGS_H 21 | 22 | #include 23 | 24 | namespace Ui 25 | { 26 | class MailHandle_Settings; 27 | } 28 | 29 | class MailHandle_SchemeHandler; 30 | 31 | class MailHandle_Settings : public QDialog 32 | { 33 | Q_OBJECT 34 | 35 | public: 36 | explicit MailHandle_Settings(MailHandle_SchemeHandler* schemehandler, QWidget* parent = 0); 37 | ~MailHandle_Settings(); 38 | 39 | private slots: 40 | void dialogAccepted(); 41 | void mhserviceChanged(int value); 42 | 43 | private: 44 | Ui::MailHandle_Settings* ui; 45 | 46 | MailHandle_SchemeHandler* m_schemehandler; 47 | QString m_settingsFile; 48 | }; 49 | 50 | #endif // MAILHANDLE_SETTINGS_H 51 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/ar_SA.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | إعدادات MailHandle 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">متولٍّ لروابط mailto</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | خدمة الويب المُراد استخدامها: 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.ru 23 | 24 | 25 | Яandex 26 | Яandex 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | Yahoo! 35 | 36 | 37 | My Opera 38 | My Opera 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | أدخل عنوان مزوّد خدمة البريد الإلكتروني على الويب، مثلاً: 56 | https://somewebsite/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | عنوان مزوّد خدمة البريد الإلكترونيّ على الويب: 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/bg_BG.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | МейлМениджър настройки 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Мениджър на mailto“ връзки</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | Уеб услуга, която ще се използва: 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.ru 23 | 24 | 25 | Яandex 26 | Яндекс 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | Yahoo! 35 | 36 | 37 | My Opera 38 | My Opera 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | Въвеждане на уеб адрес на доставчика Ви на уеб поща. Например: 56 | https://somewebsite/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | Уеб адрес на доставчика на уеб поща: 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/ca_ES.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | 11 | 12 | 13 | Web service to use: 14 | Servei web a utilitzar: 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.ru 23 | 24 | 25 | Яandex 26 | Яandex 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | Yahoo! 35 | 36 | 37 | My Opera 38 | 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | Introduïu l'URL del vostre proveïdor del servei web de correu. Per exemple: 56 | https://somewebsite/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | URL del proveïdor del servei web de correu: 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/cs_CZ.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | Nastavení MailHandle 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Správce odkazů mailto</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | Webová služba k použití: 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.ru 23 | 24 | 25 | Яandex 26 | Яandex 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | Yahoo! 35 | 36 | 37 | My Opera 38 | My Opera 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | Zadejte URL poskytovatele služby webového e-mailu. Např.: 56 | https://nejakyweb/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | URL poskytovatele webové služby: 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/da_DK.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | ePosthåndteringsindstillinger 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">ePost-til linkhåndtering</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | Nettjeneste i brug: 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.ru 23 | 24 | 25 | Яandex 26 | Яandex 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | Yahoo! 35 | 36 | 37 | My Opera 38 | Mit Opera 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | Indtast netadressen på din netpostudbyder. For eksempel: 56 | https://somewebsite/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | Netadresse på din netpostudbyder: 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/de_DE.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | MailHandle-Einstellungen 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto-Links-Handler</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | Zu benutzender Webdienst: 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.ru 23 | 24 | 25 | Яandex 26 | Яandex 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | Yahoo! 35 | 36 | 37 | My Opera 38 | My Opera 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | URL Ihres Webmail Service-Providers eingeben. Zum Beispiel: 56 | https://somewebsite/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | URL des Webmail Service-Providers: 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/el_GR.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | Ρυθμίσεις MailHandle 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Διαχειριστής συνδέσμων Mailto</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | Χρήση διαδικτυακής υπηρεσίας: 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.ru 23 | 24 | 25 | Яandex 26 | Яandex 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | Yahoo! 35 | 36 | 37 | My Opera 38 | My Opera 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | Εισαγωγή URL παρόχου σας υπηρεσιών webmail. Για παράδειγμα: 56 | https://somewebsite/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | URL του παρόχου υπηρεσιών webmail 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/empty.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | MailHandle_Settings 6 | 7 | MailHandle Settings 8 | 9 | 10 | 11 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 12 | 13 | 14 | 15 | Web service to use: 16 | 17 | 18 | 19 | Gmail 20 | 21 | 22 | 23 | Mail.ru 24 | 25 | 26 | 27 | Яandex 28 | 29 | 30 | 31 | Outlook 32 | 33 | 34 | 35 | Yahoo! 36 | 37 | 38 | 39 | My Opera 40 | 41 | 42 | 43 | FastMail 44 | 45 | 46 | 47 | T-Online 48 | 49 | 50 | 51 | RoundCube 52 | 53 | 54 | 55 | Enter URL of your webmail service provider. For example: 56 | https://somewebsite/roundcube 57 | 58 | 59 | 60 | URL of the webmail service provider: 61 | 62 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/es_ES.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | Opciones de MailHandle 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Gestor de enlaces de tipo mailto</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | Servicio web a usar: 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.ru 23 | 24 | 25 | Яandex 26 | Яandex 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | Yahoo! 35 | 36 | 37 | My Opera 38 | My Opera 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | Introduce la URL de un proveedor de servicio de correo Web. Por ejemplo: 56 | https://sitioweb/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | URL del proveedor de servicio de correo Web: 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/es_MX.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | Configuración de control de correo 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Control de enlances mailto</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | Servicio web a usar: 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.ru 23 | 24 | 25 | Яandex 26 | Яandex 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | Yahoo! 35 | 36 | 37 | My Opera 38 | My Opera 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | Introduzca la URL del proveedor del servicio de correo electrónico. Por ejemplo: 56 | https://somewebsite/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | URL del proveedor del servicio de correo electrónico: 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/eu_ES.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | Posta-kudeaketa Ezarpenak 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Post@ hona loturen kudeatzailea</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | Erabiltzeko Web zerbitzua: 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.ru 23 | 24 | 25 | Яandex 26 | Яandex 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | Yahoo! 35 | 36 | 37 | My Opera 38 | My Opera 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | Sartu zure webpost@ zerbitzu hornitzailearen URL-a. Adibidez: 56 | https://webgunerenbat/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | Webpost@ zerbitzu hornitzailearen URL-a. 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/fr_FR.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | Paramètres MailHandle 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Gestionnaire de liens d'envoi des e-mails</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | Service web à utiliser : 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.fr 23 | 24 | 25 | Яandex 26 | Яandex 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | Yahoo! 35 | 36 | 37 | My Opera 38 | Mon Opera 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | Veuillez saisir l'URL de votre fournisseur de webmail. Exemple : 56 | https://votre_site/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | URL du fournisseur de webmail : 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/hr_HR.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | Postavke rukovanja poštom 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Rukovatelj poveznicama e-pošte</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | Pružatelj usluge e-pošte: 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.ru 23 | 24 | 25 | Яandex 26 | Яandex 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | Yahoo! 35 | 36 | 37 | My Opera 38 | My Opera 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | Upišite URL vašeg pružatelja usluga e-pošte. Na primjer: 56 | https://somewebsite/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | URL vašeg pružatelja usluga e-pošte: 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/id_ID.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | Pengaturan MailHandle 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Pengolah tautan Mailto</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | Gunakan servis Web: 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.ru 23 | 24 | 25 | Яandex 26 | Яandex 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | Yahoo! 35 | 36 | 37 | My Opera 38 | My Opera 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | Masukkan URL dari provider webmail anda. Contohnya: 56 | https://provider/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | URL dari provider webmail: 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/is.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | Stillingar MailHandle 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Meðhöndlun mailto-tengla</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | Vefþjónusta sem á að nota: 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.ru 23 | 24 | 25 | Яandex 26 | Яandex 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | Yahoo! 35 | 36 | 37 | My Opera 38 | My Opera 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | Settu inn slóð á internetþjónustu fyrir vefpóst. Til dæmis: 56 | https://einhvervefur.is/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | Slóð á internetþjónustu fyrir vefpóst: 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/it_IT.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | Impostazioni di MailHandle 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Gestore di collegamenti mailto</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | Servizio Web da utilizzare: 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.ru 23 | 24 | 25 | Яandex 26 | Яandex 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | Yahoo! 35 | 36 | 37 | My Opera 38 | My Opera 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | Inserisci l'indirizzo del tuo provider webmail. Per esempio: 56 | https://somewebsite/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | Indirizzo del provider webmail: 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/ja_JP.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | MailHandle の設定 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | 11 | 12 | 13 | Web service to use: 14 | 使用するWebサービス: 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.ru 23 | 24 | 25 | Яandex 26 | Яandex 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | Yahoo! 35 | 36 | 37 | My Opera 38 | My Opera 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | 56 | 57 | 58 | URL of the webmail service provider: 59 | 60 | 61 | 62 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/lt.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | MailHandle nustatymai 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto nuorodų doroklė</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | Saityno paslauga, kurią naudoti: 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.ru 23 | 24 | 25 | Яandex 26 | Яandex 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | Yahoo! 35 | 36 | 37 | My Opera 38 | My Opera 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | Įveskite savo saityno pašto paslaugos tiekėjo URL. Pavyzdžiui: 56 | https://kazkokiasvetaine/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | Saityno pašto paslaugos tiekėjo URL: 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/lv_LV.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | MailHandle iestatījumi 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto saišu pārvaldnieks</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | Izmantojamie tīmekļa servisi: 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.ru 23 | 24 | 25 | Яandex 26 | Яandex 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | Yahoo! 35 | 36 | 37 | My Opera 38 | My Opera 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | Ievadiet sava e-pasta servisa uzturētāja adresi. Piemēram: 56 | https://kādalapa/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | E-pasta servisa piegādātāja adrese: 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/nl_NL.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | E-mailbehandeling-instellingen 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto-links-behandelaar</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | Webdienst om te gebruiken: 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.ru 23 | 24 | 25 | Яandex 26 | Яandex 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | Yahoo! 35 | 36 | 37 | My Opera 38 | My Opera 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | Voer de URL in van uw webmaildienst, bijv.: 56 | https://eenwebsite/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | URL van de webmaildienst 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/pl_PL.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | Ustawienia MailHandle 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Przechwytywacz adresów mailowych</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | Serwis internetowy do użycia: 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.ru 23 | 24 | 25 | Яandex 26 | Yandex 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | Yahoo! 35 | 36 | 37 | My Opera 38 | Moja Opera 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | Wpisz adres URL Twojego usługodawcy poczty internetowej. Na przykład: 56 | https://somewebsite/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | Adres URL usługodawcy poczty internetowej: 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/pt_PT.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | Definições 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Gestor de ligações mailto</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | Serviço web a utilizar: 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.ru 23 | 24 | 25 | Яandex 26 | Yandex 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | Yahoo! 35 | 36 | 37 | My Opera 38 | My Opera 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | Introduza o URL do serviço web. Por exemplo: 56 | https://website/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | URL do serviço web de correio: 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/ro_RO.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | Configurări MailHandle 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Operator legături mailto</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | Serviciu web utilizat: 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.ru 23 | 24 | 25 | Яandex 26 | Яandex 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | Yahoo! 35 | 36 | 37 | My Opera 38 | My Opera 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | Introduceți URL-ul furnizorului de serviciu webmail. De exemplu: 56 | https://somewebsite/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | URL furnizor serviciu webmail: 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/ru_RU.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | Настройки почтового обработчика 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Обработчик почтовых ссылок</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | Используемая служба: 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.ru 23 | 24 | 25 | Яandex 26 | Яндекс 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | Yahoo! 35 | 36 | 37 | My Opera 38 | My Opera 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | Введите URL вашего провайдера электронной почты. Например: 56 | https://somewebsite/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | URL вашего провайдера услуг электронной почты: 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/sk_SK.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | Nastavenia obsluhovača mailov 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Obsluhovač mailto odkazov</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | Použiť webovú službu: 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.ru 23 | 24 | 25 | Яandex 26 | Яandex 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | Yahoo! 35 | 36 | 37 | My Opera 38 | My Opera 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | Vložte URL adresu Vašeho emailového poskytovateľa. Napríklad: 56 | https://somewebsite/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | URL adresa emailového poskytovateľa: 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/sr.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | Поставке Руковаоца поште 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Руковалац везама е-поште</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | Веб сервис е-поште: 15 | 16 | 17 | Gmail 18 | ГМејл 19 | 20 | 21 | Mail.ru 22 | Мејл.ру 23 | 24 | 25 | Яandex 26 | Јандекс 27 | 28 | 29 | Outlook 30 | Аутлук 31 | 32 | 33 | Yahoo! 34 | Јаху! 35 | 36 | 37 | My Opera 38 | Моја Опера 39 | 40 | 41 | FastMail 42 | Фастмејл 43 | 44 | 45 | T-Online 46 | Т-онлајн 47 | 48 | 49 | RoundCube 50 | РаундКјуб 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | Унесите УРЛ даваоца услуге веб поште. На пример: 56 | https://nekivebsajt/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | УРЛ даваоца услуге веб поште: 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/sr@ijekavian.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | Поставке Руковаоца поште 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Руковалац везама е-поште</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | Веб сервис е-поште: 15 | 16 | 17 | Gmail 18 | ГМејл 19 | 20 | 21 | Mail.ru 22 | Мејл.ру 23 | 24 | 25 | Яandex 26 | Јандекс 27 | 28 | 29 | Outlook 30 | Аутлук 31 | 32 | 33 | Yahoo! 34 | Јаху! 35 | 36 | 37 | My Opera 38 | Моја Опера 39 | 40 | 41 | FastMail 42 | Фастмејл 43 | 44 | 45 | T-Online 46 | Т-онлајн 47 | 48 | 49 | RoundCube 50 | РаундКјуб 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | Унесите УРЛ даваоца услуге веб поште. На примјер: 56 | https://nekivebsajt/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | УРЛ даваоца услуге веб поште: 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/sr@ijekavianlatin.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | Postavke rukovaoca pošte 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Rukovalac vezama e-pošte</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | Veb servis e-pošte: 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.ru 23 | 24 | 25 | Яandex 26 | Яandex 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | Yahoo! 35 | 36 | 37 | My Opera 38 | My Opera 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | Unesite URL davaoca usluge veb pošte. Na primjer: 56 | https://nekivebsajt/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | URL davaoca usluge veb pošte: 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/sr@latin.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | Postavke rukovaoca pošte 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Rukovalac vezama e-pošte</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | Veb servis e-pošte: 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.ru 23 | 24 | 25 | Яandex 26 | Яandex 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | Yahoo! 35 | 36 | 37 | My Opera 38 | My Opera 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | Unesite URL davaoca usluge veb pošte. Na primer: 56 | https://nekivebsajt/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | URL davaoca usluge veb pošte: 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/tr_TR.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | MailHandle Ayarları 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto bağlantıları yöneticisi</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | Kullanılacak Web Servisi: 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.ru 23 | 24 | 25 | Яandex 26 | Yandex 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | Yahoo! 35 | 36 | 37 | My Opera 38 | My Opera 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | E-Posta servis sağlayıcısının URL'sini girin. Örneğin: 56 | https://birwebsite/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | E-Posta servis sağlayıcısının URL'si: 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/uk_UA.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | Налаштування підтримувача пошти 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Обробник посилань mailto</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | Вживаний веб-сервіс: 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.ru 23 | 24 | 25 | Яandex 26 | Яandex 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | Yahoo! 35 | 36 | 37 | My Opera 38 | My Opera 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | Введіть URL-адресу вашого постачальника веб-пошти. Наприклад: 56 | https://somewebsite/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | URL-адреса постачальника веб-пошти: 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/zh_CN.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | MailHandle 设置 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto 链接手柄</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | 要使用的互联网服务: 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.ru 23 | 24 | 25 | Яandex 26 | Яandex 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | Yahoo! 35 | 36 | 37 | My Opera 38 | My Opera 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | 输入电子邮件提供者的 URL。比如: 56 | https://somewebsite/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | 电子邮件服务提供者 URL: 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/zh_HK.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | 設定網絡電郵 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">設定網絡電郵</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | 使用的網絡服務: 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.ru 23 | 24 | 25 | Яandex 26 | Яandex 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | 雅虎 35 | 36 | 37 | My Opera 38 | My Opera 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | 輸入網絡電郵提供者的網址。例如: 56 | https://somewebsite/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | 網絡電郵提供者的網址: 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/MailHandle/translations/zh_TW.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailHandle_Settings 4 | 5 | MailHandle Settings 6 | MailHandle 設定 7 | 8 | 9 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto links handler</span></p></body></html> 10 | <html><head/><body><p><span style=" font-size:x-large; font-weight:600;">Mailto 連結處理器</span></p></body></html> 11 | 12 | 13 | Web service to use: 14 | 使用的網路服務: 15 | 16 | 17 | Gmail 18 | Gmail 19 | 20 | 21 | Mail.ru 22 | Mail.ru 23 | 24 | 25 | Яandex 26 | Яandex 27 | 28 | 29 | Outlook 30 | Outlook 31 | 32 | 33 | Yahoo! 34 | Yahoo! 35 | 36 | 37 | My Opera 38 | My Opera 39 | 40 | 41 | FastMail 42 | FastMail 43 | 44 | 45 | T-Online 46 | T-Online 47 | 48 | 49 | RoundCube 50 | RoundCube 51 | 52 | 53 | Enter URL of your webmail service provider. For example: 54 | https://somewebsite/roundcube 55 | 輸入您網路郵件服務提供者的 URL。例子: 56 | https://somewebsite/roundcube 57 | 58 | 59 | URL of the webmail service provider: 60 | 網路郵件服務提供者的 URL: 61 | 62 | 63 | -------------------------------------------------------------------------------- /plugins/Readability/README.md: -------------------------------------------------------------------------------- 1 | Readability plugin for QupZilla 2 | ------------------------------------------------- 3 | This plugin allows modify web page to easily reading. 4 | 5 | ![example](http://i.imgur.com/SnQNfQl.png) 6 | 7 | You will find more information about usage of this plugin in the [wiki](https://github.com/QupZilla/qupzilla-plugins/wiki/Readability). 8 | -------------------------------------------------------------------------------- /plugins/Readability/Readability.pro: -------------------------------------------------------------------------------- 1 | TARGET = $$qtLibraryTarget(ReadabilityPlugin) 2 | 3 | SOURCES += readability.cpp 4 | HEADERS += readability.h 5 | RESOURCES += readability.qrc 6 | 7 | 8 | PLUGIN_DIR = $$PWD 9 | srcdir = $$(QUPZILLA_SRCDIR) 10 | equals(srcdir, "") { 11 | include(../../plugins.pri) 12 | } 13 | else { 14 | include($$srcdir/src/plugins.pri) 15 | } 16 | -------------------------------------------------------------------------------- /plugins/Readability/data/RM-Delete-24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/plugins/Readability/data/RM-Delete-24x24.png -------------------------------------------------------------------------------- /plugins/Readability/data/RM-Minus-24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/plugins/Readability/data/RM-Minus-24x24.png -------------------------------------------------------------------------------- /plugins/Readability/data/RM-Plus-24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/plugins/Readability/data/RM-Plus-24x24.png -------------------------------------------------------------------------------- /plugins/Readability/data/RM-Type-Controls-24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/plugins/Readability/data/RM-Type-Controls-24x24.png -------------------------------------------------------------------------------- /plugins/Readability/data/RM-Type-Controls-Arrow.png: -------------------------------------------------------------------------------- 1 | data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCEtLSBUaGlzIFNvdXJjZSBDb2RlIEZvcm0gaXMgc3ViamVjdCB0byB0aGUgdGVybXMgb2YgdGhlIE1vemlsbGEgUHVibGljCiAgIC0gTGljZW5zZSwgdi4gMi4wLiBJZiBhIGNvcHkgb2YgdGhlIE1QTCB3YXMgbm90IGRpc3RyaWJ1dGVkIHdpdGggdGhpcwogICAtIGZpbGUsIFlvdSBjYW4gb2J0YWluIG9uZSBhdCBodHRwOi8vbW96aWxsYS5vcmcvTVBMLzIuMC8uIC0tPgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cG9seWdvbiBvcGFjaXR5PSIwLjE1IiBwb2ludHM9IjE2LjU4MywwLjAxNSAxNi41NjksMCA0LjU4MywxMiAxNi41NjksMjQgMTYuNTgzLDIzLjk4NSIvPgogIDxwb2x5Z29uIGZpbGw9IiNmYmZiZmIiIHBvaW50cz0iMTYuNTc1LDEuMDIxIDE2LjU2MSwxLjAwOCA1LjU4MywxMiAxNi41NzcsMjMuMDA4IDE2LjU5MSwyMi45OTQgIi8+Cjwvc3ZnPg== -------------------------------------------------------------------------------- /plugins/Readability/data/RM-close-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/plugins/Readability/data/RM-close-hover.png -------------------------------------------------------------------------------- /plugins/Readability/data/RM-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/plugins/Readability/data/RM-close.png -------------------------------------------------------------------------------- /plugins/Readability/data/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/plugins/Readability/data/icon.png -------------------------------------------------------------------------------- /plugins/Readability/readability.h: -------------------------------------------------------------------------------- 1 | /* ============================================================ 2 | * QupZilla - WebKit based browser 3 | * Copyright (C) 2016 Jaroslav Bambas 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | * ============================================================ */ 18 | #ifndef READABILITYPLUGIN_H 19 | #define READABILITYPLUGIN_H 20 | 21 | #include "plugininterface.h" 22 | #include 23 | #include 24 | #include 25 | #include 26 | 27 | class ReadabilityPlugin : public QObject, public PluginInterface 28 | { 29 | Q_OBJECT 30 | Q_INTERFACES(PluginInterface) 31 | Q_PLUGIN_METADATA(IID "QupZilla.Browser.plugin.ReadabilityPlugin") 32 | 33 | public: 34 | explicit ReadabilityPlugin(); 35 | PluginSpec pluginSpec(); 36 | 37 | void init(InitState state, const QString &settingsPath); 38 | void unload(); 39 | bool testPlugin(); 40 | 41 | QTranslator* getTranslator(const QString &locale); 42 | void populateWebViewMenu(QMenu* menu, WebView* view, const WebHitTestResult &r); 43 | 44 | private slots: 45 | void makeReadability(); 46 | 47 | private: 48 | QString m_settingsPath; 49 | WebView* m_view; 50 | }; 51 | 52 | #endif // READABILITYPLUGIN_H 53 | -------------------------------------------------------------------------------- /plugins/Readability/readability.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | data/Readability.js 4 | data/Call.js 5 | data/Toolbar.js 6 | data/style.css 7 | data/icon.png 8 | data/RM-close.png 9 | data/RM-close-hover.png 10 | data/RM-Minus-24x24.png 11 | data/RM-Plus-24x24.png 12 | data/RM-Type-Controls-24x24.png 13 | data/RM-Type-Controls-Arrow.png 14 | data/RM-Delete-24x24.png 15 | 16 | 17 | -------------------------------------------------------------------------------- /plugins/Videoner/README.md: -------------------------------------------------------------------------------- 1 | Videoner extension for QupZilla 2 | ------------------------------------------------- 3 | This extension allows you to open links in video sharing platforms in an external program. 4 | 5 | ![yt1](http://i.imgur.com/vgtKUCJ.png) 6 | 7 | You will find more information about the configuration and usage of this extension in the [wiki](https://github.com/QupZilla/qupzilla-plugins/wiki/Videoner). -------------------------------------------------------------------------------- /plugins/Videoner/Videoner.pro: -------------------------------------------------------------------------------- 1 | TARGET = $$qtLibraryTarget(Videoner) 2 | os2: TARGET = Videoner 3 | 4 | SOURCES = \ 5 | videoner_plugin.cpp \ 6 | videoner_handler.cpp \ 7 | videoner_settings.cpp 8 | 9 | HEADERS = \ 10 | videoner_plugin.h \ 11 | videoner_handler.h \ 12 | videoner_settings.h 13 | 14 | FORMS += \ 15 | videoner_settings.ui 16 | 17 | RESOURCES = videoner_res.qrc 18 | 19 | TRANSLATIONS = \ 20 | translations/ar_SA.ts \ 21 | translations/bg_BG.ts \ 22 | translations/ca_ES.ts \ 23 | translations/cs_CZ.ts \ 24 | translations/de_DE.ts \ 25 | translations/el_GR.ts \ 26 | translations/es_ES.ts \ 27 | translations/es_MX.ts \ 28 | translations/es_VE.ts \ 29 | translations/eu_ES.ts \ 30 | translations/fa_IR.ts \ 31 | translations/fi_FI.ts \ 32 | translations/fr_FR.ts \ 33 | translations/gl_ES.ts \ 34 | translations/he_IL.ts \ 35 | translations/hr_HR.ts \ 36 | translations/id_ID.ts \ 37 | translations/is.ts \ 38 | translations/it_IT.ts \ 39 | translations/ja_JP.ts \ 40 | translations/lt.ts \ 41 | translations/lv_LV.ts \ 42 | translations/nl_NL.ts \ 43 | translations/nqo.ts \ 44 | translations/pl_PL.ts \ 45 | translations/pt_PT.ts \ 46 | translations/ro_RO.ts \ 47 | translations/ru_RU.ts \ 48 | translations/sk_SK.ts \ 49 | translations/sr.ts \ 50 | translations/sr@ijekavian.ts \ 51 | translations/sr@ijekavianlatin.ts \ 52 | translations/sr@latin.ts \ 53 | translations/tr_TR.ts \ 54 | translations/uk_UA.ts \ 55 | translations/uz@Cyrl.ts \ 56 | translations/uz@Latn.ts \ 57 | translations/zh_CN.ts \ 58 | translations/zh_HK.ts \ 59 | translations/zh_TW.ts \ 60 | 61 | PLUGIN_DIR = $$PWD 62 | srcdir = $$(QUPZILLA_SRCDIR) 63 | equals(srcdir, "") { 64 | include(../../plugins.pri) 65 | } 66 | else { 67 | include($$srcdir/src/plugins.pri) 68 | } 69 | -------------------------------------------------------------------------------- /plugins/Videoner/data/videoner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/plugins/Videoner/data/videoner.png -------------------------------------------------------------------------------- /plugins/Videoner/videoner_handler.h: -------------------------------------------------------------------------------- 1 | /* ============================================================ 2 | * Videoner plugin for QupZilla 3 | * Copyright (C) 2012-2014 David Rosca 4 | * Copyright (C) 2012-2014 Mladen Pejaković 5 | * 6 | * This program is free software: you can redistribute it and/or modify 7 | * it under the terms of the GNU General Public License as published by 8 | * the Free Software Foundation, either version 3 of the License, or 9 | * (at your option) any later version. 10 | * 11 | * This program is distributed in the hope that it will be useful, 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program. If not, see . 18 | * ============================================================ */ 19 | #ifndef VIDEONER_HANDLER_H 20 | #define VIDEONER_HANDLER_H 21 | 22 | #include 23 | #include 24 | #include 25 | #include 26 | #include 27 | #include 28 | 29 | class QMouseEvent; 30 | class QLabel; 31 | class WebView; 32 | class WebHitTestResult; 33 | 34 | class Videoner_Handler : public QObject 35 | { 36 | Q_OBJECT 37 | public: 38 | explicit Videoner_Handler(const QString &sPath, QObject* parent = 0); 39 | 40 | QString settingsFile(); 41 | void loadSettings(); 42 | void populateWebViewMenu(QMenu* menu, WebView* view, const WebHitTestResult &r); 43 | 44 | signals: 45 | 46 | public slots: 47 | 48 | private slots: 49 | void startExternalHandler(); 50 | void startExternalHandlerYt(); 51 | void startExternalHandlerMed(); 52 | 53 | private: 54 | QPointer m_view; 55 | 56 | bool m_sepyth; 57 | bool m_pageyt; 58 | bool m_pagevm; 59 | bool m_pagell; 60 | bool m_pagemc; 61 | bool m_pagedm; 62 | bool m_pagefa; 63 | bool m_pagebr; 64 | bool m_pagehu; 65 | bool m_medel; 66 | bool m_sepmedel; 67 | 68 | QString m_extExe; 69 | QString m_extArgs; 70 | QString m_extExeYt; 71 | QString m_extArgsYt; 72 | QString m_extExeMed; 73 | QString m_extArgsMed; 74 | QString m_settingsFile; 75 | }; 76 | 77 | #endif // VIDEONER_HANDLER_H 78 | -------------------------------------------------------------------------------- /plugins/Videoner/videoner_plugin.cpp: -------------------------------------------------------------------------------- 1 | /* ============================================================ 2 | * Videoner plugin for QupZilla 3 | * Copyright (C) 2012-2014 David Rosca 4 | * Copyright (C) 2012-2014 Mladen Pejaković 5 | * 6 | * This program is free software: you can redistribute it and/or modify 7 | * it under the terms of the GNU General Public License as published by 8 | * the Free Software Foundation, either version 3 of the License, or 9 | * (at your option) any later version. 10 | * 11 | * This program is distributed in the hope that it will be useful, 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program. If not, see . 18 | * ============================================================ */ 19 | #include "videoner_plugin.h" 20 | #include "videoner_handler.h" 21 | #include "videoner_settings.h" 22 | #include "mainapplication.h" 23 | #include "pluginproxy.h" 24 | #include "browserwindow.h" 25 | 26 | #include 27 | 28 | Videoner_Plugin::Videoner_Plugin() 29 | : QObject() 30 | , m_handler(0) 31 | { 32 | } 33 | 34 | PluginSpec Videoner_Plugin::pluginSpec() 35 | { 36 | PluginSpec spec; 37 | spec.name = "Videoner"; 38 | spec.info = "Video links handler"; 39 | spec.description = "Open video links from video sharing services in external program"; 40 | spec.version = "0.2.0"; 41 | spec.author = QString::fromUtf8("Mladen Pejaković "); 42 | spec.icon = QPixmap(":/videoner/data/videoner.png"); 43 | spec.hasSettings = true; 44 | 45 | return spec; 46 | } 47 | 48 | void Videoner_Plugin::init(InitState state, const QString &settingsPath) 49 | { 50 | Q_UNUSED(state) 51 | 52 | m_handler = new Videoner_Handler(settingsPath, this); 53 | } 54 | 55 | void Videoner_Plugin::unload() 56 | { 57 | delete m_settings.data(); 58 | m_handler->deleteLater(); 59 | } 60 | 61 | bool Videoner_Plugin::testPlugin() 62 | { 63 | // Require the version that the plugin was built with 64 | return (Qz::VERSION == QLatin1String(QUPZILLA_VERSION)); 65 | } 66 | 67 | QTranslator* Videoner_Plugin::getTranslator(const QString &locale) 68 | { 69 | QTranslator* translator = new QTranslator(this); 70 | translator->load(locale, ":/videoner/locale/"); 71 | return translator; 72 | } 73 | 74 | void Videoner_Plugin::showSettings(QWidget* parent) 75 | { 76 | if (!m_settings) { 77 | m_settings = new Videoner_Settings(m_handler, parent); 78 | } 79 | 80 | m_settings.data()->show(); 81 | m_settings.data()->raise(); 82 | } 83 | 84 | void Videoner_Plugin::populateWebViewMenu(QMenu* menu, WebView* view, const WebHitTestResult &r) 85 | { 86 | m_handler->populateWebViewMenu(menu, view, r); 87 | } 88 | 89 | #if QT_VERSION < 0x050000 90 | Q_EXPORT_PLUGIN2(Videoner, Videoner_Plugin) 91 | #endif 92 | -------------------------------------------------------------------------------- /plugins/Videoner/videoner_plugin.h: -------------------------------------------------------------------------------- 1 | /* ============================================================ 2 | * Videoner plugin for QupZilla 3 | * Copyright (C) 2012-2014 David Rosca 4 | * Copyright (C) 2012-2014 Mladen Pejaković 5 | * 6 | * This program is free software: you can redistribute it and/or modify 7 | * it under the terms of the GNU General Public License as published by 8 | * the Free Software Foundation, either version 3 of the License, or 9 | * (at your option) any later version. 10 | * 11 | * This program is distributed in the hope that it will be useful, 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program. If not, see . 18 | * ============================================================ */ 19 | #ifndef VIDEONER_PLUGIN_H 20 | #define VIDEONER_PLUGIN_H 21 | 22 | #include 23 | 24 | #include "plugininterface.h" 25 | 26 | class Videoner_Handler; 27 | class Videoner_Settings; 28 | 29 | class Videoner_Plugin : public QObject, public PluginInterface 30 | { 31 | Q_OBJECT 32 | Q_INTERFACES(PluginInterface) 33 | 34 | #if QT_VERSION >= 0x050000 35 | Q_PLUGIN_METADATA(IID "QupZilla.Browser.plugin.Videoner") 36 | #endif 37 | 38 | public: 39 | Videoner_Plugin(); 40 | PluginSpec pluginSpec(); 41 | 42 | void init(InitState state, const QString &settingsPath); 43 | void unload(); 44 | bool testPlugin(); 45 | 46 | QTranslator* getTranslator(const QString &locale); 47 | void showSettings(QWidget* parent = 0); 48 | 49 | void populateWebViewMenu(QMenu* menu, WebView* view, const WebHitTestResult &r); 50 | 51 | private: 52 | QPointer m_settings; 53 | Videoner_Handler* m_handler; 54 | }; 55 | 56 | #endif // VIDEONER_PLUGIN_H 57 | -------------------------------------------------------------------------------- /plugins/Videoner/videoner_res.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | data/videoner.png 4 | locale/ar_SA.qm 5 | locale/bg_BG.qm 6 | locale/ca_ES.qm 7 | locale/cs_CZ.qm 8 | locale/de_DE.qm 9 | locale/el_GR.qm 10 | locale/es_ES.qm 11 | locale/es_MX.qm 12 | locale/es_VE.qm 13 | locale/eu_ES.qm 14 | locale/fa_IR.qm 15 | locale/fi_FI.qm 16 | locale/fr_FR.qm 17 | locale/gl_ES.qm 18 | locale/he_IL.qm 19 | locale/hr_HR.qm 20 | locale/id_ID.qm 21 | locale/is.qm 22 | locale/it_IT.qm 23 | locale/ja_JP.qm 24 | locale/lt.qm 25 | locale/lv_LV.qm 26 | locale/nl_NL.qm 27 | locale/nqo.qm 28 | locale/pl_PL.qm 29 | locale/pt_PT.qm 30 | locale/ro_RO.qm 31 | locale/ru_RU.qm 32 | locale/sk_SK.qm 33 | locale/sr.qm 34 | locale/sr@ijekavian.qm 35 | locale/sr@ijekavianlatin.qm 36 | locale/sr@latin.qm 37 | locale/tr_TR.qm 38 | locale/uk_UA.qm 39 | locale/uz@Cyrl.qm 40 | locale/uz@Latn.qm 41 | locale/zh_CN.qm 42 | locale/zh_HK.qm 43 | locale/zh_TW.qm 44 | 45 | 46 | -------------------------------------------------------------------------------- /plugins/Videoner/videoner_settings.h: -------------------------------------------------------------------------------- 1 | /* ============================================================ 2 | * Videoner plugin for QupZilla 3 | * Copyright (C) 2012-2014 David Rosca 4 | * Copyright (C) 2012-2014 Mladen Pejaković 5 | * 6 | * This program is free software: you can redistribute it and/or modify 7 | * it under the terms of the GNU General Public License as published by 8 | * the Free Software Foundation, either version 3 of the License, or 9 | * (at your option) any later version. 10 | * 11 | * This program is distributed in the hope that it will be useful, 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program. If not, see . 18 | * ============================================================ */ 19 | #ifndef VIDEONER_SETTINGS_H 20 | #define VIDEONER_SETTINGS_H 21 | 22 | #include 23 | 24 | namespace Ui 25 | { 26 | class Videoner_Settings; 27 | } 28 | 29 | class Videoner_Handler; 30 | 31 | class Videoner_Settings : public QDialog 32 | { 33 | Q_OBJECT 34 | 35 | public: 36 | explicit Videoner_Settings(Videoner_Handler* handler, QWidget* parent = 0); 37 | ~Videoner_Settings(); 38 | 39 | private slots: 40 | void chooseExternalApp(); 41 | void chooseExternalAppYt(); 42 | void chooseExternalAppMed(); 43 | void dialogAccepted(); 44 | 45 | void enableYouTubeChanged(bool state); 46 | void enableMediaElChanged(bool state); 47 | private: 48 | Ui::Videoner_Settings* ui; 49 | 50 | Videoner_Handler* m_handler; 51 | QString m_settingsFile; 52 | }; 53 | 54 | #endif // VIDEONER_SETTINGS_H 55 | -------------------------------------------------------------------------------- /scripts/coding_style.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # Requirements: 4 | # astyle >=2.02 5 | # 6 | 7 | function format_sources { 8 | astyle --indent=spaces=4 --style=1tbs \ 9 | --indent-labels --pad-oper --unpad-paren --pad-header \ 10 | --convert-tabs --indent-preprocessor --break-closing-brackets \ 11 | --align-pointer=type --align-reference=name \ 12 | `find -type f -name '*.cpp'` 13 | 14 | find . -name "*.orig" -print0 | xargs -0 rm -rf 15 | } 16 | 17 | function format_headers { 18 | astyle --indent=spaces=4 --style=linux \ 19 | --indent-labels --pad-oper --unpad-paren --pad-header \ 20 | --keep-one-line-statements --keep-one-line-blocks \ 21 | --indent-preprocessor --convert-tabs \ 22 | --align-pointer=type --align-reference=name \ 23 | `find -type f -name '*.h'` 24 | 25 | find . -name "*.orig" -print0 | xargs -0 rm -rf 26 | } 27 | 28 | cd ../ 29 | echo "running astyle for *.cpp ..." 30 | format_sources 31 | 32 | echo "running astyle for *.h ..." 33 | format_headers 34 | 35 | read -p "Press [ENTER] to close terminal" 36 | exit 37 | -------------------------------------------------------------------------------- /scripts/cppcheck.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # cppcheck 4 | # 5 | 6 | function check_code { 7 | cppcheck \ 8 | --enable=all \ 9 | --force \ 10 | --verbose \ 11 | . > /dev/null 12 | } 13 | 14 | echo "cppcheck..." 15 | 16 | cd ../ 17 | check_code 18 | 19 | read -p "Press [ENTER] to close terminal" 20 | exit 21 | -------------------------------------------------------------------------------- /scripts/update_translations.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd ../plugins 4 | 5 | for pluginPro in */*.pro 6 | do 7 | lupdate $pluginPro -no-obsolete -ts $pluginPro/../translations/empty.ts 8 | done 9 | 10 | read -p "Press [ENTER] to close terminal" 11 | exit 12 | -------------------------------------------------------------------------------- /themes/breathe/README.md: -------------------------------------------------------------------------------- 1 | Breathe theme for QupZilla 2 | ========================== 3 | 4 | The Breathe theme strictly uses the Oxygen icon set. It is mostly based on Default Linux theme by David Rosca. This theme is included in the QupZilla tarball. 5 | 6 | Screenshot: 7 | ![breathe](http://i.imgur.com/2Q6jSPz.png) -------------------------------------------------------------------------------- /themes/breathe/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/add.png -------------------------------------------------------------------------------- /themes/breathe/images/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/find.png -------------------------------------------------------------------------------- /themes/breathe/images/flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/flash.png -------------------------------------------------------------------------------- /themes/breathe/images/flashstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/flashstart.png -------------------------------------------------------------------------------- /themes/breathe/images/goto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/goto.png -------------------------------------------------------------------------------- /themes/breathe/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/home.png -------------------------------------------------------------------------------- /themes/breathe/images/library-bg-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/library-bg-left.png -------------------------------------------------------------------------------- /themes/breathe/images/library-bg-top-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/library-bg-top-right.png -------------------------------------------------------------------------------- /themes/breathe/images/library-bg-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/library-bg-top.png -------------------------------------------------------------------------------- /themes/breathe/images/library-search-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/library-search-bg.png -------------------------------------------------------------------------------- /themes/breathe/images/lineedit-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/lineedit-bg.png -------------------------------------------------------------------------------- /themes/breathe/images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/login.png -------------------------------------------------------------------------------- /themes/breathe/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/menu.png -------------------------------------------------------------------------------- /themes/breathe/images/navigation-dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/navigation-dropdown.png -------------------------------------------------------------------------------- /themes/breathe/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/next.png -------------------------------------------------------------------------------- /themes/breathe/images/previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/previous.png -------------------------------------------------------------------------------- /themes/breathe/images/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/reload.png -------------------------------------------------------------------------------- /themes/breathe/images/restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/restore.png -------------------------------------------------------------------------------- /themes/breathe/images/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/rss.png -------------------------------------------------------------------------------- /themes/breathe/images/semi-transp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/semi-transp.png -------------------------------------------------------------------------------- /themes/breathe/images/siteicon-bg-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/siteicon-bg-a.png -------------------------------------------------------------------------------- /themes/breathe/images/siteicon-bg-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/siteicon-bg-h.png -------------------------------------------------------------------------------- /themes/breathe/images/siteicon-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/siteicon-bg.png -------------------------------------------------------------------------------- /themes/breathe/images/siteicon-secure-bg-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/siteicon-secure-bg-a.png -------------------------------------------------------------------------------- /themes/breathe/images/siteicon-secure-bg-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/siteicon-secure-bg-h.png -------------------------------------------------------------------------------- /themes/breathe/images/siteicon-secure-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/siteicon-secure-bg.png -------------------------------------------------------------------------------- /themes/breathe/images/star-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/star-a.png -------------------------------------------------------------------------------- /themes/breathe/images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/star.png -------------------------------------------------------------------------------- /themes/breathe/images/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/stop.png -------------------------------------------------------------------------------- /themes/breathe/images/tab-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/tab-left.png -------------------------------------------------------------------------------- /themes/breathe/images/tab-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/tab-right.png -------------------------------------------------------------------------------- /themes/breathe/images/tabs-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/tabs-list.png -------------------------------------------------------------------------------- /themes/breathe/images/transp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/transp.png -------------------------------------------------------------------------------- /themes/breathe/images/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/trash.png -------------------------------------------------------------------------------- /themes/breathe/images/websearch-bg-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/websearch-bg-a.png -------------------------------------------------------------------------------- /themes/breathe/images/websearch-bg-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/websearch-bg-h.png -------------------------------------------------------------------------------- /themes/breathe/images/websearch-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/images/websearch-bg.png -------------------------------------------------------------------------------- /themes/breathe/rtl.css: -------------------------------------------------------------------------------- 1 | #navigation-button-next 2 | { 3 | qproperty-icon: url(images/go-previous.png); 4 | } 5 | 6 | #navigation-button-back 7 | { 8 | qproperty-icon: url(images/go-next.png); 9 | } 10 | 11 | #tabbar-button-right 12 | { 13 | qproperty-icon: url(images/tab-left-arrow.png); 14 | } 15 | 16 | #tabbar-button-left 17 | { 18 | qproperty-icon: url(images/tab-right-arrow.png); 19 | } 20 | -------------------------------------------------------------------------------- /themes/breathe/theme.info: -------------------------------------------------------------------------------- 1 | Name: Breathe 2 | Author: daimonion 3 | Short Description: Theme with Oxygen icon set 4 | Long Description: Strictly uses Oxygen icon set. Mostly based on Default Linux theme by nowrep 5 | -------------------------------------------------------------------------------- /themes/breathe/theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/breathe/theme.png -------------------------------------------------------------------------------- /themes/cyanotype/COPYING: -------------------------------------------------------------------------------- 1 | This work is licenced under the Creative Commons Attribution-Share Alike 3.0 2 | United States License. To view a copy of this licence, visit 3 | http://creativecommons.org/licenses/by-sa/3.0/ or send a letter to Creative 4 | Commons, 171 Second Street, Suite 300, San Francisco, California 94105, USA. 5 | 6 | When attributing the artwork, using "GNOME Project" is enough. 7 | Please link to http://www.gnome.org where available. -------------------------------------------------------------------------------- /themes/cyanotype/README.md: -------------------------------------------------------------------------------- 1 | Cyanotype theme for QupZilla 2 | ======================== 3 | 4 | Simple, modern blue-white theme for QupZilla, created by [cranes-bill](https://github.com/cranes-bill). 5 | 6 | Screenshot:
7 | 8 | 9 | ![cyano1](https://cloud.githubusercontent.com/assets/5161278/5893387/4d3c3f94-a4ea-11e4-9e0b-272b80ef368f.png) 10 | -------------------------------------------------------------------------------- /themes/cyanotype/images/adb-bb-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/adb-bb-new.png -------------------------------------------------------------------------------- /themes/cyanotype/images/adb-bma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/adb-bma.png -------------------------------------------------------------------------------- /themes/cyanotype/images/adb-feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/adb-feed.png -------------------------------------------------------------------------------- /themes/cyanotype/images/adb-site-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/adb-site-h.png -------------------------------------------------------------------------------- /themes/cyanotype/images/adb-site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/adb-site.png -------------------------------------------------------------------------------- /themes/cyanotype/images/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/arrow-down.png -------------------------------------------------------------------------------- /themes/cyanotype/images/bb-dd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/bb-dd.png -------------------------------------------------------------------------------- /themes/cyanotype/images/bb-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/bb-next.png -------------------------------------------------------------------------------- /themes/cyanotype/images/chbxoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/chbxoff.png -------------------------------------------------------------------------------- /themes/cyanotype/images/chbxon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/chbxon.png -------------------------------------------------------------------------------- /themes/cyanotype/images/flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/flash.png -------------------------------------------------------------------------------- /themes/cyanotype/images/flashstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/flashstart.png -------------------------------------------------------------------------------- /themes/cyanotype/images/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/key.png -------------------------------------------------------------------------------- /themes/cyanotype/images/library-bg-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/library-bg-blue.png -------------------------------------------------------------------------------- /themes/cyanotype/images/navigation-sucksmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/navigation-sucksmenu.png -------------------------------------------------------------------------------- /themes/cyanotype/images/nb-addt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/nb-addt.png -------------------------------------------------------------------------------- /themes/cyanotype/images/nb-canc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/nb-canc.png -------------------------------------------------------------------------------- /themes/cyanotype/images/nb-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/nb-home.png -------------------------------------------------------------------------------- /themes/cyanotype/images/nb-nxt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/nb-nxt.png -------------------------------------------------------------------------------- /themes/cyanotype/images/nb-prvs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/nb-prvs.png -------------------------------------------------------------------------------- /themes/cyanotype/images/nb-refr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/nb-refr.png -------------------------------------------------------------------------------- /themes/cyanotype/images/rbtnchckd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/rbtnchckd.png -------------------------------------------------------------------------------- /themes/cyanotype/images/rbtnunchckd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/rbtnunchckd.png -------------------------------------------------------------------------------- /themes/cyanotype/images/sb-ip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/sb-ip.png -------------------------------------------------------------------------------- /themes/cyanotype/images/sb-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/sb-search.png -------------------------------------------------------------------------------- /themes/cyanotype/images/semi-transp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/semi-transp.png -------------------------------------------------------------------------------- /themes/cyanotype/images/spinbox_dn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/spinbox_dn.png -------------------------------------------------------------------------------- /themes/cyanotype/images/spinbox_dn_hvr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/spinbox_dn_hvr.png -------------------------------------------------------------------------------- /themes/cyanotype/images/spinbox_dn_prsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/spinbox_dn_prsd.png -------------------------------------------------------------------------------- /themes/cyanotype/images/spinbox_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/spinbox_up.png -------------------------------------------------------------------------------- /themes/cyanotype/images/spinbox_up_hvr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/spinbox_up_hvr.png -------------------------------------------------------------------------------- /themes/cyanotype/images/spinbox_up_prsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/spinbox_up_prsd.png -------------------------------------------------------------------------------- /themes/cyanotype/images/tabbar-addtab-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/tabbar-addtab-rtl.png -------------------------------------------------------------------------------- /themes/cyanotype/images/tabbar-addtab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/tabbar-addtab.png -------------------------------------------------------------------------------- /themes/cyanotype/images/tabbar-button-closedtabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/tabbar-button-closedtabs.png -------------------------------------------------------------------------------- /themes/cyanotype/images/tabbar-button-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/tabbar-button-left.png -------------------------------------------------------------------------------- /themes/cyanotype/images/tabbar-button-listtbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/tabbar-button-listtbs.png -------------------------------------------------------------------------------- /themes/cyanotype/images/tabbar-button-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/tabbar-button-right.png -------------------------------------------------------------------------------- /themes/cyanotype/images/transp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/transp.png -------------------------------------------------------------------------------- /themes/cyanotype/images/window-close-act.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/window-close-act.png -------------------------------------------------------------------------------- /themes/cyanotype/images/window-close-act_hvr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/window-close-act_hvr.png -------------------------------------------------------------------------------- /themes/cyanotype/images/window-close-act_prsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/window-close-act_prsd.png -------------------------------------------------------------------------------- /themes/cyanotype/images/window-close-inact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/window-close-inact.png -------------------------------------------------------------------------------- /themes/cyanotype/images/window-close-inact_hvr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/window-close-inact_hvr.png -------------------------------------------------------------------------------- /themes/cyanotype/images/window-close-inact_prsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/images/window-close-inact_prsd.png -------------------------------------------------------------------------------- /themes/cyanotype/rtl.css: -------------------------------------------------------------------------------- 1 | #navigation-button-next 2 | { 3 | qproperty-multiIcon: url(images/nb-prvs.png); 4 | } 5 | 6 | #navigation-button-back 7 | { 8 | qproperty-multiIcon: url(images/nb-nxt.png); 9 | } 10 | 11 | #tabbar-button-right 12 | { 13 | qproperty-multiIcon: url(images/tabbar-button-left.png); 14 | } 15 | 16 | #tabbar-button-left 17 | { 18 | qproperty-multiIcon: url(images/tabbar-button-right.png); 19 | } 20 | 21 | #tabwidget-button-addtab 22 | { 23 | qproperty-multiIcon: url(images/tabbar-addtab-rtl.png); 24 | } 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /themes/cyanotype/theme.info: -------------------------------------------------------------------------------- 1 | Name: Cyanotype 2 | Author: Okvardz Votim 3 | Short Description: Blueprint theme 4 | Long Description: Simple, modern blue-white theme for QupZilla® 5 | -------------------------------------------------------------------------------- /themes/cyanotype/theme.license: -------------------------------------------------------------------------------- 1 | Yet another theme for QupZilla: Cyanotype 2 | 3 | About: Simple, modern blue-white theme for QupZilla 4 | Homepage: https://github.com/QupZilla/qupzilla-plugins/tree/master/themes/cyanotype 5 | Location: https://github.com/QupZilla/qupzilla-plugins/tree/master/themes/cyanotype 6 | Author: Okvardz Votim 7 | 8 | Icons and images have been taken from this theme: 9 | 10 | gnome-icon-theme-symbolic 11 | Homepage: http://www.gnome.org 12 | Location: https://github.com/GNOME/gnome-icon-theme-symbolic 13 | License: CCBYSA3 14 | Authors: Claire Alexander, Hylke Bons, Darren Wilson, Jakub Steiner, Lapo Calamandrei 15 | -------------------------------------------------------------------------------- /themes/cyanotype/theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/cyanotype/theme.png -------------------------------------------------------------------------------- /themes/fergris/README.md: -------------------------------------------------------------------------------- 1 | Fergris theme for QupZilla 2 | ======================== 3 | 4 | Full theme for QupZilla with own Qt style, created by [cranes-bill](https://github.com/cranes-bill). 5 | 6 | *Please note: To make this theme work as intended, you will have to download the true-type font DexterC.ttf. Since the licensing of this font is not clear, we will not provide it with this theme. Please download the font DexterC.ttf [here](http://www.azfonts.net/load_font/dexterc.html) save it to the fonts directory.* 7 | 8 | Screenshots:
9 | 10 | 11 | ![fergris1](https://cloud.githubusercontent.com/assets/5161278/5666119/febb6fde-9765-11e4-8aee-958658c77886.png) 12 | 13 | ![fergris2](https://cloud.githubusercontent.com/assets/5161278/5666123/04f08c7c-9766-11e4-8b29-7cd2301a1aef.png) 14 | 15 | ![fergris3](https://cloud.githubusercontent.com/assets/5161278/5666126/085ae876-9766-11e4-8f76-982387f3cb5c.png) 16 | 17 | ![fergris4](https://cloud.githubusercontent.com/assets/5161278/5666133/0c601f18-9766-11e4-9ef6-27037cb441bc.png) 18 | -------------------------------------------------------------------------------- /themes/fergris/images/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/arrow-down.png -------------------------------------------------------------------------------- /themes/fergris/images/bgmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/bgmenu.png -------------------------------------------------------------------------------- /themes/fergris/images/brushed_metal-l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/brushed_metal-l.png -------------------------------------------------------------------------------- /themes/fergris/images/brushed_metal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/brushed_metal.png -------------------------------------------------------------------------------- /themes/fergris/images/button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/button-hover.png -------------------------------------------------------------------------------- /themes/fergris/images/button-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/button-normal.png -------------------------------------------------------------------------------- /themes/fergris/images/button-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/button-pressed.png -------------------------------------------------------------------------------- /themes/fergris/images/combob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/combob.png -------------------------------------------------------------------------------- /themes/fergris/images/feed-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/feed-icon.png -------------------------------------------------------------------------------- /themes/fergris/images/flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/flash.png -------------------------------------------------------------------------------- /themes/fergris/images/flashstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/flashstart.png -------------------------------------------------------------------------------- /themes/fergris/images/gotoaddress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/gotoaddress.png -------------------------------------------------------------------------------- /themes/fergris/images/indtrmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/indtrmd.png -------------------------------------------------------------------------------- /themes/fergris/images/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/key.png -------------------------------------------------------------------------------- /themes/fergris/images/library-bg-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/library-bg-left.png -------------------------------------------------------------------------------- /themes/fergris/images/library-bg-top-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/library-bg-top-right.png -------------------------------------------------------------------------------- /themes/fergris/images/library-bg-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/library-bg-top.png -------------------------------------------------------------------------------- /themes/fergris/images/library-search-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/library-search-bg.png -------------------------------------------------------------------------------- /themes/fergris/images/lineedit-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/lineedit-bg.png -------------------------------------------------------------------------------- /themes/fergris/images/lineedit-lib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/lineedit-lib.png -------------------------------------------------------------------------------- /themes/fergris/images/navigation-addtab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/navigation-addtab.png -------------------------------------------------------------------------------- /themes/fergris/images/navigation-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/navigation-back.png -------------------------------------------------------------------------------- /themes/fergris/images/navigation-dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/navigation-dropdown.png -------------------------------------------------------------------------------- /themes/fergris/images/navigation-forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/navigation-forward.png -------------------------------------------------------------------------------- /themes/fergris/images/navigation-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/navigation-home.png -------------------------------------------------------------------------------- /themes/fergris/images/navigation-reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/navigation-reload.png -------------------------------------------------------------------------------- /themes/fergris/images/navigation-stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/navigation-stop.png -------------------------------------------------------------------------------- /themes/fergris/images/navigation-supermenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/navigation-supermenu.png -------------------------------------------------------------------------------- /themes/fergris/images/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/off.png -------------------------------------------------------------------------------- /themes/fergris/images/off_hvr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/off_hvr.png -------------------------------------------------------------------------------- /themes/fergris/images/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/on.png -------------------------------------------------------------------------------- /themes/fergris/images/on_hvr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/on_hvr.png -------------------------------------------------------------------------------- /themes/fergris/images/onglet-plus-interv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/onglet-plus-interv.png -------------------------------------------------------------------------------- /themes/fergris/images/onglet-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/onglet-plus.png -------------------------------------------------------------------------------- /themes/fergris/images/onglets-droit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/onglets-droit.png -------------------------------------------------------------------------------- /themes/fergris/images/onglets-gauche.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/onglets-gauche.png -------------------------------------------------------------------------------- /themes/fergris/images/onglets-list-interv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/onglets-list-interv.png -------------------------------------------------------------------------------- /themes/fergris/images/onglets-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/onglets-list.png -------------------------------------------------------------------------------- /themes/fergris/images/onglets-renouv-interv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/onglets-renouv-interv.png -------------------------------------------------------------------------------- /themes/fergris/images/onglets-renouv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/onglets-renouv.png -------------------------------------------------------------------------------- /themes/fergris/images/radoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/radoff.png -------------------------------------------------------------------------------- /themes/fergris/images/radoff_hvr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/radoff_hvr.png -------------------------------------------------------------------------------- /themes/fergris/images/radon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/radon.png -------------------------------------------------------------------------------- /themes/fergris/images/radon_hvr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/radon_hvr.png -------------------------------------------------------------------------------- /themes/fergris/images/search-bar-provider-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/search-bar-provider-bg.png -------------------------------------------------------------------------------- /themes/fergris/images/search-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/search-icon.png -------------------------------------------------------------------------------- /themes/fergris/images/secured-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/secured-bg.png -------------------------------------------------------------------------------- /themes/fergris/images/semi-transp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/semi-transp.png -------------------------------------------------------------------------------- /themes/fergris/images/siteicon-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/siteicon-bg.png -------------------------------------------------------------------------------- /themes/fergris/images/siteicon-bgpressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/siteicon-bgpressed.png -------------------------------------------------------------------------------- /themes/fergris/images/siteicon-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/siteicon-hover.png -------------------------------------------------------------------------------- /themes/fergris/images/siteicon-secure-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/siteicon-secure-bg.png -------------------------------------------------------------------------------- /themes/fergris/images/siteicon-secure-bgpressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/siteicon-secure-bgpressed.png -------------------------------------------------------------------------------- /themes/fergris/images/siteicon-secure-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/siteicon-secure-hover.png -------------------------------------------------------------------------------- /themes/fergris/images/spin_dn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/spin_dn.png -------------------------------------------------------------------------------- /themes/fergris/images/spin_dn_hvr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/spin_dn_hvr.png -------------------------------------------------------------------------------- /themes/fergris/images/spin_dn_prsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/spin_dn_prsd.png -------------------------------------------------------------------------------- /themes/fergris/images/spin_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/spin_up.png -------------------------------------------------------------------------------- /themes/fergris/images/spin_up_hvr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/spin_up_hvr.png -------------------------------------------------------------------------------- /themes/fergris/images/spin_up_prsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/spin_up_prsd.png -------------------------------------------------------------------------------- /themes/fergris/images/splitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/splitter.png -------------------------------------------------------------------------------- /themes/fergris/images/star-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/star-a.png -------------------------------------------------------------------------------- /themes/fergris/images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/star.png -------------------------------------------------------------------------------- /themes/fergris/images/tab_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/tab_close.png -------------------------------------------------------------------------------- /themes/fergris/images/tab_close_hvr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/tab_close_hvr.png -------------------------------------------------------------------------------- /themes/fergris/images/tab_close_prsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/tab_close_prsd.png -------------------------------------------------------------------------------- /themes/fergris/images/tab_inctv_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/tab_inctv_close.png -------------------------------------------------------------------------------- /themes/fergris/images/tab_inctv_close_hvr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/tab_inctv_close_hvr.png -------------------------------------------------------------------------------- /themes/fergris/images/tabbar-button-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/tabbar-button-left.png -------------------------------------------------------------------------------- /themes/fergris/images/tabbar-button-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/tabbar-button-right.png -------------------------------------------------------------------------------- /themes/fergris/images/tabs-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/tabs-bg.png -------------------------------------------------------------------------------- /themes/fergris/images/tabwidget-button-addtab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/tabwidget-button-addtab.png -------------------------------------------------------------------------------- /themes/fergris/images/tabwidget-button-closedtabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/tabwidget-button-closedtabs.png -------------------------------------------------------------------------------- /themes/fergris/images/tabwidget-button-opentabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/tabwidget-button-opentabs.png -------------------------------------------------------------------------------- /themes/fergris/images/transp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/images/transp.png -------------------------------------------------------------------------------- /themes/fergris/rtl.css: -------------------------------------------------------------------------------- 1 | #navigation-button-next 2 | { 3 | qproperty-multiIcon: url(images/navigation-back.png); 4 | } 5 | 6 | #navigation-button-back 7 | { 8 | qproperty-multiIcon: url(images/navigation-forward.png); 9 | } 10 | #tabbar-button-right 11 | { 12 | qproperty-multiIcon: url(images/onglets-gauche.png); 13 | /* qproperty-fixedsize: 15px 25px;*/ 14 | } 15 | 16 | #tabbar-button-left 17 | { 18 | qproperty-multiIcon: url(images/onglets-droit.png); 19 | /* qproperty-fixedsize: 15px 25px;*/ 20 | } 21 | 22 | #tabwidget-button-opentabs 23 | { 24 | qproperty-multiIcon: url(images/onglets-list-interv.png); 25 | } 26 | 27 | #tabwidget-button-closedtabs 28 | { 29 | qproperty-multiIcon: url(images/onglets-renouv-interv.png); 30 | /* qproperty-themeIcon: "user-trash-full";*/ 31 | /* qproperty-fixedsize: 22px 25px;*/ 32 | } 33 | 34 | #tabwidget-button-addtab 35 | { 36 | qproperty-multiIcon: url(images/onglet-plus-interv.png); 37 | /* qproperty-themeIcon: "list-add";*/ 38 | /* qproperty-fixedsize: 22px 25px;*/ 39 | } 40 | 41 | 42 | -------------------------------------------------------------------------------- /themes/fergris/theme.info: -------------------------------------------------------------------------------- 1 | Name: Fergris 2 | Author: Okvardz Votim 3 | Short Description: Yet another theme 4 | Long Description: Full theme for QupZilla with own Qt style. 5 | -------------------------------------------------------------------------------- /themes/fergris/theme.license: -------------------------------------------------------------------------------- 1 | Yet another theme for QupZilla: Fergris 2 | 3 | About: Full theme for QupZilla with own Qt style. 4 | Homepage: https://github.com/QupZilla/qupzilla-plugins/tree/master/themes/fergris 5 | Location: https://github.com/QupZilla/qupzilla-plugins/tree/master/themes/fergris 6 | Author: Okvardz Votim 7 | 8 | Icons and images have been taken from the following themes: 9 | 10 | Faenza Icon Theme 11 | Homepage: http://tiheum.deviantart.com/art/Faenza-Icons-173323228 12 | Location: http://code.google.com/p/faenza-icon-theme 13 | License: GPL3 14 | Author: tiheum 15 | 16 | Mac like theme 17 | Homepage: http://www.qupzilla.com 18 | Location: https://github.com/QupZilla/qupzilla/tree/master/bin/themes/mac 19 | License: Mozilla Public License Version 1.1 20 | Author: David Rosca 21 | 22 | Audacity 23 | Homepage: http://audacity.sourceforge.net/ 24 | Location: http://code.google.com/p/audacity/source/browse/audacity-src/trunk#trunk%2Fimages 25 | License: GPL2 26 | Author: See http://code.google.com/p/audacity/people/list -------------------------------------------------------------------------------- /themes/fergris/theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/fergris/theme.png -------------------------------------------------------------------------------- /themes/winstripeclassic/README.md: -------------------------------------------------------------------------------- 1 | Classic Winstripe theme for QupZilla 2 | ======================== 3 | 4 | The original Winstripe theme from 0.9, a blast from the past, created by [GreenLunar](https://github.com/GreenLunar) 5 | 6 | Screenshot: 7 | ![winstripe](http://i.imgur.com/wq9GPDY.png) -------------------------------------------------------------------------------- /themes/winstripeclassic/images/Search-glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/images/Search-glass.png -------------------------------------------------------------------------------- /themes/winstripeclassic/images/bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/images/bookmark.png -------------------------------------------------------------------------------- /themes/winstripeclassic/images/editBookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/images/editBookmark.png -------------------------------------------------------------------------------- /themes/winstripeclassic/images/flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/images/flash.png -------------------------------------------------------------------------------- /themes/winstripeclassic/images/flashplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/images/flashplay.png -------------------------------------------------------------------------------- /themes/winstripeclassic/images/go-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/images/go-home.png -------------------------------------------------------------------------------- /themes/winstripeclassic/images/go-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/images/go-next.png -------------------------------------------------------------------------------- /themes/winstripeclassic/images/go-previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/images/go-previous.png -------------------------------------------------------------------------------- /themes/winstripeclassic/images/go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/images/go.png -------------------------------------------------------------------------------- /themes/winstripeclassic/images/gotoaddress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/images/gotoaddress.png -------------------------------------------------------------------------------- /themes/winstripeclassic/images/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/images/key.png -------------------------------------------------------------------------------- /themes/winstripeclassic/images/library-bg-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/images/library-bg-left.png -------------------------------------------------------------------------------- /themes/winstripeclassic/images/library-bg-top-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/images/library-bg-top-right.png -------------------------------------------------------------------------------- /themes/winstripeclassic/images/library-bg-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/images/library-bg-top.png -------------------------------------------------------------------------------- /themes/winstripeclassic/images/library-search-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/images/library-search-bg.png -------------------------------------------------------------------------------- /themes/winstripeclassic/images/list-add-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/images/list-add-small.png -------------------------------------------------------------------------------- /themes/winstripeclassic/images/list-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/images/list-add.png -------------------------------------------------------------------------------- /themes/winstripeclassic/images/navigation-dropdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/images/navigation-dropdown.gif -------------------------------------------------------------------------------- /themes/winstripeclassic/images/preferences-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/images/preferences-desktop.png -------------------------------------------------------------------------------- /themes/winstripeclassic/images/process-stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/images/process-stop.png -------------------------------------------------------------------------------- /themes/winstripeclassic/images/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/images/rss.png -------------------------------------------------------------------------------- /themes/winstripeclassic/images/rss.png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/images/rss.png.png -------------------------------------------------------------------------------- /themes/winstripeclassic/images/search-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/images/search-icon.png -------------------------------------------------------------------------------- /themes/winstripeclassic/images/semi-transp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/images/semi-transp.png -------------------------------------------------------------------------------- /themes/winstripeclassic/images/star-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/images/star-a.png -------------------------------------------------------------------------------- /themes/winstripeclassic/images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/images/star.png -------------------------------------------------------------------------------- /themes/winstripeclassic/images/tabs-list-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/images/tabs-list-button.png -------------------------------------------------------------------------------- /themes/winstripeclassic/images/transp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/images/transp.png -------------------------------------------------------------------------------- /themes/winstripeclassic/images/view-refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/images/view-refresh.png -------------------------------------------------------------------------------- /themes/winstripeclassic/images/websearch-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/images/websearch-bg.gif -------------------------------------------------------------------------------- /themes/winstripeclassic/rtl.css: -------------------------------------------------------------------------------- 1 | #navigation-button-next 2 | { 3 | qproperty-themeIcon: "go-previous"; 4 | qproperty-multiIcon: url(images/go-previous.png); 5 | } 6 | 7 | #navigation-button-back 8 | { 9 | qproperty-themeIcon: "go-next"; 10 | qproperty-multiIcon: url(images/go-next.png); 11 | } 12 | 13 | -------------------------------------------------------------------------------- /themes/winstripeclassic/theme.info: -------------------------------------------------------------------------------- 1 | Name: Classic Winstripe 2 | Author: GrailKnight, Lanik, GreenLunar 3 | Short Description: Firefox 0.9 theme 4 | Long Description: The orginal Winstripe theme from 0.9. Blast from the past 5 | -------------------------------------------------------------------------------- /themes/winstripeclassic/theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QupZilla/qupzilla-plugins/8ff5538cd0a780bf7ed9bbe4d02c033fdb4cfdc6/themes/winstripeclassic/theme.png --------------------------------------------------------------------------------