~ubuntu-branches/ubuntu/oneiric/kdeplasma-addons/oneiric

« back to all changes in this revision

Viewing changes to dataengines/pastebin/pastebinengine.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-11-26 13:35:18 UTC
  • mfrom: (1.1.37 upstream)
  • Revision ID: james.westby@ubuntu.com-20101126133518-oxz33xjsoi02ty9f
Tags: 4:4.5.80-0ubuntu1
* New upstream beta release
* Disable kubuntu_02_microblog_default_configuration.diff does not apply
* New package plasma-containments-addons

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 *   Copyright 2009 Artur Duque de Souza <asouza@kde.org>
3
 
 *
4
 
 *   This program is free software; you can redistribute it and/or modify
5
 
 *   it under the terms of the GNU Library General Public License as
6
 
 *   published by the Free Software Foundation; either version 2 or
7
 
 *   (at your option) any later version.
8
 
 *
9
 
 *   This program is distributed in the hope that it will be useful,
10
 
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
 *   GNU General Public License for more details
13
 
 *
14
 
 *   You should have received a copy of the GNU Library General Public
15
 
 *   License along with this program; if not, write to the
16
 
 *   Free Software Foundation, Inc.,
17
 
 *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18
 
 */
19
 
 
20
 
#include "pastebinengine.h"
21
 
#include "pastebinservice.h"
22
 
 
23
 
PastebinEngine::PastebinEngine(QObject* parent, const QVariantList& args)
24
 
    : Plasma::DataEngine(parent, args)
25
 
{
26
 
    Q_UNUSED(args);
27
 
}
28
 
 
29
 
void PastebinEngine::init()
30
 
{
31
 
    Plasma::DataEngine::Data data;
32
 
    data.insert("pastebin.ca", PastebinService::PASTEBINCA);
33
 
    data.insert("pastebin.com", PastebinService::PASTEBINCOM);
34
 
    setData("textservers", data);
35
 
 
36
 
    data.clear();
37
 
    data.insert("imgur", PastebinService::IMGUR);
38
 
    data.insert("imagebin.ca", PastebinService::IMAGEBINCA);
39
 
    data.insert("imagashack", PastebinService::IMAGESHACK);
40
 
    data.insert("simplesttimagehosting", PastebinService::SIMPLESTIMAGEHOSTING);
41
 
    setData("imageservers", data);
42
 
}
43
 
 
44
 
Plasma::Service *PastebinEngine::serviceForSource(const QString &source)
45
 
{
46
 
    Q_UNUSED(source);
47
 
    PastebinService *service = new PastebinService(this);
48
 
    service->setParent(this);
49
 
    return service;
50
 
}
51
 
 
52
 
K_EXPORT_PLASMA_DATAENGINE(pastebin, PastebinEngine)