RetroShare/retroshare-gui/src/gui/PluginManagerWidget.h

117 lines
3.1 KiB
C
Raw Normal View History

/****************************************************************
* 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 _PLUGIN_MANAGER_WIDGET_
#define _PLUGIN_MANAGER_WIDGET_
#include <QFrame>
#include <QString>
class QWidget;
class QLabel;
class QHBoxLayout;
class QVBoxLayout;
class QPushButton;
class QSpacerItem;
class QTextEdit;
//=============================================================================
class PluginFrame : public QFrame
{
Q_OBJECT
public:
PluginFrame( QString pluginName, QWidget* parent =0 );
virtual ~PluginFrame();
QString getPluginName();
signals:
void needToRemove(QString pluginName);
protected slots:
void removeButtonClicked();
protected:
QString plgName;
QPushButton* removeBtn;
QVBoxLayout* buttonsLay;
QHBoxLayout* mainLay; // main layout for the frame
QVBoxLayout* labelsLay;
QLabel* nameLabel;
QLabel* descrLabel;
};
//=============================================================================
//! GUI representation of the PluginManager class
//! This is something like GUI for PluginManager class. Or you can think
//! about PluginManagerWidget as a view, and a PluginManager as a model.
//! Instances should be created only by PluginManager class; maybe later i'll
//! hide constructor in some way. Parent (or somebody else) can delete it.
//! Widget itself can be used anywere, in some 'settings' dialogs.
class PluginManagerWidget: public QFrame
{
Q_OBJECT
public:
PluginManagerWidget(QWidget* parent =0);
virtual ~PluginManagerWidget();
void registerNewPlugin(QString pluginName);
void removePluginFrame(QString pluginName);
signals:
void removeRequested(QString pluginName);
void installPluginRequested(QString fileName) ;
public slots:
void acceptErrorMessage(QString errorMessage);
protected slots:
protected:
QVBoxLayout* mainLayout;
QFrame* pluginFramesContainer;
QVBoxLayout* pluginFramesLayout;
QPushButton* installPluginButton;
QHBoxLayout* installPluginLayout;
QSpacerItem* installPluginSpacer;
QTextEdit* errorsConsole;
protected slots:
void installPluginButtonClicked();
};
//=============================================================================
#endif