* Rework Plugin Manager so that plugins can be loaded after initialization * Use a callback function to add plugin tabs to the dialog * Install button lets you choose plugin file, copies it to plugins directory, and immediately loads it * Remove button deletes selected plugin file from plugins directory - need to add a means to unload it first
16 lines
301 B
C++
16 lines
301 B
C++
#include "OpenRGBPluginsEntry.h"
|
|
#include "ui_OpenRGBPluginsEntry.h"
|
|
|
|
using namespace Ui;
|
|
|
|
OpenRGBPluginsEntry::OpenRGBPluginsEntry(QWidget *parent) :
|
|
QWidget(parent),
|
|
ui(new Ui::OpenRGBPluginsEntryUi)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
OpenRGBPluginsEntry::~OpenRGBPluginsEntry()
|
|
{
|
|
delete ui;
|
|
}
|