blob: 1d06f303a7ee408744ce0969659b769723e856b8 (
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
TQ_OBJECT
public:
SvnSwitchDlg( const SvnGlobal::SvnInfoHolder *holder,
const TQString &wcPath, TQWidget *tqparent = 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
|