mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-21 15:30:31 -04:00
plugin system: first demo version
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@970 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
02f08644ac
commit
79e45e7d37
21 changed files with 2066 additions and 0 deletions
39
retroshare-gui/src/gui/PluginsPage.h
Normal file
39
retroshare-gui/src/gui/PluginsPage.h
Normal file
|
@ -0,0 +1,39 @@
|
|||
#ifndef _PLUGINS_PAGE_H_
|
||||
#define _PLUGINS_PAGE_H_
|
||||
|
||||
//#include <QFileDialog>
|
||||
|
||||
//#include "chat/PopupChatDialog.h"
|
||||
|
||||
#include "mainpage.h"
|
||||
//#include "ui_PeersDialog.h"
|
||||
|
||||
class QGroupBox;
|
||||
class QVBoxLayout;
|
||||
class QTabWidget;
|
||||
class QFrame;
|
||||
class QLabel;
|
||||
class QScriptEngine;
|
||||
|
||||
class PluginsPage : public MainPage
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
/** Default Constructor */
|
||||
PluginsPage(QWidget *parent = 0);
|
||||
/** Default Destructor */
|
||||
~PluginsPage() ;
|
||||
|
||||
protected:
|
||||
QVBoxLayout* pluginPageLayout;
|
||||
QGroupBox* pluginPanel;
|
||||
QVBoxLayout* pluginPanelLayout;
|
||||
|
||||
QTabWidget* pluginTabs ;
|
||||
|
||||
QScriptEngine* engine;
|
||||
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue