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

« back to all changes in this revision

Viewing changes to src/actionplugins/sendfile/helper/pages/connectingpage.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
 *   This file is part of the KDE project                                  *
 
3
 *                                                                         *
 
4
 *   Copyright (C) 2010 Alejandro Fiestas Olivares <alex@ufocoders.com>    *
 
5
 *   Copyright (C) 2010 UFO Coders <info@ufocoders.com>                    *
 
6
 *                                                                         *
 
7
 *   This program is free software; you can redistribute it and/or modify  *
 
8
 *   it under the terms of the GNU General Public License as published by  *
 
9
 *   the Free Software Foundation; either version 2 of the License, or     *
 
10
 *   (at your option) any later version.                                   *
 
11
 *                                                                         *
 
12
 *   This program is distributed in the hope that it will be useful,       *
 
13
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
14
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
15
 *   GNU General Public License for more details.                          *
 
16
 *                                                                         *
 
17
 *   You should have received a copy of the GNU General Public License     *
 
18
 *   along with this program; if not, write to the                         *
 
19
 *   Free Software Foundation, Inc.,                                       *
 
20
 *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA            *
 
21
 ***************************************************************************/
 
22
 
 
23
#include "connectingpage.h"
 
24
#include "../sendfilewizard.h"
 
25
 
 
26
#include <QtCore/QVariant>
 
27
 
 
28
#include "klocalizedstring.h"
 
29
#include "kfilewidget.h"
 
30
 
 
31
#include <bluedevil/bluedevil.h>
 
32
#include <kdiroperator.h>
 
33
#include <kcompositejob.h>
 
34
 
 
35
using namespace BlueDevil;
 
36
 
 
37
ConnectingPage::ConnectingPage(QWidget* parent): QWizardPage(parent)
 
38
{
 
39
    setupUi(this);
 
40
}
 
41
 
 
42
void ConnectingPage::initializePage()
 
43
{
 
44
    Device *device = static_cast<SendFileWizard* >(wizard())->device();
 
45
    connLabel->setText(i18nc("Conencting to a bluetooth device", "Connecting to %1 ...").arg(device->name()));
 
46
 
 
47
    static_cast<SendFileWizard*>(wizard())->startTransfer();
 
48
}
 
49
 
 
50
bool ConnectingPage::isComplete() const
 
51
{
 
52
    return false;
 
53
}