2018-11-17 08:10:08 -05:00
|
|
|
/*******************************************************************************
|
|
|
|
* retroshare-gui/src/gui/profile/ProfileManager.h *
|
|
|
|
* *
|
|
|
|
* Copyright (C) 2009 by Retroshare Team <retroshare.project@gmail.com> *
|
|
|
|
* *
|
|
|
|
* 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 <https://www.gnu.org/licenses/>. *
|
|
|
|
* *
|
|
|
|
*******************************************************************************/
|
2009-09-25 21:10:25 -04:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef _PROFILEWIDGET_H
|
|
|
|
#define _PROFILEWIDGET_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
#include "ui_ProfileWidget.h"
|
|
|
|
|
|
|
|
class ProfileWidget : public QWidget
|
|
|
|
{
|
2012-09-12 07:17:00 -04:00
|
|
|
Q_OBJECT
|
2009-09-25 21:10:25 -04:00
|
|
|
|
2012-09-12 07:17:00 -04:00
|
|
|
public:
|
2010-06-24 11:38:38 -04:00
|
|
|
/** Default constructor */
|
2013-10-18 17:10:33 -04:00
|
|
|
ProfileWidget(QWidget *parent = 0, Qt::WindowFlags flags = 0);
|
2009-09-25 21:10:25 -04:00
|
|
|
|
|
|
|
private slots:
|
2010-06-24 11:38:38 -04:00
|
|
|
void showEvent ( QShowEvent * event );
|
|
|
|
void statusmessagedlg();
|
2012-03-16 19:14:57 -04:00
|
|
|
void copyCert();
|
2012-08-13 11:37:21 -04:00
|
|
|
void profilemanager();
|
|
|
|
|
2009-09-25 21:10:25 -04:00
|
|
|
private:
|
2010-06-24 11:38:38 -04:00
|
|
|
/** Qt Designer generated object */
|
|
|
|
Ui::ProfileWidget ui;
|
2009-09-25 21:10:25 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|