2022-01-20 12:27:56 -06:00
|
|
|
// This file Copyright © 2012-2022 Mnemosyne LLC.
|
2022-02-07 10:25:02 -06:00
|
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
|
2022-01-20 12:27:56 -06:00
|
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
|
|
// License text can be found in the licenses/ folder.
|
2010-04-27 03:10:32 +00:00
|
|
|
|
2015-06-10 21:27:11 +00:00
|
|
|
#include "AddData.h"
|
|
|
|
#include "Application.h"
|
2015-12-16 17:57:05 +00:00
|
|
|
#include "InteropObject.h"
|
2010-04-27 03:10:32 +00:00
|
|
|
|
2021-08-15 12:41:48 +03:00
|
|
|
InteropObject::InteropObject(QObject* parent)
|
|
|
|
: QObject(parent)
|
2010-04-27 03:10:32 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-06-05 14:02:11 -05:00
|
|
|
// NOLINTNEXTLINE(readability-identifier-naming)
|
2020-11-08 21:31:02 -06:00
|
|
|
bool InteropObject::PresentWindow() const
|
2010-04-27 03:10:32 +00:00
|
|
|
{
|
2020-11-08 13:54:40 -06:00
|
|
|
trApp->raise();
|
2017-04-19 15:04:45 +03:00
|
|
|
return true;
|
2010-04-27 03:10:32 +00:00
|
|
|
}
|
|
|
|
|
2020-06-05 14:02:11 -05:00
|
|
|
// NOLINTNEXTLINE(readability-identifier-naming)
|
2020-11-08 21:31:02 -06:00
|
|
|
bool InteropObject::AddMetainfo(QString const& metainfo) const
|
2010-04-27 03:10:32 +00:00
|
|
|
{
|
2022-02-03 07:02:11 -06:00
|
|
|
if (auto addme = AddData(metainfo); addme.type != addme.NONE)
|
2017-04-19 15:04:45 +03:00
|
|
|
{
|
2020-11-08 13:54:40 -06:00
|
|
|
trApp->addTorrent(addme);
|
2017-04-19 15:04:45 +03:00
|
|
|
}
|
2010-08-01 18:55:04 +00:00
|
|
|
|
2017-04-19 15:04:45 +03:00
|
|
|
return true;
|
2010-04-27 03:10:32 +00:00
|
|
|
}
|