~ubuntu-branches/ubuntu/oneiric/pykde4/oneiric-proposed

« back to all changes in this revision

Viewing changes to sip/plasma/context.sip

  • Committer: Bazaar Package Importer
  • Author(s): Romain Perier
  • Date: 2011-07-11 12:42:17 UTC
  • Revision ID: james.westby@ubuntu.com-20110711124217-stfa5thgiyis668w
Tags: upstream-4.6.90
ImportĀ upstreamĀ versionĀ 4.6.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright 2008 Simon Edwards <simon@simonzone.com>
 
2
 
 
3
//                 Generated by twine
 
4
 
 
5
// This program is free software; you can redistribute it and/or modify
 
6
// it under the terms of the GNU Library General Public License as
 
7
// published by the Free Software Foundation; either version 2, or
 
8
// (at your option) any later version.
 
9
 
 
10
// This program is distributed in the hope that it will be useful,
 
11
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
// GNU General Public License for more details
 
14
 
 
15
// You should have received a copy of the GNU Library General Public
 
16
// License along with this program; if not, write to the
 
17
// Free Software Foundation, Inc.,
 
18
// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
19
 
 
20
namespace Plasma
 
21
{
 
22
 
 
23
class Context : QObject
 
24
{
 
25
%TypeHeaderCode
 
26
#include <plasma/context.h>
 
27
%End
 
28
 
 
29
public:
 
30
    explicit                Context (QObject* parent /TransferThis/ = 0);
 
31
    void                    createActivity (const QString& name);
 
32
    QStringList             listActivities () const;
 
33
    void                    setCurrentActivity (const QString& name);
 
34
    QString                 currentActivity () const;
 
35
 
 
36
signals:
 
37
    void                    changed (Plasma::Context* context);
 
38
    void                    activityChanged (Plasma::Context* context);
 
39
    void                    locationChanged (Plasma::Context* context);
 
40
public:
 
41
    ~Context ();
 
42
    void                    setCurrentActivityId (const QString& id);
 
43
    QString                 currentActivityId () const;
 
44
};
 
45
// Context
 
46
 
 
47
};
 
48
// Plasma
 
49
 
 
50