summaryrefslogtreecommitdiffstats
path: root/bibletime/frontend/cswordsetupinstallsourcesdialog.h
blob: a7d039a4a8cb38824adeb1176ed556257b9c6e5f (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
#ifndef CSWORDSETUPINSTALLSOURCESDIALOG_H
#define CSWORDSETUPINSTALLSOURCESDIALOG_H

#include "btinstallmgr.h"
#include <qdialog.h>

class QLabel;
class QComboBox;
class QLineEdit;

namespace BookshelfManager {

class CSwordSetupInstallSourcesDialog : public QDialog  {
		Q_OBJECT

public:
		static sword::InstallSource getSource();

protected:
		CSwordSetupInstallSourcesDialog();

protected slots:
		void slotOk();
		void slotProtocolChanged();

private:
		QLabel    *m_serverLabel;
		QLineEdit *m_captionEdit, *m_serverEdit, *m_pathEdit;
		QComboBox *m_protocolCombo;
	};

} //namespace

#endif //CSWORDSETUPINSTALLSOURCESDIALOG_H