~ubuntu-branches/ubuntu/trusty/kwalletmanager/trusty-proposed

« back to all changes in this revision

Viewing changes to src/manager/applicationsmanager.h

  • Committer: Package Import Robot
  • Author(s): Rohan Garg
  • Date: 2014-03-04 21:07:36 UTC
  • Revision ID: package-import@ubuntu.com-20140304210736-b174n11viq7zvdig
Tags: upstream-4.12.3
ImportĀ upstreamĀ versionĀ 4.12.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
   Copyright (C) 2013 Valentin Rusu <kde@rusu.info>
 
3
 
 
4
   This program is free software; you can redistribute it and/or
 
5
   modify it under the terms of the GNU General Public
 
6
   License as published by the Free Software Foundation; either
 
7
   version 2 of the License, or (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 GNU
 
12
   General Public License for more details.
 
13
 
 
14
   You should have received a copy of the GNU General Public License
 
15
   along with this program; see the file COPYING.  If not, write to
 
16
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
17
   Boston, MA 02110-1301, USA.
 
18
*/
 
19
 
 
20
#ifndef APPLICATIONSMANAGER_H
 
21
#define APPLICATIONSMANAGER_H
 
22
 
 
23
#include "ui_applicationsmanager.h"
 
24
#include <QWidget>
 
25
 
 
26
class AuthorizedAppModel;
 
27
class ConnectedAppModel;
 
28
namespace KWallet {
 
29
class Wallet;
 
30
}
 
31
 
 
32
 
 
33
class ApplicationsManager : public QWidget, public Ui::ApplicationsManager
 
34
{
 
35
    Q_OBJECT
 
36
public:
 
37
    ApplicationsManager(QWidget *parent);
 
38
    virtual ~ApplicationsManager();
 
39
 
 
40
    void setWallet(KWallet::Wallet *wallet);
 
41
 
 
42
private:
 
43
    KWallet::Wallet     *_wallet;
 
44
    ConnectedAppModel   *_connectedAppsModel;
 
45
    AuthorizedAppModel  *_authorizedAppModel;
 
46
};
 
47
 
 
48
#endif // APPLICATIONSMANAGER_H