summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/Debugger/RegisterWindow.h
blob: 096e5907373732efa1cadc9faa3ace8f5e09b4a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright 2008 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.

#pragma once

#include <wx/panel.h>

class CRegisterView;

class CRegisterWindow : public wxPanel
{
public:
  CRegisterWindow(wxWindow* parent, wxWindowID id = wxID_ANY,
                  const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
                  long style = wxTAB_TRAVERSAL | wxNO_BORDER,
                  const wxString& name = _("Registers"));

  void NotifyUpdate();

private:
  CRegisterView* m_GPRGridView;
  void CreateGUIControls();
};