~ubuntu-branches/ubuntu/maverick/kdeutils/maverick-proposed

« back to all changes in this revision

Viewing changes to kremotecontrol/kcmremotecontrol/addaction.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-05-28 09:49:30 UTC
  • mfrom: (1.2.44 upstream)
  • Revision ID: james.westby@ubuntu.com-20100528094930-jzynf0obv1n2v13a
Tags: 4:4.4.80-0ubuntu1~ppa1
New upstream beta release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    Copyright (C) <2010> Michael Zanetti <michael_zanetti@gmx.net>
 
3
 
 
4
    This program is free software; you can redistribute it and/or modify
 
5
    it under the terms of the GNU General Public License as published by
 
6
    the Free Software Foundation; either version 2 of the License, 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 General Public License along
 
15
    with this program; if not, write to the Free Software Foundation, Inc.,
 
16
    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
17
 
 
18
*/
 
19
 
 
20
#include "addaction.h"
 
21
#include "dbusaction.h"
 
22
#include "profileaction.h"
 
23
#include "editactioncontainer.h"
 
24
 
 
25
#include <kdebug.h>
 
26
 
 
27
 
 
28
AddAction::AddAction() {
 
29
    QWidget *widget = new QWidget(this);
 
30
    ui.setupUi(widget);
 
31
    setMainWidget(widget);
 
32
}
 
33
 
 
34
Action::ActionType AddAction::getType() {
 
35
/*    kDebug() << "current index" << ui.cbActionType->currentIndex() << "type" << ui.cbActionType->itemData(ui.cbActionType->currentIndex()).toInt();
 
36
    return (Action::ActionType)ui.cbActionType->itemData(ui.cbActionType->currentIndex()).toInt();*/
 
37
 
 
38
    if(ui.rbTemplate->isChecked()){
 
39
        return Action::ProfileAction;
 
40
    } else {
 
41
        return Action::DBusAction;
 
42
    }
 
43
}
 
44
 
 
45
Action *AddAction::createAction(const QString &remote) {
 
46
    Action *action = 0;
 
47
    if(exec() == KDialog::Accepted){
 
48
        switch(getType()){
 
49
            case Action::ProfileAction:
 
50
                action = new ProfileAction();
 
51
                break;
 
52
            case Action::DBusAction:
 
53
                action = new DBusAction();
 
54
                break;
 
55
        }
 
56
        if(action){
 
57
            EditActionContainer actionContainer(action, remote);
 
58
            if(actionContainer.exec() != KDialog::Accepted){
 
59
                delete action;
 
60
                action = 0;
 
61
            }
 
62
        }
 
63
    }
 
64
    return action;
 
65
}