remove: unused code

Change-Id: Ib092e85b2cee915b50251d804b944aeb8f31b096
This commit is contained in:
listenerri 2019-01-10 10:13:29 +08:00
parent 9d1375f6f0
commit 24160a7f57
3 changed files with 0 additions and 100 deletions

View File

@ -1,57 +0,0 @@
/*
* Copyright (C) 2011 ~ 2018 Deepin Technology Co., Ltd.
*
* Author: sbw <sbw@sbw.so>
*
* Maintainer: sbw <sbw@sbw.so>
*
* 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
* 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 "systemtrayloader.h"
#include "systemtrayscontroller.h"
#include <QDebug>
SystemTrayLoader::SystemTrayLoader(QObject *parent)
: QThread(parent)
{
}
void SystemTrayLoader::run()
{
#ifdef QT_DEBUG
const QDir pluginsDir("../plugins/system-trays");
#else
const QDir pluginsDir("../lib/dde-dock/plugins/system-trays");
#endif
const QStringList plugins = pluginsDir.entryList(QDir::Files);
for (const QString file : plugins)
{
if (!QLibrary::isLibrary(file))
continue;
// TODO: old dock plugins is uncompatible
if (file.startsWith("libdde-dock-"))
continue;
emit pluginFounded(pluginsDir.absoluteFilePath(file));
msleep(500);
}
emit finished();
}

View File

@ -1,42 +0,0 @@
/*
* Copyright (C) 2011 ~ 2018 Deepin Technology Co., Ltd.
*
* Author: sbw <sbw@sbw.so>
*
* Maintainer: sbw <sbw@sbw.so>
*
* 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
* 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/>.
*/
#ifndef SYSTEMTRAYLOADER_H
#define SYSTEMTRAYLOADER_H
#include <QThread>
class SystemTrayLoader : public QThread
{
Q_OBJECT
public:
explicit SystemTrayLoader(QObject *parent);
signals:
void finished() const;
void pluginFounded(const QString &pluginFile) const;
protected:
void run();
};
#endif // SYSTEMTRAYLOADER_H

View File

@ -21,7 +21,6 @@
#include "systemtrayscontroller.h"
#include "pluginsiteminterface.h"
#include "systemtrayloader.h"
#include <QDebug>
#include <QDir>