├── .gitignore ├── .gitmodules ├── AUTHORS ├── CCBYSA ├── CHANGELOG ├── COPYING ├── GPL ├── INSTALL ├── README.md ├── codestyle.xml ├── config ├── CMakeLists.txt ├── generic │ ├── CMakeLists.txt │ ├── appearance.json │ └── profile.json ├── mac │ ├── CMakeLists.txt │ ├── appearance.json │ └── profile.json ├── maemo5 │ ├── CMakeLists.txt │ ├── appearance.json │ └── profile.json ├── maemo6 │ ├── CMakeLists.txt │ ├── appearance.json │ └── profile.json └── win │ ├── CMakeLists.txt │ ├── appearance.json │ └── profile.json ├── deployment ├── CMakeLists.txt ├── all │ ├── installScript.qs │ └── package.xml ├── config │ └── installer-offline.xml ├── create-app-mac.sh └── create-app-windows-msvc.ps1 ├── modules ├── deploy │ └── deploy.qbs ├── libarchive │ └── libarchive.qbs └── qutimscope │ └── common.qbs ├── qutim.qbs ├── src ├── 3rdparty │ ├── 3rdPartyLibrary.qbs │ ├── 3rdparty.qbs │ ├── flowlayout.qbs │ ├── flowlayout │ │ ├── flowlayout.cpp │ │ └── flowlayout.h │ ├── k8json.qbs │ ├── qtdwm.qbs │ ├── qtdwm │ │ ├── qtdwm.cpp │ │ ├── qtdwm.h │ │ └── qtdwm_p.h │ ├── qtsolutions.qbs │ ├── qtsolutions │ │ ├── qtlocalpeer.cpp │ │ ├── qtlocalpeer.h │ │ ├── qtlockedfile.cpp │ │ ├── qtlockedfile.h │ │ ├── qtlockedfile_unix.cpp │ │ └── qtlockedfile_win.cpp │ ├── qxdg.qbs │ ├── slidingstackedwidget.qbs │ └── slidingstackedwidget │ │ ├── fingerswipegesture.cpp │ │ ├── fingerswipegesture.h │ │ ├── slidingstackedwidget.cpp │ │ └── slidingstackedwidget.h ├── Framework.qbs ├── bin │ ├── Info.plist │ ├── bin.qbs │ ├── contributers │ │ ├── rederick.json │ │ ├── samvo.json │ │ └── selena.json │ ├── devels │ │ ├── boiler.json │ │ ├── degtep.json │ │ ├── euroelessar.json │ │ ├── nicoizo.json │ │ ├── reindeer.json │ │ ├── sauron.json │ │ └── viv.json │ ├── examples │ │ ├── autosettingsitem │ │ │ ├── autosettings.cpp │ │ │ └── autosettings.h │ │ └── simplesettingsdialog │ │ │ ├── settingsdialog.cpp │ │ │ ├── settingsdialog.h │ │ │ ├── settingsdialog.ui │ │ │ ├── settingslayerimpl.cpp │ │ │ └── settingslayerimpl.h │ ├── main.cpp │ ├── qt.conf │ ├── qutim.icns │ ├── qutim.ico │ ├── qutim.icons.rdef │ ├── qutim.qrc │ ├── qutim.rc │ ├── src │ │ ├── declarative │ │ │ ├── modulemanagerimpl.cpp │ │ │ ├── modulemanagerimpl.h │ │ │ ├── profilecreator │ │ │ │ └── Main.qml │ │ │ ├── requesthelper.cpp │ │ │ └── requesthelper.h │ │ └── widgets │ │ │ ├── modulemanagerimpl.cpp │ │ │ ├── modulemanagerimpl.h │ │ │ ├── profilecreationpage.cpp │ │ │ ├── profilecreationpage.h │ │ │ ├── profilecreationpage.ui │ │ │ ├── profilecreationwizard.cpp │ │ │ ├── profilecreationwizard.h │ │ │ ├── profiledialog.cpp │ │ │ ├── profiledialog.h │ │ │ ├── profiledialog.ui │ │ │ ├── profilelistwidget.cpp │ │ │ ├── profilelistwidget.h │ │ │ ├── submitpage.cpp │ │ │ └── submitpage.h │ ├── test │ │ ├── one.json │ │ ├── test.cpp │ │ └── test.pro │ └── utils │ │ └── deployqutim.sh ├── lib │ ├── libqutim.qbs │ └── qutim │ │ ├── abstractsearchrequest.cpp │ │ ├── abstractsearchrequest.h │ │ ├── abstractsearchrequest_p.h │ │ ├── abstractwizardpage.cpp │ │ ├── abstractwizardpage.h │ │ ├── account.cpp │ │ ├── account.h │ │ ├── account_p.h │ │ ├── accountmanager.cpp │ │ ├── accountmanager.h │ │ ├── accountmanager_p.h │ │ ├── actionbox.cpp │ │ ├── actionbox.h │ │ ├── actionbox_p.h │ │ ├── actiongenerator.cpp │ │ ├── actiongenerator.h │ │ ├── actiongenerator_p.h │ │ ├── actiontoolbar.cpp │ │ ├── actiontoolbar.h │ │ ├── actiontoolbar_p.h │ │ ├── asyncresult.cpp │ │ ├── asyncresult.h │ │ ├── authorizationdialog.cpp │ │ ├── authorizationdialog.h │ │ ├── buddy.cpp │ │ ├── buddy.h │ │ ├── buddy_p.h │ │ ├── chatsession.cpp │ │ ├── chatsession.h │ │ ├── chatunit.cpp │ │ ├── chatunit.h │ │ ├── chatunit_p.h │ │ ├── conference.cpp │ │ ├── conference.h │ │ ├── config.cpp │ │ ├── config.h │ │ ├── configbase.h │ │ ├── contact.cpp │ │ ├── contact.h │ │ ├── contact_p.h │ │ ├── contactsearch.cpp │ │ ├── contactsearch.h │ │ ├── cryptoservice.cpp │ │ ├── cryptoservice.h │ │ ├── dataforms.cpp │ │ ├── dataforms.h │ │ ├── datasettingsobject.cpp │ │ ├── datasettingsobject.h │ │ ├── datasettingsobject_p.h │ │ ├── debug.cpp │ │ ├── debug.h │ │ ├── declarativeview.cpp │ │ ├── declarativeview.h │ │ ├── dglobalhotkey.cpp │ │ ├── dglobalhotkey_p.h │ │ ├── doc │ │ ├── Doxyfile.in │ │ ├── DoxygenLayout.xml.in │ │ ├── footer.html │ │ └── images │ │ │ ├── dataforms_groups_example.jpeg │ │ │ ├── dataforms_modifiable_subitems_example.jpeg │ │ │ └── dataforms_types_example.jpeg │ │ ├── dynamicpropertydata.cpp │ │ ├── dynamicpropertydata_p.h │ │ ├── emoticons.cpp │ │ ├── emoticons.h │ │ ├── event.cpp │ │ ├── event.h │ │ ├── event_test.cpp │ │ ├── event_test_p.h │ │ ├── extensionicon.cpp │ │ ├── extensionicon.h │ │ ├── extensioninfo.cpp │ │ ├── extensioninfo.h │ │ ├── extensionsearch.cpp │ │ ├── extensionsearch_p.h │ │ ├── filetransfer.cpp │ │ ├── filetransfer.h │ │ ├── groupchatmanager.cpp │ │ ├── groupchatmanager.h │ │ ├── groupchatmanager_p.h │ │ ├── history.cpp │ │ ├── history.h │ │ ├── icon.cpp │ │ ├── icon.h │ │ ├── iconbackend.cpp │ │ ├── iconbackend_p.h │ │ ├── iconloader.cpp │ │ ├── iconloader.h │ │ ├── inforequest.cpp │ │ ├── inforequest.h │ │ ├── json.cpp │ │ ├── json.h │ │ ├── jsonfile.cpp │ │ ├── jsonfile.h │ │ ├── keychain.cpp │ │ ├── keychain.h │ │ ├── libqutim_global.h │ │ ├── localizedstring.cpp │ │ ├── localizedstring.h │ │ ├── menucontroller.cpp │ │ ├── menucontroller.h │ │ ├── menucontroller_p.h │ │ ├── message.cpp │ │ ├── message.h │ │ ├── messagehandler.cpp │ │ ├── messagehandler.h │ │ ├── metacontact.cpp │ │ ├── metacontact.h │ │ ├── metacontactmanager.cpp │ │ ├── metacontactmanager.h │ │ ├── metacontactprotocol.cpp │ │ ├── metacontactprotocol_p.h │ │ ├── metaobjectbuilder.cpp │ │ ├── metaobjectbuilder.h │ │ ├── mimeobjectdata.cpp │ │ ├── mimeobjectdata.h │ │ ├── modulemanager.cpp │ │ ├── modulemanager.h │ │ ├── modulemanager_p.h │ │ ├── networkproxy.cpp │ │ ├── networkproxy.h │ │ ├── notification.cpp │ │ ├── notification.h │ │ ├── objectgenerator.cpp │ │ ├── objectgenerator.h │ │ ├── objectgenerator_p.h │ │ ├── passworddialog.cpp │ │ ├── passworddialog.h │ │ ├── personinfo.cpp │ │ ├── personinfo.h │ │ ├── plugin.cpp │ │ ├── plugin.h │ │ ├── plugin_p.h │ │ ├── profile.cpp │ │ ├── profile.h │ │ ├── profilecreatorpage.cpp │ │ ├── profilecreatorpage.h │ │ ├── protocol.cpp │ │ ├── protocol.h │ │ ├── protocol_p.h │ │ ├── qmlsettingswidget.cpp │ │ ├── qmlsettingswidget_p.h │ │ ├── qtwin.cpp │ │ ├── qtwin.h │ │ ├── quickaction.cpp │ │ ├── quickaction.h │ │ ├── quickdialog.cpp │ │ ├── quickdialog.h │ │ ├── rosterstorage.cpp │ │ ├── rosterstorage.h │ │ ├── scripttools.cpp │ │ ├── scripttools.h │ │ ├── servicemanager.cpp │ │ ├── servicemanager.h │ │ ├── servicemanager_p.h │ │ ├── settingslayer.cpp │ │ ├── settingslayer.h │ │ ├── settingslayer_p.h │ │ ├── settingswidget.cpp │ │ ├── settingswidget.h │ │ ├── shortcut.cpp │ │ ├── shortcut.h │ │ ├── shortcut_p.h │ │ ├── sound.cpp │ │ ├── sound.h │ │ ├── sound_p.h │ │ ├── spellchecker.cpp │ │ ├── spellchecker.h │ │ ├── startupmodule.cpp │ │ ├── startupmodule.h │ │ ├── statisticshelper.cpp │ │ ├── statisticshelper_p.h │ │ ├── status.cpp │ │ ├── status.h │ │ ├── statusactiongenerator.cpp │ │ ├── statusactiongenerator.h │ │ ├── statusactiongenerator_p.h │ │ ├── systeminfo.cpp │ │ ├── systeminfo.h │ │ ├── systemintegration.cpp │ │ ├── systemintegration.h │ │ ├── systemintegration_p.h │ │ ├── tcpsocket.cpp │ │ ├── tcpsocket.h │ │ ├── thememanager.cpp │ │ ├── thememanager.h │ │ ├── tooltip.cpp │ │ ├── tooltip.h │ │ ├── utils.cpp │ │ ├── utils.h │ │ ├── utils │ │ ├── avatarfilter.cpp │ │ ├── avatarfilter.h │ │ ├── avatariconengine.cpp │ │ ├── avatariconengine_p.h │ │ ├── itemdelegate.cpp │ │ └── itemdelegate.h │ │ ├── varianthook.cpp │ │ ├── varianthook_p.h │ │ ├── version.cpp │ │ ├── version.h.cmake │ │ ├── widgetactiongenerator.cpp │ │ └── widgetactiongenerator.h ├── plugins │ ├── Plugin.qbs │ ├── generic │ │ ├── GenericPlugin.qbs │ │ ├── accountcreator │ │ │ ├── accountcreator.cpp │ │ │ ├── accountcreator.h │ │ │ ├── accountcreator.qbs │ │ │ ├── accountcreatorlist.cpp │ │ │ ├── accountcreatorlist.h │ │ │ ├── accountcreatorlist.ui │ │ │ ├── accountcreatorprotocols.cpp │ │ │ ├── accountcreatorprotocols.h │ │ │ ├── accountcreatorprotocols.ui │ │ │ ├── accountcreatorwizard.cpp │ │ │ └── accountcreatorwizard.h │ │ ├── addcontactdlg │ │ │ ├── addcontact.cpp │ │ │ ├── addcontact.h │ │ │ ├── addcontact.ui │ │ │ ├── addcontactdlg.plugin.json │ │ │ └── addcontactdlg.qbs │ │ ├── adiumchat │ │ │ ├── adiumchat.qbs │ │ │ ├── chatfactories │ │ │ │ └── textchat │ │ │ │ │ ├── textchat.plugin.json │ │ │ │ │ ├── textchat.qbs │ │ │ │ │ ├── textviewcontroller.cpp │ │ │ │ │ ├── textviewcontroller.h │ │ │ │ │ ├── textviewfactory.cpp │ │ │ │ │ ├── textviewfactory.h │ │ │ │ │ ├── textviewwidget.cpp │ │ │ │ │ └── textviewwidget.h │ │ │ ├── chatforms │ │ │ │ ├── stackedchatform │ │ │ │ │ ├── floatingbutton.h │ │ │ │ │ ├── kb_qwerty.cpp │ │ │ │ │ ├── kb_qwerty.h │ │ │ │ │ ├── kb_qwerty.ui │ │ │ │ │ ├── settings │ │ │ │ │ │ ├── stackedchatbehavior.cpp │ │ │ │ │ │ ├── stackedchatbehavior.h │ │ │ │ │ │ └── stackedchatbehavior.ui │ │ │ │ │ ├── stackedchatform.cpp │ │ │ │ │ ├── stackedchatform.h │ │ │ │ │ ├── stackedchatform.plugin.json │ │ │ │ │ ├── stackedchatform.qbs │ │ │ │ │ ├── stackedchatwidget.cpp │ │ │ │ │ └── stackedchatwidget.h │ │ │ │ └── tabbedchatform │ │ │ │ │ ├── settings │ │ │ │ │ ├── tabbedchatbehavior.cpp │ │ │ │ │ ├── tabbedchatbehavior.h │ │ │ │ │ └── tabbedchatbehavior.ui │ │ │ │ │ ├── tabbar.cpp │ │ │ │ │ ├── tabbar.h │ │ │ │ │ ├── tabbedchatform.cpp │ │ │ │ │ ├── tabbedchatform.h │ │ │ │ │ ├── tabbedchatform.plugin.json │ │ │ │ │ ├── tabbedchatform.qbs │ │ │ │ │ ├── tabbedchatwidget.cpp │ │ │ │ │ └── tabbedchatwidget.h │ │ │ ├── chatlayer │ │ │ │ ├── actions │ │ │ │ │ ├── chatemoticonswidget.cpp │ │ │ │ │ └── chatemoticonswidget.h │ │ │ │ ├── chatlayerplugin.cpp │ │ │ │ ├── chatlayerplugin.h │ │ │ │ ├── quoterwidget.cpp │ │ │ │ └── quoterwidget.h │ │ │ ├── lib │ │ │ │ ├── abstractchatform.cpp │ │ │ │ ├── abstractchatform.h │ │ │ │ ├── abstractchatwidget.cpp │ │ │ │ ├── abstractchatwidget.h │ │ │ │ ├── chatedit.cpp │ │ │ │ ├── chatedit.h │ │ │ │ ├── chatlayer_global.h │ │ │ │ ├── chatlayerimpl.cpp │ │ │ │ ├── chatlayerimpl.h │ │ │ │ ├── chatsessionimpl.cpp │ │ │ │ ├── chatsessionimpl.h │ │ │ │ ├── chatsessionimpl_p.h │ │ │ │ ├── chatsessionmodel.cpp │ │ │ │ ├── chatsessionmodel.h │ │ │ │ ├── chatviewfactory.cpp │ │ │ │ ├── chatviewfactory.h │ │ │ │ ├── conferencecontactsview.cpp │ │ │ │ ├── conferencecontactsview.h │ │ │ │ ├── conferencetabcompletion.cpp │ │ │ │ ├── conferencetabcompletion.h │ │ │ │ ├── sessionlistwidget.cpp │ │ │ │ └── sessionlistwidget.h │ │ │ ├── plugin.qbs │ │ │ └── qutim-adiumchat.qbs │ │ ├── adiumsrvicons │ │ │ ├── adiumsrvicons.plugin.json │ │ │ ├── adiumsrvicons.qbs │ │ │ ├── serviceicons.cpp │ │ │ └── serviceicons.h │ │ ├── adiumwebview │ │ │ ├── adiumwebview.plugin.json │ │ │ ├── adiumwebview.qbs │ │ │ ├── data │ │ │ │ └── webview │ │ │ │ │ ├── Preview.plist │ │ │ │ │ ├── SoulEdge.png │ │ │ │ │ ├── Template.html │ │ │ │ │ ├── WebKit Defaults.plist │ │ │ │ │ ├── client.js │ │ │ │ │ ├── qml │ │ │ │ │ └── ChatView.qml │ │ │ │ │ ├── qwebchannel.js │ │ │ │ │ └── terminator.png │ │ │ ├── lib │ │ │ │ ├── adiumwebview_global.h │ │ │ │ ├── old │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── webkitutils.cpp │ │ │ │ │ ├── webkitutils.h │ │ │ │ │ ├── widget.cpp │ │ │ │ │ ├── widget.h │ │ │ │ │ └── widget.ui │ │ │ │ ├── qutim-adiumwebview.qbs │ │ │ │ ├── webkitcolorsadditions.cpp │ │ │ │ ├── webkitcolorsadditions_p.h │ │ │ │ ├── webkitmessageviewcontroller.cpp │ │ │ │ ├── webkitmessageviewcontroller.h │ │ │ │ ├── webkitmessageviewstyle.cpp │ │ │ │ ├── webkitmessageviewstyle.h │ │ │ │ ├── webkitnetworkaccessmanager.cpp │ │ │ │ ├── webkitnetworkaccessmanager.h │ │ │ │ ├── webkitpreviewloader.cpp │ │ │ │ ├── webkitpreviewloader.h │ │ │ │ ├── webkitpreviewunits.cpp │ │ │ │ └── webkitpreviewunits_p.h │ │ │ ├── plugin │ │ │ │ ├── adiumplugin.qbs │ │ │ │ ├── imports │ │ │ │ │ └── org │ │ │ │ │ │ └── qutim │ │ │ │ │ │ └── adiumwebview │ │ │ │ │ │ ├── AdiumView.qml │ │ │ │ │ │ ├── client.js │ │ │ │ │ │ ├── logic.js │ │ │ │ │ │ └── qmldir │ │ │ │ └── src │ │ │ │ │ ├── messageviewcontroller.cpp │ │ │ │ │ ├── messageviewcontroller.h │ │ │ │ │ ├── quickplugin.cpp │ │ │ │ │ └── quickplugin.h │ │ │ └── src │ │ │ │ ├── adiumwebviewappearance.cpp │ │ │ │ ├── adiumwebviewappearance.h │ │ │ │ ├── adiumwebviewappearance.ui │ │ │ │ ├── adiumwebviewcontroller.cpp │ │ │ │ ├── adiumwebviewcontroller.h │ │ │ │ ├── adiumwebviewfactory.cpp │ │ │ │ ├── adiumwebviewfactory.h │ │ │ │ ├── adiumwebviewvariable.cpp │ │ │ │ ├── adiumwebviewvariable.h │ │ │ │ ├── adiumwebviewwidget.cpp │ │ │ │ ├── adiumwebviewwidget.h │ │ │ │ └── yandexdomaindefine.h │ │ ├── aescrypto │ │ │ ├── aescrypto.qbs │ │ │ ├── cmake │ │ │ │ ├── FindLibraryWithDebug.cmake │ │ │ │ └── FindQCA2.cmake │ │ │ └── src │ │ │ │ ├── aescryptomodule.cpp │ │ │ │ ├── aescryptomodule.h │ │ │ │ ├── aescryptoservice.cpp │ │ │ │ └── aescryptoservice.h │ │ ├── antiboss │ │ │ ├── antiboss.qbs │ │ │ └── src │ │ │ │ ├── antibossplugin.cpp │ │ │ │ └── antibossplugin.h │ │ ├── antispam │ │ │ ├── antispam.qbs │ │ │ ├── qml │ │ │ │ └── settings │ │ │ │ │ └── antispam │ │ │ │ │ └── main.qml │ │ │ └── src │ │ │ │ ├── antispamplugin.cpp │ │ │ │ ├── antispamplugin.h │ │ │ │ ├── handler.cpp │ │ │ │ └── handler.h │ │ ├── aspeller │ │ │ ├── aspeller.qbs │ │ │ └── src │ │ │ │ ├── aspellchecker.cpp │ │ │ │ ├── aspellchecker.h │ │ │ │ ├── aspellplugin.cpp │ │ │ │ ├── aspellplugin.h │ │ │ │ ├── aspellsettings.cpp │ │ │ │ └── aspellsettings.h │ │ ├── authdialog │ │ │ ├── authdialog.qbs │ │ │ ├── authdialog.ui │ │ │ ├── authdialogimpl_p.h │ │ │ ├── authdialogplugin.cpp │ │ │ ├── authdialogplugin.h │ │ │ ├── authservice.cpp │ │ │ └── authservice.h │ │ ├── autopaster │ │ │ ├── autopaster.qbs │ │ │ ├── qml │ │ │ │ ├── autopaster │ │ │ │ │ └── default │ │ │ │ │ │ └── main.qml │ │ │ │ └── settings │ │ │ │ │ └── autopaster │ │ │ │ │ └── main.qml │ │ │ └── src │ │ │ │ ├── autopaster.cpp │ │ │ │ ├── autopaster.h │ │ │ │ ├── handler.cpp │ │ │ │ ├── handler.h │ │ │ │ ├── hastebinpaster.cpp │ │ │ │ ├── hastebinpaster.h │ │ │ │ ├── kdepaster.cpp │ │ │ │ ├── kdepaster.h │ │ │ │ ├── pasterinterface.h │ │ │ │ ├── ubuntupaster.cpp │ │ │ │ └── ubuntupaster.h │ │ ├── autoreply │ │ │ ├── autoreply.qbs │ │ │ ├── qml │ │ │ │ └── settings │ │ │ │ │ └── autoreply │ │ │ │ │ └── main.qml │ │ │ └── src │ │ │ │ ├── autoreplybuttongenerator.cpp │ │ │ │ ├── autoreplybuttongenerator.h │ │ │ │ ├── autoreplydialog.cpp │ │ │ │ ├── autoreplydialog.h │ │ │ │ ├── autoreplydialog.ui │ │ │ │ ├── autoreplymessagehandler.cpp │ │ │ │ ├── autoreplymessagehandler.h │ │ │ │ ├── autoreplyplugin.cpp │ │ │ │ ├── autoreplyplugin.cpp.orig │ │ │ │ └── autoreplyplugin.h │ │ ├── bearermanager │ │ │ ├── bearermanager.cpp.autosave │ │ │ ├── bearermanager.qbs │ │ │ └── src │ │ │ │ ├── accountserver.cpp │ │ │ │ ├── accountserver.h │ │ │ │ ├── bearermanager.cpp │ │ │ │ ├── bearermanager.h │ │ │ │ └── bearermanager.plugin.json │ │ ├── birthdayreminder │ │ │ ├── birthdayreminder.qbs │ │ │ ├── qml │ │ │ │ └── settings │ │ │ │ │ └── birthdayreminder │ │ │ │ │ └── main.qml │ │ │ └── src │ │ │ │ ├── birthdayreminder.cpp │ │ │ │ └── birthdayreminder.h │ │ ├── blogimprover │ │ │ ├── blogimprover.qbs │ │ │ ├── qml │ │ │ │ └── settings │ │ │ │ │ └── blogimprover │ │ │ │ │ └── main.qml │ │ │ └── src │ │ │ │ ├── blogimproverhandler.cpp │ │ │ │ ├── blogimproverhandler.h │ │ │ │ ├── blogimproverplugin.cpp │ │ │ │ └── blogimproverplugin.h │ │ ├── chatnotificationsbackend │ │ │ ├── chatnotificationsbackend.cpp │ │ │ ├── chatnotificationsbackend.h │ │ │ ├── chatnotificationsbackend.plugin.json │ │ │ └── chatnotificationsbackend.qbs │ │ ├── chatspellchecker │ │ │ ├── chatspellchecker.cpp │ │ │ ├── chatspellchecker.h │ │ │ ├── chatspellchecker.plugin.json │ │ │ └── chatspellchecker.qbs │ │ ├── clconf │ │ │ ├── clconf.qbs │ │ │ └── src │ │ │ │ ├── clconfplugin.cpp │ │ │ │ ├── clconfplugin.h │ │ │ │ ├── proxyaccount.cpp │ │ │ │ ├── proxyaccount.h │ │ │ │ ├── proxycontact.cpp │ │ │ │ └── proxycontact.h │ │ ├── comparators │ │ │ ├── comparators.qbs │ │ │ ├── contactcomparators.cpp │ │ │ ├── contactcomparators.h │ │ │ ├── lastactivitycomparator.cpp │ │ │ ├── lastactivitycomparator.h │ │ │ ├── statuscomparator.cpp │ │ │ └── statuscomparator.h │ │ ├── contactinfo │ │ │ ├── contactinfo.cpp │ │ │ ├── contactinfo.h │ │ │ ├── contactinfo.plugin.json │ │ │ ├── contactinfo.qbs │ │ │ └── userinformation.ui │ │ ├── contactmodel │ │ │ ├── contactmodel.qbs │ │ │ └── src │ │ │ │ ├── contactlistaccountmodel.cpp │ │ │ │ ├── contactlistaccountmodel.h │ │ │ │ ├── contactlistbasemodel.cpp │ │ │ │ ├── contactlistbasemodel.h │ │ │ │ ├── contactlistfrontmodel.cpp │ │ │ │ ├── contactlistfrontmodel.h │ │ │ │ ├── contactlistgroupmodel.cpp │ │ │ │ ├── contactlistgroupmodel.h │ │ │ │ ├── contactlistmimedata.cpp │ │ │ │ ├── contactlistmimedata.h │ │ │ │ ├── contactlistplainmodel.cpp │ │ │ │ ├── contactlistplainmodel.h │ │ │ │ ├── contactlistseparatedmodel.cpp │ │ │ │ ├── contactlistseparatedmodel.h │ │ │ │ ├── contactmodelplugin.cpp │ │ │ │ └── contactmodelplugin.h │ │ ├── control │ │ │ ├── control.qbs │ │ │ └── src │ │ │ │ ├── autoreplybuttonaction.cpp │ │ │ │ ├── autoreplybuttonaction.h │ │ │ │ ├── controlplugin.cpp │ │ │ │ ├── controlplugin.h │ │ │ │ ├── crypter.cpp │ │ │ │ ├── crypter.h │ │ │ │ ├── networkmanager.cpp │ │ │ │ ├── networkmanager.h │ │ │ │ ├── quickanswerbuttonaction.cpp │ │ │ │ ├── quickanswerbuttonaction.h │ │ │ │ ├── rostermanager.cpp │ │ │ │ ├── rostermanager.h │ │ │ │ ├── sessionspy.cpp │ │ │ │ ├── sessionspy.h │ │ │ │ ├── settingswidget.cpp │ │ │ │ ├── settingswidget.h │ │ │ │ └── settingswidget.ui │ │ ├── dataformsbackend │ │ │ ├── abstractdatawidget.cpp │ │ │ ├── abstractdatawidget.h │ │ │ ├── dataformsbackend.cpp │ │ │ ├── dataformsbackend.h │ │ │ ├── dataformsbackend.plugin.json │ │ │ ├── dataformsbackend.qbs │ │ │ ├── datalayout.cpp │ │ │ ├── datalayout.h │ │ │ ├── modifiablewidget.cpp │ │ │ ├── modifiablewidget.h │ │ │ ├── widgetgenerator.cpp │ │ │ ├── widgetgenerator.h │ │ │ ├── widgets.cpp │ │ │ └── widgets.h │ │ ├── dbusapi │ │ │ ├── dbusapi.qbs │ │ │ └── src │ │ │ │ ├── accountadaptor.cpp │ │ │ │ ├── accountadaptor.h │ │ │ │ ├── buddyadapter.cpp │ │ │ │ ├── buddyadapter.h │ │ │ │ ├── chatlayeradapter.cpp │ │ │ │ ├── chatlayeradapter.h │ │ │ │ ├── chatsessionadapter.cpp │ │ │ │ ├── chatsessionadapter.h │ │ │ │ ├── chatunitadaptor.cpp │ │ │ │ ├── chatunitadaptor.h │ │ │ │ ├── conferenceadaptor.cpp │ │ │ │ ├── conferenceadaptor.h │ │ │ │ ├── contactadaptor.cpp │ │ │ │ ├── contactadaptor.h │ │ │ │ ├── dbusplugin.cpp │ │ │ │ ├── dbusplugin.h │ │ │ │ ├── protocoladaptor.cpp │ │ │ │ └── protocoladaptor.h │ │ ├── docktile │ │ │ ├── docktile.qbs │ │ │ └── src │ │ │ │ ├── dockplugin.cpp │ │ │ │ ├── dockplugin.h │ │ │ │ ├── docktile.cpp │ │ │ │ └── docktile.h │ │ ├── emoedit │ │ │ ├── emoedit.qbs │ │ │ └── src │ │ │ │ ├── emoeditplugin.cpp │ │ │ │ └── emoeditplugin.h │ │ ├── emoticonssettings │ │ │ ├── emoticonssettings.cpp │ │ │ ├── emoticonssettings.h │ │ │ ├── emoticonssettings.plugin.json │ │ │ ├── emoticonssettings.qbs │ │ │ └── qml │ │ │ │ └── settings │ │ │ │ └── emoticonssettings │ │ │ │ └── main.qml │ │ ├── filetransfer │ │ │ ├── filetransfer.plugin.json │ │ │ ├── filetransfer.qbs │ │ │ ├── filetransferdialog.cpp │ │ │ ├── filetransferdialog.h │ │ │ ├── filetransferdialog.ui │ │ │ ├── filetransferjobdelegate.cpp │ │ │ ├── filetransferjobdelegate.h │ │ │ ├── filetransferjobmodel.cpp │ │ │ ├── filetransferjobmodel.h │ │ │ ├── simplefiletransfer.cpp │ │ │ └── simplefiletransfer.h │ │ ├── filetransfersettings │ │ │ ├── filetransfersettings.cpp │ │ │ ├── filetransfersettings.h │ │ │ ├── filetransfersettings.plugin.json │ │ │ └── filetransfersettings.qbs │ │ ├── floaties │ │ │ ├── floaties.qbs │ │ │ └── src │ │ │ │ ├── contactwidget.cpp │ │ │ │ ├── contactwidget.h │ │ │ │ ├── floaties.cpp │ │ │ │ ├── floaties.h │ │ │ │ ├── floatiesitemmodel.cpp │ │ │ │ └── floatiesitemmodel.h │ │ ├── formula │ │ │ ├── formula.qbs │ │ │ └── src │ │ │ │ ├── formulahandler.cpp │ │ │ │ ├── formulahandler.h │ │ │ │ ├── formulaplugin.cpp │ │ │ │ └── formulaplugin.h │ │ ├── generic.qbs │ │ ├── highlighter │ │ │ ├── highlighter.qbs │ │ │ └── src │ │ │ │ ├── highlighter.cpp │ │ │ │ ├── highlighter.h │ │ │ │ ├── highlighteritemlist.cpp │ │ │ │ ├── highlighteritemlist.h │ │ │ │ ├── highlightersettings.cpp │ │ │ │ ├── highlightersettings.h │ │ │ │ ├── highlightersettings.ui │ │ │ │ ├── nickhandler.cpp │ │ │ │ └── nickhandler.h │ │ ├── histman │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── GPL │ │ │ ├── histman.qbs │ │ │ ├── include │ │ │ │ └── qutim │ │ │ │ │ └── historymanager.h │ │ │ └── src │ │ │ │ ├── chooseclientpage.cpp │ │ │ │ ├── chooseclientpage.h │ │ │ │ ├── chooseclientpage.ui │ │ │ │ ├── chooseordumppage.cpp │ │ │ │ ├── chooseordumppage.h │ │ │ │ ├── chooseordumppage.ui │ │ │ │ ├── clientconfigpage.cpp │ │ │ │ ├── clientconfigpage.h │ │ │ │ ├── clientconfigpage.ui │ │ │ │ ├── clients │ │ │ │ ├── andrq.cpp │ │ │ │ ├── andrq.h │ │ │ │ ├── gajim.cpp │ │ │ │ ├── gajim.h │ │ │ │ ├── jasmineim.cpp │ │ │ │ ├── jasmineim.h │ │ │ │ ├── jimm.cpp │ │ │ │ ├── jimm.h │ │ │ │ ├── kopete.cpp │ │ │ │ ├── kopete.h │ │ │ │ ├── licq.cpp │ │ │ │ ├── licq.h │ │ │ │ ├── miranda.cpp │ │ │ │ ├── miranda.h │ │ │ │ ├── pidgin.cpp │ │ │ │ ├── pidgin.h │ │ │ │ ├── psi.cpp │ │ │ │ ├── psi.h │ │ │ │ ├── qip.cpp │ │ │ │ ├── qip.h │ │ │ │ ├── qipinfium.cpp │ │ │ │ ├── qipinfium.h │ │ │ │ ├── qippda.cpp │ │ │ │ ├── qippda.h │ │ │ │ ├── qutim.cpp │ │ │ │ ├── qutim.h │ │ │ │ ├── sim.cpp │ │ │ │ └── sim.h │ │ │ │ ├── dumphistorypage.cpp │ │ │ │ ├── dumphistorypage.h │ │ │ │ ├── dumphistorypage.ui │ │ │ │ ├── historymanagerplugin.cpp │ │ │ │ ├── historymanagerplugin.h │ │ │ │ ├── historymanagerwindow.cpp │ │ │ │ ├── historymanagerwindow.h │ │ │ │ ├── historymanagerwindow.ui │ │ │ │ ├── importhistorypage.cpp │ │ │ │ ├── importhistorypage.h │ │ │ │ └── importhistorypage.ui │ │ ├── histview │ │ │ ├── histview.plugin.json │ │ │ ├── histview.qbs │ │ │ └── src │ │ │ │ ├── historywindow.cpp │ │ │ │ ├── historywindow.h │ │ │ │ ├── historywindow.ui │ │ │ │ ├── histview.cpp │ │ │ │ └── histview.h │ │ ├── hunspeller │ │ │ ├── hunspeller.qbs │ │ │ └── src │ │ │ │ ├── hunspellchecker.cpp │ │ │ │ ├── hunspellchecker.h │ │ │ │ ├── hunspellplugin.cpp │ │ │ │ ├── hunspellplugin.h │ │ │ │ ├── hunspellsettings.cpp │ │ │ │ └── hunspellsettings.h │ │ ├── idledetector │ │ │ ├── idle.cpp │ │ │ ├── idle.h │ │ │ ├── idle_mac.cpp │ │ │ ├── idle_win.cpp │ │ │ ├── idle_x11.cpp │ │ │ ├── idledetector.plugin.json │ │ │ └── idledetector.qbs │ │ ├── idlestatuschanger │ │ │ ├── idle-global.h │ │ │ ├── idlestatuschanger.cpp │ │ │ ├── idlestatuschanger.h │ │ │ ├── idlestatuschanger.plugin.json │ │ │ ├── idlestatuschanger.qbs │ │ │ └── qml │ │ │ │ └── settings │ │ │ │ └── idlestatuschanger │ │ │ │ └── main.qml │ │ ├── imagepub │ │ │ ├── COPYING │ │ │ ├── README │ │ │ ├── icons │ │ │ │ ├── imagepub-icon16.png │ │ │ │ ├── imagepub-icon48.png │ │ │ │ └── imagepub-serv-imageshack.png │ │ │ ├── imagepub.cpp │ │ │ ├── imagepub.h │ │ │ ├── imagepub.pro │ │ │ ├── imagepub.qbs │ │ │ ├── imagepub.qrc │ │ │ ├── imagepubsettings.cpp │ │ │ ├── imagepubsettings.h │ │ │ ├── imagepubsettings.ui │ │ │ ├── uploaddialog.cpp │ │ │ ├── uploaddialog.h │ │ │ └── uploaddialog.ui │ │ ├── joinchatdialog │ │ │ ├── joinchatdialog.cpp │ │ │ ├── joinchatdialog.h │ │ │ ├── joinchatdialog.plugin.json │ │ │ ├── joinchatdialog.qbs │ │ │ ├── joinchatdialog.ui │ │ │ ├── joinchatmodule.cpp │ │ │ └── joinchatmodule.h │ │ ├── joingroupchatdlg │ │ │ ├── accountsmodel.cpp │ │ │ ├── accountsmodel.h │ │ │ ├── bookmarksmodel.cpp │ │ │ ├── bookmarksmodel.h │ │ │ ├── bookmarkspage.cpp │ │ │ ├── bookmarkspage.h │ │ │ ├── groupchatpage.cpp │ │ │ ├── groupchatpage.h │ │ │ ├── joingroupchat.cpp │ │ │ ├── joingroupchat.h │ │ │ ├── joingroupchat.ui │ │ │ ├── joingroupchatdlg.plugin.json │ │ │ ├── joingroupchatdlg.qbs │ │ │ ├── joingroupchatmodule.cpp │ │ │ ├── joingroupchatmodule.h │ │ │ ├── joinpage.cpp │ │ │ ├── joinpage.h │ │ │ ├── uripage.cpp │ │ │ └── uripage.h │ │ ├── jsonconfig │ │ │ ├── jsonconfig.plugin.json │ │ │ ├── jsonconfig.qbs │ │ │ ├── jsonconfigbackend.cpp │ │ │ └── jsonconfigbackend.h │ │ ├── jsonhistory │ │ │ ├── jsonhistory.cpp │ │ │ ├── jsonhistory.h │ │ │ ├── jsonhistory.plugin.json │ │ │ └── jsonhistory.qbs │ │ ├── keychain │ │ │ ├── keychain.plugin.json │ │ │ ├── keychain.qbs │ │ │ └── src │ │ │ │ ├── keychainservice.cpp │ │ │ │ └── keychainservice.h │ │ ├── kineticpopups │ │ │ ├── kineticpopups.plugin.json │ │ │ ├── kineticpopups.qbs │ │ │ └── src │ │ │ │ ├── backend.cpp │ │ │ │ ├── backend.h │ │ │ │ ├── notify.cpp │ │ │ │ ├── notify.h │ │ │ │ ├── notifylist.cpp │ │ │ │ ├── notifylist.h │ │ │ │ ├── quickpopup │ │ │ │ ├── blue │ │ │ │ │ └── main.qml │ │ │ │ ├── default │ │ │ │ │ ├── Controller.qml │ │ │ │ │ ├── PopupBase.qml │ │ │ │ │ ├── black.qmlproject │ │ │ │ │ ├── images │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ └── qutim.svg │ │ │ │ │ ├── logic.js │ │ │ │ │ └── main.qml │ │ │ │ ├── glass │ │ │ │ │ ├── glass.qmlproject │ │ │ │ │ └── main.qml │ │ │ │ └── greyscale │ │ │ │ │ └── main.qml │ │ │ │ ├── settings │ │ │ │ ├── popupappearance.cpp │ │ │ │ ├── popupappearance.h │ │ │ │ └── popupappearance.ui │ │ │ │ └── timeout.h │ │ ├── kineticscroller │ │ │ ├── kineticscroller.cpp │ │ │ ├── kineticscroller.h │ │ │ ├── kineticscroller.plugin.json │ │ │ ├── kineticscroller.qbs │ │ │ ├── kineticscrollersettings.cpp │ │ │ ├── kineticscrollersettings.h │ │ │ ├── kineticscrollersettings.ui │ │ │ ├── qtflickgesture.cpp │ │ │ ├── qtflickgesture_p.h │ │ │ ├── qtscroller.cpp │ │ │ ├── qtscroller.h │ │ │ ├── qtscroller_mac.mm │ │ │ ├── qtscroller_p.h │ │ │ ├── qtscrollerfilter.cpp │ │ │ ├── qtscrollerfilter_p.h │ │ │ ├── qtscrollerproperties.cpp │ │ │ ├── qtscrollerproperties.h │ │ │ ├── qtscrollerproperties_p.h │ │ │ ├── qtscrollevent.cpp │ │ │ ├── qtscrollevent.h │ │ │ ├── qtscrollevent_p.h │ │ │ └── src.pro │ │ ├── kopeteemoticonsbackend │ │ │ ├── kopeteemoticonsbackend.cpp │ │ │ ├── kopeteemoticonsbackend.h │ │ │ ├── kopeteemoticonsbackend.plugin.json │ │ │ ├── kopeteemoticonsbackend.qbs │ │ │ ├── kopeteemoticonsprovider.cpp │ │ │ └── kopeteemoticonsprovider.h │ │ ├── localization │ │ │ ├── localization.qbs │ │ │ ├── localizationmodule.cpp │ │ │ ├── localizationmodule.h │ │ │ ├── localizationplugin.cpp │ │ │ ├── localizationplugin.h │ │ │ ├── localizationsettings.cpp │ │ │ ├── localizationsettings.h │ │ │ └── localizationsettings.ui │ │ ├── logger │ │ │ ├── logger.qbs │ │ │ ├── src │ │ │ │ ├── logger.cpp │ │ │ │ └── logger.h │ │ │ └── symbian.pro │ │ ├── massmessaging │ │ │ ├── massmessaging.qbs │ │ │ └── src │ │ │ │ ├── manager.cpp │ │ │ │ ├── manager.h │ │ │ │ ├── messaging.cpp │ │ │ │ ├── messaging.h │ │ │ │ ├── messagingdialog.cpp │ │ │ │ ├── messagingdialog.h │ │ │ │ └── messagingdialog.ui │ │ ├── metacontacts │ │ │ ├── factory.cpp │ │ │ ├── factory.h │ │ │ ├── manager.cpp │ │ │ ├── manager.h │ │ │ ├── mergedialog.cpp │ │ │ ├── mergedialog.h │ │ │ ├── mergedialog.ui │ │ │ ├── messagehandler.cpp │ │ │ ├── messagehandler.h │ │ │ ├── metacontactimpl.cpp │ │ │ ├── metacontactimpl.h │ │ │ ├── metacontacts.plugin.json │ │ │ ├── metacontacts.qbs │ │ │ ├── model.cpp │ │ │ └── model.h │ │ ├── migration02x03 │ │ │ ├── migration02x03.plugin.json │ │ │ ├── migration02x03.qbs │ │ │ ├── migrationpagecreator.cpp │ │ │ ├── migrationpagecreator.h │ │ │ ├── migrationstartpage.cpp │ │ │ ├── migrationstartpage.h │ │ │ └── migrationstartpage.ui │ │ ├── mobileabout │ │ │ ├── mobileabout.qbs │ │ │ ├── mobileaboutcreator.cpp │ │ │ ├── mobileaboutcreator.h │ │ │ ├── mobileaboutdialog.cpp │ │ │ ├── mobileaboutdialog.h │ │ │ ├── mobileaboutdialog.plugin.json │ │ │ └── mobileaboutdialog.ui │ │ ├── mobilecontactinfo │ │ │ ├── mobilecontactinfo.cpp │ │ │ ├── mobilecontactinfo.h │ │ │ ├── mobilecontactinfo.plugin.json │ │ │ └── mobilecontactinfo.qbs │ │ ├── mobilenotificationssettings │ │ │ ├── mobilenotificationsettings.cpp │ │ │ ├── mobilenotificationsettings.h │ │ │ ├── mobilenotificationssettings.cpp │ │ │ ├── mobilenotificationssettings.h │ │ │ ├── mobilenotificationssettings.plugin.json │ │ │ └── mobilenotificationssettings.qbs │ │ ├── mobilesettingsdialog │ │ │ ├── mobilesettingsdialog.plugin.json │ │ │ ├── mobilesettingsdialog.qbs │ │ │ ├── mobilesettingslayerimpl.cpp │ │ │ ├── mobilesettingslayerimpl.h │ │ │ ├── mobilesettingswindow.cpp │ │ │ └── mobilesettingswindow.h │ │ ├── mobility │ │ │ ├── cmake │ │ │ │ └── Modules │ │ │ │ │ ├── FindQtMobility.cmake │ │ │ │ │ └── mobilityconfig.prf │ │ │ └── src │ │ │ │ ├── multimediabackend │ │ │ │ ├── multimediabackend.plugin.json │ │ │ │ ├── multimediabackend.qbs │ │ │ │ ├── multimediasoundbackend.cpp │ │ │ │ └── multimediasoundbackend.h │ │ │ │ └── vibrobackend │ │ │ │ ├── vibrobackend.cpp │ │ │ │ ├── vibrobackend.h │ │ │ │ └── vibrobackend.qbs │ │ ├── nocryptoservice │ │ │ ├── nocryptoservice.cpp │ │ │ ├── nocryptoservice.h │ │ │ ├── nocryptoservice.plugin.json │ │ │ └── nocryptoservice.qbs │ │ ├── notificationfilter │ │ │ ├── notificationfilter.cpp │ │ │ ├── notificationfilter.h │ │ │ ├── notificationfilter.plugin.json │ │ │ └── notificationfilter.qbs │ │ ├── notificationssettings │ │ │ ├── notificationsettings.cpp │ │ │ ├── notificationsettings.h │ │ │ ├── notificationssettings.cpp │ │ │ ├── notificationssettings.h │ │ │ ├── notificationssettings.plugin.json │ │ │ └── notificationssettings.qbs │ │ ├── nowplaying │ │ │ ├── images │ │ │ │ └── logo.png │ │ │ ├── include │ │ │ │ ├── player.h │ │ │ │ ├── playersettings.h │ │ │ │ └── trackinfo.h │ │ │ ├── nowplaying.qbs │ │ │ ├── players │ │ │ │ └── mpris │ │ │ │ │ ├── mprisplayer.cpp │ │ │ │ │ ├── mprisplayer.h │ │ │ │ │ ├── mprisplayerfactory.cpp │ │ │ │ │ └── mprisplayerfactory.h │ │ │ ├── res.qrc │ │ │ └── src │ │ │ │ ├── accounttunestatus.cpp │ │ │ │ ├── accounttunestatus.h │ │ │ │ ├── icqsettings.ui │ │ │ │ ├── icqsupport.cpp │ │ │ │ ├── icqsupport.h │ │ │ │ ├── jabbersettings.ui │ │ │ │ ├── jabbersupport.cpp │ │ │ │ ├── jabbersupport.h │ │ │ │ ├── nowplaying.cpp │ │ │ │ ├── nowplaying.h │ │ │ │ ├── nowplayingsettings.ui │ │ │ │ ├── settingsui.cpp │ │ │ │ └── settingsui.h │ │ ├── offtherecord │ │ │ ├── cmake │ │ │ │ └── FindLibOTR.cmake │ │ │ ├── offtherecord.qbs │ │ │ └── src │ │ │ │ ├── global.h │ │ │ │ ├── otrcrypt.cpp │ │ │ │ ├── otrcrypt.h │ │ │ │ ├── otrinternal.cpp │ │ │ │ ├── otrinternal.h │ │ │ │ ├── otrmessagehandler.cpp │ │ │ │ ├── otrmessagehandler.h │ │ │ │ ├── otrmessaging.cpp │ │ │ │ ├── otrmessaging.h │ │ │ │ ├── otrsettingswidget.cpp │ │ │ │ ├── otrsettingswidget.h │ │ │ │ ├── otrsettingswidget.ui │ │ │ │ ├── qutimotrclosure.cpp │ │ │ │ ├── qutimotrclosure.h │ │ │ │ ├── smpdialog.cpp │ │ │ │ ├── smpdialog.h │ │ │ │ └── smpdialog.ui │ │ ├── oldcontactdelegate │ │ │ ├── contactlistitemdelegate.cpp │ │ │ ├── contactlistitemdelegate.h │ │ │ ├── oldcontactdelegate.qbs │ │ │ ├── olddelegate │ │ │ │ └── default.ListQutim │ │ │ └── settings │ │ │ │ ├── olddelegatesettings.cpp │ │ │ │ ├── olddelegatesettings.h │ │ │ │ └── olddelegatesettings.ui │ │ ├── oldsoundtheme │ │ │ ├── oldsoundtheme.plugin.json │ │ │ ├── oldsoundtheme.qbs │ │ │ ├── oldsoundthemebackend.cpp │ │ │ ├── oldsoundthemebackend.h │ │ │ ├── oldsoundthemeprovider.cpp │ │ │ └── oldsoundthemeprovider.h │ │ ├── password │ │ │ ├── password.plugin.json │ │ │ ├── password.qbs │ │ │ ├── simplepassworddialog.cpp │ │ │ ├── simplepassworddialog.h │ │ │ ├── simplepasswordwidget.cpp │ │ │ ├── simplepasswordwidget.h │ │ │ └── simplepasswordwidget.ui │ │ ├── phononsound │ │ │ ├── cmake │ │ │ │ └── FindPhonon.cmake │ │ │ ├── phononsound.qbs │ │ │ └── src │ │ │ │ ├── phononsoundbackend.cpp │ │ │ │ ├── phononsoundbackend.h │ │ │ │ ├── phononsoundplugin.cpp │ │ │ │ └── phononsoundplugin.h │ │ ├── plistconfig │ │ │ ├── plistconfig.plugin.json │ │ │ ├── plistconfig.qbs │ │ │ ├── plistconfigbackend.cpp │ │ │ └── plistconfigbackend.h │ │ ├── plugman │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── COPYING.libs │ │ │ ├── GPL │ │ │ ├── changelog │ │ │ ├── cmake │ │ │ │ ├── FindLibAttica.cmake │ │ │ │ └── cmake_uninstall.cmake.in │ │ │ ├── plugman.qbs │ │ │ ├── qml │ │ │ │ └── plugman │ │ │ │ │ └── default │ │ │ │ │ ├── Balloon.qml │ │ │ │ │ ├── BusyIndicator.qml │ │ │ │ │ ├── Header.qml │ │ │ │ │ ├── InstallButton.qml │ │ │ │ │ ├── ItemDelegate.qml │ │ │ │ │ ├── ScrollDecorator.qml │ │ │ │ │ ├── default.qmlproject │ │ │ │ │ ├── images │ │ │ │ │ └── spinner │ │ │ │ │ │ ├── busy_indicator_128.png │ │ │ │ │ │ ├── busy_indicator_128_inverted.png │ │ │ │ │ │ ├── busy_indicator_16.png │ │ │ │ │ │ ├── busy_indicator_16_inverted.png │ │ │ │ │ │ ├── busy_indicator_22_inverted.png │ │ │ │ │ │ ├── busy_indicator_256.png │ │ │ │ │ │ ├── busy_indicator_256_inverted.png │ │ │ │ │ │ ├── busy_indicator_32.png │ │ │ │ │ │ ├── busy_indicator_32_inverted.png │ │ │ │ │ │ ├── busy_indicator_48.png │ │ │ │ │ │ ├── busy_indicator_48_inverted.png │ │ │ │ │ │ ├── busy_indicator_64.png │ │ │ │ │ │ ├── busy_indicator_64_inverted.png │ │ │ │ │ │ └── busy_indicator_96.png │ │ │ │ │ └── main.qml │ │ │ ├── src │ │ │ │ ├── packagedelegate.cpp │ │ │ │ ├── packagedelegate.h │ │ │ │ ├── packagedownloaddialog.cpp │ │ │ │ ├── packagedownloaddialog.h │ │ │ │ ├── packageengine.cpp │ │ │ │ ├── packageengine.h │ │ │ │ ├── packageentry.cpp │ │ │ │ ├── packageentry.h │ │ │ │ ├── packageentrywidget.cpp │ │ │ │ ├── packageentrywidget.h │ │ │ │ ├── packagemodel.cpp │ │ │ │ ├── packagemodel.h │ │ │ │ ├── packagepreviewwidget.cpp │ │ │ │ ├── packagepreviewwidget.h │ │ │ │ ├── plugman.cpp │ │ │ │ ├── plugman.h │ │ │ │ ├── plugmanarchive.cpp │ │ │ │ └── plugmanarchive.h │ │ │ └── tools │ │ │ │ ├── mirgen │ │ │ │ ├── main.cpp │ │ │ │ └── mirgen.pro │ │ │ │ └── packgen │ │ │ │ ├── choosecategorypage.cpp │ │ │ │ ├── choosecategorypage.h │ │ │ │ ├── choosecategorypage.ui │ │ │ │ ├── choosepathpage.cpp │ │ │ │ ├── choosepathpage.h │ │ │ │ ├── choosepathpage.ui │ │ │ │ ├── configpackagepage.cpp │ │ │ │ ├── configpackagepage.h │ │ │ │ ├── configpackagepage.ui │ │ │ │ ├── generatorwindow.cpp │ │ │ │ ├── generatorwindow.h │ │ │ │ ├── main.cpp │ │ │ │ ├── packgen.pro │ │ │ │ ├── pluglibinfo.cpp │ │ │ │ └── pluglibinfo.h │ │ ├── proxysettings │ │ │ ├── proxysettings.cpp │ │ │ ├── proxysettings.h │ │ │ ├── proxysettings.plugin.json │ │ │ └── proxysettings.qbs │ │ ├── qmlchat │ │ │ ├── qml │ │ │ │ └── qmlchat │ │ │ │ │ └── ChatView.qml │ │ │ ├── qmlchat.plugin.json │ │ │ ├── qmlchat.qbs │ │ │ ├── settings │ │ │ │ ├── chatappearance.cpp │ │ │ │ ├── chatappearance.h │ │ │ │ └── chatappearance.ui │ │ │ └── src │ │ │ │ ├── qmlchat │ │ │ │ ├── adium │ │ │ │ │ └── main.qml │ │ │ │ └── default │ │ │ │ │ ├── ScrollBar.qml │ │ │ │ │ ├── delegate │ │ │ │ │ ├── ActionDelegate.qml │ │ │ │ │ ├── CommonMessageDelegate.qml │ │ │ │ │ ├── Message.qml │ │ │ │ │ ├── MessageDelegate.qml │ │ │ │ │ ├── MessageText.qml │ │ │ │ │ ├── ServiceDelegate.qml │ │ │ │ │ └── images │ │ │ │ │ │ ├── bullet-received.png │ │ │ │ │ │ └── bullet-send.png │ │ │ │ │ ├── main.qml │ │ │ │ │ └── phoenix.qmlproject │ │ │ │ ├── quickchatviewcontroller.cpp │ │ │ │ ├── quickchatviewcontroller.h │ │ │ │ ├── quickchatviewfactory.cpp │ │ │ │ ├── quickchatviewfactory.h │ │ │ │ ├── quickchatviewwidget.cpp │ │ │ │ └── quickchatviewwidget.h │ │ ├── qrcicons │ │ │ ├── icons │ │ │ │ ├── application-exit.png │ │ │ │ ├── applications-graphics.png │ │ │ │ ├── applications-internet.png │ │ │ │ ├── applications-other.png │ │ │ │ ├── applications-system.png │ │ │ │ ├── bookmark-new-list.png │ │ │ │ ├── bookmarks.png │ │ │ │ ├── camera-photo.png │ │ │ │ ├── configure.png │ │ │ │ ├── dialog-cancel.png │ │ │ │ ├── dialog-error.png │ │ │ │ ├── dialog-information.png │ │ │ │ ├── dialog-ok-apply.png │ │ │ │ ├── dialog-password.png │ │ │ │ ├── dialog-warning.png │ │ │ │ ├── document-new.png │ │ │ │ ├── document-properties.png │ │ │ │ ├── document-save.png │ │ │ │ ├── download.png │ │ │ │ ├── edit-clear-list.png │ │ │ │ ├── edit-clear-locationbar-rtl.png │ │ │ │ ├── edit-copy.png │ │ │ │ ├── edit-delete.png │ │ │ │ ├── edit-find-user.png │ │ │ │ ├── edit-find.png │ │ │ │ ├── face-smile.png │ │ │ │ ├── feed-subscribe.png │ │ │ │ ├── go-next.png │ │ │ │ ├── go-previous.png │ │ │ │ ├── help-hint.png │ │ │ │ ├── im-ban-user.png │ │ │ │ ├── im-kick-user.png │ │ │ │ ├── im-status-message-edit.png │ │ │ │ ├── im-user-away.png │ │ │ │ ├── im-user-busy.png │ │ │ │ ├── im-user-offline.png │ │ │ │ ├── im-user.png │ │ │ │ ├── im.png │ │ │ │ ├── insert-text.png │ │ │ │ ├── kde.png │ │ │ │ ├── list-add-user.png │ │ │ │ ├── list-add.png │ │ │ │ ├── list-remove-user.png │ │ │ │ ├── list-remove.png │ │ │ │ ├── mail-message-new.png │ │ │ │ ├── mail-send.png │ │ │ │ ├── mail-signature-unknown.png │ │ │ │ ├── mail-unread-new.png │ │ │ │ ├── mail-unread.png │ │ │ │ ├── media-flash-sd-mmc.png │ │ │ │ ├── media-playback-start.png │ │ │ │ ├── media-playback-stop.png │ │ │ │ ├── meeting-attending.png │ │ │ │ ├── network-connect.png │ │ │ │ ├── network-wireless.png │ │ │ │ ├── phone.png │ │ │ │ ├── preferences-contact-list.png │ │ │ │ ├── preferences-desktop-icons.png │ │ │ │ ├── preferences-desktop-locale.png │ │ │ │ ├── preferences-desktop-peripherals.png │ │ │ │ ├── preferences-other.png │ │ │ │ ├── preferences-system.png │ │ │ │ ├── qutim_64.svg │ │ │ │ ├── services.png │ │ │ │ ├── show-menu.png │ │ │ │ ├── speaker.png │ │ │ │ ├── system-search.png │ │ │ │ ├── tools-check-spelling.png │ │ │ │ ├── unknown.png │ │ │ │ ├── user-away-extended.png │ │ │ │ ├── user-away.png │ │ │ │ ├── user-busy.png │ │ │ │ ├── user-desktop.png │ │ │ │ ├── user-identity.png │ │ │ │ ├── user-offline.png │ │ │ │ ├── user-online.png │ │ │ │ ├── user-properties.png │ │ │ │ ├── user-status-afraid.png │ │ │ │ ├── user-status-alien.png │ │ │ │ ├── user-status-amazed.png │ │ │ │ ├── user-status-amorous.png │ │ │ │ ├── user-status-angry.png │ │ │ │ ├── user-status-annoyed.png │ │ │ │ ├── user-status-anxious.png │ │ │ │ ├── user-status-aroused.png │ │ │ │ ├── user-status-ashamed.png │ │ │ │ ├── user-status-ass.png │ │ │ │ ├── user-status-blind.png │ │ │ │ ├── user-status-bored.png │ │ │ │ ├── user-status-brave.png │ │ │ │ ├── user-status-browsing.png │ │ │ │ ├── user-status-calm.png │ │ │ │ ├── user-status-cautious.png │ │ │ │ ├── user-status-cock_a_snook.png │ │ │ │ ├── user-status-cold.png │ │ │ │ ├── user-status-confident.png │ │ │ │ ├── user-status-confused.png │ │ │ │ ├── user-status-contemplative.png │ │ │ │ ├── user-status-contented.png │ │ │ │ ├── user-status-cool.png │ │ │ │ ├── user-status-cranky.png │ │ │ │ ├── user-status-crazy.png │ │ │ │ ├── user-status-creative.png │ │ │ │ ├── user-status-curious.png │ │ │ │ ├── user-status-dejected.png │ │ │ │ ├── user-status-depressed.png │ │ │ │ ├── user-status-devilfish.png │ │ │ │ ├── user-status-disappointed.png │ │ │ │ ├── user-status-disgusted.png │ │ │ │ ├── user-status-dismayed.png │ │ │ │ ├── user-status-distracted.png │ │ │ │ ├── user-status-doing_chores-buying_groceries.png │ │ │ │ ├── user-status-doing_chores-cleaning.png │ │ │ │ ├── user-status-doing_chores-cooking.png │ │ │ │ ├── user-status-doing_chores-doing_maintenance.png │ │ │ │ ├── user-status-doing_chores-doing_the_dishes.png │ │ │ │ ├── user-status-doing_chores-doing_the_laundry.png │ │ │ │ ├── user-status-doing_chores-gardening.png │ │ │ │ ├── user-status-doing_chores-running_an_errand.png │ │ │ │ ├── user-status-doing_chores-walking_the_dog.png │ │ │ │ ├── user-status-doing_chores.png │ │ │ │ ├── user-status-drinking-having_a_beer.png │ │ │ │ ├── user-status-drinking-having_coffee.png │ │ │ │ ├── user-status-drinking-having_tea.png │ │ │ │ ├── user-status-drinking.png │ │ │ │ ├── user-status-eating-having_a_snack.png │ │ │ │ ├── user-status-eating-having_breakfast.png │ │ │ │ ├── user-status-eating-having_dinner.png │ │ │ │ ├── user-status-eating-having_lunch.png │ │ │ │ ├── user-status-eating.png │ │ │ │ ├── user-status-embarrassed.png │ │ │ │ ├── user-status-envious.png │ │ │ │ ├── user-status-excited.png │ │ │ │ ├── user-status-exercising-cycling.png │ │ │ │ ├── user-status-exercising-dancing.png │ │ │ │ ├── user-status-exercising-hiking.png │ │ │ │ ├── user-status-exercising-jogging.png │ │ │ │ ├── user-status-exercising-playing_sports.png │ │ │ │ ├── user-status-exercising-running.png │ │ │ │ ├── user-status-exercising-skiing.png │ │ │ │ ├── user-status-exercising-swimming.png │ │ │ │ ├── user-status-exercising-working_out.png │ │ │ │ ├── user-status-exercising.png │ │ │ │ ├── user-status-feeling_sick.png │ │ │ │ ├── user-status-flirtatious.png │ │ │ │ ├── user-status-frustrated.png │ │ │ │ ├── user-status-get_out.png │ │ │ │ ├── user-status-got_lost.png │ │ │ │ ├── user-status-grateful.png │ │ │ │ ├── user-status-grieving.png │ │ │ │ ├── user-status-grooming-at_the_spa.png │ │ │ │ ├── user-status-grooming-brushing_teeth.png │ │ │ │ ├── user-status-grooming-getting_a_haircut.png │ │ │ │ ├── user-status-grooming-shaving.png │ │ │ │ ├── user-status-grooming-taking_a_bath.png │ │ │ │ ├── user-status-grooming-taking_a_shower.png │ │ │ │ ├── user-status-grooming.png │ │ │ │ ├── user-status-grumpy.png │ │ │ │ ├── user-status-guilty.png │ │ │ │ ├── user-status-happy.png │ │ │ │ ├── user-status-having_appointment.png │ │ │ │ ├── user-status-heavy_metal.png │ │ │ │ ├── user-status-home.png │ │ │ │ ├── user-status-hopeful.png │ │ │ │ ├── user-status-hot.png │ │ │ │ ├── user-status-humbled.png │ │ │ │ ├── user-status-humiliated.png │ │ │ │ ├── user-status-hungry.png │ │ │ │ ├── user-status-hurt.png │ │ │ │ ├── user-status-i_am_high.png │ │ │ │ ├── user-status-imp.png │ │ │ │ ├── user-status-impressed.png │ │ │ │ ├── user-status-in_awe.png │ │ │ │ ├── user-status-in_love.png │ │ │ │ ├── user-status-inactive-day_off.png │ │ │ │ ├── user-status-inactive-hanging_out.png │ │ │ │ ├── user-status-inactive-on_vacation.png │ │ │ │ ├── user-status-inactive-praying.png │ │ │ │ ├── user-status-inactive-scheduled_holiday.png │ │ │ │ ├── user-status-inactive-sleeping.png │ │ │ │ ├── user-status-inactive-thinking.png │ │ │ │ ├── user-status-inactive.png │ │ │ │ ├── user-status-indignant.png │ │ │ │ ├── user-status-interested.png │ │ │ │ ├── user-status-intoxicated.png │ │ │ │ ├── user-status-invincible.png │ │ │ │ ├── user-status-jealous.png │ │ │ │ ├── user-status-listening_to_music.png │ │ │ │ ├── user-status-lonely.png │ │ │ │ ├── user-status-lost.png │ │ │ │ ├── user-status-love.png │ │ │ │ ├── user-status-lucky.png │ │ │ │ ├── user-status-mean.png │ │ │ │ ├── user-status-moody.png │ │ │ │ ├── user-status-nervous.png │ │ │ │ ├── user-status-neutral.png │ │ │ │ ├── user-status-offended.png │ │ │ │ ├── user-status-office.png │ │ │ │ ├── user-status-on_wc.png │ │ │ │ ├── user-status-outraged.png │ │ │ │ ├── user-status-peace.png │ │ │ │ ├── user-status-picnic.png │ │ │ │ ├── user-status-pipe.png │ │ │ │ ├── user-status-playful.png │ │ │ │ ├── user-status-pocketpc.png │ │ │ │ ├── user-status-proud.png │ │ │ │ ├── user-status-relaxed.png │ │ │ │ ├── user-status-relaxing-fishing.png │ │ │ │ ├── user-status-relaxing-gaming.png │ │ │ │ ├── user-status-relaxing-going_out.png │ │ │ │ ├── user-status-relaxing-partying.png │ │ │ │ ├── user-status-relaxing-reading.png │ │ │ │ ├── user-status-relaxing-rehearsing.png │ │ │ │ ├── user-status-relaxing-shopping.png │ │ │ │ ├── user-status-relaxing-smoking.png │ │ │ │ ├── user-status-relaxing-socializing.png │ │ │ │ ├── user-status-relaxing-sunbathing.png │ │ │ │ ├── user-status-relaxing-watching_a_movie.png │ │ │ │ ├── user-status-relaxing-watching_tv.png │ │ │ │ ├── user-status-relaxing.png │ │ │ │ ├── user-status-relieved.png │ │ │ │ ├── user-status-remorseful.png │ │ │ │ ├── user-status-restless.png │ │ │ │ ├── user-status-rocket.png │ │ │ │ ├── user-status-sad.png │ │ │ │ ├── user-status-sarcastic.png │ │ │ │ ├── user-status-satisfied.png │ │ │ │ ├── user-status-searching.png │ │ │ │ ├── user-status-serious.png │ │ │ │ ├── user-status-sex.png │ │ │ │ ├── user-status-shocked.png │ │ │ │ ├── user-status-shooting.png │ │ │ │ ├── user-status-shrimp.png │ │ │ │ ├── user-status-shy.png │ │ │ │ ├── user-status-sick.png │ │ │ │ ├── user-status-sleepy.png │ │ │ │ ├── user-status-smiley.png │ │ │ │ ├── user-status-spontaneous.png │ │ │ │ ├── user-status-squirrel.png │ │ │ │ ├── user-status-star.png │ │ │ │ ├── user-status-stressed.png │ │ │ │ ├── user-status-strong.png │ │ │ │ ├── user-status-surfing.png │ │ │ │ ├── user-status-surprised.png │ │ │ │ ├── user-status-talking-in_real_life.png │ │ │ │ ├── user-status-talking-on_the_phone.png │ │ │ │ ├── user-status-talking-on_video_phone.png │ │ │ │ ├── user-status-talking.png │ │ │ │ ├── user-status-thankful.png │ │ │ │ ├── user-status-things_look_bad.png │ │ │ │ ├── user-status-thirsty.png │ │ │ │ ├── user-status-tired.png │ │ │ │ ├── user-status-to_be_or_not_to_be.png │ │ │ │ ├── user-status-traveling-commuting.png │ │ │ │ ├── user-status-traveling-cycling.png │ │ │ │ ├── user-status-traveling-driving.png │ │ │ │ ├── user-status-traveling-in_a_car.png │ │ │ │ ├── user-status-traveling-on_a_bus.png │ │ │ │ ├── user-status-traveling-on_a_plane.png │ │ │ │ ├── user-status-traveling-on_a_train.png │ │ │ │ ├── user-status-traveling-on_a_trip.png │ │ │ │ ├── user-status-traveling-walking.png │ │ │ │ ├── user-status-traveling.png │ │ │ │ ├── user-status-undefined.png │ │ │ │ ├── user-status-vampire.png │ │ │ │ ├── user-status-weak.png │ │ │ │ ├── user-status-working-coding.png │ │ │ │ ├── user-status-working-in_a_meeting.png │ │ │ │ ├── user-status-working-studying.png │ │ │ │ ├── user-status-working-writing.png │ │ │ │ ├── user-status-working.png │ │ │ │ ├── user-status-worried.png │ │ │ │ ├── user-status-wrong_number.png │ │ │ │ ├── user-status-xstatus.png │ │ │ │ ├── utilities-terminal.png │ │ │ │ ├── view-calendar-month.png │ │ │ │ ├── view-choose.png │ │ │ │ ├── view-conversation-balloon.png │ │ │ │ ├── view-history.png │ │ │ │ ├── view-list-text.png │ │ │ │ ├── view-list-tree.png │ │ │ │ ├── view-refresh.png │ │ │ │ └── view-user-offline-kopete.png │ │ │ ├── oxygen.qrc │ │ │ ├── qrcicons.plugin.json │ │ │ ├── qrcicons.qbs │ │ │ ├── qresourceiconloader.cpp │ │ │ ├── qresourceiconloader.h │ │ │ └── webkitstyle │ │ │ │ └── Tory │ │ │ │ └── Contents │ │ │ │ └── Resources │ │ │ │ └── Images │ │ │ │ ├── bullet-received.png │ │ │ │ └── bullet-send.png │ │ ├── qticons │ │ │ ├── iconsloaderimpl.cpp │ │ │ ├── iconsloaderimpl.h │ │ │ ├── qml │ │ │ │ └── settings │ │ │ │ │ └── qticons │ │ │ │ │ └── main.qml │ │ │ ├── qticons.plugin.json │ │ │ └── qticons.qbs │ │ ├── quickchat │ │ │ ├── qml │ │ │ │ ├── chatstyle │ │ │ │ │ ├── adium │ │ │ │ │ │ ├── AdiumMessagesView.qml │ │ │ │ │ │ └── main.qml │ │ │ │ │ ├── default │ │ │ │ │ │ ├── ActionMessage.qml │ │ │ │ │ │ ├── Message.qml │ │ │ │ │ │ ├── MessageBase.qml │ │ │ │ │ │ ├── QuickMessagesLayout.qml │ │ │ │ │ │ ├── QuickMessagesView.qml │ │ │ │ │ │ ├── SelectableText.qml │ │ │ │ │ │ ├── ServiceMessage.qml │ │ │ │ │ │ └── main.qml │ │ │ │ │ └── gajim │ │ │ │ │ │ ├── ActionMessage.qml │ │ │ │ │ │ ├── Message.qml │ │ │ │ │ │ ├── MessageBase.qml │ │ │ │ │ │ ├── QuickMessagesLayout.qml │ │ │ │ │ │ ├── QuickMessagesView.qml │ │ │ │ │ │ ├── ServiceMessage.qml │ │ │ │ │ │ └── main.qml │ │ │ │ ├── contactliststyle │ │ │ │ │ └── default │ │ │ │ │ │ ├── BaseRow.qml │ │ │ │ │ │ ├── FontStyle.qml │ │ │ │ │ │ ├── ItemStyle.qml │ │ │ │ │ │ ├── Label.qml │ │ │ │ │ │ ├── Style.qml │ │ │ │ │ │ └── main.qml │ │ │ │ └── quickchat │ │ │ │ │ └── default │ │ │ │ │ ├── +osx │ │ │ │ │ └── BaseWindow.qml │ │ │ │ │ ├── BaseWindow.qml │ │ │ │ │ ├── BuddyDelegate.qml │ │ │ │ │ ├── ChatParticipantsView.qml │ │ │ │ │ ├── ChatTextArea.qml │ │ │ │ │ ├── ChatView.qml │ │ │ │ │ ├── ChatWindow.qml │ │ │ │ │ ├── ContactList.qml │ │ │ │ │ ├── ContactListToolBar.qml │ │ │ │ │ ├── ContactsView.qml │ │ │ │ │ ├── StyledSplitView.qml │ │ │ │ │ ├── StyledTableView.qml │ │ │ │ │ ├── ThemedLoader.qml │ │ │ │ │ ├── UnitedWindow.qml │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── details │ │ │ │ │ └── ItemProxy.qml │ │ │ │ │ ├── logic.js │ │ │ │ │ └── main.qml │ │ │ ├── quickchat.plugin.json │ │ │ ├── quickchat.qbs │ │ │ └── src │ │ │ │ ├── anchorshighlighter.cpp │ │ │ │ ├── anchorshighlighter.h │ │ │ │ ├── chat.cpp │ │ │ │ ├── chat.h │ │ │ │ ├── chatchannel.cpp │ │ │ │ ├── chatchannel.h │ │ │ │ ├── chatchannelmodel.cpp │ │ │ │ ├── chatchannelmodel.h │ │ │ │ ├── chatchannelusersmodel.cpp │ │ │ │ ├── chatchannelusersmodel.h │ │ │ │ ├── chatcontroller.cpp │ │ │ │ ├── chatcontroller.h │ │ │ │ ├── chatmessagemodel.cpp │ │ │ │ ├── chatmessagemodel.h │ │ │ │ ├── chatpreview.cpp │ │ │ │ ├── chatpreview.h │ │ │ │ ├── completionmodel.cpp │ │ │ │ ├── completionmodel.h │ │ │ │ ├── flatmodel.cpp │ │ │ │ ├── flatmodel.h │ │ │ │ ├── gradientcreator.cpp │ │ │ │ ├── gradientcreator.h │ │ │ │ ├── scriptclient.cpp │ │ │ │ ├── scriptclient.h │ │ │ │ ├── selectablemousearea.cpp │ │ │ │ ├── selectablemousearea.h │ │ │ │ ├── triangleimageprovider.cpp │ │ │ │ ├── triangleimageprovider.h │ │ │ │ ├── websocketclientwrapper.cpp │ │ │ │ ├── websocketclientwrapper.h │ │ │ │ ├── websockettransport.cpp │ │ │ │ └── websockettransport.h │ │ ├── quickcontactlist │ │ │ ├── qml │ │ │ │ └── quickcontactlist │ │ │ │ │ ├── ContactListToolBar.qml │ │ │ │ │ ├── ContactsView.qml │ │ │ │ │ ├── DynamicMenu.qml │ │ │ │ │ ├── ItemDelegate.qml │ │ │ │ │ ├── ItemDelegate2.qml │ │ │ │ │ ├── constants.js │ │ │ │ │ └── main.qml │ │ │ ├── quickcontactlist.qbs │ │ │ └── src │ │ │ │ ├── plugin.cpp │ │ │ │ └── plugin.h │ │ ├── screenshoter │ │ │ └── src │ │ │ │ ├── screenshoter.cpp │ │ │ │ ├── screenshoter.h │ │ │ │ ├── screenshoter.ui │ │ │ │ ├── shoter.cpp │ │ │ │ └── shoter.h │ │ ├── scriptapi │ │ │ ├── scriptapi.qbs │ │ │ ├── share │ │ │ │ └── qutim │ │ │ │ │ └── scripts │ │ │ │ │ └── ignorer │ │ │ │ │ └── plugin.js │ │ │ └── src │ │ │ │ ├── qtplugin │ │ │ │ ├── scriptdataitem.cpp │ │ │ │ ├── scriptdataitem.h │ │ │ │ ├── scriptenginedata.cpp │ │ │ │ ├── scriptenginedata.h │ │ │ │ ├── scriptextensionplugin.cpp │ │ │ │ ├── scriptextensionplugin.h │ │ │ │ ├── scriptinforequest.cpp │ │ │ │ ├── scriptinforequest.h │ │ │ │ ├── scriptmessage.cpp │ │ │ │ ├── scriptmessage.h │ │ │ │ ├── scriptmessagehandler.cpp │ │ │ │ ├── scriptmessagehandler.h │ │ │ │ ├── scriptmessagepropertyiterator.cpp │ │ │ │ ├── scriptmessagepropertyiterator.h │ │ │ │ ├── scriptservices.cpp │ │ │ │ ├── scriptservices.h │ │ │ │ ├── scriptsettingsitem.cpp │ │ │ │ ├── scriptsettingsitem.h │ │ │ │ ├── scriptsettingswidget.cpp │ │ │ │ └── scriptsettingswidget.h │ │ │ │ ├── scriptengine.cpp │ │ │ │ ├── scriptengine.h │ │ │ │ ├── scriptmessageclass.cpp │ │ │ │ ├── scriptmessageclass.h │ │ │ │ ├── scriptmessagepropertyiterator.cpp │ │ │ │ ├── scriptmessagepropertyiterator.h │ │ │ │ ├── scriptplugin.cpp │ │ │ │ ├── scriptplugin.h │ │ │ │ ├── scriptpluginwrapper.cpp │ │ │ │ ├── scriptpluginwrapper.h │ │ │ │ ├── scriptsettingsconnector.cpp │ │ │ │ └── scriptsettingsconnector.h │ │ ├── sdlsound │ │ │ ├── sdlsound.qbs │ │ │ └── src │ │ │ │ ├── sdlbackend.cpp │ │ │ │ ├── sdlbackend.h │ │ │ │ ├── sdlplugin.cpp │ │ │ │ └── sdlplugin.h │ │ ├── searchdialog │ │ │ ├── abstractsearchform.cpp │ │ │ ├── abstractsearchform.h │ │ │ ├── defaultform │ │ │ │ ├── defaultsearchform.cpp │ │ │ │ ├── defaultsearchform.h │ │ │ │ └── defaultsearchform.ui │ │ │ ├── mobileform │ │ │ │ ├── mobilesearchform.cpp │ │ │ │ ├── mobilesearchform.h │ │ │ │ └── mobilesearchform.ui │ │ │ ├── requestslistmodel.cpp │ │ │ ├── requestslistmodel.h │ │ │ ├── resultmodel.cpp │ │ │ ├── resultmodel.h │ │ │ ├── searchdialog.qbs │ │ │ ├── searchdialoglayer.cpp │ │ │ ├── searchdialoglayer.h │ │ │ ├── searchdialogplugin.cpp │ │ │ └── searchdialogplugin.h │ │ ├── servicechooser │ │ │ ├── pluginchooserwidget.cpp │ │ │ ├── pluginchooserwidget.h │ │ │ ├── protocolchooserwidget.cpp │ │ │ ├── protocolchooserwidget.h │ │ │ ├── servicechooser.cpp │ │ │ ├── servicechooser.h │ │ │ ├── servicechooser.plugin.json │ │ │ ├── servicechooser.qbs │ │ │ ├── servicechooserwidget.cpp │ │ │ ├── servicechooserwidget.h │ │ │ ├── servicechooserwidget.ui │ │ │ ├── serviceitem.cpp │ │ │ ├── serviceitem.h │ │ │ ├── simplefilterproxymodel.cpp │ │ │ └── simplefilterproxymodel.h │ │ ├── sessionhelper │ │ │ ├── sessionhelper.qbs │ │ │ └── src │ │ │ │ ├── sessionhelper.cpp │ │ │ │ ├── sessionhelper.h │ │ │ │ ├── sessionhelpersettings.cpp │ │ │ │ ├── sessionhelpersettings.h │ │ │ │ └── sessionhelpersettings.ui │ │ ├── shortcutsettings │ │ │ ├── keysequencewidget.cpp │ │ │ ├── keysequencewidget.h │ │ │ ├── shortcutitemdelegate.cpp │ │ │ ├── shortcutitemdelegate.h │ │ │ ├── shortcutsettings.cpp │ │ │ ├── shortcutsettings.h │ │ │ ├── shortcutsettings.plugin.json │ │ │ ├── shortcutsettings.qbs │ │ │ ├── shortcutsettingswidget.cpp │ │ │ ├── shortcutsettingswidget.h │ │ │ └── shortcutsettingswidget.ui │ │ ├── simpleabout │ │ │ ├── aboutinfo.cpp │ │ │ ├── aboutinfo.h │ │ │ ├── qml │ │ │ │ └── simpleabout │ │ │ │ │ └── default │ │ │ │ │ └── main.qml │ │ │ ├── simpleabout.qbs │ │ │ ├── simpleaboutcreator.cpp │ │ │ ├── simpleaboutcreator.h │ │ │ └── simpleaboutdialog.plugin.json │ │ ├── simpleactionbox │ │ │ ├── simpleactionbox.cpp │ │ │ ├── simpleactionbox.h │ │ │ ├── simpleactionbox.plugin.json │ │ │ └── simpleactionbox.qbs │ │ ├── simpleactions │ │ │ ├── simpleactions.qbs │ │ │ └── src │ │ │ │ ├── simpleactions.cpp │ │ │ │ ├── simpleactions.h │ │ │ │ ├── simpleactionsplugin.cpp │ │ │ │ ├── simpleactionsplugin.h │ │ │ │ └── simpletagseditor │ │ │ │ ├── simpletagseditor.cpp │ │ │ │ ├── simpletagseditor.h │ │ │ │ └── simpletagseditor.ui │ │ ├── simplecontactlist │ │ │ ├── contactlist │ │ │ │ ├── simplecontactlist.cpp │ │ │ │ ├── simplecontactlist.h │ │ │ │ ├── simplecontactlistsettings.cpp │ │ │ │ ├── simplecontactlistsettings.h │ │ │ │ ├── tagsfilterdialog.cpp │ │ │ │ ├── tagsfilterdialog.h │ │ │ │ └── tagsfilterdialog.ui │ │ │ ├── lib │ │ │ │ ├── abstractcontactlist.cpp │ │ │ │ ├── abstractcontactlist.h │ │ │ │ ├── lineedit.cpp │ │ │ │ ├── lineedit.h │ │ │ │ ├── servicechooser.cpp │ │ │ │ ├── servicechooser.h │ │ │ │ ├── simplecontactlist_global.h │ │ │ │ ├── simplecontactlistitem.h │ │ │ │ ├── simplecontactlistview.cpp │ │ │ │ ├── simplecontactlistview.h │ │ │ │ ├── simplestatusdialog.cpp │ │ │ │ ├── simplestatusdialog.h │ │ │ │ └── simplestatusdialog.ui │ │ │ ├── libqutim-simplecontactlist.qbs │ │ │ ├── simplecontactdelegate │ │ │ │ ├── contactdelegate.cpp │ │ │ │ ├── contactdelegate.h │ │ │ │ ├── settings │ │ │ │ │ ├── simplecontactlistsettings.cpp │ │ │ │ │ ├── simplecontactlistsettings.h │ │ │ │ │ └── simplecontactlistsettings.ui │ │ │ │ └── simplecontactdelegate.qbs │ │ │ ├── simplecontactlist-headers.qbs │ │ │ ├── simplecontactlist.plugin.json │ │ │ ├── simplecontactlist.qbs │ │ │ └── widgets │ │ │ │ ├── simplecontactlistwidget │ │ │ │ ├── simplecontactlistwidget.plugin.json │ │ │ │ ├── simplecontactlistwidget.qbs │ │ │ │ ├── simplewidget.cpp │ │ │ │ └── simplewidget.h │ │ │ │ └── torycontactlistwidget │ │ │ │ ├── torycontactlistwidget.plugin.json │ │ │ │ ├── torycontactlistwidget.qbs │ │ │ │ ├── torywidget.cpp │ │ │ │ └── torywidget.h │ │ ├── simplerosterstorage │ │ │ ├── simplerosterstorage.cpp │ │ │ ├── simplerosterstorage.h │ │ │ ├── simplerosterstorage.plugin.json │ │ │ └── simplerosterstorage.qbs │ │ ├── soundthemeselector │ │ │ ├── soundthemeselector.cpp │ │ │ ├── soundthemeselector.h │ │ │ ├── soundthemeselector.plugin.json │ │ │ ├── soundthemeselector.qbs │ │ │ ├── soundthemeselector.ui │ │ │ ├── soundthemesettings.cpp │ │ │ └── soundthemesettings.h │ │ ├── sqlhistory │ │ │ ├── historysettings.cpp │ │ │ ├── historysettings.h │ │ │ ├── historysettings.ui │ │ │ ├── historywindow.cpp │ │ │ ├── historywindow.h │ │ │ ├── historywindow.ui │ │ │ ├── sqlengine.cpp │ │ │ ├── sqlengine.h │ │ │ ├── sqlhistory.cpp │ │ │ ├── sqlhistory.h │ │ │ ├── sqlhistory.pro │ │ │ └── sqlhistory.qbs │ │ ├── trayicon │ │ │ ├── StatusNotifierItem.xml │ │ │ ├── StatusNotifierWatcher.xml │ │ │ ├── dbussrc │ │ │ │ ├── statusnotifieritem.cpp │ │ │ │ ├── statusnotifieritem.h │ │ │ │ ├── statusnotifieritemdbus.cpp │ │ │ │ ├── statusnotifieritemdbus.h │ │ │ │ ├── statusnotifierwatcher.cpp │ │ │ │ └── statusnotifierwatcher.h │ │ │ ├── qml │ │ │ │ └── settings │ │ │ │ │ └── trayicon │ │ │ │ │ └── main.qml │ │ │ ├── src │ │ │ │ ├── simpletray.cpp │ │ │ │ ├── simpletray.h │ │ │ │ ├── simpletraysettings.cpp │ │ │ │ ├── simpletraysettings.h │ │ │ │ └── simpletraysettings.ui │ │ │ ├── trayicon.plugin.json │ │ │ └── trayicon.qbs │ │ ├── unreadmessageskeeper │ │ │ ├── src │ │ │ │ ├── unreadmessageskeeper.cpp │ │ │ │ └── unreadmessageskeeper.h │ │ │ └── unreadmessageskeeper.qbs │ │ ├── updater │ │ │ ├── src │ │ │ │ ├── updater.cpp │ │ │ │ └── updater.h │ │ │ └── updater.qbs │ │ ├── urlpreview │ │ │ ├── icons │ │ │ │ └── urlpreview-plugin.png │ │ │ ├── qml │ │ │ │ └── settings │ │ │ │ │ └── urlpreview │ │ │ │ │ └── main.qml │ │ │ ├── src │ │ │ │ ├── messagehandler.cpp │ │ │ │ ├── messagehandler.h │ │ │ │ ├── urlpreview.cpp │ │ │ │ └── urlpreview.h │ │ │ └── urlpreview.qbs │ │ ├── weather │ │ │ ├── icons │ │ │ │ ├── 0.png │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ ├── 03.png │ │ │ │ ├── 04.png │ │ │ │ ├── 05.png │ │ │ │ ├── 06.png │ │ │ │ ├── 07.png │ │ │ │ ├── 08.png │ │ │ │ ├── 09.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 16.png │ │ │ │ ├── 17.png │ │ │ │ ├── 18.png │ │ │ │ ├── 19.png │ │ │ │ ├── 20.png │ │ │ │ ├── 21.png │ │ │ │ ├── 22.png │ │ │ │ ├── 23.png │ │ │ │ ├── 24.png │ │ │ │ ├── 25.png │ │ │ │ ├── 26.png │ │ │ │ ├── 27.png │ │ │ │ ├── 28.png │ │ │ │ ├── 29.png │ │ │ │ ├── 30.png │ │ │ │ ├── 31.png │ │ │ │ ├── 32.png │ │ │ │ ├── 33.png │ │ │ │ ├── 34.png │ │ │ │ ├── 35.png │ │ │ │ ├── 36.png │ │ │ │ ├── 37.png │ │ │ │ ├── 38.png │ │ │ │ ├── 39.png │ │ │ │ ├── 40.png │ │ │ │ ├── 41.png │ │ │ │ ├── 42.png │ │ │ │ ├── 43.png │ │ │ │ ├── 44.png │ │ │ │ ├── 45.png │ │ │ │ ├── 46.png │ │ │ │ ├── 47.png │ │ │ │ ├── add.png │ │ │ │ ├── delete.png │ │ │ │ ├── search.png │ │ │ │ ├── weather.png │ │ │ │ └── weather_big.png │ │ │ ├── src │ │ │ │ ├── waccount.cpp │ │ │ │ ├── waccount.h │ │ │ │ ├── wcontact.cpp │ │ │ │ ├── wcontact.h │ │ │ │ ├── weather.cpp │ │ │ │ ├── weather.h │ │ │ │ ├── wlistitem.cpp │ │ │ │ ├── wlistitem.h │ │ │ │ ├── wmanager.cpp │ │ │ │ ├── wmanager.h │ │ │ │ ├── wprotocol.cpp │ │ │ │ ├── wprotocol.h │ │ │ │ ├── wsettings.cpp │ │ │ │ ├── wsettings.h │ │ │ │ └── wsettings.ui │ │ │ ├── weather.qbs │ │ │ ├── weather.qrc │ │ │ └── weatherthemes │ │ │ │ └── default │ │ │ │ ├── Current.html │ │ │ │ ├── Current.txt │ │ │ │ ├── ForecastDay.html │ │ │ │ ├── ForecastDay.txt │ │ │ │ ├── ForecastTitle.html │ │ │ │ └── ForecastTitle.txt │ │ ├── webhistory │ │ │ ├── COPYING │ │ │ ├── icons │ │ │ │ └── webhistory-plugin.png │ │ │ ├── server-side │ │ │ │ ├── history.php │ │ │ │ └── history.sql │ │ │ ├── settings.cpp │ │ │ ├── settings.h │ │ │ ├── settings.ui │ │ │ ├── webhistory.cpp │ │ │ ├── webhistory.h │ │ │ ├── webhistory.pro │ │ │ ├── webhistory.qbs │ │ │ └── webhistory.qrc │ │ ├── xsettingsdialog │ │ │ ├── qml │ │ │ │ └── xsettingsdialog │ │ │ │ │ └── main.qml │ │ │ ├── xsettingsdialog.plugin.json │ │ │ ├── xsettingsdialog.qbs │ │ │ ├── xsettingslayerimpl.cpp │ │ │ ├── xsettingslayerimpl.h │ │ │ ├── xsettingswidget.cpp │ │ │ ├── xsettingswidget.h │ │ │ ├── xsettingswindow.cpp │ │ │ └── xsettingswindow.h │ │ └── yandexnarod │ │ │ ├── COPYING │ │ │ ├── README │ │ │ ├── icons │ │ │ ├── clipboard.png │ │ │ ├── close.png │ │ │ ├── delete.png │ │ │ ├── reload.png │ │ │ ├── upload.png │ │ │ ├── yandexnarod-icons-files.png │ │ │ ├── yandexnarodlogo.png │ │ │ └── yandexnarodplugin.png │ │ │ ├── qml │ │ │ └── settings │ │ │ │ └── yandexDisk │ │ │ │ └── main.qml │ │ │ ├── src │ │ │ ├── yandexnarod.cpp │ │ │ ├── yandexnarod.h │ │ │ ├── yandexnarodauthorizator.cpp │ │ │ ├── yandexnarodauthorizator.h │ │ │ ├── yandexnaroduploadjob.cpp │ │ │ └── yandexnaroduploadjob.h │ │ │ ├── yandexnarod.qbs │ │ │ └── yandexnarod.qrc │ ├── integrations │ │ ├── Integration.qbs │ │ ├── awn │ │ │ ├── TODO │ │ │ ├── awn.qbs │ │ │ └── src │ │ │ │ ├── awn.cpp │ │ │ │ ├── awn.h │ │ │ │ ├── awnservice.cpp │ │ │ │ ├── awnservice.h │ │ │ │ ├── chatwindowcontroller.cpp │ │ │ │ └── chatwindowcontroller.h │ │ ├── dbusnotifications │ │ │ ├── dbusnotifications.qbs │ │ │ ├── org.freedesktop.Notifications.xml │ │ │ └── src │ │ │ │ ├── dbusbackend.cpp │ │ │ │ ├── dbusbackend.h │ │ │ │ ├── dplugin.cpp │ │ │ │ ├── dplugin.h │ │ │ │ ├── freedesktop_notifications.cpp │ │ │ │ └── freedesktop_notifications.h │ │ ├── haikunotifications │ │ │ ├── haikunotifications.qbs │ │ │ └── src │ │ │ │ ├── haikunotificationsbackend.cpp │ │ │ │ ├── haikunotificationsbackend.h │ │ │ │ ├── haikunotificationsplugin.cpp │ │ │ │ └── haikunotificationsplugin.h │ │ ├── indicator │ │ │ ├── indicator.qbs │ │ │ └── src │ │ │ │ ├── indicator.cpp │ │ │ │ ├── indicator.h │ │ │ │ ├── indicatorservice.cpp │ │ │ │ └── indicatorservice.h │ │ ├── integrations.qbs │ │ ├── kdeintegration │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── GPL │ │ │ ├── cmake │ │ │ │ └── FindPhonon.cmake │ │ │ ├── kdeintegration.qbs │ │ │ ├── shared │ │ │ │ └── shareddata.h │ │ │ └── src │ │ │ │ ├── aboutapp │ │ │ │ ├── kdeaboutappdialog.cpp │ │ │ │ └── kdeaboutappdialog.h │ │ │ │ ├── aboutkde │ │ │ │ ├── aboutkdedialog.cpp │ │ │ │ └── aboutkdedialog.h │ │ │ │ ├── crash │ │ │ │ ├── crashplugin.cpp │ │ │ │ └── crashplugin.h │ │ │ │ ├── emoticons │ │ │ │ ├── kdeemoticons.cpp │ │ │ │ ├── kdeemoticons.h │ │ │ │ ├── kdeemoticonsprovider.cpp │ │ │ │ └── kdeemoticonsprovider.h │ │ │ │ ├── iconloader │ │ │ │ ├── kdeiconloader.cpp │ │ │ │ └── kdeiconloader.h │ │ │ │ ├── kdeintegration.cpp │ │ │ │ ├── kdeintegration.h │ │ │ │ ├── quetzalgui.cpp │ │ │ │ ├── quetzalgui.h │ │ │ │ ├── speller │ │ │ │ ├── kdespellerlayer.cpp │ │ │ │ ├── kdespellerlayer.h │ │ │ │ ├── kdespellersettings.cpp │ │ │ │ ├── kdespellersettings.h │ │ │ │ └── kdespellersettings.ui │ │ │ │ ├── sysintegration │ │ │ │ ├── kdesystemintegration.cpp │ │ │ │ └── kdesystemintegration.h │ │ │ │ └── tray │ │ │ │ ├── kdetrayicon.cpp │ │ │ │ └── kdetrayicon.h │ │ ├── linuxintegration │ │ │ ├── linuxintegration.cpp │ │ │ ├── linuxintegration.h │ │ │ ├── linuxintegration.plugin.json │ │ │ └── linuxintegration.qbs │ │ ├── macintegration │ │ │ ├── macintegration.qbs │ │ │ ├── share │ │ │ │ └── icons │ │ │ │ │ └── hicolor │ │ │ │ │ └── 128x128 │ │ │ │ │ └── apps │ │ │ │ │ └── growl.png │ │ │ └── src │ │ │ │ ├── maccontactlistwidget │ │ │ │ ├── maccontactlistwidget.plugin.json │ │ │ │ ├── maccontactlistwidget.qbs │ │ │ │ ├── macsearchfield.h │ │ │ │ ├── macsearchfield.mm │ │ │ │ ├── macwidget.h │ │ │ │ ├── macwidget.mm │ │ │ │ ├── macwidget_p.h │ │ │ │ ├── quickmactoolbar.h │ │ │ │ ├── quickmactoolbar.mm │ │ │ │ ├── quickmacwindowbackgroundblur.h │ │ │ │ └── quickmacwindowbackgroundblur.mm │ │ │ │ ├── macdock │ │ │ │ ├── macdock.h │ │ │ │ ├── macdock.mm │ │ │ │ ├── macdock.plugin.json │ │ │ │ └── macdock.qbs │ │ │ │ ├── macgrowl │ │ │ │ ├── growlbackend.h │ │ │ │ ├── growlbackend.mm │ │ │ │ ├── macgrowl.plugin.json │ │ │ │ └── macgrowl.qbs │ │ │ │ ├── macidle │ │ │ │ ├── macidle-global.h │ │ │ │ ├── macidle.h │ │ │ │ ├── macidle.mm │ │ │ │ ├── macidle.plugin.json │ │ │ │ ├── macidle.qbs │ │ │ │ ├── macidlewidget.cpp │ │ │ │ ├── macidlewidget.h │ │ │ │ └── macidlewidget.ui │ │ │ │ └── macspellchecker │ │ │ │ ├── macspellchecker.h │ │ │ │ ├── macspellchecker.mm │ │ │ │ ├── macspellchecker.plugin.json │ │ │ │ ├── macspellchecker.qbs │ │ │ │ ├── macspellsettings.cpp │ │ │ │ └── macspellsettings.h │ │ ├── maemo5integration │ │ │ ├── maemo5files │ │ │ │ ├── qutim │ │ │ │ │ └── icons │ │ │ │ │ │ └── hicolor │ │ │ │ │ │ └── 32x32 │ │ │ │ │ │ └── actions │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── top.png │ │ │ │ │ │ └── undo.png │ │ │ │ └── share │ │ │ │ │ ├── applications │ │ │ │ │ └── hildon │ │ │ │ │ │ └── qutim.desktop │ │ │ │ │ └── icons │ │ │ │ │ └── hicolor │ │ │ │ │ └── 48x48 │ │ │ │ │ └── actions │ │ │ │ │ ├── mail-message-new-qutim.png │ │ │ │ │ ├── qutim-offline.png │ │ │ │ │ └── qutim-online.png │ │ │ ├── maemo5idledetector │ │ │ │ ├── maemo5idle.cpp │ │ │ │ └── maemo5idle.h │ │ │ ├── maemo5integration.qbs │ │ │ ├── maemo5led │ │ │ │ ├── maemo5led.cpp │ │ │ │ ├── maemo5led.h │ │ │ │ ├── maemo5ledplugin.cpp │ │ │ │ └── maemo5ledplugin.h │ │ │ ├── maemo5settings │ │ │ │ ├── maemo5settings.cpp │ │ │ │ ├── maemo5settings.h │ │ │ │ ├── maemo5settings.ui │ │ │ │ ├── maemo5settingsplugin.cpp │ │ │ │ └── maemo5settingsplugin.h │ │ │ ├── maemo5tray │ │ │ │ ├── maemo5docklet.cpp │ │ │ │ ├── maemo5docklet.h │ │ │ │ ├── maemo5dockletconnector.h │ │ │ │ ├── maemo5tray.cpp │ │ │ │ ├── maemo5tray.h │ │ │ │ ├── maemo5trayplugin.cpp │ │ │ │ └── maemo5trayplugin.h │ │ │ └── maemo5vibra │ │ │ │ ├── maemo5vibra.cpp │ │ │ │ ├── maemo5vibra.h │ │ │ │ ├── maemo5vibraplugin.cpp │ │ │ │ └── maemo5vibraplugin.h │ │ ├── meegointegration │ │ │ ├── harmattanfiles │ │ │ │ ├── qutim │ │ │ │ │ ├── emoticons │ │ │ │ │ │ └── default │ │ │ │ │ │ │ ├── aa.png │ │ │ │ │ │ │ ├── ab.png │ │ │ │ │ │ │ ├── ac.png │ │ │ │ │ │ │ ├── ad.png │ │ │ │ │ │ │ ├── ae.png │ │ │ │ │ │ │ ├── af.png │ │ │ │ │ │ │ ├── ah.png │ │ │ │ │ │ │ ├── aj.png │ │ │ │ │ │ │ ├── ba.png │ │ │ │ │ │ │ ├── bb.png │ │ │ │ │ │ │ ├── bc.png │ │ │ │ │ │ │ ├── be.png │ │ │ │ │ │ │ ├── bf.png │ │ │ │ │ │ │ ├── bg.png │ │ │ │ │ │ │ ├── bh.png │ │ │ │ │ │ │ ├── bi.png │ │ │ │ │ │ │ ├── bj.png │ │ │ │ │ │ │ ├── bk.png │ │ │ │ │ │ │ └── emoticons.xml │ │ │ │ │ └── sounds │ │ │ │ │ │ ├── beta │ │ │ │ │ │ ├── AdiumAim.xml │ │ │ │ │ │ ├── buddy_off.wav │ │ │ │ │ │ ├── buddy_on.wav │ │ │ │ │ │ ├── knock_knock.wav │ │ │ │ │ │ ├── receive_1st_im.wav │ │ │ │ │ │ ├── receive_im.wav │ │ │ │ │ │ ├── send_im.wav │ │ │ │ │ │ └── welcome.wav │ │ │ │ │ │ └── default │ │ │ │ │ │ ├── c_birth.wav │ │ │ │ │ │ ├── c_blocked_message.wav │ │ │ │ │ │ ├── c_changed_status.wav │ │ │ │ │ │ ├── c_offline.wav │ │ │ │ │ │ ├── c_online.wav │ │ │ │ │ │ ├── c_typing.wav │ │ │ │ │ │ ├── default.xml │ │ │ │ │ │ ├── m_get.wav │ │ │ │ │ │ ├── m_send.wav │ │ │ │ │ │ ├── start.wav │ │ │ │ │ │ ├── sys_custom.wav │ │ │ │ │ │ └── sys_event.wav │ │ │ │ └── share │ │ │ │ │ ├── applications │ │ │ │ │ └── qutim.desktop │ │ │ │ │ └── icons │ │ │ │ │ └── hicolor │ │ │ │ │ └── 80x80 │ │ │ │ │ └── apps │ │ │ │ │ └── qutim.png │ │ │ ├── meegoapplicationwindow │ │ │ │ ├── declarative │ │ │ │ │ └── meego │ │ │ │ │ │ ├── AboutDialog.qml │ │ │ │ │ │ ├── AccountCreatorDialog.qml │ │ │ │ │ │ ├── AddContactDialog.qml │ │ │ │ │ │ ├── AnimatedTabGroup.qml │ │ │ │ │ │ ├── AuthDialog.qml │ │ │ │ │ │ ├── BookmarkDelegate.qml │ │ │ │ │ │ ├── Chat.qml │ │ │ │ │ │ ├── ChatChannelList.qml │ │ │ │ │ │ ├── ChatUnitsList.qml │ │ │ │ │ │ ├── ChatView.qml │ │ │ │ │ │ ├── ComboBox.qml │ │ │ │ │ │ ├── ComboBoxStyle.qml │ │ │ │ │ │ ├── ContactInfoPage.qml │ │ │ │ │ │ ├── ContactItem.qml │ │ │ │ │ │ ├── ContactList.qml │ │ │ │ │ │ ├── ControlledMenu.qml │ │ │ │ │ │ ├── ControlledMenuItem.qml │ │ │ │ │ │ ├── EditGroupChatPage.qml │ │ │ │ │ │ ├── EmoticonsDialog.qml │ │ │ │ │ │ ├── FlickableColumn.qml │ │ │ │ │ │ ├── GroupSeparator.qml │ │ │ │ │ │ ├── InputDialog.qml │ │ │ │ │ │ ├── ItemDelegate.qml │ │ │ │ │ │ ├── JoinGroupChatDialog.qml │ │ │ │ │ │ ├── JoinGroupChatPage.qml │ │ │ │ │ │ ├── Main.qml │ │ │ │ │ │ ├── MessageBox.qml │ │ │ │ │ │ ├── PasswordDialog.qml │ │ │ │ │ │ ├── ProxyPage.qml │ │ │ │ │ │ ├── SettingsItemPage.qml │ │ │ │ │ │ ├── SettingsPage.qml │ │ │ │ │ │ ├── SettingsToolBarLayout.qml │ │ │ │ │ │ ├── SwitchRow.qml │ │ │ │ │ │ ├── TabIcon.qml │ │ │ │ │ │ ├── Utils.js │ │ │ │ │ │ ├── accounts │ │ │ │ │ │ ├── AccountCreatorPage.qml │ │ │ │ │ │ ├── CreateJabberPage.qml │ │ │ │ │ │ ├── CreateMrimPage.qml │ │ │ │ │ │ ├── CreateOscarPage.qml │ │ │ │ │ │ ├── CreateVKPage.qml │ │ │ │ │ │ ├── JabberPage.qml │ │ │ │ │ │ ├── MrimPage.qml │ │ │ │ │ │ ├── OscarPage.qml │ │ │ │ │ │ ├── ProtocolListPage.qml │ │ │ │ │ │ └── VKPage.qml │ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── PageHeader.qml │ │ │ │ │ │ ├── SearchBar.qml │ │ │ │ │ │ └── TitleBar.qml │ │ │ │ │ │ ├── constants.js │ │ │ │ │ │ ├── dataform │ │ │ │ │ │ ├── DataAreaField.qml │ │ │ │ │ │ ├── DataColumn.qml │ │ │ │ │ │ ├── DataComboBox.qml │ │ │ │ │ │ ├── DataIntegerField.qml │ │ │ │ │ │ ├── DataLabel.qml │ │ │ │ │ │ ├── DataLabelRaw.qml │ │ │ │ │ │ ├── DataSeparator.qml │ │ │ │ │ │ ├── DataSwitch.qml │ │ │ │ │ │ └── DataTextField.qml │ │ │ │ │ │ ├── messageDelegate │ │ │ │ │ │ ├── ActionDelegate.qml │ │ │ │ │ │ ├── CommonMessageDelegate.qml │ │ │ │ │ │ ├── Constants.js │ │ │ │ │ │ ├── Message.qml │ │ │ │ │ │ ├── MessageDelegate.qml │ │ │ │ │ │ ├── MessageText.qml │ │ │ │ │ │ ├── ServiceDelegate.qml │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── bullet-received.png │ │ │ │ │ │ │ └── bullet-send.png │ │ │ │ │ │ ├── qutim-landscape.png │ │ │ │ │ │ ├── qutim-portrait.png │ │ │ │ │ │ └── settings │ │ │ │ │ │ ├── AntispamPage.qml │ │ │ │ │ │ ├── AutoAwayPage.qml │ │ │ │ │ │ ├── BlogImproverPage.qml │ │ │ │ │ │ ├── ChatPage.qml │ │ │ │ │ │ ├── ConnectionManagerPage.qml │ │ │ │ │ │ ├── DataItemPage.qml │ │ │ │ │ │ ├── EmoticonsPage.qml │ │ │ │ │ │ ├── HighlighterPage.qml │ │ │ │ │ │ ├── LanguagesPage.qml │ │ │ │ │ │ ├── NotificationsBackendPage.qml │ │ │ │ │ │ ├── NotificationsPage.qml │ │ │ │ │ │ ├── ProxyPage.qml │ │ │ │ │ │ ├── SoundThemePage.qml │ │ │ │ │ │ └── UrlPreviewPage.qml │ │ │ │ └── src │ │ │ │ │ ├── aboutdialogwrapper.cpp │ │ │ │ │ ├── aboutdialogwrapper.h │ │ │ │ │ ├── accountcreatorlist.cpp │ │ │ │ │ ├── accountcreatorlist.h │ │ │ │ │ ├── accountcreatorlist.ui │ │ │ │ │ ├── accountsmodel.cpp │ │ │ │ │ ├── accountsmodel.h │ │ │ │ │ ├── addaccountdialogwrapper.cpp │ │ │ │ │ ├── addaccountdialogwrapper.h │ │ │ │ │ ├── addcontactdialogwrapper.cpp │ │ │ │ │ ├── addcontactdialogwrapper.h │ │ │ │ │ ├── applicationwindow.cpp │ │ │ │ │ ├── applicationwindow.h │ │ │ │ │ ├── applicationwindowplugin.cpp │ │ │ │ │ ├── applicationwindowplugin.h │ │ │ │ │ ├── authdialogwrapper.cpp │ │ │ │ │ ├── authdialogwrapper.h │ │ │ │ │ ├── bookmarksmodel.cpp │ │ │ │ │ ├── bookmarksmodel.h │ │ │ │ │ ├── chat.cpp │ │ │ │ │ ├── chat.h │ │ │ │ │ ├── chatchannel.cpp │ │ │ │ │ ├── chatchannel.h │ │ │ │ │ ├── chatchannelmodel.cpp │ │ │ │ │ ├── chatchannelmodel.h │ │ │ │ │ ├── chatchannelusersmodel.cpp │ │ │ │ │ ├── chatchannelusersmodel.h │ │ │ │ │ ├── chatcontroller.cpp │ │ │ │ │ ├── chatcontroller.h │ │ │ │ │ ├── chatmessagemodel.cpp │ │ │ │ │ ├── chatmessagemodel.h │ │ │ │ │ ├── chatpreview.cpp │ │ │ │ │ ├── chatpreview.h │ │ │ │ │ ├── chatviewstyle.cpp │ │ │ │ │ ├── chatviewstyle.h │ │ │ │ │ ├── constants.h │ │ │ │ │ ├── contactlist.cpp │ │ │ │ │ ├── contactlist.h │ │ │ │ │ ├── contactlistmodel.cpp │ │ │ │ │ ├── contactlistmodel.h │ │ │ │ │ ├── emoticonswrapper.cpp │ │ │ │ │ ├── emoticonswrapper.h │ │ │ │ │ ├── joingroupchatwrapper.cpp │ │ │ │ │ ├── joingroupchatwrapper.h │ │ │ │ │ ├── languagesmodel.cpp │ │ │ │ │ ├── languagesmodel.h │ │ │ │ │ ├── maemo6idle.cpp │ │ │ │ │ ├── maemo6idle.h │ │ │ │ │ ├── meegointegration.cpp │ │ │ │ │ ├── meegointegration.h │ │ │ │ │ ├── menumodel.cpp │ │ │ │ │ ├── menumodel.h │ │ │ │ │ ├── notificationmanagerwrapper.cpp │ │ │ │ │ ├── notificationmanagerwrapper.h │ │ │ │ │ ├── notificationwrapper.cpp │ │ │ │ │ ├── notificationwrapper.h │ │ │ │ │ ├── passworddialogwrapper.cpp │ │ │ │ │ ├── passworddialogwrapper.h │ │ │ │ │ ├── quickaboutdialog.cpp │ │ │ │ │ ├── quickaboutdialog.h │ │ │ │ │ ├── quickaddaccountdialog.cpp │ │ │ │ │ ├── quickaddaccountdialog.h │ │ │ │ │ ├── quickaddcontactdialog.cpp │ │ │ │ │ ├── quickaddcontactdialog.h │ │ │ │ │ ├── quickauthdialog.cpp │ │ │ │ │ ├── quickauthdialog.h │ │ │ │ │ ├── quickconfig.cpp │ │ │ │ │ ├── quickconfig.h │ │ │ │ │ ├── quickcontactinfo.cpp │ │ │ │ │ ├── quickcontactinfo.h │ │ │ │ │ ├── quickdataform.cpp │ │ │ │ │ ├── quickdataform.h │ │ │ │ │ ├── quickiconloader.cpp │ │ │ │ │ ├── quickiconloader.h │ │ │ │ │ ├── quickinputdialog.cpp │ │ │ │ │ ├── quickinputdialog.h │ │ │ │ │ ├── quickjoingroupchat.cpp │ │ │ │ │ ├── quickjoingroupchat.h │ │ │ │ │ ├── quickmaskeffect.cpp │ │ │ │ │ ├── quickmaskeffect.h │ │ │ │ │ ├── quickmenubuilder.cpp │ │ │ │ │ ├── quickmenubuilder.h │ │ │ │ │ ├── quicknotificationmanager.cpp │ │ │ │ │ ├── quicknotificationmanager.h │ │ │ │ │ ├── quickpassworddialog.cpp │ │ │ │ │ ├── quickpassworddialog.h │ │ │ │ │ ├── quickproxyhelper.cpp │ │ │ │ │ ├── quickproxyhelper.h │ │ │ │ │ ├── quickregexpservice.cpp │ │ │ │ │ ├── quickregexpservice.h │ │ │ │ │ ├── quicksettingslayer.cpp │ │ │ │ │ ├── quicksettingslayer.h │ │ │ │ │ ├── quicksettingsmodel.cpp │ │ │ │ │ ├── quicksettingsmodel.h │ │ │ │ │ ├── quickwidgetproxy.cpp │ │ │ │ │ ├── quickwidgetproxy.h │ │ │ │ │ ├── servicemanagerwrapper.cpp │ │ │ │ │ ├── servicemanagerwrapper.h │ │ │ │ │ ├── settingswrapper.cpp │ │ │ │ │ ├── settingswrapper.h │ │ │ │ │ ├── soundthemewrapper.cpp │ │ │ │ │ ├── soundthemewrapper.h │ │ │ │ │ ├── statuswrapper.cpp │ │ │ │ │ ├── statuswrapper.h │ │ │ │ │ ├── thememanagerwrapper.cpp │ │ │ │ │ └── thememanagerwrapper.h │ │ │ └── meegointegration.qbs │ │ ├── softkeysactionbox │ │ │ ├── softkeysactionbox.cpp │ │ │ ├── softkeysactionbox.h │ │ │ └── softkeysactionbox.qbs │ │ ├── symbianintegration │ │ │ ├── symbianchatform │ │ │ │ ├── settings │ │ │ │ │ ├── stackedchatbehavior.cpp │ │ │ │ │ ├── stackedchatbehavior.h │ │ │ │ │ └── stackedchatbehavior.ui │ │ │ │ ├── stackedchatform.cpp │ │ │ │ ├── stackedchatform.h │ │ │ │ ├── stackedchatwidget.cpp │ │ │ │ └── stackedchatwidget.h │ │ │ ├── symbiancontactlistwidget │ │ │ │ ├── symbianwidget.cpp │ │ │ │ └── symbianwidget.h │ │ │ ├── symbianintegration.qbs │ │ │ └── symbianvibra │ │ │ │ ├── cmake │ │ │ │ └── FindHWRMVibra.cmake │ │ │ │ ├── symbianvibration.cpp │ │ │ │ └── symbianvibration.h │ │ └── winintegration │ │ │ ├── cmake │ │ │ └── FindWinThings.cmake │ │ │ ├── libs │ │ │ ├── apilayer │ │ │ │ └── src │ │ │ │ │ ├── ApiJumpList.cpp │ │ │ │ │ ├── ApiJumpList.h │ │ │ │ │ ├── ApiProgressIndicator.cpp │ │ │ │ │ ├── ApiProgressIndicator.h │ │ │ │ │ ├── ApiProgressIndicatorStates.h │ │ │ │ │ ├── ApiTaskbarPreviews.cpp │ │ │ │ │ ├── ApiTaskbarPreviews.h │ │ │ │ │ ├── ApiTaskbarPreviewsWAttributes.h │ │ │ │ │ └── apiglobal.h │ │ │ ├── include │ │ │ │ └── WinThings │ │ │ │ │ ├── OverlayIcon.h │ │ │ │ │ ├── ProgressIndicator.h │ │ │ │ │ ├── TaskbarPreviews.h │ │ │ │ │ └── WinThings.h │ │ │ └── qtwrapper │ │ │ │ └── src │ │ │ │ ├── JumpList.cpp │ │ │ │ ├── JumpList.h │ │ │ │ ├── JumpListTask.cpp │ │ │ │ ├── JumpListTask.h │ │ │ │ ├── ProgressIndicator.cpp │ │ │ │ ├── ProgressIndicator.h │ │ │ │ ├── TaskbarPreviews.cpp │ │ │ │ ├── TaskbarPreviews.h │ │ │ │ ├── WinEventFilter.cpp │ │ │ │ ├── WinEventFilter.h │ │ │ │ └── global.h │ │ │ ├── res │ │ │ ├── def-bg.png │ │ │ ├── dialogtitle.png │ │ │ └── old_def-bg.png │ │ │ ├── src │ │ │ ├── cmd-server.cpp │ │ │ ├── cmd-server.h │ │ │ ├── links-openner.cpp │ │ │ ├── links-openner.h │ │ │ ├── winint.cpp │ │ │ ├── winint.h │ │ │ ├── wsettings.cpp │ │ │ ├── wsettings.h │ │ │ └── wsettings.ui │ │ │ ├── subplugins │ │ │ └── win7taskbar │ │ │ │ ├── overlay-icon.cpp │ │ │ │ ├── overlay-icon.h │ │ │ │ ├── thumbnails-renderer.cpp │ │ │ │ ├── thumbnails-renderer.h │ │ │ │ ├── thumbnails.cpp │ │ │ │ ├── thumbnails.h │ │ │ │ ├── win7taskbar.cpp │ │ │ │ └── win7taskbar.h │ │ │ ├── win-integration.qrc │ │ │ ├── winintegration.qbs │ │ │ └── wininthelper │ │ │ └── src │ │ │ ├── helper-global.h │ │ │ └── helper.cpp │ ├── plugins.qbs │ ├── plugintemplate.cpp │ └── protocols │ │ ├── Protocol.qbs │ │ ├── astral │ │ ├── astral.qbs │ │ └── src │ │ │ ├── astralaccount.cpp │ │ │ ├── astralaccount.h │ │ │ ├── astralcontact.cpp │ │ │ ├── astralcontact.h │ │ │ ├── astralplugin.cpp │ │ │ ├── astralplugin.h │ │ │ ├── astralprotocol.cpp │ │ │ ├── astralprotocol.h │ │ │ ├── astralroster.cpp │ │ │ ├── astralroster.h │ │ │ ├── astralsession.cpp │ │ │ ├── astralsession.h │ │ │ ├── astralsessionmanager.cpp │ │ │ └── astralsessionmanager.h │ │ ├── irc │ │ ├── irc.qbs │ │ └── src │ │ │ ├── ircaccount.cpp │ │ │ ├── ircaccount.h │ │ │ ├── ircaccount_p.h │ │ │ ├── ircactiongenerator.cpp │ │ │ ├── ircactiongenerator.h │ │ │ ├── ircactiongenerator_p.h │ │ │ ├── ircavatar.cpp │ │ │ ├── ircavatar.h │ │ │ ├── ircchannel.cpp │ │ │ ├── ircchannel.h │ │ │ ├── ircchannel_p.h │ │ │ ├── ircchannelparticipant.cpp │ │ │ ├── ircchannelparticipant.h │ │ │ ├── irccommandalias.cpp │ │ │ ├── irccommandalias.h │ │ │ ├── ircconnection.cpp │ │ │ ├── ircconnection.h │ │ │ ├── irccontact.cpp │ │ │ ├── irccontact.h │ │ │ ├── irccontact_p.h │ │ │ ├── ircctcphandler.cpp │ │ │ ├── ircctcphandler.h │ │ │ ├── ircglobal.h │ │ │ ├── ircgroupchatmanager.cpp │ │ │ ├── ircgroupchatmanager.h │ │ │ ├── ircplugin.cpp │ │ │ ├── ircplugin.h │ │ │ ├── ircprotocol.cpp │ │ │ ├── ircprotocol.h │ │ │ ├── ircprotocol_p.h │ │ │ ├── ircproxymanager.cpp │ │ │ ├── ircproxymanager.h │ │ │ ├── ircservermessagehandler.cpp │ │ │ ├── ircservermessagehandler.h │ │ │ ├── ircstandartctcphandler.cpp │ │ │ ├── ircstandartctcphandler.h │ │ │ ├── ircwhoisreplieshandler.cpp │ │ │ ├── ircwhoisreplieshandler.h │ │ │ └── ui │ │ │ ├── accountcreator.cpp │ │ │ ├── accountcreator.h │ │ │ ├── addaccountform.ui │ │ │ ├── console.ui │ │ │ ├── editnickform.ui │ │ │ ├── ircaccountmainsettings.cpp │ │ │ ├── ircaccountmainsettings.h │ │ │ ├── ircaccountnicksettings.cpp │ │ │ ├── ircaccountnicksettings.h │ │ │ ├── ircchannellist.cpp │ │ │ ├── ircchannellist.h │ │ │ ├── ircchannellist.ui │ │ │ ├── ircconsole.cpp │ │ │ ├── ircconsole.h │ │ │ ├── ircsettingswidget.cpp │ │ │ └── ircsettingswidget.h │ │ ├── jabber │ │ ├── cmake │ │ │ └── Modules │ │ │ │ ├── FindQtMobility.cmake │ │ │ │ └── mobilityconfig.prf │ │ ├── jabber.qbs │ │ └── src │ │ │ ├── jabber_global.cpp │ │ │ ├── jabber_global.h │ │ │ ├── jplugin.cpp │ │ │ ├── jplugin.h │ │ │ ├── protocol │ │ │ ├── account │ │ │ │ ├── connection │ │ │ │ │ ├── jcertinfo.cpp │ │ │ │ │ ├── jcertinfo.h │ │ │ │ │ ├── jcertinfo.ui │ │ │ │ │ ├── jconnection.cpp │ │ │ │ │ ├── jconnection.h │ │ │ │ │ ├── jconnectionbase.cpp │ │ │ │ │ ├── jconnectionbase.h │ │ │ │ │ ├── jconnectionlistener.cpp │ │ │ │ │ ├── jconnectionlistener.h │ │ │ │ │ ├── jconnectiontcpbase.cpp │ │ │ │ │ ├── jconnectiontcpbase.h │ │ │ │ │ ├── jconnectiontcpserver.cpp │ │ │ │ │ ├── jconnectiontcpserver.h │ │ │ │ │ ├── jserverdiscoinfo.cpp │ │ │ │ │ └── jserverdiscoinfo.h │ │ │ │ ├── dataform │ │ │ │ │ ├── jdataform.cpp │ │ │ │ │ ├── jdataform.h │ │ │ │ │ └── jdataform_p.h │ │ │ │ ├── jaccount.cpp │ │ │ │ ├── jaccount.h │ │ │ │ ├── jaccount_p.h │ │ │ │ ├── jpgpkeydialog.cpp │ │ │ │ ├── jpgpkeydialog.h │ │ │ │ ├── jpgpkeydialog.ui │ │ │ │ ├── jpgpsupport.cpp │ │ │ │ ├── jpgpsupport.h │ │ │ │ ├── muc │ │ │ │ │ ├── jbookmarkmanager.cpp │ │ │ │ │ ├── jbookmarkmanager.h │ │ │ │ │ ├── jconferenceconfig.cpp │ │ │ │ │ ├── jconferenceconfig.h │ │ │ │ │ ├── jconferenceconfig.ui │ │ │ │ │ ├── jinvitemanager.cpp │ │ │ │ │ ├── jinvitemanager.h │ │ │ │ │ ├── jmucmanager.cpp │ │ │ │ │ ├── jmucmanager.h │ │ │ │ │ ├── jmucsession.cpp │ │ │ │ │ ├── jmucsession.h │ │ │ │ │ ├── jmucuser.cpp │ │ │ │ │ ├── jmucuser.h │ │ │ │ │ ├── jsessionconvertor.cpp │ │ │ │ │ └── jsessionconvertor.h │ │ │ │ └── roster │ │ │ │ │ ├── jaccountresource.cpp │ │ │ │ │ ├── jaccountresource.h │ │ │ │ │ ├── jcontact.cpp │ │ │ │ │ ├── jcontact.h │ │ │ │ │ ├── jcontactresource.cpp │ │ │ │ │ ├── jcontactresource.h │ │ │ │ │ ├── jcontactresource_p.h │ │ │ │ │ ├── jmessagehandler.cpp │ │ │ │ │ ├── jmessagehandler.h │ │ │ │ │ ├── jmessagesession.cpp │ │ │ │ │ ├── jmessagesession.h │ │ │ │ │ ├── jmessagesession_p.h │ │ │ │ │ ├── jmessagesessionowner.cpp │ │ │ │ │ ├── jmessagesessionowner.h │ │ │ │ │ ├── jresourceactiongenerator.cpp │ │ │ │ │ ├── jresourceactiongenerator.h │ │ │ │ │ ├── jroster.cpp │ │ │ │ │ ├── jroster.h │ │ │ │ │ ├── jsoftwaredetection.cpp │ │ │ │ │ ├── jsoftwaredetection.h │ │ │ │ │ ├── metacontacts.cpp │ │ │ │ │ └── metacontacts.h │ │ │ ├── jaccountfinishpage.cpp │ │ │ ├── jaccountfinishpage.h │ │ │ ├── jaccountfinishpage.ui │ │ │ ├── jaccountregistrationpage.cpp │ │ │ ├── jaccountregistrationpage.h │ │ │ ├── jaccountregistrationpage.ui │ │ │ ├── jaccountwizard.cpp │ │ │ ├── jaccountwizard.h │ │ │ ├── jaccountwizardpage.cpp │ │ │ ├── jaccountwizardpage.h │ │ │ ├── jaccountwizardpage.ui │ │ │ ├── jjidvalidator.cpp │ │ │ ├── jjidvalidator.h │ │ │ ├── jmainsettings.cpp │ │ │ ├── jmainsettings.h │ │ │ ├── jmainsettings.ui │ │ │ ├── jprotocol.cpp │ │ │ ├── jprotocol.h │ │ │ └── modules │ │ │ │ ├── activitypep │ │ │ │ ├── jactivitychooser.cpp │ │ │ │ ├── jactivitychooser.h │ │ │ │ ├── jactivitychooser.ui │ │ │ │ ├── jpersonactivityconverter.cpp │ │ │ │ └── jpersonactivityconverter.h │ │ │ │ ├── adhoc │ │ │ │ ├── jadhocmodule.cpp │ │ │ │ ├── jadhocmodule.h │ │ │ │ ├── jadhocwidget.cpp │ │ │ │ ├── jadhocwidget.h │ │ │ │ └── jadhocwidget.ui │ │ │ │ ├── attention │ │ │ │ ├── jattention.cpp │ │ │ │ └── jattention.h │ │ │ │ ├── filetransfer │ │ │ │ ├── jfiletransfer.cpp │ │ │ │ └── jfiletransfer.h │ │ │ │ ├── jinglesupport │ │ │ │ ├── jinglesupport.cpp │ │ │ │ └── jinglesupport.h │ │ │ │ ├── moodpep │ │ │ │ ├── jmoodchooser.cpp │ │ │ │ ├── jmoodchooser.h │ │ │ │ ├── jmoodchooser.ui │ │ │ │ ├── jpersonmoodconverter.cpp │ │ │ │ └── jpersonmoodconverter.h │ │ │ │ ├── pep │ │ │ │ ├── jpersoneventsupport.cpp │ │ │ │ └── jpersoneventsupport.h │ │ │ │ ├── proxy │ │ │ │ ├── jproxymanager.cpp │ │ │ │ └── jproxymanager.h │ │ │ │ ├── remotecontrol │ │ │ │ ├── remotecontrol.cpp │ │ │ │ └── remotecontrol.h │ │ │ │ ├── servicediscovery │ │ │ │ ├── jservicebrowser.cpp │ │ │ │ ├── jservicebrowser.h │ │ │ │ └── jservicebrowser.ui │ │ │ │ ├── tunepep │ │ │ │ ├── jpersontuneconverter.cpp │ │ │ │ └── jpersontuneconverter.h │ │ │ │ ├── vcard │ │ │ │ ├── jinforequest.cpp │ │ │ │ ├── jinforequest.h │ │ │ │ ├── jvcardmanager.cpp │ │ │ │ └── jvcardmanager.h │ │ │ │ └── xmlconsole │ │ │ │ ├── xmlconsole.cpp │ │ │ │ ├── xmlconsole.h │ │ │ │ └── xmlconsole.ui │ │ │ └── sdk │ │ │ └── jabber.h │ │ ├── mrim │ │ ├── mrim.qbs │ │ └── src │ │ │ ├── 3rdparty │ │ │ └── rtf │ │ │ │ ├── rtfreader.cpp │ │ │ │ ├── rtfreader.h │ │ │ │ ├── rtftextreader.cpp │ │ │ │ └── rtftextreader.h │ │ │ ├── base │ │ │ ├── lpstring.cpp │ │ │ ├── lpstring.h │ │ │ ├── messages.cpp │ │ │ ├── messages.h │ │ │ ├── mrimaccount.cpp │ │ │ ├── mrimaccount.h │ │ │ ├── mrimconnection.cpp │ │ │ ├── mrimconnection.h │ │ │ ├── mrimcontact.cpp │ │ │ ├── mrimcontact.h │ │ │ ├── mrimdebug.cpp │ │ │ ├── mrimdebug.h │ │ │ ├── mrimdefs.h │ │ │ ├── mrimpacket.cpp │ │ │ ├── mrimpacket.h │ │ │ ├── mrimplugin.cpp │ │ │ ├── mrimplugin.h │ │ │ ├── mrimprotocol.cpp │ │ │ ├── mrimprotocol.h │ │ │ ├── mrimstatus.cpp │ │ │ ├── mrimstatus.h │ │ │ ├── proto.h │ │ │ ├── protoutils.cpp │ │ │ ├── protoutils.h │ │ │ ├── regionlistparser.cpp │ │ │ ├── regionlistparser.h │ │ │ ├── roster.cpp │ │ │ ├── roster.h │ │ │ ├── rtfutils.cpp │ │ │ ├── rtfutils.h │ │ │ ├── useragent.cpp │ │ │ ├── useragent.h │ │ │ ├── utils.cpp │ │ │ └── utils.h │ │ │ └── ui │ │ │ └── wizards │ │ │ ├── accountwizardmain.cpp │ │ │ ├── accountwizardmain.h │ │ │ ├── accountwizardmain.ui │ │ │ ├── mrimaccountwizard.cpp │ │ │ └── mrimaccountwizard.h │ │ ├── oscar │ │ ├── 3rdparty │ │ │ ├── hmac.qbs │ │ │ └── hmac │ │ │ │ ├── Makefile │ │ │ │ ├── hmac_sha2.c │ │ │ │ ├── hmac_sha2.h │ │ │ │ ├── sha2.c │ │ │ │ └── sha2.h │ │ ├── oscar.qbs │ │ ├── plugins │ │ │ ├── identify.qbs │ │ │ ├── identify │ │ │ │ ├── clientidentify.cpp │ │ │ │ └── clientidentify.h │ │ │ ├── xstatus.qbs │ │ │ └── xstatus │ │ │ │ ├── statusdialog.cpp │ │ │ │ ├── statusdialog.h │ │ │ │ ├── statusdialog.ui │ │ │ │ ├── xstatus.cpp │ │ │ │ ├── xstatus.h │ │ │ │ ├── xstatusrequester.cpp │ │ │ │ ├── xstatusrequester.h │ │ │ │ ├── xstatussender.cpp │ │ │ │ ├── xstatussender.h │ │ │ │ ├── xstatussettings.cpp │ │ │ │ └── xstatussettings.h │ │ └── src │ │ │ ├── authorization.cpp │ │ │ ├── authorization_p.h │ │ │ ├── buddycaps.h │ │ │ ├── buddypicture.cpp │ │ │ ├── buddypicture.h │ │ │ ├── capability.cpp │ │ │ ├── capability.h │ │ │ ├── connection.cpp │ │ │ ├── connection.h │ │ │ ├── connection_p.h │ │ │ ├── contactsearch.cpp │ │ │ ├── contactsearch_p.h │ │ │ ├── cookie.cpp │ │ │ ├── cookie.h │ │ │ ├── dataunit.cpp │ │ │ ├── dataunit.h │ │ │ ├── feedbag.cpp │ │ │ ├── feedbag.h │ │ │ ├── flap.cpp │ │ │ ├── flap.h │ │ │ ├── icq_global.h │ │ │ ├── icqaccount.cpp │ │ │ ├── icqaccount.h │ │ │ ├── icqaccount_p.h │ │ │ ├── icqcontact.cpp │ │ │ ├── icqcontact.h │ │ │ ├── icqcontact_p.h │ │ │ ├── icqprotocol.cpp │ │ │ ├── icqprotocol.h │ │ │ ├── icqprotocol_p.h │ │ │ ├── inforequest.cpp │ │ │ ├── inforequest_p.h │ │ │ ├── messages.cpp │ │ │ ├── messages.h │ │ │ ├── messages_p.h │ │ │ ├── metainfo │ │ │ ├── abstractmetarequest.cpp │ │ │ ├── abstractmetarequest.h │ │ │ ├── abstractmetarequest_p.h │ │ │ ├── findcontactsmetarequest.cpp │ │ │ ├── findcontactsmetarequest.h │ │ │ ├── infometarequest.cpp │ │ │ ├── infometarequest.h │ │ │ ├── infometarequest_p.h │ │ │ ├── metafield.cpp │ │ │ ├── metafield.h │ │ │ ├── metafields.cpp │ │ │ ├── metafields_p.h │ │ │ ├── metainfo.cpp │ │ │ ├── metainfo_p.h │ │ │ ├── tlvbasedmetarequest.cpp │ │ │ ├── tlvbasedmetarequest.h │ │ │ ├── tlvbasedmetarequest_p.h │ │ │ ├── updateaccountinfometarequest.cpp │ │ │ └── updateaccountinfometarequest.h │ │ │ ├── oscarauth.cpp │ │ │ ├── oscarauth.h │ │ │ ├── oscarconnection.cpp │ │ │ ├── oscarconnection.h │ │ │ ├── oscarfiletransfer.cpp │ │ │ ├── oscarfiletransfer_p.h │ │ │ ├── oscarplugin.cpp │ │ │ ├── oscarplugin.h │ │ │ ├── oscarproxy.cpp │ │ │ ├── oscarproxy.h │ │ │ ├── oscarroster.cpp │ │ │ ├── oscarroster.h │ │ │ ├── oscarroster_p.h │ │ │ ├── oscarstatus.cpp │ │ │ ├── oscarstatus.h │ │ │ ├── oscarstatus_p.h │ │ │ ├── privacylists.cpp │ │ │ ├── privacylists_p.h │ │ │ ├── sessiondataitem.cpp │ │ │ ├── sessiondataitem.h │ │ │ ├── settingsextension.cpp │ │ │ ├── settingsextension.h │ │ │ ├── snac.cpp │ │ │ ├── snac.h │ │ │ ├── snachandler.cpp │ │ │ ├── snachandler.h │ │ │ ├── tlv.cpp │ │ │ ├── tlv.h │ │ │ ├── ui │ │ │ ├── accountcreator.cpp │ │ │ ├── accountcreator.h │ │ │ ├── addaccountform.ui │ │ │ ├── icqaccountmainsettings.cpp │ │ │ ├── icqaccountmainsettings.h │ │ │ ├── icqaccountmainsettings.ui │ │ │ ├── icqmainsettings.cpp │ │ │ └── icqmainsettings.h │ │ │ ├── util.cpp │ │ │ ├── util.h │ │ │ ├── xtraz.cpp │ │ │ └── xtraz.h │ │ ├── protocols.qbs │ │ ├── quetzal │ │ ├── quetzal.qbs │ │ └── src │ │ │ ├── quatzelactiondialog.cpp │ │ │ ├── quatzelactiondialog.h │ │ │ ├── quatzelactiondialog.ui │ │ │ ├── quetzalaccount.cpp │ │ │ ├── quetzalaccount.h │ │ │ ├── quetzalaccountsettings.cpp │ │ │ ├── quetzalaccountsettings.h │ │ │ ├── quetzalaccountwizard.cpp │ │ │ ├── quetzalaccountwizard.h │ │ │ ├── quetzalactiongenerator.cpp │ │ │ ├── quetzalactiongenerator.h │ │ │ ├── quetzalblist.cpp │ │ │ ├── quetzalblist.h │ │ │ ├── quetzalchat.cpp │ │ │ ├── quetzalchat.h │ │ │ ├── quetzalchatuser.cpp │ │ │ ├── quetzalchatuser.h │ │ │ ├── quetzalchoicedialog.cpp │ │ │ ├── quetzalchoicedialog.h │ │ │ ├── quetzalcontact.cpp │ │ │ ├── quetzalcontact.h │ │ │ ├── quetzalconverstion.cpp │ │ │ ├── quetzalconverstion.h │ │ │ ├── quetzaleventloop.cpp │ │ │ ├── quetzaleventloop.h │ │ │ ├── quetzalfieldsdialog.cpp │ │ │ ├── quetzalfieldsdialog.h │ │ │ ├── quetzalfiledialog.cpp │ │ │ ├── quetzalfiledialog.h │ │ │ ├── quetzalfiletransfer.cpp │ │ │ ├── quetzalfiletransfer.h │ │ │ ├── quetzalinputdialog.cpp │ │ │ ├── quetzalinputdialog.h │ │ │ ├── quetzaljoinchatdialog.cpp │ │ │ ├── quetzaljoinchatdialog.h │ │ │ ├── quetzaljoinchatdialog.ui │ │ │ ├── quetzalnotify.cpp │ │ │ ├── quetzalnotify.h │ │ │ ├── quetzalplugin.cpp │ │ │ ├── quetzalplugin.h │ │ │ ├── quetzalprotocol.cpp │ │ │ ├── quetzalprotocol.h │ │ │ ├── quetzalproxymanager.cpp │ │ │ ├── quetzalproxymanager.h │ │ │ ├── quetzalrequest.cpp │ │ │ ├── quetzalrequest.h │ │ │ ├── quetzalrequestdialog.cpp │ │ │ └── quetzalrequestdialog.h │ │ └── vkontakte │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── GPL │ │ ├── share │ │ └── vphotoalbum │ │ │ └── default │ │ │ ├── PageHeader.qml │ │ │ ├── PageHeaderBar.qml │ │ │ ├── PhotoModel.qml │ │ │ ├── ScrollDecorator.qml │ │ │ └── main.qml │ │ ├── src │ │ ├── experimental │ │ │ ├── vphotoviewer.cpp │ │ │ └── vphotoviewer.h │ │ ├── ui │ │ │ ├── vaccountcreator.cpp │ │ │ ├── vaccountcreator.h │ │ │ └── vaccountwizardpage.ui │ │ ├── vaccount.cpp │ │ ├── vaccount.h │ │ ├── vclient.cpp │ │ ├── vclient.h │ │ ├── vcontact.cpp │ │ ├── vcontact.h │ │ ├── vgroupchat.cpp │ │ ├── vgroupchat.h │ │ ├── vinforequest.cpp │ │ ├── vinforequest.h │ │ ├── vkontakteplugin.cpp │ │ ├── vkontakteplugin.h │ │ ├── vmessagehandler.cpp │ │ ├── vmessagehandler.h │ │ ├── vprotocol.cpp │ │ ├── vprotocol.h │ │ ├── vproxymanager.cpp │ │ ├── vproxymanager.h │ │ ├── vroster.cpp │ │ └── vroster.h │ │ └── vkontakte.qbs ├── qml │ ├── imports │ │ └── org │ │ │ └── qutim │ │ │ ├── ContactListStyle.qml │ │ │ ├── ControlledMenu.qml │ │ │ ├── SettingsItem.qml │ │ │ └── qmldir │ ├── qutimplugin.qbs │ └── src │ │ ├── quickactioncontainer.cpp │ │ ├── quickactioncontainer.h │ │ ├── quickactioncontainerbase.cpp │ │ ├── quickactioncontainerbase.h │ │ ├── quickactionextender.cpp │ │ ├── quickactionextender.h │ │ ├── quickactiongenerator.cpp │ │ ├── quickactiongenerator.h │ │ ├── quickavatarprovider.cpp │ │ ├── quickavatarprovider.h │ │ ├── quickconfig.cpp │ │ ├── quickconfig.h │ │ ├── quickemoticons.cpp │ │ ├── quickemoticons.h │ │ ├── quickemoticonstheme.cpp │ │ ├── quickemoticonstheme.cpp.orig │ │ ├── quickemoticonstheme.h │ │ ├── quickimageprovider.cpp │ │ ├── quickimageprovider.h │ │ ├── quickmenucontainer.cpp │ │ ├── quickmenucontainer.h │ │ ├── quickplugin.cpp │ │ ├── quickplugin.h │ │ ├── quickpluginwrapper.cpp │ │ ├── quickpluginwrapper.h │ │ ├── quickservice.cpp │ │ ├── quickservice.h │ │ ├── quickthememanager.cpp │ │ └── quickthememanager.h └── share │ ├── applications │ └── qutim.desktop │ ├── qutim │ ├── ca-certs │ │ ├── AOL_Member_CA.pem │ │ ├── America_Online_Root_Certification_Authority_1.pem │ │ ├── CAcert_Class3.pem │ │ ├── CAcert_Root.pem │ │ ├── Deutsche_Telekom_Root_CA_2.pem │ │ ├── Entrust.net_Secure_Server_CA.pem │ │ ├── Equifax_Secure_CA.pem │ │ ├── Equifax_Secure_Global_eBusiness_CA-1.pem │ │ ├── GTE_CyberTrust_Global_Root.pem │ │ ├── Go_Daddy_Class_2_CA.pem │ │ ├── Microsoft_Internet_Authority.pem │ │ ├── Microsoft_Internet_Authority_2010.pem │ │ ├── Microsoft_Secure_Server_Authority.pem │ │ ├── Microsoft_Secure_Server_Authority_2010.pem │ │ ├── StartCom_Certification_Authority.pem │ │ ├── StartCom_Free_SSL_CA.pem │ │ ├── Thawte_Premium_Server_CA.pem │ │ ├── Thawte_Primary_Root_CA.pem │ │ ├── ValiCert_Class_2_VA.pem │ │ ├── VeriSign_Class3_Extended_Validation_CA.pem │ │ ├── VeriSign_Class_3_Public_Primary_Certification_Authority_-_G2.pem │ │ ├── VeriSign_Class_3_Public_Primary_Certification_Authority_-_G5.pem │ │ ├── VeriSign_Class_3_Public_Primary_Certification_Authority_-_G5_2.pem │ │ ├── VeriSign_International_Server_Class_3_CA.pem │ │ ├── Verisign_Class3_Primary_CA.pem │ │ └── Verisign_RSA_Secure_Server_CA.pem │ └── webkitstyle │ │ ├── Alpha-Classic │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ ├── Footer.html │ │ │ ├── Header.html │ │ │ ├── Incoming │ │ │ ├── Content.html │ │ │ ├── Context.html │ │ │ ├── NextContent.html │ │ │ └── NextContext.html │ │ │ ├── Outgoing │ │ │ ├── Content.html │ │ │ ├── Context.html │ │ │ ├── NextContent.html │ │ │ └── NextContext.html │ │ │ ├── Status.html │ │ │ ├── Template.html │ │ │ ├── Variants │ │ │ ├── big_blue.css │ │ │ ├── big_green.css │ │ │ ├── big_orange.css │ │ │ ├── big_red.css │ │ │ ├── blue.css │ │ │ ├── green.css │ │ │ ├── orange.css │ │ │ └── red.css │ │ │ ├── base.css │ │ │ ├── images │ │ │ ├── background.png │ │ │ ├── container_bot.png │ │ │ ├── container_left_bot.png │ │ │ ├── container_right_bot.png │ │ │ ├── incoming_blue.png │ │ │ ├── incoming_cursor.png │ │ │ ├── incoming_green.png │ │ │ ├── incoming_orange.png │ │ │ ├── incoming_red.png │ │ │ ├── outgoing_back.png │ │ │ ├── outgoing_cursor.png │ │ │ ├── row_background_noshadow.png │ │ │ └── row_shadow.png │ │ │ └── main.css │ │ ├── Maemo │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ ├── Footer.html │ │ │ ├── Header.html │ │ │ ├── Images │ │ │ ├── bullet-received.png │ │ │ ├── bullet-send.png │ │ │ └── quote.png │ │ │ ├── Incoming │ │ │ ├── Action.html │ │ │ └── Content.html │ │ │ ├── Outgoing │ │ │ ├── Action.html │ │ │ ├── Content.html │ │ │ └── Context.html │ │ │ ├── Status.html │ │ │ ├── Template.html │ │ │ ├── custom.json │ │ │ └── main.css │ │ ├── Nuvo │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ ├── Footer.html │ │ │ ├── Header.html │ │ │ ├── Images │ │ │ ├── Color │ │ │ │ ├── action.svg │ │ │ │ ├── alert.svg │ │ │ │ ├── inmsg.svg │ │ │ │ ├── outmsg.svg │ │ │ │ ├── outmsgok.svg │ │ │ │ ├── topic.svg │ │ │ │ └── wink.svg │ │ │ ├── Gray │ │ │ │ ├── action.svg │ │ │ │ ├── alert.svg │ │ │ │ ├── inmsg.svg │ │ │ │ ├── outmsg.svg │ │ │ │ ├── outmsgok.svg │ │ │ │ ├── topic.svg │ │ │ │ └── wink.svg │ │ │ ├── msgbg.png │ │ │ └── msgbg1.png │ │ │ ├── Incoming │ │ │ ├── Action.html │ │ │ ├── Buddy_icon.png │ │ │ ├── Content.html │ │ │ ├── Context.html │ │ │ ├── NextContent.html │ │ │ └── NextContext.html │ │ │ ├── Outgoing │ │ │ ├── Action.html │ │ │ ├── Buddy_icon.png │ │ │ ├── Content.html │ │ │ ├── Context.html │ │ │ ├── NextContent.html │ │ │ └── NextContext.html │ │ │ ├── Status.html │ │ │ ├── Template.html │ │ │ ├── Topic.html │ │ │ ├── Variants │ │ │ ├── color_icons.css │ │ │ └── gray_icons.css │ │ │ ├── custom.json │ │ │ ├── main.css │ │ │ ├── tooltip.js │ │ │ └── topic.css │ │ ├── QIPish │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ ├── Action.html │ │ │ ├── Footer.html │ │ │ ├── Header.html │ │ │ ├── Incoming │ │ │ ├── Content.html │ │ │ └── NextContent.html │ │ │ ├── Outgoing │ │ │ ├── Content.html │ │ │ └── NextContent.html │ │ │ ├── Status.html │ │ │ ├── Template.html │ │ │ ├── Topic.html │ │ │ ├── main.css │ │ │ └── topic.css │ │ ├── Tory │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ ├── Footer.html │ │ │ ├── Header.html │ │ │ ├── Images │ │ │ ├── action.png │ │ │ ├── background.png │ │ │ ├── bullet-exclamation.png │ │ │ ├── bullet-received.png │ │ │ ├── bullet-send.png │ │ │ └── quote.png │ │ │ ├── Incoming │ │ │ ├── Action.html │ │ │ ├── Content.html │ │ │ ├── Context.html │ │ │ ├── NextContent.html │ │ │ └── NextContext.html │ │ │ ├── Outgoing │ │ │ ├── Action.html │ │ │ ├── Content.html │ │ │ ├── Context.html │ │ │ ├── NextContent.html │ │ │ └── NextContext.html │ │ │ ├── Status.html │ │ │ ├── Template.html │ │ │ ├── Topic.html │ │ │ ├── Variants │ │ │ ├── 0.2-edition.css │ │ │ └── 0.3-edition.css │ │ │ ├── custom.json │ │ │ ├── main.css │ │ │ └── topic.css │ │ ├── default │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ ├── Footer.html │ │ │ ├── Header.html │ │ │ ├── Images │ │ │ ├── bullet-received.png │ │ │ ├── bullet-send.png │ │ │ └── quote.png │ │ │ ├── Incoming │ │ │ ├── Action.html │ │ │ ├── Content.html │ │ │ ├── Context.html │ │ │ ├── NextContent.html │ │ │ └── NextContext.html │ │ │ ├── Outgoing │ │ │ ├── Action.html │ │ │ ├── Content.html │ │ │ ├── Context.html │ │ │ ├── NextContent.html │ │ │ └── NextContext.html │ │ │ ├── Status.html │ │ │ ├── Template.html │ │ │ ├── Topic.html │ │ │ ├── custom.json │ │ │ ├── main.css │ │ │ └── topic.css │ │ ├── gajim-like │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ ├── Action.html │ │ │ ├── Incoming │ │ │ ├── Content.html │ │ │ └── SenderColors.txt │ │ │ ├── Outgoing │ │ │ └── Content.html │ │ │ ├── Status.html │ │ │ ├── Template.html │ │ │ ├── Topic.html │ │ │ ├── Variants │ │ │ └── white.css │ │ │ ├── main.css │ │ │ └── topic.css │ │ └── melwa │ │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ ├── Action.html │ │ ├── Incoming │ │ └── Content.html │ │ ├── Outgoing │ │ └── Content.html │ │ ├── Status.html │ │ ├── Topic.html │ │ ├── Variants │ │ └── white.css │ │ ├── main.css │ │ └── topic.css │ └── share.qbs └── update-translations.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/.gitmodules -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/AUTHORS -------------------------------------------------------------------------------- /CCBYSA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/CCBYSA -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/CHANGELOG -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/COPYING -------------------------------------------------------------------------------- /GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/GPL -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/INSTALL -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/README.md -------------------------------------------------------------------------------- /codestyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/codestyle.xml -------------------------------------------------------------------------------- /config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/config/CMakeLists.txt -------------------------------------------------------------------------------- /config/generic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/config/generic/CMakeLists.txt -------------------------------------------------------------------------------- /config/generic/appearance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/config/generic/appearance.json -------------------------------------------------------------------------------- /config/generic/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/config/generic/profile.json -------------------------------------------------------------------------------- /config/mac/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/config/mac/CMakeLists.txt -------------------------------------------------------------------------------- /config/mac/appearance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/config/mac/appearance.json -------------------------------------------------------------------------------- /config/mac/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/config/mac/profile.json -------------------------------------------------------------------------------- /config/maemo5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/config/maemo5/CMakeLists.txt -------------------------------------------------------------------------------- /config/maemo5/appearance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/config/maemo5/appearance.json -------------------------------------------------------------------------------- /config/maemo5/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/config/maemo5/profile.json -------------------------------------------------------------------------------- /config/maemo6/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/config/maemo6/CMakeLists.txt -------------------------------------------------------------------------------- /config/maemo6/appearance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/config/maemo6/appearance.json -------------------------------------------------------------------------------- /config/maemo6/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/config/maemo6/profile.json -------------------------------------------------------------------------------- /config/win/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/config/win/CMakeLists.txt -------------------------------------------------------------------------------- /config/win/appearance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/config/win/appearance.json -------------------------------------------------------------------------------- /config/win/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/config/win/profile.json -------------------------------------------------------------------------------- /deployment/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/deployment/CMakeLists.txt -------------------------------------------------------------------------------- /deployment/all/installScript.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/deployment/all/installScript.qs -------------------------------------------------------------------------------- /deployment/all/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/deployment/all/package.xml -------------------------------------------------------------------------------- /deployment/config/installer-offline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/deployment/config/installer-offline.xml -------------------------------------------------------------------------------- /deployment/create-app-mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/deployment/create-app-mac.sh -------------------------------------------------------------------------------- /deployment/create-app-windows-msvc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/deployment/create-app-windows-msvc.ps1 -------------------------------------------------------------------------------- /modules/deploy/deploy.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/modules/deploy/deploy.qbs -------------------------------------------------------------------------------- /modules/libarchive/libarchive.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/modules/libarchive/libarchive.qbs -------------------------------------------------------------------------------- /modules/qutimscope/common.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/modules/qutimscope/common.qbs -------------------------------------------------------------------------------- /qutim.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/qutim.qbs -------------------------------------------------------------------------------- /src/3rdparty/3rdPartyLibrary.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/3rdparty/3rdPartyLibrary.qbs -------------------------------------------------------------------------------- /src/3rdparty/3rdparty.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/3rdparty/3rdparty.qbs -------------------------------------------------------------------------------- /src/3rdparty/flowlayout.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/3rdparty/flowlayout.qbs -------------------------------------------------------------------------------- /src/3rdparty/flowlayout/flowlayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/3rdparty/flowlayout/flowlayout.cpp -------------------------------------------------------------------------------- /src/3rdparty/flowlayout/flowlayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/3rdparty/flowlayout/flowlayout.h -------------------------------------------------------------------------------- /src/3rdparty/k8json.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/3rdparty/k8json.qbs -------------------------------------------------------------------------------- /src/3rdparty/qtdwm.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/3rdparty/qtdwm.qbs -------------------------------------------------------------------------------- /src/3rdparty/qtdwm/qtdwm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/3rdparty/qtdwm/qtdwm.cpp -------------------------------------------------------------------------------- /src/3rdparty/qtdwm/qtdwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/3rdparty/qtdwm/qtdwm.h -------------------------------------------------------------------------------- /src/3rdparty/qtdwm/qtdwm_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/3rdparty/qtdwm/qtdwm_p.h -------------------------------------------------------------------------------- /src/3rdparty/qtsolutions.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/3rdparty/qtsolutions.qbs -------------------------------------------------------------------------------- /src/3rdparty/qtsolutions/qtlocalpeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/3rdparty/qtsolutions/qtlocalpeer.cpp -------------------------------------------------------------------------------- /src/3rdparty/qtsolutions/qtlocalpeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/3rdparty/qtsolutions/qtlocalpeer.h -------------------------------------------------------------------------------- /src/3rdparty/qtsolutions/qtlockedfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/3rdparty/qtsolutions/qtlockedfile.cpp -------------------------------------------------------------------------------- /src/3rdparty/qtsolutions/qtlockedfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/3rdparty/qtsolutions/qtlockedfile.h -------------------------------------------------------------------------------- /src/3rdparty/qtsolutions/qtlockedfile_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/3rdparty/qtsolutions/qtlockedfile_unix.cpp -------------------------------------------------------------------------------- /src/3rdparty/qtsolutions/qtlockedfile_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/3rdparty/qtsolutions/qtlockedfile_win.cpp -------------------------------------------------------------------------------- /src/3rdparty/qxdg.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/3rdparty/qxdg.qbs -------------------------------------------------------------------------------- /src/3rdparty/slidingstackedwidget.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/3rdparty/slidingstackedwidget.qbs -------------------------------------------------------------------------------- /src/Framework.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/Framework.qbs -------------------------------------------------------------------------------- /src/bin/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/Info.plist -------------------------------------------------------------------------------- /src/bin/bin.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/bin.qbs -------------------------------------------------------------------------------- /src/bin/contributers/rederick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/contributers/rederick.json -------------------------------------------------------------------------------- /src/bin/contributers/samvo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/contributers/samvo.json -------------------------------------------------------------------------------- /src/bin/contributers/selena.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/contributers/selena.json -------------------------------------------------------------------------------- /src/bin/devels/boiler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/devels/boiler.json -------------------------------------------------------------------------------- /src/bin/devels/degtep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/devels/degtep.json -------------------------------------------------------------------------------- /src/bin/devels/euroelessar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/devels/euroelessar.json -------------------------------------------------------------------------------- /src/bin/devels/nicoizo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/devels/nicoizo.json -------------------------------------------------------------------------------- /src/bin/devels/reindeer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/devels/reindeer.json -------------------------------------------------------------------------------- /src/bin/devels/sauron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/devels/sauron.json -------------------------------------------------------------------------------- /src/bin/devels/viv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/devels/viv.json -------------------------------------------------------------------------------- /src/bin/examples/autosettingsitem/autosettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/examples/autosettingsitem/autosettings.cpp -------------------------------------------------------------------------------- /src/bin/examples/autosettingsitem/autosettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/examples/autosettingsitem/autosettings.h -------------------------------------------------------------------------------- /src/bin/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/main.cpp -------------------------------------------------------------------------------- /src/bin/qt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/qt.conf -------------------------------------------------------------------------------- /src/bin/qutim.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/qutim.icns -------------------------------------------------------------------------------- /src/bin/qutim.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/qutim.ico -------------------------------------------------------------------------------- /src/bin/qutim.icons.rdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/qutim.icons.rdef -------------------------------------------------------------------------------- /src/bin/qutim.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/qutim.qrc -------------------------------------------------------------------------------- /src/bin/qutim.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/qutim.rc -------------------------------------------------------------------------------- /src/bin/src/declarative/modulemanagerimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/src/declarative/modulemanagerimpl.cpp -------------------------------------------------------------------------------- /src/bin/src/declarative/modulemanagerimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/src/declarative/modulemanagerimpl.h -------------------------------------------------------------------------------- /src/bin/src/declarative/profilecreator/Main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/src/declarative/profilecreator/Main.qml -------------------------------------------------------------------------------- /src/bin/src/declarative/requesthelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/src/declarative/requesthelper.cpp -------------------------------------------------------------------------------- /src/bin/src/declarative/requesthelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/src/declarative/requesthelper.h -------------------------------------------------------------------------------- /src/bin/src/widgets/modulemanagerimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/src/widgets/modulemanagerimpl.cpp -------------------------------------------------------------------------------- /src/bin/src/widgets/modulemanagerimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/src/widgets/modulemanagerimpl.h -------------------------------------------------------------------------------- /src/bin/src/widgets/profilecreationpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/src/widgets/profilecreationpage.cpp -------------------------------------------------------------------------------- /src/bin/src/widgets/profilecreationpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/src/widgets/profilecreationpage.h -------------------------------------------------------------------------------- /src/bin/src/widgets/profilecreationpage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/src/widgets/profilecreationpage.ui -------------------------------------------------------------------------------- /src/bin/src/widgets/profilecreationwizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/src/widgets/profilecreationwizard.cpp -------------------------------------------------------------------------------- /src/bin/src/widgets/profilecreationwizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/src/widgets/profilecreationwizard.h -------------------------------------------------------------------------------- /src/bin/src/widgets/profiledialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/src/widgets/profiledialog.cpp -------------------------------------------------------------------------------- /src/bin/src/widgets/profiledialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/src/widgets/profiledialog.h -------------------------------------------------------------------------------- /src/bin/src/widgets/profiledialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/src/widgets/profiledialog.ui -------------------------------------------------------------------------------- /src/bin/src/widgets/profilelistwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/src/widgets/profilelistwidget.cpp -------------------------------------------------------------------------------- /src/bin/src/widgets/profilelistwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/src/widgets/profilelistwidget.h -------------------------------------------------------------------------------- /src/bin/src/widgets/submitpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/src/widgets/submitpage.cpp -------------------------------------------------------------------------------- /src/bin/src/widgets/submitpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/src/widgets/submitpage.h -------------------------------------------------------------------------------- /src/bin/test/one.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/test/one.json -------------------------------------------------------------------------------- /src/bin/test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/test/test.cpp -------------------------------------------------------------------------------- /src/bin/test/test.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/test/test.pro -------------------------------------------------------------------------------- /src/bin/utils/deployqutim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/bin/utils/deployqutim.sh -------------------------------------------------------------------------------- /src/lib/libqutim.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/libqutim.qbs -------------------------------------------------------------------------------- /src/lib/qutim/abstractsearchrequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/abstractsearchrequest.cpp -------------------------------------------------------------------------------- /src/lib/qutim/abstractsearchrequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/abstractsearchrequest.h -------------------------------------------------------------------------------- /src/lib/qutim/abstractsearchrequest_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/abstractsearchrequest_p.h -------------------------------------------------------------------------------- /src/lib/qutim/abstractwizardpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/abstractwizardpage.cpp -------------------------------------------------------------------------------- /src/lib/qutim/abstractwizardpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/abstractwizardpage.h -------------------------------------------------------------------------------- /src/lib/qutim/account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/account.cpp -------------------------------------------------------------------------------- /src/lib/qutim/account.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/account.h -------------------------------------------------------------------------------- /src/lib/qutim/account_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/account_p.h -------------------------------------------------------------------------------- /src/lib/qutim/accountmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/accountmanager.cpp -------------------------------------------------------------------------------- /src/lib/qutim/accountmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/accountmanager.h -------------------------------------------------------------------------------- /src/lib/qutim/accountmanager_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/accountmanager_p.h -------------------------------------------------------------------------------- /src/lib/qutim/actionbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/actionbox.cpp -------------------------------------------------------------------------------- /src/lib/qutim/actionbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/actionbox.h -------------------------------------------------------------------------------- /src/lib/qutim/actionbox_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/actionbox_p.h -------------------------------------------------------------------------------- /src/lib/qutim/actiongenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/actiongenerator.cpp -------------------------------------------------------------------------------- /src/lib/qutim/actiongenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/actiongenerator.h -------------------------------------------------------------------------------- /src/lib/qutim/actiongenerator_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/actiongenerator_p.h -------------------------------------------------------------------------------- /src/lib/qutim/actiontoolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/actiontoolbar.cpp -------------------------------------------------------------------------------- /src/lib/qutim/actiontoolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/actiontoolbar.h -------------------------------------------------------------------------------- /src/lib/qutim/actiontoolbar_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/actiontoolbar_p.h -------------------------------------------------------------------------------- /src/lib/qutim/asyncresult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/asyncresult.cpp -------------------------------------------------------------------------------- /src/lib/qutim/asyncresult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/asyncresult.h -------------------------------------------------------------------------------- /src/lib/qutim/authorizationdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/authorizationdialog.cpp -------------------------------------------------------------------------------- /src/lib/qutim/authorizationdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/authorizationdialog.h -------------------------------------------------------------------------------- /src/lib/qutim/buddy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/buddy.cpp -------------------------------------------------------------------------------- /src/lib/qutim/buddy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/buddy.h -------------------------------------------------------------------------------- /src/lib/qutim/buddy_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/buddy_p.h -------------------------------------------------------------------------------- /src/lib/qutim/chatsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/chatsession.cpp -------------------------------------------------------------------------------- /src/lib/qutim/chatsession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/chatsession.h -------------------------------------------------------------------------------- /src/lib/qutim/chatunit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/chatunit.cpp -------------------------------------------------------------------------------- /src/lib/qutim/chatunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/chatunit.h -------------------------------------------------------------------------------- /src/lib/qutim/chatunit_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/chatunit_p.h -------------------------------------------------------------------------------- /src/lib/qutim/conference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/conference.cpp -------------------------------------------------------------------------------- /src/lib/qutim/conference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/conference.h -------------------------------------------------------------------------------- /src/lib/qutim/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/config.cpp -------------------------------------------------------------------------------- /src/lib/qutim/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/config.h -------------------------------------------------------------------------------- /src/lib/qutim/configbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/configbase.h -------------------------------------------------------------------------------- /src/lib/qutim/contact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/contact.cpp -------------------------------------------------------------------------------- /src/lib/qutim/contact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/contact.h -------------------------------------------------------------------------------- /src/lib/qutim/contact_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/contact_p.h -------------------------------------------------------------------------------- /src/lib/qutim/contactsearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/contactsearch.cpp -------------------------------------------------------------------------------- /src/lib/qutim/contactsearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/contactsearch.h -------------------------------------------------------------------------------- /src/lib/qutim/cryptoservice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/cryptoservice.cpp -------------------------------------------------------------------------------- /src/lib/qutim/cryptoservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/cryptoservice.h -------------------------------------------------------------------------------- /src/lib/qutim/dataforms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/dataforms.cpp -------------------------------------------------------------------------------- /src/lib/qutim/dataforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/dataforms.h -------------------------------------------------------------------------------- /src/lib/qutim/datasettingsobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/datasettingsobject.cpp -------------------------------------------------------------------------------- /src/lib/qutim/datasettingsobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/datasettingsobject.h -------------------------------------------------------------------------------- /src/lib/qutim/datasettingsobject_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/datasettingsobject_p.h -------------------------------------------------------------------------------- /src/lib/qutim/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/debug.cpp -------------------------------------------------------------------------------- /src/lib/qutim/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/debug.h -------------------------------------------------------------------------------- /src/lib/qutim/declarativeview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/declarativeview.cpp -------------------------------------------------------------------------------- /src/lib/qutim/declarativeview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/declarativeview.h -------------------------------------------------------------------------------- /src/lib/qutim/dglobalhotkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/dglobalhotkey.cpp -------------------------------------------------------------------------------- /src/lib/qutim/dglobalhotkey_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/dglobalhotkey_p.h -------------------------------------------------------------------------------- /src/lib/qutim/doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/doc/Doxyfile.in -------------------------------------------------------------------------------- /src/lib/qutim/doc/DoxygenLayout.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/doc/DoxygenLayout.xml.in -------------------------------------------------------------------------------- /src/lib/qutim/doc/footer.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | Generated by Doxygen 4 |
5 | -------------------------------------------------------------------------------- /src/lib/qutim/dynamicpropertydata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/dynamicpropertydata.cpp -------------------------------------------------------------------------------- /src/lib/qutim/dynamicpropertydata_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/dynamicpropertydata_p.h -------------------------------------------------------------------------------- /src/lib/qutim/emoticons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/emoticons.cpp -------------------------------------------------------------------------------- /src/lib/qutim/emoticons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/emoticons.h -------------------------------------------------------------------------------- /src/lib/qutim/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/event.cpp -------------------------------------------------------------------------------- /src/lib/qutim/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/event.h -------------------------------------------------------------------------------- /src/lib/qutim/event_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/event_test.cpp -------------------------------------------------------------------------------- /src/lib/qutim/event_test_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/event_test_p.h -------------------------------------------------------------------------------- /src/lib/qutim/extensionicon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/extensionicon.cpp -------------------------------------------------------------------------------- /src/lib/qutim/extensionicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/extensionicon.h -------------------------------------------------------------------------------- /src/lib/qutim/extensioninfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/extensioninfo.cpp -------------------------------------------------------------------------------- /src/lib/qutim/extensioninfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/extensioninfo.h -------------------------------------------------------------------------------- /src/lib/qutim/extensionsearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/extensionsearch.cpp -------------------------------------------------------------------------------- /src/lib/qutim/extensionsearch_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/extensionsearch_p.h -------------------------------------------------------------------------------- /src/lib/qutim/filetransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/filetransfer.cpp -------------------------------------------------------------------------------- /src/lib/qutim/filetransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/filetransfer.h -------------------------------------------------------------------------------- /src/lib/qutim/groupchatmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/groupchatmanager.cpp -------------------------------------------------------------------------------- /src/lib/qutim/groupchatmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/groupchatmanager.h -------------------------------------------------------------------------------- /src/lib/qutim/groupchatmanager_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/groupchatmanager_p.h -------------------------------------------------------------------------------- /src/lib/qutim/history.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/history.cpp -------------------------------------------------------------------------------- /src/lib/qutim/history.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/history.h -------------------------------------------------------------------------------- /src/lib/qutim/icon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/icon.cpp -------------------------------------------------------------------------------- /src/lib/qutim/icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/icon.h -------------------------------------------------------------------------------- /src/lib/qutim/iconbackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/iconbackend.cpp -------------------------------------------------------------------------------- /src/lib/qutim/iconbackend_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/iconbackend_p.h -------------------------------------------------------------------------------- /src/lib/qutim/iconloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/iconloader.cpp -------------------------------------------------------------------------------- /src/lib/qutim/iconloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/iconloader.h -------------------------------------------------------------------------------- /src/lib/qutim/inforequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/inforequest.cpp -------------------------------------------------------------------------------- /src/lib/qutim/inforequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/inforequest.h -------------------------------------------------------------------------------- /src/lib/qutim/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/json.cpp -------------------------------------------------------------------------------- /src/lib/qutim/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/json.h -------------------------------------------------------------------------------- /src/lib/qutim/jsonfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/jsonfile.cpp -------------------------------------------------------------------------------- /src/lib/qutim/jsonfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/jsonfile.h -------------------------------------------------------------------------------- /src/lib/qutim/keychain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/keychain.cpp -------------------------------------------------------------------------------- /src/lib/qutim/keychain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/keychain.h -------------------------------------------------------------------------------- /src/lib/qutim/libqutim_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/libqutim_global.h -------------------------------------------------------------------------------- /src/lib/qutim/localizedstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/localizedstring.cpp -------------------------------------------------------------------------------- /src/lib/qutim/localizedstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/localizedstring.h -------------------------------------------------------------------------------- /src/lib/qutim/menucontroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/menucontroller.cpp -------------------------------------------------------------------------------- /src/lib/qutim/menucontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/menucontroller.h -------------------------------------------------------------------------------- /src/lib/qutim/menucontroller_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/menucontroller_p.h -------------------------------------------------------------------------------- /src/lib/qutim/message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/message.cpp -------------------------------------------------------------------------------- /src/lib/qutim/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/message.h -------------------------------------------------------------------------------- /src/lib/qutim/messagehandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/messagehandler.cpp -------------------------------------------------------------------------------- /src/lib/qutim/messagehandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/messagehandler.h -------------------------------------------------------------------------------- /src/lib/qutim/metacontact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/metacontact.cpp -------------------------------------------------------------------------------- /src/lib/qutim/metacontact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/metacontact.h -------------------------------------------------------------------------------- /src/lib/qutim/metacontactmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/metacontactmanager.cpp -------------------------------------------------------------------------------- /src/lib/qutim/metacontactmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/metacontactmanager.h -------------------------------------------------------------------------------- /src/lib/qutim/metacontactprotocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/metacontactprotocol.cpp -------------------------------------------------------------------------------- /src/lib/qutim/metacontactprotocol_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/metacontactprotocol_p.h -------------------------------------------------------------------------------- /src/lib/qutim/metaobjectbuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/metaobjectbuilder.cpp -------------------------------------------------------------------------------- /src/lib/qutim/metaobjectbuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/metaobjectbuilder.h -------------------------------------------------------------------------------- /src/lib/qutim/mimeobjectdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/mimeobjectdata.cpp -------------------------------------------------------------------------------- /src/lib/qutim/mimeobjectdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/mimeobjectdata.h -------------------------------------------------------------------------------- /src/lib/qutim/modulemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/modulemanager.cpp -------------------------------------------------------------------------------- /src/lib/qutim/modulemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/modulemanager.h -------------------------------------------------------------------------------- /src/lib/qutim/modulemanager_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/modulemanager_p.h -------------------------------------------------------------------------------- /src/lib/qutim/networkproxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/networkproxy.cpp -------------------------------------------------------------------------------- /src/lib/qutim/networkproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/networkproxy.h -------------------------------------------------------------------------------- /src/lib/qutim/notification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/notification.cpp -------------------------------------------------------------------------------- /src/lib/qutim/notification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/notification.h -------------------------------------------------------------------------------- /src/lib/qutim/objectgenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/objectgenerator.cpp -------------------------------------------------------------------------------- /src/lib/qutim/objectgenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/objectgenerator.h -------------------------------------------------------------------------------- /src/lib/qutim/objectgenerator_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/objectgenerator_p.h -------------------------------------------------------------------------------- /src/lib/qutim/passworddialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/passworddialog.cpp -------------------------------------------------------------------------------- /src/lib/qutim/passworddialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/passworddialog.h -------------------------------------------------------------------------------- /src/lib/qutim/personinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/personinfo.cpp -------------------------------------------------------------------------------- /src/lib/qutim/personinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/personinfo.h -------------------------------------------------------------------------------- /src/lib/qutim/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/plugin.cpp -------------------------------------------------------------------------------- /src/lib/qutim/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/plugin.h -------------------------------------------------------------------------------- /src/lib/qutim/plugin_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/plugin_p.h -------------------------------------------------------------------------------- /src/lib/qutim/profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/profile.cpp -------------------------------------------------------------------------------- /src/lib/qutim/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/profile.h -------------------------------------------------------------------------------- /src/lib/qutim/profilecreatorpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/profilecreatorpage.cpp -------------------------------------------------------------------------------- /src/lib/qutim/profilecreatorpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/profilecreatorpage.h -------------------------------------------------------------------------------- /src/lib/qutim/protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/protocol.cpp -------------------------------------------------------------------------------- /src/lib/qutim/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/protocol.h -------------------------------------------------------------------------------- /src/lib/qutim/protocol_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/protocol_p.h -------------------------------------------------------------------------------- /src/lib/qutim/qmlsettingswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/qmlsettingswidget.cpp -------------------------------------------------------------------------------- /src/lib/qutim/qmlsettingswidget_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/qmlsettingswidget_p.h -------------------------------------------------------------------------------- /src/lib/qutim/qtwin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/qtwin.cpp -------------------------------------------------------------------------------- /src/lib/qutim/qtwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/qtwin.h -------------------------------------------------------------------------------- /src/lib/qutim/quickaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/quickaction.cpp -------------------------------------------------------------------------------- /src/lib/qutim/quickaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/quickaction.h -------------------------------------------------------------------------------- /src/lib/qutim/quickdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/quickdialog.cpp -------------------------------------------------------------------------------- /src/lib/qutim/quickdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/quickdialog.h -------------------------------------------------------------------------------- /src/lib/qutim/rosterstorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/rosterstorage.cpp -------------------------------------------------------------------------------- /src/lib/qutim/rosterstorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/rosterstorage.h -------------------------------------------------------------------------------- /src/lib/qutim/scripttools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/scripttools.cpp -------------------------------------------------------------------------------- /src/lib/qutim/scripttools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/scripttools.h -------------------------------------------------------------------------------- /src/lib/qutim/servicemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/servicemanager.cpp -------------------------------------------------------------------------------- /src/lib/qutim/servicemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/servicemanager.h -------------------------------------------------------------------------------- /src/lib/qutim/servicemanager_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/servicemanager_p.h -------------------------------------------------------------------------------- /src/lib/qutim/settingslayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/settingslayer.cpp -------------------------------------------------------------------------------- /src/lib/qutim/settingslayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/settingslayer.h -------------------------------------------------------------------------------- /src/lib/qutim/settingslayer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/settingslayer_p.h -------------------------------------------------------------------------------- /src/lib/qutim/settingswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/settingswidget.cpp -------------------------------------------------------------------------------- /src/lib/qutim/settingswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/settingswidget.h -------------------------------------------------------------------------------- /src/lib/qutim/shortcut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/shortcut.cpp -------------------------------------------------------------------------------- /src/lib/qutim/shortcut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/shortcut.h -------------------------------------------------------------------------------- /src/lib/qutim/shortcut_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/shortcut_p.h -------------------------------------------------------------------------------- /src/lib/qutim/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/sound.cpp -------------------------------------------------------------------------------- /src/lib/qutim/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/sound.h -------------------------------------------------------------------------------- /src/lib/qutim/sound_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/sound_p.h -------------------------------------------------------------------------------- /src/lib/qutim/spellchecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/spellchecker.cpp -------------------------------------------------------------------------------- /src/lib/qutim/spellchecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/spellchecker.h -------------------------------------------------------------------------------- /src/lib/qutim/startupmodule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/startupmodule.cpp -------------------------------------------------------------------------------- /src/lib/qutim/startupmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/startupmodule.h -------------------------------------------------------------------------------- /src/lib/qutim/statisticshelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/statisticshelper.cpp -------------------------------------------------------------------------------- /src/lib/qutim/statisticshelper_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/statisticshelper_p.h -------------------------------------------------------------------------------- /src/lib/qutim/status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/status.cpp -------------------------------------------------------------------------------- /src/lib/qutim/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/status.h -------------------------------------------------------------------------------- /src/lib/qutim/statusactiongenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/statusactiongenerator.cpp -------------------------------------------------------------------------------- /src/lib/qutim/statusactiongenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/statusactiongenerator.h -------------------------------------------------------------------------------- /src/lib/qutim/statusactiongenerator_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/statusactiongenerator_p.h -------------------------------------------------------------------------------- /src/lib/qutim/systeminfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/systeminfo.cpp -------------------------------------------------------------------------------- /src/lib/qutim/systeminfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/systeminfo.h -------------------------------------------------------------------------------- /src/lib/qutim/systemintegration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/systemintegration.cpp -------------------------------------------------------------------------------- /src/lib/qutim/systemintegration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/systemintegration.h -------------------------------------------------------------------------------- /src/lib/qutim/systemintegration_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/systemintegration_p.h -------------------------------------------------------------------------------- /src/lib/qutim/tcpsocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/tcpsocket.cpp -------------------------------------------------------------------------------- /src/lib/qutim/tcpsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/tcpsocket.h -------------------------------------------------------------------------------- /src/lib/qutim/thememanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/thememanager.cpp -------------------------------------------------------------------------------- /src/lib/qutim/thememanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/thememanager.h -------------------------------------------------------------------------------- /src/lib/qutim/tooltip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/tooltip.cpp -------------------------------------------------------------------------------- /src/lib/qutim/tooltip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/tooltip.h -------------------------------------------------------------------------------- /src/lib/qutim/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/utils.cpp -------------------------------------------------------------------------------- /src/lib/qutim/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/utils.h -------------------------------------------------------------------------------- /src/lib/qutim/utils/avatarfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/utils/avatarfilter.cpp -------------------------------------------------------------------------------- /src/lib/qutim/utils/avatarfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/utils/avatarfilter.h -------------------------------------------------------------------------------- /src/lib/qutim/utils/avatariconengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/utils/avatariconengine.cpp -------------------------------------------------------------------------------- /src/lib/qutim/utils/avatariconengine_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/utils/avatariconengine_p.h -------------------------------------------------------------------------------- /src/lib/qutim/utils/itemdelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/utils/itemdelegate.cpp -------------------------------------------------------------------------------- /src/lib/qutim/utils/itemdelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/utils/itemdelegate.h -------------------------------------------------------------------------------- /src/lib/qutim/varianthook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/varianthook.cpp -------------------------------------------------------------------------------- /src/lib/qutim/varianthook_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/varianthook_p.h -------------------------------------------------------------------------------- /src/lib/qutim/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/version.cpp -------------------------------------------------------------------------------- /src/lib/qutim/version.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/version.h.cmake -------------------------------------------------------------------------------- /src/lib/qutim/widgetactiongenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/widgetactiongenerator.cpp -------------------------------------------------------------------------------- /src/lib/qutim/widgetactiongenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/lib/qutim/widgetactiongenerator.h -------------------------------------------------------------------------------- /src/plugins/Plugin.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/Plugin.qbs -------------------------------------------------------------------------------- /src/plugins/generic/GenericPlugin.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/GenericPlugin.qbs -------------------------------------------------------------------------------- /src/plugins/generic/addcontactdlg/addcontact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/addcontactdlg/addcontact.cpp -------------------------------------------------------------------------------- /src/plugins/generic/addcontactdlg/addcontact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/addcontactdlg/addcontact.h -------------------------------------------------------------------------------- /src/plugins/generic/addcontactdlg/addcontact.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/addcontactdlg/addcontact.ui -------------------------------------------------------------------------------- /src/plugins/generic/adiumchat/adiumchat.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/adiumchat/adiumchat.qbs -------------------------------------------------------------------------------- /src/plugins/generic/adiumchat/lib/chatedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/adiumchat/lib/chatedit.cpp -------------------------------------------------------------------------------- /src/plugins/generic/adiumchat/lib/chatedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/adiumchat/lib/chatedit.h -------------------------------------------------------------------------------- /src/plugins/generic/adiumchat/lib/chatlayerimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/adiumchat/lib/chatlayerimpl.h -------------------------------------------------------------------------------- /src/plugins/generic/adiumchat/plugin.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/adiumchat/plugin.qbs -------------------------------------------------------------------------------- /src/plugins/generic/adiumchat/qutim-adiumchat.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/adiumchat/qutim-adiumchat.qbs -------------------------------------------------------------------------------- /src/plugins/generic/adiumsrvicons/serviceicons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/adiumsrvicons/serviceicons.cpp -------------------------------------------------------------------------------- /src/plugins/generic/adiumsrvicons/serviceicons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/adiumsrvicons/serviceicons.h -------------------------------------------------------------------------------- /src/plugins/generic/adiumwebview/adiumwebview.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/adiumwebview/adiumwebview.qbs -------------------------------------------------------------------------------- /src/plugins/generic/adiumwebview/lib/old/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/adiumwebview/lib/old/main.cpp -------------------------------------------------------------------------------- /src/plugins/generic/adiumwebview/lib/old/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/adiumwebview/lib/old/widget.h -------------------------------------------------------------------------------- /src/plugins/generic/adiumwebview/lib/old/widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/adiumwebview/lib/old/widget.ui -------------------------------------------------------------------------------- /src/plugins/generic/aescrypto/aescrypto.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/aescrypto/aescrypto.qbs -------------------------------------------------------------------------------- /src/plugins/generic/aescrypto/cmake/FindQCA2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/aescrypto/cmake/FindQCA2.cmake -------------------------------------------------------------------------------- /src/plugins/generic/antiboss/antiboss.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/antiboss/antiboss.qbs -------------------------------------------------------------------------------- /src/plugins/generic/antiboss/src/antibossplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/antiboss/src/antibossplugin.h -------------------------------------------------------------------------------- /src/plugins/generic/antispam/antispam.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/antispam/antispam.qbs -------------------------------------------------------------------------------- /src/plugins/generic/antispam/src/antispamplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/antispam/src/antispamplugin.h -------------------------------------------------------------------------------- /src/plugins/generic/antispam/src/handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/antispam/src/handler.cpp -------------------------------------------------------------------------------- /src/plugins/generic/antispam/src/handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/antispam/src/handler.h -------------------------------------------------------------------------------- /src/plugins/generic/aspeller/aspeller.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/aspeller/aspeller.qbs -------------------------------------------------------------------------------- /src/plugins/generic/aspeller/src/aspellchecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/aspeller/src/aspellchecker.cpp -------------------------------------------------------------------------------- /src/plugins/generic/aspeller/src/aspellchecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/aspeller/src/aspellchecker.h -------------------------------------------------------------------------------- /src/plugins/generic/aspeller/src/aspellplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/aspeller/src/aspellplugin.cpp -------------------------------------------------------------------------------- /src/plugins/generic/aspeller/src/aspellplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/aspeller/src/aspellplugin.h -------------------------------------------------------------------------------- /src/plugins/generic/aspeller/src/aspellsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/aspeller/src/aspellsettings.h -------------------------------------------------------------------------------- /src/plugins/generic/authdialog/authdialog.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/authdialog/authdialog.qbs -------------------------------------------------------------------------------- /src/plugins/generic/authdialog/authdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/authdialog/authdialog.ui -------------------------------------------------------------------------------- /src/plugins/generic/authdialog/authdialogimpl_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/authdialog/authdialogimpl_p.h -------------------------------------------------------------------------------- /src/plugins/generic/authdialog/authdialogplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/authdialog/authdialogplugin.h -------------------------------------------------------------------------------- /src/plugins/generic/authdialog/authservice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/authdialog/authservice.cpp -------------------------------------------------------------------------------- /src/plugins/generic/authdialog/authservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/authdialog/authservice.h -------------------------------------------------------------------------------- /src/plugins/generic/autopaster/autopaster.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/autopaster/autopaster.qbs -------------------------------------------------------------------------------- /src/plugins/generic/autopaster/src/autopaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/autopaster/src/autopaster.cpp -------------------------------------------------------------------------------- /src/plugins/generic/autopaster/src/autopaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/autopaster/src/autopaster.h -------------------------------------------------------------------------------- /src/plugins/generic/autopaster/src/handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/autopaster/src/handler.cpp -------------------------------------------------------------------------------- /src/plugins/generic/autopaster/src/handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/autopaster/src/handler.h -------------------------------------------------------------------------------- /src/plugins/generic/autopaster/src/kdepaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/autopaster/src/kdepaster.cpp -------------------------------------------------------------------------------- /src/plugins/generic/autopaster/src/kdepaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/autopaster/src/kdepaster.h -------------------------------------------------------------------------------- /src/plugins/generic/autopaster/src/ubuntupaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/autopaster/src/ubuntupaster.h -------------------------------------------------------------------------------- /src/plugins/generic/autoreply/autoreply.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/autoreply/autoreply.qbs -------------------------------------------------------------------------------- /src/plugins/generic/blogimprover/blogimprover.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/blogimprover/blogimprover.qbs -------------------------------------------------------------------------------- /src/plugins/generic/clconf/clconf.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/clconf/clconf.qbs -------------------------------------------------------------------------------- /src/plugins/generic/clconf/src/clconfplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/clconf/src/clconfplugin.cpp -------------------------------------------------------------------------------- /src/plugins/generic/clconf/src/clconfplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/clconf/src/clconfplugin.h -------------------------------------------------------------------------------- /src/plugins/generic/clconf/src/proxyaccount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/clconf/src/proxyaccount.cpp -------------------------------------------------------------------------------- /src/plugins/generic/clconf/src/proxyaccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/clconf/src/proxyaccount.h -------------------------------------------------------------------------------- /src/plugins/generic/clconf/src/proxycontact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/clconf/src/proxycontact.cpp -------------------------------------------------------------------------------- /src/plugins/generic/clconf/src/proxycontact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/clconf/src/proxycontact.h -------------------------------------------------------------------------------- /src/plugins/generic/comparators/comparators.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/comparators/comparators.qbs -------------------------------------------------------------------------------- /src/plugins/generic/comparators/statuscomparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/comparators/statuscomparator.h -------------------------------------------------------------------------------- /src/plugins/generic/contactinfo/contactinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/contactinfo/contactinfo.cpp -------------------------------------------------------------------------------- /src/plugins/generic/contactinfo/contactinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/contactinfo/contactinfo.h -------------------------------------------------------------------------------- /src/plugins/generic/contactinfo/contactinfo.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/contactinfo/contactinfo.qbs -------------------------------------------------------------------------------- /src/plugins/generic/contactinfo/userinformation.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/contactinfo/userinformation.ui -------------------------------------------------------------------------------- /src/plugins/generic/contactmodel/contactmodel.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/contactmodel/contactmodel.qbs -------------------------------------------------------------------------------- /src/plugins/generic/control/control.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/control/control.qbs -------------------------------------------------------------------------------- /src/plugins/generic/control/src/controlplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/control/src/controlplugin.cpp -------------------------------------------------------------------------------- /src/plugins/generic/control/src/controlplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/control/src/controlplugin.h -------------------------------------------------------------------------------- /src/plugins/generic/control/src/crypter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/control/src/crypter.cpp -------------------------------------------------------------------------------- /src/plugins/generic/control/src/crypter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/control/src/crypter.h -------------------------------------------------------------------------------- /src/plugins/generic/control/src/networkmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/control/src/networkmanager.cpp -------------------------------------------------------------------------------- /src/plugins/generic/control/src/networkmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/control/src/networkmanager.h -------------------------------------------------------------------------------- /src/plugins/generic/control/src/rostermanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/control/src/rostermanager.cpp -------------------------------------------------------------------------------- /src/plugins/generic/control/src/rostermanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/control/src/rostermanager.h -------------------------------------------------------------------------------- /src/plugins/generic/control/src/sessionspy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/control/src/sessionspy.cpp -------------------------------------------------------------------------------- /src/plugins/generic/control/src/sessionspy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/control/src/sessionspy.h -------------------------------------------------------------------------------- /src/plugins/generic/control/src/settingswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/control/src/settingswidget.cpp -------------------------------------------------------------------------------- /src/plugins/generic/control/src/settingswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/control/src/settingswidget.h -------------------------------------------------------------------------------- /src/plugins/generic/control/src/settingswidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/control/src/settingswidget.ui -------------------------------------------------------------------------------- /src/plugins/generic/dataformsbackend/datalayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/dataformsbackend/datalayout.h -------------------------------------------------------------------------------- /src/plugins/generic/dataformsbackend/widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/dataformsbackend/widgets.cpp -------------------------------------------------------------------------------- /src/plugins/generic/dataformsbackend/widgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/dataformsbackend/widgets.h -------------------------------------------------------------------------------- /src/plugins/generic/dbusapi/dbusapi.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/dbusapi/dbusapi.qbs -------------------------------------------------------------------------------- /src/plugins/generic/dbusapi/src/accountadaptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/dbusapi/src/accountadaptor.cpp -------------------------------------------------------------------------------- /src/plugins/generic/dbusapi/src/accountadaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/dbusapi/src/accountadaptor.h -------------------------------------------------------------------------------- /src/plugins/generic/dbusapi/src/buddyadapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/dbusapi/src/buddyadapter.cpp -------------------------------------------------------------------------------- /src/plugins/generic/dbusapi/src/buddyadapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/dbusapi/src/buddyadapter.h -------------------------------------------------------------------------------- /src/plugins/generic/dbusapi/src/chatlayeradapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/dbusapi/src/chatlayeradapter.h -------------------------------------------------------------------------------- /src/plugins/generic/dbusapi/src/chatunitadaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/dbusapi/src/chatunitadaptor.h -------------------------------------------------------------------------------- /src/plugins/generic/dbusapi/src/contactadaptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/dbusapi/src/contactadaptor.cpp -------------------------------------------------------------------------------- /src/plugins/generic/dbusapi/src/contactadaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/dbusapi/src/contactadaptor.h -------------------------------------------------------------------------------- /src/plugins/generic/dbusapi/src/dbusplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/dbusapi/src/dbusplugin.cpp -------------------------------------------------------------------------------- /src/plugins/generic/dbusapi/src/dbusplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/dbusapi/src/dbusplugin.h -------------------------------------------------------------------------------- /src/plugins/generic/dbusapi/src/protocoladaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/dbusapi/src/protocoladaptor.h -------------------------------------------------------------------------------- /src/plugins/generic/docktile/docktile.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/docktile/docktile.qbs -------------------------------------------------------------------------------- /src/plugins/generic/docktile/src/dockplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/docktile/src/dockplugin.cpp -------------------------------------------------------------------------------- /src/plugins/generic/docktile/src/dockplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/docktile/src/dockplugin.h -------------------------------------------------------------------------------- /src/plugins/generic/docktile/src/docktile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/docktile/src/docktile.cpp -------------------------------------------------------------------------------- /src/plugins/generic/docktile/src/docktile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/docktile/src/docktile.h -------------------------------------------------------------------------------- /src/plugins/generic/emoedit/emoedit.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/emoedit/emoedit.qbs -------------------------------------------------------------------------------- /src/plugins/generic/emoedit/src/emoeditplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/emoedit/src/emoeditplugin.cpp -------------------------------------------------------------------------------- /src/plugins/generic/emoedit/src/emoeditplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/emoedit/src/emoeditplugin.h -------------------------------------------------------------------------------- /src/plugins/generic/filetransfer/filetransfer.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/filetransfer/filetransfer.qbs -------------------------------------------------------------------------------- /src/plugins/generic/floaties/floaties.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/floaties/floaties.qbs -------------------------------------------------------------------------------- /src/plugins/generic/floaties/src/contactwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/floaties/src/contactwidget.cpp -------------------------------------------------------------------------------- /src/plugins/generic/floaties/src/contactwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/floaties/src/contactwidget.h -------------------------------------------------------------------------------- /src/plugins/generic/floaties/src/floaties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/floaties/src/floaties.cpp -------------------------------------------------------------------------------- /src/plugins/generic/floaties/src/floaties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/floaties/src/floaties.h -------------------------------------------------------------------------------- /src/plugins/generic/formula/formula.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/formula/formula.qbs -------------------------------------------------------------------------------- /src/plugins/generic/formula/src/formulahandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/formula/src/formulahandler.cpp -------------------------------------------------------------------------------- /src/plugins/generic/formula/src/formulahandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/formula/src/formulahandler.h -------------------------------------------------------------------------------- /src/plugins/generic/formula/src/formulaplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/formula/src/formulaplugin.cpp -------------------------------------------------------------------------------- /src/plugins/generic/formula/src/formulaplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/formula/src/formulaplugin.h -------------------------------------------------------------------------------- /src/plugins/generic/generic.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/generic.qbs -------------------------------------------------------------------------------- /src/plugins/generic/highlighter/highlighter.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/highlighter/highlighter.qbs -------------------------------------------------------------------------------- /src/plugins/generic/highlighter/src/highlighter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/highlighter/src/highlighter.h -------------------------------------------------------------------------------- /src/plugins/generic/highlighter/src/nickhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/highlighter/src/nickhandler.h -------------------------------------------------------------------------------- /src/plugins/generic/histman/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/histman/AUTHORS -------------------------------------------------------------------------------- /src/plugins/generic/histman/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/histman/COPYING -------------------------------------------------------------------------------- /src/plugins/generic/histman/GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/histman/GPL -------------------------------------------------------------------------------- /src/plugins/generic/histman/histman.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/histman/histman.qbs -------------------------------------------------------------------------------- /src/plugins/generic/histman/src/chooseclientpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/histman/src/chooseclientpage.h -------------------------------------------------------------------------------- /src/plugins/generic/histman/src/chooseordumppage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/histman/src/chooseordumppage.h -------------------------------------------------------------------------------- /src/plugins/generic/histman/src/clientconfigpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/histman/src/clientconfigpage.h -------------------------------------------------------------------------------- /src/plugins/generic/histman/src/clients/andrq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/histman/src/clients/andrq.cpp -------------------------------------------------------------------------------- /src/plugins/generic/histman/src/clients/andrq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/histman/src/clients/andrq.h -------------------------------------------------------------------------------- /src/plugins/generic/histman/src/clients/gajim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/histman/src/clients/gajim.cpp -------------------------------------------------------------------------------- /src/plugins/generic/histman/src/clients/gajim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/histman/src/clients/gajim.h -------------------------------------------------------------------------------- /src/plugins/generic/histman/src/clients/jimm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/histman/src/clients/jimm.cpp -------------------------------------------------------------------------------- /src/plugins/generic/histman/src/clients/jimm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/histman/src/clients/jimm.h -------------------------------------------------------------------------------- /src/plugins/generic/histman/src/clients/kopete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/histman/src/clients/kopete.cpp -------------------------------------------------------------------------------- /src/plugins/generic/histman/src/clients/kopete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/histman/src/clients/kopete.h -------------------------------------------------------------------------------- /src/plugins/generic/histman/src/clients/licq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/histman/src/clients/licq.cpp -------------------------------------------------------------------------------- /src/plugins/generic/histman/src/clients/licq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/histman/src/clients/licq.h -------------------------------------------------------------------------------- /src/plugins/generic/histman/src/clients/miranda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/histman/src/clients/miranda.h -------------------------------------------------------------------------------- /src/plugins/generic/histman/src/clients/psi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/histman/src/clients/psi.cpp -------------------------------------------------------------------------------- /src/plugins/generic/histman/src/clients/psi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/histman/src/clients/psi.h -------------------------------------------------------------------------------- /src/plugins/generic/histman/src/clients/qip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/histman/src/clients/qip.cpp -------------------------------------------------------------------------------- /src/plugins/generic/histman/src/clients/qip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/histman/src/clients/qip.h -------------------------------------------------------------------------------- /src/plugins/generic/histman/src/clients/qutim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/histman/src/clients/qutim.h -------------------------------------------------------------------------------- /src/plugins/generic/histman/src/clients/sim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/histman/src/clients/sim.cpp -------------------------------------------------------------------------------- /src/plugins/generic/histman/src/clients/sim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/histman/src/clients/sim.h -------------------------------------------------------------------------------- /src/plugins/generic/histview/histview.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/histview/histview.qbs -------------------------------------------------------------------------------- /src/plugins/generic/histview/src/histview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/histview/src/histview.cpp -------------------------------------------------------------------------------- /src/plugins/generic/histview/src/histview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/histview/src/histview.h -------------------------------------------------------------------------------- /src/plugins/generic/hunspeller/hunspeller.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/hunspeller/hunspeller.qbs -------------------------------------------------------------------------------- /src/plugins/generic/idledetector/idle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/idledetector/idle.cpp -------------------------------------------------------------------------------- /src/plugins/generic/idledetector/idle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/idledetector/idle.h -------------------------------------------------------------------------------- /src/plugins/generic/idledetector/idle_mac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/idledetector/idle_mac.cpp -------------------------------------------------------------------------------- /src/plugins/generic/idledetector/idle_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/idledetector/idle_win.cpp -------------------------------------------------------------------------------- /src/plugins/generic/idledetector/idle_x11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/idledetector/idle_x11.cpp -------------------------------------------------------------------------------- /src/plugins/generic/imagepub/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/imagepub/COPYING -------------------------------------------------------------------------------- /src/plugins/generic/imagepub/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/imagepub/README -------------------------------------------------------------------------------- /src/plugins/generic/imagepub/imagepub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/imagepub/imagepub.cpp -------------------------------------------------------------------------------- /src/plugins/generic/imagepub/imagepub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/imagepub/imagepub.h -------------------------------------------------------------------------------- /src/plugins/generic/imagepub/imagepub.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/imagepub/imagepub.pro -------------------------------------------------------------------------------- /src/plugins/generic/imagepub/imagepub.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/imagepub/imagepub.qbs -------------------------------------------------------------------------------- /src/plugins/generic/imagepub/imagepub.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/imagepub/imagepub.qrc -------------------------------------------------------------------------------- /src/plugins/generic/imagepub/imagepubsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/imagepub/imagepubsettings.h -------------------------------------------------------------------------------- /src/plugins/generic/imagepub/uploaddialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/imagepub/uploaddialog.cpp -------------------------------------------------------------------------------- /src/plugins/generic/imagepub/uploaddialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/imagepub/uploaddialog.h -------------------------------------------------------------------------------- /src/plugins/generic/imagepub/uploaddialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/imagepub/uploaddialog.ui -------------------------------------------------------------------------------- /src/plugins/generic/joingroupchatdlg/joinpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/joingroupchatdlg/joinpage.h -------------------------------------------------------------------------------- /src/plugins/generic/joingroupchatdlg/uripage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/joingroupchatdlg/uripage.h -------------------------------------------------------------------------------- /src/plugins/generic/jsonconfig/jsonconfig.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/jsonconfig/jsonconfig.qbs -------------------------------------------------------------------------------- /src/plugins/generic/jsonhistory/jsonhistory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/jsonhistory/jsonhistory.cpp -------------------------------------------------------------------------------- /src/plugins/generic/jsonhistory/jsonhistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/jsonhistory/jsonhistory.h -------------------------------------------------------------------------------- /src/plugins/generic/jsonhistory/jsonhistory.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/jsonhistory/jsonhistory.qbs -------------------------------------------------------------------------------- /src/plugins/generic/keychain/keychain.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/keychain/keychain.qbs -------------------------------------------------------------------------------- /src/plugins/generic/kineticpopups/src/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/kineticpopups/src/backend.h -------------------------------------------------------------------------------- /src/plugins/generic/kineticpopups/src/notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/kineticpopups/src/notify.h -------------------------------------------------------------------------------- /src/plugins/generic/kineticpopups/src/timeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/kineticpopups/src/timeout.h -------------------------------------------------------------------------------- /src/plugins/generic/kineticscroller/src.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/kineticscroller/src.pro -------------------------------------------------------------------------------- /src/plugins/generic/logger/logger.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/logger/logger.qbs -------------------------------------------------------------------------------- /src/plugins/generic/logger/src/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/logger/src/logger.cpp -------------------------------------------------------------------------------- /src/plugins/generic/logger/src/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/logger/src/logger.h -------------------------------------------------------------------------------- /src/plugins/generic/logger/symbian.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/logger/symbian.pro -------------------------------------------------------------------------------- /src/plugins/generic/massmessaging/src/manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/massmessaging/src/manager.h -------------------------------------------------------------------------------- /src/plugins/generic/metacontacts/factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/metacontacts/factory.cpp -------------------------------------------------------------------------------- /src/plugins/generic/metacontacts/factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/metacontacts/factory.h -------------------------------------------------------------------------------- /src/plugins/generic/metacontacts/manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/metacontacts/manager.cpp -------------------------------------------------------------------------------- /src/plugins/generic/metacontacts/manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/metacontacts/manager.h -------------------------------------------------------------------------------- /src/plugins/generic/metacontacts/mergedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/metacontacts/mergedialog.h -------------------------------------------------------------------------------- /src/plugins/generic/metacontacts/mergedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/metacontacts/mergedialog.ui -------------------------------------------------------------------------------- /src/plugins/generic/metacontacts/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/metacontacts/model.cpp -------------------------------------------------------------------------------- /src/plugins/generic/metacontacts/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/metacontacts/model.h -------------------------------------------------------------------------------- /src/plugins/generic/mobileabout/mobileabout.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/mobileabout/mobileabout.qbs -------------------------------------------------------------------------------- /src/plugins/generic/nowplaying/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/nowplaying/images/logo.png -------------------------------------------------------------------------------- /src/plugins/generic/nowplaying/include/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/nowplaying/include/player.h -------------------------------------------------------------------------------- /src/plugins/generic/nowplaying/nowplaying.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/nowplaying/nowplaying.qbs -------------------------------------------------------------------------------- /src/plugins/generic/nowplaying/res.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/nowplaying/res.qrc -------------------------------------------------------------------------------- /src/plugins/generic/nowplaying/src/icqsupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/nowplaying/src/icqsupport.h -------------------------------------------------------------------------------- /src/plugins/generic/nowplaying/src/nowplaying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/nowplaying/src/nowplaying.h -------------------------------------------------------------------------------- /src/plugins/generic/nowplaying/src/settingsui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/nowplaying/src/settingsui.h -------------------------------------------------------------------------------- /src/plugins/generic/offtherecord/src/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/offtherecord/src/global.h -------------------------------------------------------------------------------- /src/plugins/generic/offtherecord/src/otrcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/offtherecord/src/otrcrypt.h -------------------------------------------------------------------------------- /src/plugins/generic/password/password.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/password/password.qbs -------------------------------------------------------------------------------- /src/plugins/generic/phononsound/phononsound.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/phononsound/phononsound.qbs -------------------------------------------------------------------------------- /src/plugins/generic/plistconfig/plistconfig.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/plistconfig/plistconfig.qbs -------------------------------------------------------------------------------- /src/plugins/generic/plugman/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/plugman/AUTHORS -------------------------------------------------------------------------------- /src/plugins/generic/plugman/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/plugman/COPYING -------------------------------------------------------------------------------- /src/plugins/generic/plugman/COPYING.libs: -------------------------------------------------------------------------------- 1 | This lib use k8json written by Mirage (Ketmar) -------------------------------------------------------------------------------- /src/plugins/generic/plugman/GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/plugman/GPL -------------------------------------------------------------------------------- /src/plugins/generic/plugman/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/plugman/changelog -------------------------------------------------------------------------------- /src/plugins/generic/plugman/plugman.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/plugman/plugman.qbs -------------------------------------------------------------------------------- /src/plugins/generic/plugman/src/packageengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/plugman/src/packageengine.h -------------------------------------------------------------------------------- /src/plugins/generic/plugman/src/packageentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/plugman/src/packageentry.h -------------------------------------------------------------------------------- /src/plugins/generic/plugman/src/packagemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/plugman/src/packagemodel.h -------------------------------------------------------------------------------- /src/plugins/generic/plugman/src/plugman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/plugman/src/plugman.cpp -------------------------------------------------------------------------------- /src/plugins/generic/plugman/src/plugman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/plugman/src/plugman.h -------------------------------------------------------------------------------- /src/plugins/generic/qmlchat/qmlchat.plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/qmlchat/qmlchat.plugin.json -------------------------------------------------------------------------------- /src/plugins/generic/qmlchat/qmlchat.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/qmlchat/qmlchat.qbs -------------------------------------------------------------------------------- /src/plugins/generic/qrcicons/icons/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/qrcicons/icons/download.png -------------------------------------------------------------------------------- /src/plugins/generic/qrcicons/icons/go-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/qrcicons/icons/go-next.png -------------------------------------------------------------------------------- /src/plugins/generic/qrcicons/icons/im-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/qrcicons/icons/im-user.png -------------------------------------------------------------------------------- /src/plugins/generic/qrcicons/icons/im.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/qrcicons/icons/im.png -------------------------------------------------------------------------------- /src/plugins/generic/qrcicons/icons/kde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/qrcicons/icons/kde.png -------------------------------------------------------------------------------- /src/plugins/generic/qrcicons/icons/list-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/qrcicons/icons/list-add.png -------------------------------------------------------------------------------- /src/plugins/generic/qrcicons/icons/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/qrcicons/icons/phone.png -------------------------------------------------------------------------------- /src/plugins/generic/qrcicons/icons/qutim_64.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/qrcicons/icons/qutim_64.svg -------------------------------------------------------------------------------- /src/plugins/generic/qrcicons/icons/services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/qrcicons/icons/services.png -------------------------------------------------------------------------------- /src/plugins/generic/qrcicons/icons/speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/qrcicons/icons/speaker.png -------------------------------------------------------------------------------- /src/plugins/generic/qrcicons/icons/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/qrcicons/icons/unknown.png -------------------------------------------------------------------------------- /src/plugins/generic/qrcicons/oxygen.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/qrcicons/oxygen.qrc -------------------------------------------------------------------------------- /src/plugins/generic/qrcicons/qrcicons.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/qrcicons/qrcicons.qbs -------------------------------------------------------------------------------- /src/plugins/generic/qticons/iconsloaderimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/qticons/iconsloaderimpl.cpp -------------------------------------------------------------------------------- /src/plugins/generic/qticons/iconsloaderimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/qticons/iconsloaderimpl.h -------------------------------------------------------------------------------- /src/plugins/generic/qticons/qticons.plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/qticons/qticons.plugin.json -------------------------------------------------------------------------------- /src/plugins/generic/qticons/qticons.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/qticons/qticons.qbs -------------------------------------------------------------------------------- /src/plugins/generic/quickchat/qml/chatstyle/adium/main.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2.3 2 | 3 | AdiumMessagesView { 4 | } 5 | -------------------------------------------------------------------------------- /src/plugins/generic/quickchat/qml/contactliststyle/default/main.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2.3 2 | 3 | Style { 4 | } 5 | -------------------------------------------------------------------------------- /src/plugins/generic/quickchat/quickchat.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/quickchat/quickchat.qbs -------------------------------------------------------------------------------- /src/plugins/generic/quickchat/src/chat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/quickchat/src/chat.cpp -------------------------------------------------------------------------------- /src/plugins/generic/quickchat/src/chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/quickchat/src/chat.h -------------------------------------------------------------------------------- /src/plugins/generic/quickchat/src/chatchannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/quickchat/src/chatchannel.h -------------------------------------------------------------------------------- /src/plugins/generic/quickchat/src/chatpreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/quickchat/src/chatpreview.h -------------------------------------------------------------------------------- /src/plugins/generic/quickchat/src/flatmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/quickchat/src/flatmodel.cpp -------------------------------------------------------------------------------- /src/plugins/generic/quickchat/src/flatmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/quickchat/src/flatmodel.h -------------------------------------------------------------------------------- /src/plugins/generic/quickcontactlist/qml/quickcontactlist/ItemDelegate2.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2.0 2 | 3 | ItemDelegate { 4 | } 5 | -------------------------------------------------------------------------------- /src/plugins/generic/screenshoter/src/shoter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/screenshoter/src/shoter.cpp -------------------------------------------------------------------------------- /src/plugins/generic/screenshoter/src/shoter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/screenshoter/src/shoter.h -------------------------------------------------------------------------------- /src/plugins/generic/scriptapi/scriptapi.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/scriptapi/scriptapi.qbs -------------------------------------------------------------------------------- /src/plugins/generic/sdlsound/sdlsound.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/sdlsound/sdlsound.qbs -------------------------------------------------------------------------------- /src/plugins/generic/sdlsound/src/sdlbackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/sdlsound/src/sdlbackend.cpp -------------------------------------------------------------------------------- /src/plugins/generic/sdlsound/src/sdlbackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/sdlsound/src/sdlbackend.h -------------------------------------------------------------------------------- /src/plugins/generic/sdlsound/src/sdlplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/sdlsound/src/sdlplugin.cpp -------------------------------------------------------------------------------- /src/plugins/generic/sdlsound/src/sdlplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/sdlsound/src/sdlplugin.h -------------------------------------------------------------------------------- /src/plugins/generic/searchdialog/resultmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/searchdialog/resultmodel.h -------------------------------------------------------------------------------- /src/plugins/generic/simpleabout/aboutinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/simpleabout/aboutinfo.cpp -------------------------------------------------------------------------------- /src/plugins/generic/simpleabout/aboutinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/simpleabout/aboutinfo.h -------------------------------------------------------------------------------- /src/plugins/generic/simpleabout/simpleabout.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/simpleabout/simpleabout.qbs -------------------------------------------------------------------------------- /src/plugins/generic/sqlhistory/historywindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/sqlhistory/historywindow.h -------------------------------------------------------------------------------- /src/plugins/generic/sqlhistory/historywindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/sqlhistory/historywindow.ui -------------------------------------------------------------------------------- /src/plugins/generic/sqlhistory/sqlengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/sqlhistory/sqlengine.cpp -------------------------------------------------------------------------------- /src/plugins/generic/sqlhistory/sqlengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/sqlhistory/sqlengine.h -------------------------------------------------------------------------------- /src/plugins/generic/sqlhistory/sqlhistory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/sqlhistory/sqlhistory.cpp -------------------------------------------------------------------------------- /src/plugins/generic/sqlhistory/sqlhistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/sqlhistory/sqlhistory.h -------------------------------------------------------------------------------- /src/plugins/generic/sqlhistory/sqlhistory.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/sqlhistory/sqlhistory.pro -------------------------------------------------------------------------------- /src/plugins/generic/sqlhistory/sqlhistory.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/sqlhistory/sqlhistory.qbs -------------------------------------------------------------------------------- /src/plugins/generic/trayicon/src/simpletray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/trayicon/src/simpletray.cpp -------------------------------------------------------------------------------- /src/plugins/generic/trayicon/src/simpletray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/trayicon/src/simpletray.h -------------------------------------------------------------------------------- /src/plugins/generic/trayicon/trayicon.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/trayicon/trayicon.qbs -------------------------------------------------------------------------------- /src/plugins/generic/updater/src/updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/updater/src/updater.cpp -------------------------------------------------------------------------------- /src/plugins/generic/updater/src/updater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/updater/src/updater.h -------------------------------------------------------------------------------- /src/plugins/generic/updater/updater.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/updater/updater.qbs -------------------------------------------------------------------------------- /src/plugins/generic/urlpreview/src/urlpreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/urlpreview/src/urlpreview.h -------------------------------------------------------------------------------- /src/plugins/generic/urlpreview/urlpreview.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/urlpreview/urlpreview.qbs -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/0.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/01.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/02.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/03.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/04.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/05.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/06.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/07.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/08.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/09.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/10.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/11.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/12.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/13.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/14.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/15.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/16.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/17.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/18.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/19.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/20.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/21.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/22.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/23.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/24.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/25.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/26.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/27.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/28.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/29.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/30.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/31.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/32.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/33.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/34.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/35.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/36.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/37.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/38.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/39.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/40.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/41.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/42.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/43.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/44.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/45.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/46.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/47.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/add.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/delete.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/search.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/icons/weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/icons/weather.png -------------------------------------------------------------------------------- /src/plugins/generic/weather/src/waccount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/src/waccount.cpp -------------------------------------------------------------------------------- /src/plugins/generic/weather/src/waccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/src/waccount.h -------------------------------------------------------------------------------- /src/plugins/generic/weather/src/wcontact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/src/wcontact.cpp -------------------------------------------------------------------------------- /src/plugins/generic/weather/src/wcontact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/src/wcontact.h -------------------------------------------------------------------------------- /src/plugins/generic/weather/src/weather.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/src/weather.cpp -------------------------------------------------------------------------------- /src/plugins/generic/weather/src/weather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/src/weather.h -------------------------------------------------------------------------------- /src/plugins/generic/weather/src/wlistitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/src/wlistitem.cpp -------------------------------------------------------------------------------- /src/plugins/generic/weather/src/wlistitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/src/wlistitem.h -------------------------------------------------------------------------------- /src/plugins/generic/weather/src/wmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/src/wmanager.cpp -------------------------------------------------------------------------------- /src/plugins/generic/weather/src/wmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/src/wmanager.h -------------------------------------------------------------------------------- /src/plugins/generic/weather/src/wprotocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/src/wprotocol.cpp -------------------------------------------------------------------------------- /src/plugins/generic/weather/src/wprotocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/src/wprotocol.h -------------------------------------------------------------------------------- /src/plugins/generic/weather/src/wsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/src/wsettings.cpp -------------------------------------------------------------------------------- /src/plugins/generic/weather/src/wsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/src/wsettings.h -------------------------------------------------------------------------------- /src/plugins/generic/weather/src/wsettings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/src/wsettings.ui -------------------------------------------------------------------------------- /src/plugins/generic/weather/weather.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/weather.qbs -------------------------------------------------------------------------------- /src/plugins/generic/weather/weather.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/weather/weather.qrc -------------------------------------------------------------------------------- /src/plugins/generic/weather/weatherthemes/default/ForecastDay.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/generic/weather/weatherthemes/default/ForecastTitle.txt: -------------------------------------------------------------------------------- 1 | %localized{Weather forecast}% 2 | -------------------------------------------------------------------------------- /src/plugins/generic/webhistory/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/webhistory/COPYING -------------------------------------------------------------------------------- /src/plugins/generic/webhistory/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/webhistory/settings.cpp -------------------------------------------------------------------------------- /src/plugins/generic/webhistory/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/webhistory/settings.h -------------------------------------------------------------------------------- /src/plugins/generic/webhistory/settings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/webhistory/settings.ui -------------------------------------------------------------------------------- /src/plugins/generic/webhistory/webhistory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/webhistory/webhistory.cpp -------------------------------------------------------------------------------- /src/plugins/generic/webhistory/webhistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/webhistory/webhistory.h -------------------------------------------------------------------------------- /src/plugins/generic/webhistory/webhistory.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/webhistory/webhistory.pro -------------------------------------------------------------------------------- /src/plugins/generic/webhistory/webhistory.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/webhistory/webhistory.qbs -------------------------------------------------------------------------------- /src/plugins/generic/webhistory/webhistory.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/webhistory/webhistory.qrc -------------------------------------------------------------------------------- /src/plugins/generic/yandexnarod/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/yandexnarod/COPYING -------------------------------------------------------------------------------- /src/plugins/generic/yandexnarod/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/yandexnarod/README -------------------------------------------------------------------------------- /src/plugins/generic/yandexnarod/icons/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/yandexnarod/icons/close.png -------------------------------------------------------------------------------- /src/plugins/generic/yandexnarod/yandexnarod.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/yandexnarod/yandexnarod.qbs -------------------------------------------------------------------------------- /src/plugins/generic/yandexnarod/yandexnarod.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/generic/yandexnarod/yandexnarod.qrc -------------------------------------------------------------------------------- /src/plugins/integrations/Integration.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/integrations/Integration.qbs -------------------------------------------------------------------------------- /src/plugins/integrations/awn/TODO: -------------------------------------------------------------------------------- 1 | * Fix code style 2 | -------------------------------------------------------------------------------- /src/plugins/integrations/awn/awn.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/integrations/awn/awn.qbs -------------------------------------------------------------------------------- /src/plugins/integrations/awn/src/awn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/integrations/awn/src/awn.cpp -------------------------------------------------------------------------------- /src/plugins/integrations/awn/src/awn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/integrations/awn/src/awn.h -------------------------------------------------------------------------------- /src/plugins/integrations/awn/src/awnservice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/integrations/awn/src/awnservice.cpp -------------------------------------------------------------------------------- /src/plugins/integrations/awn/src/awnservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/integrations/awn/src/awnservice.h -------------------------------------------------------------------------------- /src/plugins/integrations/integrations.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/integrations/integrations.qbs -------------------------------------------------------------------------------- /src/plugins/integrations/kdeintegration/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/integrations/kdeintegration/AUTHORS -------------------------------------------------------------------------------- /src/plugins/integrations/kdeintegration/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/integrations/kdeintegration/COPYING -------------------------------------------------------------------------------- /src/plugins/integrations/kdeintegration/GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/integrations/kdeintegration/GPL -------------------------------------------------------------------------------- /src/plugins/plugins.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/plugins.qbs -------------------------------------------------------------------------------- /src/plugins/plugintemplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/plugintemplate.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/Protocol.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/Protocol.qbs -------------------------------------------------------------------------------- /src/plugins/protocols/astral/astral.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/astral/astral.qbs -------------------------------------------------------------------------------- /src/plugins/protocols/astral/src/astralplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/astral/src/astralplugin.h -------------------------------------------------------------------------------- /src/plugins/protocols/astral/src/astralroster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/astral/src/astralroster.h -------------------------------------------------------------------------------- /src/plugins/protocols/irc/irc.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/irc/irc.qbs -------------------------------------------------------------------------------- /src/plugins/protocols/irc/src/ircaccount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/irc/src/ircaccount.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/irc/src/ircaccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/irc/src/ircaccount.h -------------------------------------------------------------------------------- /src/plugins/protocols/irc/src/ircaccount_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/irc/src/ircaccount_p.h -------------------------------------------------------------------------------- /src/plugins/protocols/irc/src/ircavatar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/irc/src/ircavatar.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/irc/src/ircavatar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/irc/src/ircavatar.h -------------------------------------------------------------------------------- /src/plugins/protocols/irc/src/ircchannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/irc/src/ircchannel.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/irc/src/ircchannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/irc/src/ircchannel.h -------------------------------------------------------------------------------- /src/plugins/protocols/irc/src/ircchannel_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/irc/src/ircchannel_p.h -------------------------------------------------------------------------------- /src/plugins/protocols/irc/src/irccommandalias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/irc/src/irccommandalias.h -------------------------------------------------------------------------------- /src/plugins/protocols/irc/src/ircconnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/irc/src/ircconnection.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/irc/src/ircconnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/irc/src/ircconnection.h -------------------------------------------------------------------------------- /src/plugins/protocols/irc/src/irccontact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/irc/src/irccontact.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/irc/src/irccontact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/irc/src/irccontact.h -------------------------------------------------------------------------------- /src/plugins/protocols/irc/src/irccontact_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/irc/src/irccontact_p.h -------------------------------------------------------------------------------- /src/plugins/protocols/irc/src/ircctcphandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/irc/src/ircctcphandler.h -------------------------------------------------------------------------------- /src/plugins/protocols/irc/src/ircglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/irc/src/ircglobal.h -------------------------------------------------------------------------------- /src/plugins/protocols/irc/src/ircplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/irc/src/ircplugin.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/irc/src/ircplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/irc/src/ircplugin.h -------------------------------------------------------------------------------- /src/plugins/protocols/irc/src/ircprotocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/irc/src/ircprotocol.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/irc/src/ircprotocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/irc/src/ircprotocol.h -------------------------------------------------------------------------------- /src/plugins/protocols/irc/src/ircprotocol_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/irc/src/ircprotocol_p.h -------------------------------------------------------------------------------- /src/plugins/protocols/irc/src/ircproxymanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/irc/src/ircproxymanager.h -------------------------------------------------------------------------------- /src/plugins/protocols/irc/src/ui/console.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/irc/src/ui/console.ui -------------------------------------------------------------------------------- /src/plugins/protocols/irc/src/ui/ircconsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/irc/src/ui/ircconsole.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/irc/src/ui/ircconsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/irc/src/ui/ircconsole.h -------------------------------------------------------------------------------- /src/plugins/protocols/jabber/jabber.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/jabber/jabber.qbs -------------------------------------------------------------------------------- /src/plugins/protocols/jabber/src/jplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/jabber/src/jplugin.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/jabber/src/jplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/jabber/src/jplugin.h -------------------------------------------------------------------------------- /src/plugins/protocols/jabber/src/sdk/jabber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/jabber/src/sdk/jabber.h -------------------------------------------------------------------------------- /src/plugins/protocols/mrim/mrim.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/mrim/mrim.qbs -------------------------------------------------------------------------------- /src/plugins/protocols/mrim/src/base/lpstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/mrim/src/base/lpstring.h -------------------------------------------------------------------------------- /src/plugins/protocols/mrim/src/base/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/mrim/src/base/messages.h -------------------------------------------------------------------------------- /src/plugins/protocols/mrim/src/base/mrimdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/mrim/src/base/mrimdebug.h -------------------------------------------------------------------------------- /src/plugins/protocols/mrim/src/base/mrimdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/mrim/src/base/mrimdefs.h -------------------------------------------------------------------------------- /src/plugins/protocols/mrim/src/base/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/mrim/src/base/proto.h -------------------------------------------------------------------------------- /src/plugins/protocols/mrim/src/base/roster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/mrim/src/base/roster.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/mrim/src/base/roster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/mrim/src/base/roster.h -------------------------------------------------------------------------------- /src/plugins/protocols/mrim/src/base/rtfutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/mrim/src/base/rtfutils.h -------------------------------------------------------------------------------- /src/plugins/protocols/mrim/src/base/useragent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/mrim/src/base/useragent.h -------------------------------------------------------------------------------- /src/plugins/protocols/mrim/src/base/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/mrim/src/base/utils.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/mrim/src/base/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/mrim/src/base/utils.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/3rdparty/hmac.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/3rdparty/hmac.qbs -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/oscar.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/oscar.qbs -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/plugins/xstatus.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/plugins/xstatus.qbs -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/buddycaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/buddycaps.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/buddypicture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/buddypicture.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/capability.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/capability.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/capability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/capability.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/connection.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/connection.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/connection_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/connection_p.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/cookie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/cookie.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/cookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/cookie.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/dataunit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/dataunit.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/dataunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/dataunit.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/feedbag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/feedbag.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/feedbag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/feedbag.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/flap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/flap.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/flap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/flap.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/icq_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/icq_global.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/icqaccount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/icqaccount.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/icqaccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/icqaccount.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/icqaccount_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/icqaccount_p.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/icqcontact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/icqcontact.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/icqcontact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/icqcontact.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/icqcontact_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/icqcontact_p.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/icqprotocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/icqprotocol.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/icqprotocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/icqprotocol.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/icqprotocol_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/icqprotocol_p.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/inforequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/inforequest.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/inforequest_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/inforequest_p.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/messages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/messages.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/messages.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/messages_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/messages_p.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/oscarauth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/oscarauth.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/oscarauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/oscarauth.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/oscarplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/oscarplugin.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/oscarplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/oscarplugin.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/oscarproxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/oscarproxy.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/oscarproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/oscarproxy.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/oscarroster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/oscarroster.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/oscarroster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/oscarroster.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/oscarroster_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/oscarroster_p.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/oscarstatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/oscarstatus.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/oscarstatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/oscarstatus.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/oscarstatus_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/oscarstatus_p.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/snac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/snac.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/snac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/snac.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/snachandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/snachandler.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/snachandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/snachandler.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/tlv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/tlv.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/tlv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/tlv.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/util.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/util.h -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/xtraz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/xtraz.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/oscar/src/xtraz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/oscar/src/xtraz.h -------------------------------------------------------------------------------- /src/plugins/protocols/protocols.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/protocols.qbs -------------------------------------------------------------------------------- /src/plugins/protocols/quetzal/quetzal.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/quetzal/quetzal.qbs -------------------------------------------------------------------------------- /src/plugins/protocols/quetzal/src/quetzalchat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/quetzal/src/quetzalchat.h -------------------------------------------------------------------------------- /src/plugins/protocols/vkontakte/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/vkontakte/AUTHORS -------------------------------------------------------------------------------- /src/plugins/protocols/vkontakte/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/vkontakte/COPYING -------------------------------------------------------------------------------- /src/plugins/protocols/vkontakte/GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/vkontakte/GPL -------------------------------------------------------------------------------- /src/plugins/protocols/vkontakte/src/vaccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/vkontakte/src/vaccount.h -------------------------------------------------------------------------------- /src/plugins/protocols/vkontakte/src/vclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/vkontakte/src/vclient.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/vkontakte/src/vclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/vkontakte/src/vclient.h -------------------------------------------------------------------------------- /src/plugins/protocols/vkontakte/src/vcontact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/vkontakte/src/vcontact.h -------------------------------------------------------------------------------- /src/plugins/protocols/vkontakte/src/vprotocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/vkontakte/src/vprotocol.h -------------------------------------------------------------------------------- /src/plugins/protocols/vkontakte/src/vroster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/vkontakte/src/vroster.cpp -------------------------------------------------------------------------------- /src/plugins/protocols/vkontakte/src/vroster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/vkontakte/src/vroster.h -------------------------------------------------------------------------------- /src/plugins/protocols/vkontakte/vkontakte.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/plugins/protocols/vkontakte/vkontakte.qbs -------------------------------------------------------------------------------- /src/qml/imports/org/qutim/ContactListStyle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/imports/org/qutim/ContactListStyle.qml -------------------------------------------------------------------------------- /src/qml/imports/org/qutim/ControlledMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/imports/org/qutim/ControlledMenu.qml -------------------------------------------------------------------------------- /src/qml/imports/org/qutim/SettingsItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/imports/org/qutim/SettingsItem.qml -------------------------------------------------------------------------------- /src/qml/imports/org/qutim/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/imports/org/qutim/qmldir -------------------------------------------------------------------------------- /src/qml/qutimplugin.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/qutimplugin.qbs -------------------------------------------------------------------------------- /src/qml/src/quickactioncontainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/src/quickactioncontainer.cpp -------------------------------------------------------------------------------- /src/qml/src/quickactioncontainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/src/quickactioncontainer.h -------------------------------------------------------------------------------- /src/qml/src/quickactioncontainerbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/src/quickactioncontainerbase.cpp -------------------------------------------------------------------------------- /src/qml/src/quickactioncontainerbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/src/quickactioncontainerbase.h -------------------------------------------------------------------------------- /src/qml/src/quickactionextender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/src/quickactionextender.cpp -------------------------------------------------------------------------------- /src/qml/src/quickactionextender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/src/quickactionextender.h -------------------------------------------------------------------------------- /src/qml/src/quickactiongenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/src/quickactiongenerator.cpp -------------------------------------------------------------------------------- /src/qml/src/quickactiongenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/src/quickactiongenerator.h -------------------------------------------------------------------------------- /src/qml/src/quickavatarprovider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/src/quickavatarprovider.cpp -------------------------------------------------------------------------------- /src/qml/src/quickavatarprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/src/quickavatarprovider.h -------------------------------------------------------------------------------- /src/qml/src/quickconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/src/quickconfig.cpp -------------------------------------------------------------------------------- /src/qml/src/quickconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/src/quickconfig.h -------------------------------------------------------------------------------- /src/qml/src/quickemoticons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/src/quickemoticons.cpp -------------------------------------------------------------------------------- /src/qml/src/quickemoticons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/src/quickemoticons.h -------------------------------------------------------------------------------- /src/qml/src/quickemoticonstheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/src/quickemoticonstheme.cpp -------------------------------------------------------------------------------- /src/qml/src/quickemoticonstheme.cpp.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/src/quickemoticonstheme.cpp.orig -------------------------------------------------------------------------------- /src/qml/src/quickemoticonstheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/src/quickemoticonstheme.h -------------------------------------------------------------------------------- /src/qml/src/quickimageprovider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/src/quickimageprovider.cpp -------------------------------------------------------------------------------- /src/qml/src/quickimageprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/src/quickimageprovider.h -------------------------------------------------------------------------------- /src/qml/src/quickmenucontainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/src/quickmenucontainer.cpp -------------------------------------------------------------------------------- /src/qml/src/quickmenucontainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/src/quickmenucontainer.h -------------------------------------------------------------------------------- /src/qml/src/quickplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/src/quickplugin.cpp -------------------------------------------------------------------------------- /src/qml/src/quickplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/src/quickplugin.h -------------------------------------------------------------------------------- /src/qml/src/quickpluginwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/src/quickpluginwrapper.cpp -------------------------------------------------------------------------------- /src/qml/src/quickpluginwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/src/quickpluginwrapper.h -------------------------------------------------------------------------------- /src/qml/src/quickservice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/src/quickservice.cpp -------------------------------------------------------------------------------- /src/qml/src/quickservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/src/quickservice.h -------------------------------------------------------------------------------- /src/qml/src/quickthememanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/src/quickthememanager.cpp -------------------------------------------------------------------------------- /src/qml/src/quickthememanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/qml/src/quickthememanager.h -------------------------------------------------------------------------------- /src/share/applications/qutim.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/share/applications/qutim.desktop -------------------------------------------------------------------------------- /src/share/qutim/ca-certs/AOL_Member_CA.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/share/qutim/ca-certs/AOL_Member_CA.pem -------------------------------------------------------------------------------- /src/share/qutim/ca-certs/CAcert_Class3.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/share/qutim/ca-certs/CAcert_Class3.pem -------------------------------------------------------------------------------- /src/share/qutim/ca-certs/CAcert_Root.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/share/qutim/ca-certs/CAcert_Root.pem -------------------------------------------------------------------------------- /src/share/qutim/ca-certs/Equifax_Secure_CA.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/share/qutim/ca-certs/Equifax_Secure_CA.pem -------------------------------------------------------------------------------- /src/share/qutim/webkitstyle/Alpha-Classic/Contents/Resources/Footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/share/qutim/webkitstyle/Alpha-Classic/Contents/Resources/Header.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/share/qutim/webkitstyle/Alpha-Classic/Contents/Resources/main.css: -------------------------------------------------------------------------------- 1 | 2 | @import url("base.css"); 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/share/qutim/webkitstyle/Maemo/Contents/Resources/Footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/share/qutim/webkitstyle/Maemo/Contents/Resources/Header.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/share/qutim/webkitstyle/Nuvo/Contents/Resources/Header.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/share/qutim/webkitstyle/QIPish/Contents/Resources/Header.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/share/qutim/webkitstyle/Tory/Contents/Resources/Footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/share/qutim/webkitstyle/Tory/Contents/Resources/Header.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/share/qutim/webkitstyle/default/Contents/Resources/Footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/share/qutim/webkitstyle/default/Contents/Resources/Header.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/share/qutim/webkitstyle/gajim-like/Contents/Resources/Variants/white.css: -------------------------------------------------------------------------------- 1 | /* */ 2 | -------------------------------------------------------------------------------- /src/share/qutim/webkitstyle/melwa/Contents/Resources/Variants/white.css: -------------------------------------------------------------------------------- 1 | /* */ 2 | -------------------------------------------------------------------------------- /src/share/share.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/src/share/share.qbs -------------------------------------------------------------------------------- /update-translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euroelessar/qutim/HEAD/update-translations.py --------------------------------------------------------------------------------