DolphinWX: Use AUI in the code window.

Allows for resizing of the callstack, function call/callers windows etc.
First step in slightly improving the code window.
This commit is contained in:
Lioncash
2015-02-24 10:56:01 -05:00
parent 7d5a558f31
commit fd11f8fd29
2 changed files with 21 additions and 14 deletions

View File

@ -12,6 +12,7 @@
#include <wx/string.h>
#include <wx/translation.h>
#include <wx/windowid.h>
#include <wx/aui/framemanager.h>
#include "Common/CommonTypes.h"
#include "Common/Event.h"
@ -43,6 +44,7 @@ public:
const wxSize& size = wxDefaultSize,
long style = wxTAB_TRAVERSAL | wxBORDER_NONE,
const wxString& name = _("Code"));
~CCodeWindow();
void Load();
void Save();
@ -133,4 +135,6 @@ private:
wxListBox* callers;
wxListBox* calls;
Common::Event sync_event;
wxAuiManager m_aui_manager;
};