1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
|
/*
* storagenotesplugin.cpp - plugin
* Copyright (C) 2010 Evgeny Khryukin
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include "storagenotesplugin.h"
#include "notescontroller.h"
#include <QLabel>
#include <QVBoxLayout>
#include <QDomElement>
#include <QIcon>
StorageNotesPlugin::StorageNotesPlugin()
: stanzaSender(0)
, iconHost(0)
, accInfo(0)
, popup(0)
, enabled(false)
, controller_(0)
{
}
QString StorageNotesPlugin::name() const
{
return "Storage Notes Plugin";
}
QString StorageNotesPlugin::shortName() const
{
return "storagenotes";
}
QString StorageNotesPlugin::version() const
{
return constVersion;
}
bool StorageNotesPlugin::enable()
{
enabled = true;
QFile file(":/storagenotes/storagenotes.png");
file.open(QIODevice::ReadOnly);
QByteArray image = file.readAll();
iconHost->addIcon("storagenotes/storagenotes",image);
file.close();
controller_ = new NotesController(this);
return enabled;
}
bool StorageNotesPlugin::disable()
{
delete controller_;
controller_ = 0;
enabled = false;
return true;
}
QWidget* StorageNotesPlugin::options()
{
if (!enabled) {
return 0;
}
QWidget *optionsWid = new QWidget();
QVBoxLayout *vbox= new QVBoxLayout(optionsWid);
QLabel *wikiLink = new QLabel(tr("<a href=\"http://psi-plus.com/wiki/plugins#storage_notes_plugin\">Wiki (Online)</a>"),optionsWid);
wikiLink->setOpenExternalLinks(true);
vbox->addWidget(wikiLink);
vbox->addStretch();
return optionsWid;
}
bool StorageNotesPlugin::incomingStanza(int account, const QDomElement& xml)
{
if(!enabled)
return false;
if(xml.tagName() == "iq" && xml.attribute("id") == NOTES_ID) {
if(xml.attribute("type") == "error") {
controller_->error(account);
}
else if(xml.attribute("type") == "result") {
QList<QDomElement> notes;
QDomNodeList noteList = xml.elementsByTagName("note");
for(int i = 0; i < noteList.size(); i++)
notes.append(noteList.at(i).toElement());
if(!notes.isEmpty()) {
controller_->incomingNotes(account, notes);
}
else {
controller_->saved(account);
}
}
return true;
}
return false;
}
bool StorageNotesPlugin::outgoingStanza(int/* account*/, QDomElement& /*xml*/)
{
return false;
}
void StorageNotesPlugin::setAccountInfoAccessingHost(AccountInfoAccessingHost* host)
{
accInfo = host;
}
void StorageNotesPlugin::setIconFactoryAccessingHost(IconFactoryAccessingHost* host)
{
iconHost = host;
}
void StorageNotesPlugin::setStanzaSendingHost(StanzaSendingHost *host)
{
stanzaSender = host;
}
void StorageNotesPlugin::setPopupAccessingHost(PopupAccessingHost* host)
{
popup = host;
}
void StorageNotesPlugin::start()
{
if(!enabled)
return;
int acc = sender()->property("account").toInt();
controller_->start(acc);
}
QList < QVariantHash > StorageNotesPlugin::getAccountMenuParam()
{
QVariantHash hash;
hash["icon"] = QVariant(QString("storagenotes/storagenotes"));
hash["name"] = QVariant(tr("Storage Notes"));
hash["reciver"] = qVariantFromValue(qobject_cast<QObject *>(this));
hash["slot"] = QVariant(SLOT(start()));
QList< QVariantHash > l;
l.push_back(hash);
return l;
}
QList < QVariantHash > StorageNotesPlugin::getContactMenuParam()
{
return QList < QVariantHash >();
}
QString StorageNotesPlugin::pluginInfo() {
return tr("Author: ") + "Dealer_WeARE\n"
+ tr("Email: ") + "wadealer@gmail.com\n\n"
+ trUtf8("This plugin is an implementation of XEP-0049: Private XML Storage.\n"
"The plugin is fully compatible with notes saved using Miranda IM.\n"
"The plugin is designed to keep notes on the jabber server with the ability to access them from anywhere using Psi+ or Miranda IM.");
}
QPixmap StorageNotesPlugin::icon() const
{
return QPixmap(":/storagenotes/storagenotes.png");
}
#ifndef HAVE_QT5
Q_EXPORT_PLUGIN(StorageNotesPlugin)
#endif
|