thedesk/plugins/AudioPlugin/plugin.cpp
2023-07-18 19:51:20 +10:00

69 lines
2 KiB
C++

/****************************************
*
* INSERT-PROJECT-NAME-HERE - INSERT-GENERIC-NAME-HERE
* Copyright (C) 2020 Victor Tran
*
* 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 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* *************************************/
#include "plugin.h"
#include "audiochunk.h"
#include "eventhandler.h"
#include "micchunk.h"
#include <QApplication>
#include <QDebug>
#include <QDir>
#include <barmanager.h>
#include <localemanager.h>
#include <statemanager.h>
#include <statuscentermanager.h>
#include <tapplication.h>
#include <tsettings.h>
struct PluginPrivate {
EventHandler* keyHandler;
AudioChunk* chunk;
MicChunk* micChunk;
};
Plugin::Plugin() {
d = new PluginPrivate();
}
Plugin::~Plugin() {
delete d;
}
void Plugin::activate() {
tApplication::addPluginTranslator(CNTP_TARGET_NAME);
tSettings::registerDefaults(QDir::cleanPath(qApp->applicationDirPath() + "/../plugins/AudioPlugin/thedesk-audio.conf"));
tSettings::registerDefaults("/usr/share/defaults/thedesk-audio.conf");
d->keyHandler = new EventHandler();
d->chunk = new AudioChunk();
StateManager::barManager()->addChunk(d->chunk);
d->micChunk = new MicChunk();
}
void Plugin::deactivate() {
d->micChunk->deleteLater();
StateManager::barManager()->removeChunk(d->chunk);
d->chunk->deleteLater();
d->keyHandler->deleteLater();
tApplication::removePluginTranslator(CNTP_TARGET_NAME);
}