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

« back to all changes in this revision

Viewing changes to src/service/jobs/activity/Start.h

  • 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
#ifndef JOBS_ACTIVITY_START_H
 
21
#define JOBS_ACTIVITY_START_H
 
22
 
 
23
#include "../Job.h"
 
24
#include "../JobFactory.h"
 
25
 
 
26
namespace Jobs {
 
27
namespace Activity {
 
28
 
 
29
/**
 
30
 * Change
 
31
 */
 
32
class Change: public Job {
 
33
    Q_OBJECT
 
34
    Q_PROPERTY(QObject * receiver WRITE setReceiver)
 
35
    Q_PROPERTY(QString slot     WRITE setSlot)
 
36
    Q_PROPERTY(QString activity READ activity WRITE setActivity)
 
37
 
 
38
public:
 
39
    enum Type {
 
40
        Information,
 
41
        Warning,
 
42
        Error
 
43
    };
 
44
 
 
45
    DECLARE_JOB_FACTORY(Change, (QObject * receiver, const QString & slot, const QString & activity));
 
46
 
 
47
    QString activity() const;
 
48
    void setActivity(const QString & activity);
 
49
 
 
50
    void setReceiver(QObject * receiver);
 
51
    void setSlot(const QString & slot);
 
52
 
 
53
    virtual void start() _override;
 
54
 
 
55
private:
 
56
    QObject * m_receiver;
 
57
    QString m_slot;
 
58
    QString m_activity;
 
59
 
 
60
};
 
61
 
 
62
inline Change::Factory * change(QObject * receiver, const QString & slot, const QString & activity)
 
63
{
 
64
    return new Change::Factory(receiver, slot, activity);
 
65
}
 
66
 
 
67
} // namespace Activity
 
68
} // namespace Jobs
 
69
 
 
70
#endif // JOBS_ACTIVITY_START_H
 
71