summaryrefslogtreecommitdiffstats
path: root/vcs/subversion/svn_switchwidget.h
blob: 4aec67dbb8da3ac663ee7160a2f66ffdae693239 (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
#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