2016-02-25 20:19:27 +00:00
|
|
|
// Ryzom - MMORPG Framework <http://dev.ryzom.com/projects/ryzom/>
|
|
|
|
// Copyright (C) 2010 Winch Gate Property Limited
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as
|
|
|
|
// published by the Free Software Foundation, either version 3 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-05-25 21:23:48 +00:00
|
|
|
#ifndef MIGRATEWIZARDDIALOG_H
|
|
|
|
#define MIGRATEWIZARDDIALOG_H
|
2016-02-25 20:19:27 +00:00
|
|
|
|
2016-05-25 21:23:48 +00:00
|
|
|
#include "ui_migratewizard.h"
|
2016-02-25 20:19:27 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Wizard displayed at first launch, that asks user to choose source and destination directories.
|
|
|
|
*
|
|
|
|
* \author Cedric 'Kervala' OCHS
|
|
|
|
* \date 2016
|
|
|
|
*/
|
2016-05-25 21:23:48 +00:00
|
|
|
class CMigrateWizardDialog : public QDialog, public Ui::MigrateWizardDialog
|
2016-02-25 20:19:27 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2016-05-25 21:23:48 +00:00
|
|
|
CMigrateWizardDialog();
|
|
|
|
virtual ~CMigrateWizardDialog();
|
2016-02-25 20:19:27 +00:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void onShowAdvancedParameters(int state);
|
|
|
|
void onDestinationBrowseButtonClicked();
|
|
|
|
|
|
|
|
void accept();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void updateDestinationText();
|
|
|
|
|
|
|
|
QString m_currentDirectory;
|
|
|
|
QString m_dstDirectory;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|