You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
574 B
33 lines
574 B
#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
|