DolphinQt: Handle the Host_UpdateTitle callback.

This commit is contained in:
waddlesplash
2015-09-12 14:00:08 -04:00
parent 7c91669ced
commit f5743f5ee9
6 changed files with 43 additions and 2 deletions

View 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;
};