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-02-27 17:43:14 +00:00
|
|
|
#ifndef PROFILESDIALOG_H
|
|
|
|
#define PROFILESDIALOG_H
|
2016-02-25 20:19:27 +00:00
|
|
|
|
2016-06-12 13:40:38 +00:00
|
|
|
#include "ui_profilesdialog.h"
|
2016-02-25 20:19:27 +00:00
|
|
|
|
2016-03-05 11:38:28 +00:00
|
|
|
class CProfilesModel;
|
2016-03-12 20:58:05 +00:00
|
|
|
class CServersModel;
|
2016-03-05 11:38:28 +00:00
|
|
|
|
2016-03-12 20:56:23 +00:00
|
|
|
/**
|
|
|
|
* Dialog displayed when editing existing profiles.
|
|
|
|
*
|
|
|
|
* \author Cedric 'Kervala' OCHS
|
|
|
|
* \date 2016
|
|
|
|
*/
|
2016-03-01 12:48:51 +00:00
|
|
|
class CProfilesDialog : public QDialog, public Ui::ProfilesDialog
|
2016-02-25 20:19:27 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2016-05-29 18:30:53 +00:00
|
|
|
CProfilesDialog(QWidget *parent = NULL);
|
2016-02-27 17:43:14 +00:00
|
|
|
virtual ~CProfilesDialog();
|
2016-02-25 20:19:27 +00:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void accept();
|
2016-03-01 13:00:06 +00:00
|
|
|
|
|
|
|
void onAddProfile();
|
|
|
|
void onDeleteProfile();
|
2016-03-05 11:38:28 +00:00
|
|
|
void onProfileClicked(const QModelIndex &index);
|
2016-06-11 15:00:09 +00:00
|
|
|
void onProfileDirectoryClicked();
|
2016-03-05 11:38:28 +00:00
|
|
|
|
|
|
|
void displayProfile(int index);
|
|
|
|
void saveProfile(int index);
|
|
|
|
void deleteProfile(int index);
|
|
|
|
void addProfile();
|
|
|
|
|
2016-03-12 20:58:53 +00:00
|
|
|
void updateExecutableVersion(int index);
|
|
|
|
|
2016-06-18 17:49:26 +00:00
|
|
|
void onExecutableDefaultClicked();
|
2016-03-05 11:38:28 +00:00
|
|
|
void onExecutableBrowseClicked();
|
|
|
|
|
|
|
|
private:
|
|
|
|
CProfilesModel *m_model;
|
2016-03-12 20:58:05 +00:00
|
|
|
CServersModel *m_serversModel;
|
2016-03-05 11:38:28 +00:00
|
|
|
|
|
|
|
int m_currentProfileIndex;
|
2016-02-25 20:19:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|