summaryrefslogtreecommitdiffstats
path: root/vcs/subversion/svn_switchwidget.h
blob: a38ca0ff19b1918a1325becd25ad16053fadd6d1 (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
#ifndef SVN_SWITCHWIDGET_H
#define SVN_SWITCHWIDGET_H

#include "svn_switchdlgbase.h"

namespace SvnGlobal
{
	class SvnInfoHolder;
}

class SvnSwitchDlg : public SvnSwitchDlgBase
{
	Q_OBJECT
public:
	SvnSwitchDlg( const SvnGlobal::SvnInfoHolder *holder,
				  const TQString &wcPath, TQWidget *parent = NULL );
	virtual ~SvnSwitchDlg();

	const TQString currentUrl();
	const TQString destUrl();
	bool recursive();
	bool switchOnly();
	bool relocation();
private slots:
	void resetCurrentRepositoryUrlEdit();
	
private:
	const SvnGlobal::SvnInfoHolder *m_info;
};

#endif