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

« back to all changes in this revision

Viewing changes to src/service/ui/Ui.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 UI_UI_H
 
21
#define UI_UI_H
 
22
 
 
23
#include <QObject>
 
24
#include <utils/d_ptr.h>
 
25
 
 
26
/**
 
27
 * Ui
 
28
 */
 
29
class Ui: public QObject {
 
30
    Q_OBJECT
 
31
 
 
32
public:
 
33
    virtual ~Ui();
 
34
 
 
35
    /**
 
36
     * Asynchronous way to ask for a password
 
37
     * @arg title title for the window
 
38
     * @arg message password prompt message
 
39
     * @arg newPassword should the password be asked twice
 
40
     * @arg receiver object to receive the signal when the password is returned
 
41
     * @arg slot method to call
 
42
     */
 
43
    static void askPassword(const QString & title, const QString & message,
 
44
            bool newPassword, bool unlockMode,
 
45
            QObject * receiver, const char * slot);
 
46
 
 
47
    static void ask(const QString & title, const QString & message,
 
48
            const QStringList & choices,
 
49
            QObject * receiver, const char * slot);
 
50
 
 
51
    static void message(const QString & title, const QString & message);
 
52
 
 
53
    static void setBusy(bool value = true);
 
54
 
 
55
    static Ui * self();
 
56
 
 
57
public Q_SLOTS:
 
58
    void unsetBusy();
 
59
 
 
60
 
 
61
private Q_SLOTS:
 
62
 
 
63
    void _askPassword(const QString & title, const QString & message,
 
64
            bool newPassword, bool unlockMode,
 
65
            QObject * receiver, const char * slot);
 
66
 
 
67
    void _ask(const QString & title, const QString & message,
 
68
            const QStringList & choices,
 
69
            QObject * receiver, const char * slot);
 
70
 
 
71
    void _message(const QString & title, const QString & message);
 
72
 
 
73
    void _setBusy(bool value);
 
74
 
 
75
private:
 
76
    Ui(QObject * parent);
 
77
 
 
78
    D_PTR;
 
79
};
 
80
 
 
81
#endif // UI_UI_H
 
82