blob: 0d207657bfc6faccad2d3384c8a31e36ee82e2e2 (
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
{
	TQ_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
 |