34 lines
943 B
C++
34 lines
943 B
C++
// Copyright 2008 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <wx/aui/framemanager.h>
|
|
#include <wx/panel.h>
|
|
|
|
class CWatchView;
|
|
|
|
class CWatchWindow : public wxPanel
|
|
{
|
|
public:
|
|
CWatchWindow(wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition,
|
|
const wxSize& size = wxDefaultSize, long style = wxTAB_TRAVERSAL | wxNO_BORDER,
|
|
// i18n: This kind of "watch" is used for watching emulated memory.
|
|
// It's not related to timekeeping devices.
|
|
const wxString& name = _("Watch"));
|
|
~CWatchWindow();
|
|
|
|
void NotifyUpdate();
|
|
void Event_SaveAll(wxCommandEvent& WXUNUSED(event));
|
|
void SaveAll();
|
|
void Event_LoadAll(wxCommandEvent& WXUNUSED(event));
|
|
void LoadAll();
|
|
|
|
private:
|
|
wxAuiManager m_mgr;
|
|
|
|
// Owned by wx. Deleted implicitly upon destruction.
|
|
CWatchView* m_GPRGridView;
|
|
};
|