summaryrefslogtreecommitdiffstats
path: root/bibletime/frontend/cswordsetupinstallsourcesdialog.h
blob: c01ac737a87ec24667c17a7de309d4c24c893cdf (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 <tqdialog.h>

class TQLabel;
class TQComboBox;
class TQLineEdit;

namespace BookshelfManager {

class CSwordSetupInstallSourcesDialog : public TQDialog  {
		Q_OBJECT

public:
		static sword::InstallSource getSource();

protected:
		CSwordSetupInstallSourcesDialog();

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

private:
		TQLabel    *m_serverLabel;
		TQLineEdit *m_captionEdit, *m_serverEdit, *m_pathEdit;
		TQComboBox *m_protocolCombo;
	};

} //namespace

#endif //CSWORDSETUPINSTALLSOURCESDIALOG_H