~ubuntu-branches/ubuntu/maverick/bluedevil/maverick-proposed

« back to all changes in this revision

Viewing changes to src/actionplugins/sendfile/sendfile.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2010-08-07 09:04:19 UTC
  • Revision ID: james.westby@ubuntu.com-20100807090419-68k54ucso2htcf5z
Tags: upstream-1.0~rc2
ImportĀ upstreamĀ versionĀ 1.0~rc2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*************************************************************************************
 
2
 *  Copyright (C) 2010 by Alex Fiestas <alex@eyeos.org>                              *
 
3
 *  Copyright (C) 2010 UFO Coders <info@ufocoders.com>                               *
 
4
 *                                                                                   *
 
5
 *  This program is free software; you can redistribute it and/or                    *
 
6
 *  modify it under the terms of the GNU General Public License                      *
 
7
 *  as published by the Free Software Foundation; either version 2                   *
 
8
 *  of the License, or (at your option) any later version.                           *
 
9
 *                                                                                   *
 
10
 *  This program is distributed in the hope that it will be useful,                  *
 
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of                   *
 
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                    *
 
13
 *  GNU General Public License for more details.                                     *
 
14
 *                                                                                   *
 
15
 *  You should have received a copy of the GNU General Public License                *
 
16
 *  along with this program; if not, write to the Free Software                      *
 
17
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA   *
 
18
 *************************************************************************************/
 
19
 
 
20
#include "sendfile.h"
 
21
 
 
22
#include <QDBusConnection>
 
23
#include <QTimer>
 
24
 
 
25
#include <KLocalizedString>
 
26
#include <KPluginFactory>
 
27
#include <KNotification>
 
28
#include <KIcon>
 
29
 
 
30
#include <bluedevil/bluedevildevice.h>
 
31
#include <kprocess.h>
 
32
 
 
33
BLUEDEVILACTION_PLUGIN_EXPORT(SendFilePlugin)
 
34
 
 
35
SendFilePlugin::SendFilePlugin(QObject* parent, const QVariantList& args)
 
36
    : ActionPlugin(parent)
 
37
{
 
38
    Q_UNUSED(args);
 
39
}
 
40
 
 
41
void SendFilePlugin::startAction()
 
42
{
 
43
    KProcess process;
 
44
    process.startDetached("bluedevil-sendfile");
 
45
}