2013-04-18 03:43:35 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <wx/defs.h>
|
|
|
|
#include <wx/event.h>
|
|
|
|
#include <wx/gdicmn.h>
|
|
|
|
#include <wx/panel.h>
|
|
|
|
#include <wx/string.h>
|
|
|
|
#include <wx/translation.h>
|
|
|
|
#include <wx/windowid.h>
|
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
class CRegisterView;
|
2014-02-22 22:36:30 +00:00
|
|
|
class wxWindow;
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-11-06 03:19:52 +00:00
|
|
|
class CRegisterWindow : public wxPanel
|
2008-12-08 04:46:09 +00:00
|
|
|
{
|
2009-02-06 18:18:20 +00:00
|
|
|
public:
|
2009-09-01 02:41:48 +00:00
|
|
|
CRegisterWindow(wxWindow* parent,
|
|
|
|
wxWindowID id = wxID_ANY,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
2010-07-27 02:39:12 +00:00
|
|
|
long style = wxTAB_TRAVERSAL | wxNO_BORDER,
|
2011-01-05 04:35:46 +00:00
|
|
|
const wxString& name = _("Registers"));
|
2009-08-26 09:19:15 +00:00
|
|
|
|
2009-02-06 18:18:20 +00:00
|
|
|
void NotifyUpdate();
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2009-02-06 18:18:20 +00:00
|
|
|
private:
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
ID_GPR = 1002
|
|
|
|
};
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2009-02-06 18:18:20 +00:00
|
|
|
CRegisterView* m_GPRGridView;
|
|
|
|
void CreateGUIControls();
|
2008-12-08 04:46:09 +00:00
|
|
|
};
|