summaryrefslogtreecommitdiff
path: root/src/frontend/bookshelfmanager/cswordsetupinstallsourcesdialog.h
blob: 64c7f21e4759d7a672d70b91f9348bf3797074e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*********
*
* This file is part of BibleTime's source code, http://www.bibletime.info/.
*
* Copyright 1999-2008 by the BibleTime developers.
* The BibleTime source code is licensed under the GNU General Public License version 2.0.
*
**********/

#ifndef CSWORDSETUPINSTALLSOURCESDIALOG_H
#define CSWORDSETUPINSTALLSOURCESDIALOG_H

#include <QDialog>

#include "frontend/bookshelfmanager/btinstallmgr.h"

// Sword includes:
#include <installmgr.h>


class QComboBox;
class QLabel;
class QLineEdit;
class QProgressDialog;

class CSwordSetupInstallSourcesDialog : public QDialog  {
        Q_OBJECT

    public:
        sword::InstallSource getSource();
        bool wasRemoteListAdded() {return m_remoteListAdded;}
        CSwordSetupInstallSourcesDialog();

    protected slots:
        void slotOk();
        void slotProtocolChanged();
        void slotGetListClicked();
        void slotRefreshCanceled();
        void slotRefreshProgress(const int, const int current);

    private:
        QLabel    *m_serverLabel;
        QLineEdit *m_captionEdit, *m_serverEdit, *m_pathEdit;
        QComboBox *m_protocolCombo;
        QProgressDialog* m_progressDialog;
        BtInstallMgr* m_currentInstallMgr;
        bool m_remoteListAdded;
};


#endif //CSWORDSETUPINSTALLSOURCESDIALOG_H