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

« back to all changes in this revision

Viewing changes to src/actionplugins/sendfile/helper/pages/selectdevicepage.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 "selectdevicepage.h"
 
24
#include "discoverwidget.h"
 
25
#include "../sendfilewizard.h"
 
26
 
 
27
#include <QtGui/QVBoxLayout>
 
28
#include <kfilewidget.h>
 
29
#include <kdiroperator.h>
 
30
 
 
31
#include <bluedevil/bluedevil.h>
 
32
 
 
33
using namespace BlueDevil;
 
34
SelectDevicePage::SelectDevicePage(QWidget* parent): QWizardPage(parent)
 
35
{
 
36
    DiscoverWidget *widget = new DiscoverWidget(this);
 
37
    QVBoxLayout *layout = new QVBoxLayout(this);
 
38
    layout->addWidget(widget);
 
39
 
 
40
    connect(widget, SIGNAL(deviceSelected(Device*)), this, SLOT(deviceSelected(Device*)));
 
41
}
 
42
 
 
43
 
 
44
void SelectDevicePage::deviceSelected(Device* device)
 
45
{
 
46
    static_cast<SendFileWizard* >(wizard())->setDevice(device);
 
47
    emit completeChanged();
 
48
}
 
49
 
 
50
bool SelectDevicePage::isComplete() const
 
51
{
 
52
    if (!static_cast<SendFileWizard* >(wizard())->device()) {
 
53
        return false;
 
54
    }
 
55
 
 
56
    return true;
 
57
}