mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
DolphinWX: Enable/disable config UI options based on core state
This commit is contained in:
17
Source/Core/DolphinWX/WxEventUtils.h
Normal file
17
Source/Core/DolphinWX/WxEventUtils.h
Normal file
@ -0,0 +1,17 @@
|
||||
// Copyright 2016 Dolphin Emulator Project
|
||||
// Licensed under GPLv2+
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
// Intended for containing event functions that are bound to
|
||||
// different window controls through wxEvtHandler's Bind()
|
||||
// function.
|
||||
|
||||
class wxUpdateUIEvent;
|
||||
|
||||
namespace WxEventUtils
|
||||
{
|
||||
void OnEnableIfCoreNotRunning(wxUpdateUIEvent&);
|
||||
void OnEnableIfNetplayNotRunning(wxUpdateUIEvent&);
|
||||
} // namespace WxEventUtils
|
Reference in New Issue
Block a user