yuzu/src/core/frontend/applets/cabinet.h

40 lines
1.2 KiB
C++
Raw Normal View History

// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include <functional>
2023-03-25 13:29:08 -04:00
#include "core/frontend/applets/applet.h"
#include "core/hle/service/nfp/nfp_types.h"
namespace Service::NFP {
class NfpDevice;
} // namespace Service::NFP
namespace Core::Frontend {
struct CabinetParameters {
Service::NFP::TagInfo tag_info;
Service::NFP::RegisterInfo register_info;
Service::NFP::CabinetMode mode;
};
2022-11-13 16:14:08 -05:00
using CabinetCallback = std::function<void(bool, const std::string&)>;
2023-03-25 13:29:08 -04:00
class CabinetApplet : public Applet {
public:
virtual ~CabinetApplet();
2022-11-13 16:14:08 -05:00
virtual void ShowCabinetApplet(const CabinetCallback& callback,
const CabinetParameters& parameters,
std::shared_ptr<Service::NFP::NfpDevice> nfp_device) const = 0;
};
class DefaultCabinetApplet final : public CabinetApplet {
public:
2023-03-25 13:29:08 -04:00
void Close() const override;
2022-11-13 16:14:08 -05:00
void ShowCabinetApplet(const CabinetCallback& callback, const CabinetParameters& parameters,
std::shared_ptr<Service::NFP::NfpDevice> nfp_device) const override;
};
} // namespace Core::Frontend