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.
34 lines
530 B
34 lines
530 B
#ifndef SVN_COPYWIDGET_H
|
|
#define SVN_COPYWIDGET_H
|
|
|
|
#include "svn_copydlgwidget.h"
|
|
|
|
namespace SvnGlobal
|
|
{
|
|
class SvnInfoHolder;
|
|
}
|
|
class KURL;
|
|
|
|
class SvnCopyDialog : public SvnCopyDialogBase
|
|
{
|
|
TQ_OBJECT
|
|
|
|
public:
|
|
SvnCopyDialog( const TQString &reqPath, SvnGlobal::SvnInfoHolder *holder, TQWidget *parent );
|
|
~SvnCopyDialog();
|
|
|
|
KURL sourceUrl();
|
|
int revision();
|
|
TQString revKind();
|
|
KURL destUrl();
|
|
|
|
public slots:
|
|
void setSourceAsUrl();
|
|
void setSourceAsLocalPath();
|
|
|
|
private:
|
|
SvnGlobal::SvnInfoHolder *m_holder;
|
|
};
|
|
|
|
#endif
|