khanat-code-old/code/ryzom/tools/client/ryzom_installer/src/profilesdialog.h

59 lines
1.5 KiB
C
Raw Normal View History

// 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/>.
#ifndef PROFILESDIALOG_H
#define PROFILESDIALOG_H
#include "ui_profiles.h"
2016-03-05 11:38:28 +00:00
class CProfilesModel;
2016-03-12 20:56:23 +00:00
/**
* Dialog displayed when editing existing profiles.
*
* \author Cedric 'Kervala' OCHS
* \date 2016
*/
class CProfilesDialog : public QDialog, public Ui::ProfilesDialog
{
Q_OBJECT
public:
CProfilesDialog();
virtual ~CProfilesDialog();
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);
void displayProfile(int index);
void saveProfile(int index);
void deleteProfile(int index);
void addProfile();
void onExecutableBrowseClicked();
private:
CProfilesModel *m_model;
int m_currentProfileIndex;
};
#endif