mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
DolphinQt: Handle the Host_UpdateTitle callback.
This commit is contained in:
19
Source/Core/DolphinQt/Host.h
Normal file
19
Source/Core/DolphinQt/Host.h
Normal file
@ -0,0 +1,19 @@
|
||||
// Copyright 2015 Dolphin Emulator Project
|
||||
// Licensed under GPLv2+
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <QEvent>
|
||||
#include <string>
|
||||
|
||||
enum HostEvent {
|
||||
TitleEvent = QEvent::User + 1,
|
||||
};
|
||||
|
||||
class HostTitleEvent final : public QEvent
|
||||
{
|
||||
public:
|
||||
HostTitleEvent(const std::string& title);
|
||||
const std::string m_title;
|
||||
};
|
Reference in New Issue
Block a user