2009-09-25 21:10:25 -04:00
|
|
|
/****************************************************************
|
|
|
|
* RetroShare is distributed under the following license:
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 - 2009, RetroShare Team
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
#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 */
|
|
|
|
ProfileWidget(QWidget *parent = 0, Qt::WFlags 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
|
|
|
|
|