Adding project to GIT
[froff-onlinedoc] / loginwindow.h
1 /*
2  * This file is part of Maemo 5 Office UI for KOffice
3  *
4  * Copyright (C) 2010 Manikandaprasad N C <maninc@gmail.com>.
5  *
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License as
9  * published by the Free Software Foundation; either version 2 of
10  * the License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20  * 02110-1301 USA
21  *
22  */
23
24 #ifndef LOGINWINDOW_H
25 #define LOGINWINDOW_H
26
27 #include <QDialog>
28
29 #include "ui_authenticationdialog.h"
30
31 class SlideShare;
32 class GoogleDocumentService;
33 class encryptSupport;
34 class QSettings;
35 class LoginWindow : public QDialog
36 {
37     Q_OBJECT
38
39 public:
40     LoginWindow(QWidget *parent = 0);
41     ~LoginWindow();
42     void setShowProgressIndicator(bool visible);
43     void setOpenDoc(const QString &);
44
45 private slots:
46     void loginService();
47     void serviceSelected(int index);
48     void authenticated(bool success);
49     void slideShareLoginDoneSlot(bool loginStatus);
50
51 private:
52     Ui_Dialog *m_authDialog;
53     encryptSupport *cipher;
54     GoogleDocumentService *gdoc;
55     SlideShare *service;
56     QSettings *settings;
57     QString openDocPath;
58     void enableWidgets();
59     void disableWidgets();
60     void saveDetails(QString &key);
61     void fillDetails();
62 };
63
64 #endif // LOGINWINDOW_H