~ubuntu-branches/ubuntu/saucy/kactivities/saucy-proposed

« back to all changes in this revision

Viewing changes to src/service/jobs/ui/Ask.cpp

  • Committer: Package Import Robot
  • Author(s): Scott Kitterman, Jonathan Riddell, Scott Kitterman
  • Date: 2012-11-20 13:47:27 UTC
  • mfrom: (1.1.13)
  • Revision ID: package-import@ubuntu.com-20121120134727-vqzk04slqjoay3de
Tags: 4:4.9.80-0ubuntu1
[ Jonathan Riddell ]
* New upstream beta release

[ Scott Kitterman ]
* Add new libkactivities-models1 library package (debian/control, .install,
  and .symbols)
* Add nepomuk-core-dev to build-depends
* Wildcard libkactivities6.install so that soversion changes don't cause
  build failures
* Update libkactivities6.symbols
* Update libkactivities-dev.install for new files for libkactivies-models
* Add new files to libkactivities-bin.install, including Activities kcm

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *   Copyright (C) 2012 Ivan Cukic <ivan.cukic(at)kde.org>
 
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 version 2,
 
6
 *   or (at your option) any later version, as published by the Free
 
7
 *   Software Foundation
 
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
 
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 "Ask.h"
 
21
#include "../../ui/Ui.h"
 
22
 
 
23
#include <KDebug>
 
24
 
 
25
namespace Jobs {
 
26
namespace Ui {
 
27
 
 
28
Ask::JOB_FACTORY(const QString & title, const QString & message, const QStringList & choices)
 
29
{
 
30
    JOB_FACTORY_PROPERTY(title);
 
31
    JOB_FACTORY_PROPERTY(message);
 
32
    JOB_FACTORY_PROPERTY(choices);
 
33
}
 
34
 
 
35
QString Ask::message() const
 
36
{
 
37
    return m_message;
 
38
}
 
39
 
 
40
void Ask::setMessage(const QString & message)
 
41
{
 
42
    m_message = message;
 
43
}
 
44
 
 
45
QString Ask::title() const
 
46
{
 
47
    return m_title;
 
48
}
 
49
 
 
50
void Ask::setTitle(const QString & title)
 
51
{
 
52
    m_title = title;
 
53
}
 
54
 
 
55
QStringList Ask::choices() const
 
56
{
 
57
    return m_choices;
 
58
}
 
59
 
 
60
void Ask::setChoices(const QStringList & choices)
 
61
{
 
62
    m_choices = choices;
 
63
}
 
64
 
 
65
void Ask::start()
 
66
{
 
67
    kDebug() << ">>> Ask" << m_message << m_choices;
 
68
 
 
69
    // Needed due to namespace collision with Jobs::Ui
 
70
    ::Ui::ask(m_title, m_message, m_choices,
 
71
            this, "choiceChosen");
 
72
}
 
73
 
 
74
void Ask::choiceChosen(int choice)
 
75
{
 
76
    setError(choice);
 
77
    emitResult();
 
78
}
 
79
 
 
80
} // namespace Ui
 
81
} // namespace Jobs
 
82