GUI: Save floating setting, float console window
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4216 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
aef1f943f3
commit
0f794fe9cc
|
@ -123,13 +123,13 @@ class CCodeWindow
|
||||||
bool bAutomaticStart; bool bBootToPause;
|
bool bAutomaticStart; bool bBootToPause;
|
||||||
bool bLogWindow; int iLogWindow;
|
bool bLogWindow; int iLogWindow;
|
||||||
bool bConsoleWindow; int iConsoleWindow;
|
bool bConsoleWindow; int iConsoleWindow;
|
||||||
bool bCodeWindow; int iCodeWindow;
|
bool bCodeWindow; int iCodeWindow; bool bFloatCodeWindow;
|
||||||
bool bRegisterWindow; int iRegisterWindow;
|
bool bRegisterWindow; int iRegisterWindow; bool bFloatRegisterWindow;
|
||||||
bool bBreakpointWindow; int iBreakpointWindow;
|
bool bBreakpointWindow; int iBreakpointWindow; bool bFloatBreakpointWindow;
|
||||||
bool bMemoryWindow; int iMemoryWindow;
|
bool bMemoryWindow; int iMemoryWindow; bool bFloatMemoryWindow;
|
||||||
bool bJitWindow; int iJitWindow;
|
bool bJitWindow; int iJitWindow; bool bFloatJitWindow;
|
||||||
bool bSoundWindow; int iSoundWindow;
|
bool bSoundWindow; int iSoundWindow; bool bFloatSoundWindow;
|
||||||
bool bVideoWindow; int iVideoWindow;
|
bool bVideoWindow; int iVideoWindow; bool bFloatVideoWindow;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
|
|
@ -113,6 +113,16 @@ void CCodeWindow::Load()
|
||||||
ini.Get(_Section.c_str(), "JIT", &iJitWindow, 1);
|
ini.Get(_Section.c_str(), "JIT", &iJitWindow, 1);
|
||||||
ini.Get(_Section.c_str(), "Sound", &iSoundWindow, 0);
|
ini.Get(_Section.c_str(), "Sound", &iSoundWindow, 0);
|
||||||
ini.Get(_Section.c_str(), "Video", &iVideoWindow, 0);
|
ini.Get(_Section.c_str(), "Video", &iVideoWindow, 0);
|
||||||
|
// Get floating setting
|
||||||
|
ini.Get("Float", "Log", &Parent->bFloatLogWindow, false);
|
||||||
|
ini.Get("Float", "Console", &Parent->bFloatConsoleWindow, false);
|
||||||
|
ini.Get("Float", "Code", &bFloatCodeWindow, false);
|
||||||
|
ini.Get("Float", "Registers", &bFloatRegisterWindow, false);
|
||||||
|
ini.Get("Float", "Breakpoints", &bFloatBreakpointWindow, false);
|
||||||
|
ini.Get("Float", "Memory", &bFloatMemoryWindow, false);
|
||||||
|
ini.Get("Float", "JIT", &bFloatJitWindow, false);
|
||||||
|
ini.Get("Float", "Sound", &bFloatSoundWindow, false);
|
||||||
|
ini.Get("Float", "Video", &bFloatVideoWindow, false);
|
||||||
|
|
||||||
// Boot to pause or not
|
// Boot to pause or not
|
||||||
ini.Get("ShowOnStart", "AutomaticStart", &bAutomaticStart, false);
|
ini.Get("ShowOnStart", "AutomaticStart", &bAutomaticStart, false);
|
||||||
|
@ -149,6 +159,16 @@ void CCodeWindow::Save()
|
||||||
ini.Set(_Section.c_str(), "JIT", iJitWindow);
|
ini.Set(_Section.c_str(), "JIT", iJitWindow);
|
||||||
ini.Set(_Section.c_str(), "Sound", iSoundWindow);
|
ini.Set(_Section.c_str(), "Sound", iSoundWindow);
|
||||||
ini.Set(_Section.c_str(), "Video", iVideoWindow);
|
ini.Set(_Section.c_str(), "Video", iVideoWindow);
|
||||||
|
// Save floating setting
|
||||||
|
ini.Set("Float", "Log", (bool)FindWindowById(IDM_LOGWINDOW_PARENT));
|
||||||
|
ini.Set("Float", "Console", (bool)FindWindowById(IDM_CONSOLEWINDOW_PARENT));
|
||||||
|
ini.Set("Float", "Code", (bool)FindWindowById(IDM_CODEWINDOW_PARENT));
|
||||||
|
ini.Set("Float", "Registers", (bool)FindWindowById(IDM_REGISTERWINDOW_PARENT));
|
||||||
|
ini.Set("Float", "Breakpoints", (bool)FindWindowById(IDM_BREAKPOINTWINDOW_PARENT));
|
||||||
|
ini.Set("Float", "Memory", (bool)FindWindowById(IDM_MEMORYWINDOW_PARENT));
|
||||||
|
ini.Set("Float", "JIT", (bool)FindWindowById(IDM_JITWINDOW_PARENT));
|
||||||
|
ini.Set("Float", "Sound", (bool)FindWindowById(IDM_SOUNDWINDOW_PARENT));
|
||||||
|
ini.Set("Float", "Video", (bool)FindWindowById(IDM_VIDEOWINDOW_PARENT));
|
||||||
|
|
||||||
// Save window settings
|
// Save window settings
|
||||||
/*
|
/*
|
||||||
|
@ -441,7 +461,7 @@ void CCodeWindow::OnToggleCodeWindow(bool _Show, int i)
|
||||||
{
|
{
|
||||||
if (_Show)
|
if (_Show)
|
||||||
{
|
{
|
||||||
Parent->DoAddPage(this, i, wxT("Code"));
|
Parent->DoAddPage(this, i, wxT("Code"), bFloatCodeWindow);
|
||||||
}
|
}
|
||||||
else // hide
|
else // hide
|
||||||
Parent->DoRemovePage (this);
|
Parent->DoRemovePage (this);
|
||||||
|
@ -451,7 +471,7 @@ void CCodeWindow::OnToggleRegisterWindow(bool _Show, int i)
|
||||||
if (_Show)
|
if (_Show)
|
||||||
{
|
{
|
||||||
if (!m_RegisterWindow) m_RegisterWindow = new CRegisterWindow(Parent, IDM_REGISTERWINDOW);
|
if (!m_RegisterWindow) m_RegisterWindow = new CRegisterWindow(Parent, IDM_REGISTERWINDOW);
|
||||||
Parent->DoAddPage(m_RegisterWindow, i, wxT("Registers"));
|
Parent->DoAddPage(m_RegisterWindow, i, wxT("Registers"), bFloatRegisterWindow);
|
||||||
}
|
}
|
||||||
else // hide
|
else // hide
|
||||||
Parent->DoRemovePage (m_RegisterWindow);
|
Parent->DoRemovePage (m_RegisterWindow);
|
||||||
|
@ -463,7 +483,7 @@ void CCodeWindow::OnToggleBreakPointWindow(bool _Show, int i)
|
||||||
{
|
{
|
||||||
if (!m_BreakpointWindow) m_BreakpointWindow = new CBreakPointWindow(this, Parent, IDM_BREAKPOINTWINDOW);
|
if (!m_BreakpointWindow) m_BreakpointWindow = new CBreakPointWindow(this, Parent, IDM_BREAKPOINTWINDOW);
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
Parent->DoAddPage(m_BreakpointWindow, i, wxT("Breakpoints"));
|
Parent->DoAddPage(m_BreakpointWindow, i, wxT("Breakpoints"), bFloatBreakpointWindow);
|
||||||
#else
|
#else
|
||||||
m_BreakpointWindow->Show();
|
m_BreakpointWindow->Show();
|
||||||
#endif
|
#endif
|
||||||
|
@ -483,7 +503,7 @@ void CCodeWindow::OnToggleMemoryWindow(bool _Show, int i)
|
||||||
{
|
{
|
||||||
if (!m_MemoryWindow) m_MemoryWindow = new CMemoryWindow(Parent, IDM_MEMORYWINDOW);
|
if (!m_MemoryWindow) m_MemoryWindow = new CMemoryWindow(Parent, IDM_MEMORYWINDOW);
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
Parent->DoAddPage(m_MemoryWindow, i, wxT("Memory"));
|
Parent->DoAddPage(m_MemoryWindow, i, wxT("Memory"), bFloatMemoryWindow);
|
||||||
#else
|
#else
|
||||||
m_MemoryWindow->Show();
|
m_MemoryWindow->Show();
|
||||||
#endif
|
#endif
|
||||||
|
@ -503,7 +523,7 @@ void CCodeWindow::OnToggleJitWindow(bool _Show, int i)
|
||||||
{
|
{
|
||||||
if (!m_JitWindow) m_JitWindow = new CJitWindow(Parent, IDM_JITWINDOW);
|
if (!m_JitWindow) m_JitWindow = new CJitWindow(Parent, IDM_JITWINDOW);
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
Parent->DoAddPage(m_JitWindow, i, wxT("JIT"));
|
Parent->DoAddPage(m_JitWindow, i, wxT("JIT"), bFloatJitWindow);
|
||||||
#else
|
#else
|
||||||
m_JitWindow->Show();
|
m_JitWindow->Show();
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -328,7 +328,8 @@ CFrame::CFrame(wxFrame* parent,
|
||||||
: wxFrame(parent, id, title, pos, size, style), g_pCodeWindow(NULL)
|
: wxFrame(parent, id, title, pos, size, style), g_pCodeWindow(NULL)
|
||||||
, m_LogWindow(NULL), m_MenuBar(NULL), m_ToolBar(NULL), m_ToolBarDebug(NULL), m_ToolBarAui(NULL)
|
, m_LogWindow(NULL), m_MenuBar(NULL), m_ToolBar(NULL), m_ToolBarDebug(NULL), m_ToolBarAui(NULL)
|
||||||
, m_pStatusBar(NULL), m_GameListCtrl(NULL), m_Panel(NULL)
|
, m_pStatusBar(NULL), m_GameListCtrl(NULL), m_Panel(NULL)
|
||||||
, UseDebugger(_UseDebugger), m_bEdit(false), m_bTabSplit(false), m_bNoDocking(false), bRenderToMain(true)
|
, UseDebugger(_UseDebugger), m_bEdit(false), m_bTabSplit(false), m_bNoDocking(false)
|
||||||
|
, bRenderToMain(true), bFloatLogWindow(false), bFloatConsoleWindow(false)
|
||||||
, HaveLeds(false), HaveSpeakers(false)
|
, HaveLeds(false), HaveSpeakers(false)
|
||||||
, m_fLastClickTime(0), m_iLastMotionTime(0), LastMouseX(0), LastMouseY(0)
|
, m_fLastClickTime(0), m_iLastMotionTime(0), LastMouseX(0), LastMouseY(0)
|
||||||
#if wxUSE_TIMER
|
#if wxUSE_TIMER
|
||||||
|
@ -344,7 +345,7 @@ CFrame::CFrame(wxFrame* parent,
|
||||||
if (SConfig::GetInstance().m_InterfaceLogWindow) m_LogWindow = new CLogWindow(this, IDM_LOGWINDOW);
|
if (SConfig::GetInstance().m_InterfaceLogWindow) m_LogWindow = new CLogWindow(this, IDM_LOGWINDOW);
|
||||||
|
|
||||||
// Start debugging mazimized
|
// Start debugging mazimized
|
||||||
if (UseDebugger) this->Maximize(true);
|
//if (UseDebugger) this->Maximize(true);
|
||||||
// Debugger class
|
// Debugger class
|
||||||
if (UseDebugger)
|
if (UseDebugger)
|
||||||
{
|
{
|
||||||
|
@ -782,9 +783,42 @@ void CFrame::Update()
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
// --------
|
// --------
|
||||||
// Functions
|
// Functions
|
||||||
|
|
||||||
|
|
||||||
|
wxFrame * CFrame::CreateParentFrame(wxWindowID Id, const wxString& Title, wxWindow * Child)
|
||||||
|
{
|
||||||
|
//NOTICE_LOG(CONSOLE, "CreateParentFrame: %i %s %i", Id, Title.mb_str(), Child->GetId())
|
||||||
|
|
||||||
|
wxFrame * Frame = new wxFrame(this, Id, Title);
|
||||||
|
|
||||||
|
Child->Reparent(Frame);
|
||||||
|
Child->Show();
|
||||||
|
|
||||||
|
wxBoxSizer * m_MainSizer = new wxBoxSizer(wxHORIZONTAL);
|
||||||
|
|
||||||
|
m_MainSizer->Add(Child, 1, wxEXPAND);
|
||||||
|
|
||||||
|
Frame->Connect(wxID_ANY, wxEVT_CLOSE_WINDOW,
|
||||||
|
wxCloseEventHandler(CFrame::OnFloatingPageClosed),
|
||||||
|
(wxObject*)0, this);
|
||||||
|
|
||||||
|
if (Id == IDM_CONSOLEWINDOW_PARENT)
|
||||||
|
{
|
||||||
|
Frame->Connect(wxID_ANY, wxEVT_SIZE,
|
||||||
|
wxSizeEventHandler(CFrame::OnFloatingPageSize),
|
||||||
|
(wxObject*)0, this);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Main sizer
|
||||||
|
Frame->SetSizer( m_MainSizer );
|
||||||
|
// Minimum frame size
|
||||||
|
Frame->SetMinSize(wxSize(200, -1));
|
||||||
|
Frame->Show();
|
||||||
|
return Frame;
|
||||||
|
}
|
||||||
wxPanel* CFrame::CreateEmptyPanel(wxWindowID Id)
|
wxPanel* CFrame::CreateEmptyPanel(wxWindowID Id)
|
||||||
{
|
{
|
||||||
wxPanel* Panel = new wxPanel(this, Id);
|
wxPanel* Panel = new wxPanel(this, Id);
|
||||||
|
|
|
@ -104,6 +104,8 @@ class CFrame : public wxFrame
|
||||||
wxAuiToolBar *m_ToolBar, *m_ToolBarDebug, *m_ToolBarAui;
|
wxAuiToolBar *m_ToolBar, *m_ToolBarDebug, *m_ToolBarAui;
|
||||||
long NOTEBOOK_STYLE, TOOLBAR_STYLE;
|
long NOTEBOOK_STYLE, TOOLBAR_STYLE;
|
||||||
int iLeftWidth[2], iMidWidth[2];
|
int iLeftWidth[2], iMidWidth[2];
|
||||||
|
bool bFloatLogWindow;
|
||||||
|
bool bFloatConsoleWindow;
|
||||||
|
|
||||||
// Utility
|
// Utility
|
||||||
wxWindow * GetWxWindow(wxString);
|
wxWindow * GetWxWindow(wxString);
|
||||||
|
@ -114,6 +116,7 @@ class CFrame : public wxFrame
|
||||||
wxWindow * GetNootebookPage(wxString);
|
wxWindow * GetNootebookPage(wxString);
|
||||||
wxWindow * GetNootebookPageFromId(wxWindowID Id);
|
wxWindow * GetNootebookPageFromId(wxWindowID Id);
|
||||||
wxAuiNotebook * GetNotebookFromId(u32);
|
wxAuiNotebook * GetNotebookFromId(u32);
|
||||||
|
wxWindowID WindowParentIdFromChildId(int Id);
|
||||||
wxString WindowNameFromId(int Id);
|
wxString WindowNameFromId(int Id);
|
||||||
int GetNotebookCount();
|
int GetNotebookCount();
|
||||||
int Limit(int,int,int);
|
int Limit(int,int,int);
|
||||||
|
@ -134,13 +137,10 @@ class CFrame : public wxFrame
|
||||||
void ShowAllNotebooks(bool Window = false);
|
void ShowAllNotebooks(bool Window = false);
|
||||||
void HideAllNotebooks(bool Window = false);
|
void HideAllNotebooks(bool Window = false);
|
||||||
void CloseAllNotebooks();
|
void CloseAllNotebooks();
|
||||||
void DoAddPage(wxWindow *, int, wxString);
|
void DoAddPage(wxWindow *, int, wxString, bool);
|
||||||
void DoRemovePage(wxWindow *, bool Hide = true);
|
void DoRemovePage(wxWindow *, bool Hide = true);
|
||||||
|
void DoRemovePageId(wxWindowID Id, bool Hide = true, bool Destroy = false);
|
||||||
void DoRemovePageString(wxString, bool Hide = true, bool Destroy = false);
|
void DoRemovePageString(wxString, bool Hide = true, bool Destroy = false);
|
||||||
void DoUnfloatPage(int Id);
|
|
||||||
void OnFloatingPageClosed(wxCloseEvent& event);
|
|
||||||
void DoFloatPage(wxWindow * Win);
|
|
||||||
wxFrame * CreateParentFrame(wxWindowID Id = wxID_ANY, const wxString& title = wxT(""), wxWindow * = NULL);
|
|
||||||
void HidePane();
|
void HidePane();
|
||||||
void SetSimplePaneSize();
|
void SetSimplePaneSize();
|
||||||
void SetPaneSize();
|
void SetPaneSize();
|
||||||
|
@ -148,6 +148,12 @@ class CFrame : public wxFrame
|
||||||
void TogglePaneStyle(bool,int);
|
void TogglePaneStyle(bool,int);
|
||||||
void ToggleNotebookStyle(long);
|
void ToggleNotebookStyle(long);
|
||||||
void ResizeConsole();
|
void ResizeConsole();
|
||||||
|
// Float window
|
||||||
|
void DoUnfloatPage(int Id);
|
||||||
|
void OnFloatingPageClosed(wxCloseEvent& event);
|
||||||
|
void OnFloatingPageSize(wxSizeEvent& event);
|
||||||
|
void DoFloatNotebookPage(wxWindowID Id);
|
||||||
|
wxFrame * CreateParentFrame(wxWindowID Id = wxID_ANY, const wxString& title = wxT(""), wxWindow * = NULL);
|
||||||
// User perspectives
|
// User perspectives
|
||||||
struct SPerspectives
|
struct SPerspectives
|
||||||
{
|
{
|
||||||
|
|
|
@ -106,13 +106,13 @@ void CFrame::OnToggleLogWindow(wxCommandEvent& event)
|
||||||
SConfig::GetInstance().m_InterfaceLogWindow = event.IsChecked();
|
SConfig::GetInstance().m_InterfaceLogWindow = event.IsChecked();
|
||||||
DoToggleWindow(event.GetId(), event.IsChecked());
|
DoToggleWindow(event.GetId(), event.IsChecked());
|
||||||
}
|
}
|
||||||
void CFrame::ToggleLogWindow(bool _show, int i)
|
void CFrame::ToggleLogWindow(bool bShow, int i)
|
||||||
{
|
{
|
||||||
if (_show)
|
if (bShow)
|
||||||
{
|
{
|
||||||
if (!m_LogWindow) m_LogWindow = new CLogWindow(this, IDM_LOGWINDOW);
|
if (!m_LogWindow) m_LogWindow = new CLogWindow(this, IDM_LOGWINDOW);
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
DoAddPage(m_LogWindow, i, wxT("Log"));
|
DoAddPage(m_LogWindow, i, wxT("Log"), bFloatLogWindow);
|
||||||
#else
|
#else
|
||||||
m_LogWindow->Show();
|
m_LogWindow->Show();
|
||||||
#endif
|
#endif
|
||||||
|
@ -138,55 +138,46 @@ void CFrame::OnToggleConsole(wxCommandEvent& event)
|
||||||
SConfig::GetInstance().m_InterfaceConsole = event.IsChecked();
|
SConfig::GetInstance().m_InterfaceConsole = event.IsChecked();
|
||||||
DoToggleWindow(event.GetId(), event.IsChecked());
|
DoToggleWindow(event.GetId(), event.IsChecked());
|
||||||
}
|
}
|
||||||
void CFrame::ToggleConsole(bool _show, int i)
|
void CFrame::ToggleConsole(bool bShow, int i)
|
||||||
{
|
{
|
||||||
|
#ifdef _WIN32
|
||||||
ConsoleListener *Console = LogManager::GetInstance()->getConsoleListener();
|
ConsoleListener *Console = LogManager::GetInstance()->getConsoleListener();
|
||||||
|
|
||||||
if (_show)
|
if (bShow)
|
||||||
{
|
{
|
||||||
//Console->Log(LogTypes::LNOTICE, StringFromFormat(" >>> Show\n").c_str());
|
//Console->Log(LogTypes::LNOTICE, StringFromFormat(" >>> Show\n").c_str());
|
||||||
|
|
||||||
if (GetNotebookCount() == 0) return;
|
if (GetNotebookCount() == 0) return;
|
||||||
if (i < 0 || i > GetNotebookCount()-1) i = 0;
|
if (i < 0 || i > GetNotebookCount()-1) i = 0;
|
||||||
|
|
||||||
#ifdef _WIN32
|
|
||||||
wxWindow *Win = GetWxWindowHwnd(GetConsoleWindow());
|
wxWindow *Win = GetWxWindowHwnd(GetConsoleWindow());
|
||||||
if (Win && GetNotebookFromId(i)->GetPageIndex(Win) != wxNOT_FOUND) return;
|
if (Win && GetNotebookFromId(i)->GetPageIndex(Win) != wxNOT_FOUND) return;
|
||||||
{
|
{
|
||||||
#else
|
|
||||||
Console->Open();
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef _WIN32
|
|
||||||
if(!GetConsoleWindow()) Console->Open(); else ShowWindow(GetConsoleWindow(),SW_SHOW);
|
if(!GetConsoleWindow()) Console->Open(); else ShowWindow(GetConsoleWindow(),SW_SHOW);
|
||||||
}
|
}
|
||||||
Win = GetWxWindowHwnd(GetConsoleWindow());
|
Win = GetWxWindowHwnd(GetConsoleWindow());
|
||||||
// Can we remove the border?
|
if (!Win) return;
|
||||||
//Win->SetWindowStyleFlag(wxNO_BORDER);
|
|
||||||
//SetWindowLong(GetConsoleWindow(), GWL_STYLE, WS_VISIBLE);
|
|
||||||
// Create parent window
|
// Create parent window
|
||||||
wxPanel * ConsoleParent = CreateEmptyPanel(IDM_CONSOLEWINDOW);
|
wxPanel * ConsoleParent = CreateEmptyPanel(IDM_CONSOLEWINDOW);
|
||||||
::SetParent(GetConsoleWindow(), (HWND)ConsoleParent->GetHWND());
|
Win->Reparent(ConsoleParent);
|
||||||
//Win->SetParent(ConsoleParent);
|
if (!bFloatConsoleWindow)
|
||||||
//if (Win) m_Mgr->GetAllPanes().Item(i)->AddPage(Win, wxT("Console"), true, aNormalFile );
|
GetNotebookFromId(i)->AddPage(ConsoleParent, wxT("Console"), true, aNormalFile);
|
||||||
if (Win) GetNotebookFromId(i)->AddPage(ConsoleParent, wxT("Console"), true, aNormalFile );
|
else
|
||||||
#endif
|
CreateParentFrame(WindowParentIdFromChildId(ConsoleParent->GetId()), WindowNameFromId(ConsoleParent->GetId()), ConsoleParent);
|
||||||
}
|
}
|
||||||
else // hide
|
else // hide
|
||||||
{
|
{
|
||||||
//Console->Log(LogTypes::LNOTICE, StringFromFormat(" >>> Show\n").c_str());
|
//Console->Log(LogTypes::LNOTICE, StringFromFormat(" >>> Show\n").c_str());
|
||||||
|
|
||||||
#ifdef _WIN32
|
|
||||||
// Hide
|
// Hide
|
||||||
if(GetConsoleWindow()) ShowWindow(GetConsoleWindow(),SW_HIDE);
|
if(GetConsoleWindow()) ShowWindow(GetConsoleWindow(),SW_HIDE);
|
||||||
// Release the console to Windows
|
// Release the console to Windows
|
||||||
::SetParent(GetConsoleWindow(), NULL);
|
::SetParent(GetConsoleWindow(), NULL);
|
||||||
// Destroy the empty parent of the console
|
// Destroy the empty parent of the console
|
||||||
DoRemovePageString(wxT("Console"), true, true);
|
if (FindWindowById(WindowParentIdFromChildId(IDM_CONSOLEWINDOW)))
|
||||||
|
FindWindowById(WindowParentIdFromChildId(IDM_CONSOLEWINDOW))->Destroy();
|
||||||
#else
|
else
|
||||||
Console->Close();
|
DoRemovePageId(IDM_CONSOLEWINDOW, true, true);
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Hide pane
|
// Hide pane
|
||||||
|
@ -194,11 +185,14 @@ void CFrame::ToggleConsole(bool _show, int i)
|
||||||
|
|
||||||
// Make sure the check is updated (if wxw isn't calling this func)
|
// Make sure the check is updated (if wxw isn't calling this func)
|
||||||
//GetMenuBar()->FindItem(IDM_CONSOLEWINDOW)->Check(Show);
|
//GetMenuBar()->FindItem(IDM_CONSOLEWINDOW)->Check(Show);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
// ------------
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
// Notebooks
|
// Notebooks
|
||||||
|
// ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
|
||||||
void CFrame::ClosePages()
|
void CFrame::ClosePages()
|
||||||
{
|
{
|
||||||
DoToggleWindow(IDM_LOGWINDOW, false);
|
DoToggleWindow(IDM_LOGWINDOW, false);
|
||||||
|
@ -211,25 +205,25 @@ void CFrame::ClosePages()
|
||||||
DoToggleWindow(IDM_SOUNDWINDOW, false);
|
DoToggleWindow(IDM_SOUNDWINDOW, false);
|
||||||
DoToggleWindow(IDM_VIDEOWINDOW, false);
|
DoToggleWindow(IDM_VIDEOWINDOW, false);
|
||||||
}
|
}
|
||||||
void CFrame::DoToggleWindow(int Id, bool _show)
|
void CFrame::DoToggleWindow(int Id, bool bShow)
|
||||||
{
|
{
|
||||||
switch (Id)
|
switch (Id)
|
||||||
{
|
{
|
||||||
case IDM_LOGWINDOW: ToggleLogWindow(_show, UseDebugger ? g_pCodeWindow->iLogWindow : 0); break;
|
case IDM_LOGWINDOW: ToggleLogWindow(bShow, UseDebugger ? g_pCodeWindow->iLogWindow : 0); break;
|
||||||
case IDM_CONSOLEWINDOW: ToggleConsole(_show, UseDebugger ? g_pCodeWindow->iConsoleWindow : 0); break;
|
case IDM_CONSOLEWINDOW: ToggleConsole(bShow, UseDebugger ? g_pCodeWindow->iConsoleWindow : 0); break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!UseDebugger) return;
|
if (!UseDebugger) return;
|
||||||
|
|
||||||
switch (Id)
|
switch (Id)
|
||||||
{
|
{
|
||||||
case IDM_CODEWINDOW: g_pCodeWindow->OnToggleCodeWindow(_show, g_pCodeWindow->iCodeWindow); break;
|
case IDM_CODEWINDOW: g_pCodeWindow->OnToggleCodeWindow(bShow, g_pCodeWindow->iCodeWindow); break;
|
||||||
case IDM_REGISTERWINDOW: g_pCodeWindow->OnToggleRegisterWindow(_show, g_pCodeWindow->iRegisterWindow); break;
|
case IDM_REGISTERWINDOW: g_pCodeWindow->OnToggleRegisterWindow(bShow, g_pCodeWindow->iRegisterWindow); break;
|
||||||
case IDM_BREAKPOINTWINDOW: g_pCodeWindow->OnToggleBreakPointWindow(_show, g_pCodeWindow->iBreakpointWindow); break;
|
case IDM_BREAKPOINTWINDOW: g_pCodeWindow->OnToggleBreakPointWindow(bShow, g_pCodeWindow->iBreakpointWindow); break;
|
||||||
case IDM_MEMORYWINDOW: g_pCodeWindow->OnToggleMemoryWindow(_show, g_pCodeWindow->iMemoryWindow); break;
|
case IDM_MEMORYWINDOW: g_pCodeWindow->OnToggleMemoryWindow(bShow, g_pCodeWindow->iMemoryWindow); break;
|
||||||
case IDM_JITWINDOW: g_pCodeWindow->OnToggleJitWindow(_show, g_pCodeWindow->iJitWindow); break;
|
case IDM_JITWINDOW: g_pCodeWindow->OnToggleJitWindow(bShow, g_pCodeWindow->iJitWindow); break;
|
||||||
case IDM_SOUNDWINDOW: g_pCodeWindow->OnToggleSoundWindow(_show, g_pCodeWindow->iSoundWindow); break;
|
case IDM_SOUNDWINDOW: g_pCodeWindow->OnToggleSoundWindow(bShow, g_pCodeWindow->iSoundWindow); break;
|
||||||
case IDM_VIDEOWINDOW: g_pCodeWindow->OnToggleVideoWindow(_show, g_pCodeWindow->iVideoWindow); break;
|
case IDM_VIDEOWINDOW: g_pCodeWindow->OnToggleVideoWindow(bShow, g_pCodeWindow->iVideoWindow); break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
void CFrame::OnNotebookPageChanged(wxAuiNotebookEvent& event)
|
void CFrame::OnNotebookPageChanged(wxAuiNotebookEvent& event)
|
||||||
|
@ -271,8 +265,8 @@ void CFrame::OnFloatWindow(wxCommandEvent& event)
|
||||||
{
|
{
|
||||||
switch(event.GetId())
|
switch(event.GetId())
|
||||||
{
|
{
|
||||||
case IDM_FLOAT_LOGWINDOW: if (GetNootebookPageFromId(IDM_LOGWINDOW)) { DoFloatPage(m_LogWindow); return; } break;
|
case IDM_FLOAT_LOGWINDOW: if (GetNootebookPageFromId(IDM_LOGWINDOW)) { DoFloatNotebookPage(IDM_LOGWINDOW); return; } break;
|
||||||
case IDM_FLOAT_CONSOLEWINDOW: if (GetNootebookPageFromId(IDM_CONSOLEWINDOW)) { DoFloatPage(m_LogWindow); return; } break;
|
case IDM_FLOAT_CONSOLEWINDOW: if (GetNootebookPageFromId(IDM_CONSOLEWINDOW)) { DoFloatNotebookPage(IDM_CONSOLEWINDOW); return; } break;
|
||||||
}
|
}
|
||||||
switch(event.GetId())
|
switch(event.GetId())
|
||||||
{
|
{
|
||||||
|
@ -284,11 +278,11 @@ void CFrame::OnFloatWindow(wxCommandEvent& event)
|
||||||
|
|
||||||
switch(event.GetId())
|
switch(event.GetId())
|
||||||
{
|
{
|
||||||
case IDM_FLOAT_CODEWINDOW: if (GetNootebookPageFromId(IDM_CODEWINDOW)) { DoFloatPage(g_pCodeWindow); return; } break;
|
case IDM_FLOAT_CODEWINDOW: if (GetNootebookPageFromId(IDM_CODEWINDOW)) { DoFloatNotebookPage(IDM_CODEWINDOW); return; } break;
|
||||||
case IDM_FLOAT_REGISTERWINDOW: if (GetNootebookPageFromId(IDM_REGISTERWINDOW)) { DoFloatPage((wxWindow*)g_pCodeWindow->m_RegisterWindow); return; } break;
|
case IDM_FLOAT_REGISTERWINDOW: if (GetNootebookPageFromId(IDM_REGISTERWINDOW)) { DoFloatNotebookPage(IDM_REGISTERWINDOW); return; } break;
|
||||||
case IDM_FLOAT_BREAKPOINTWINDOW: if (GetNootebookPageFromId(IDM_BREAKPOINTWINDOW)) { DoFloatPage((wxWindow*)g_pCodeWindow->m_BreakpointWindow); return; } break;
|
case IDM_FLOAT_BREAKPOINTWINDOW: if (GetNootebookPageFromId(IDM_BREAKPOINTWINDOW)) { DoFloatNotebookPage(IDM_BREAKPOINTWINDOW); return; } break;
|
||||||
case IDM_FLOAT_MEMORYWINDOW: if (GetNootebookPageFromId(IDM_MEMORYWINDOW)) { DoFloatPage((wxWindow*)g_pCodeWindow->m_MemoryWindow); return; } break;
|
case IDM_FLOAT_MEMORYWINDOW: if (GetNootebookPageFromId(IDM_MEMORYWINDOW)) { DoFloatNotebookPage(IDM_MEMORYWINDOW); return; } break;
|
||||||
case IDM_FLOAT_JITWINDOW: if (GetNootebookPageFromId(IDM_JITWINDOW)) { DoFloatPage((wxWindow*)g_pCodeWindow->m_JitWindow); return; } break;
|
case IDM_FLOAT_JITWINDOW: if (GetNootebookPageFromId(IDM_JITWINDOW)) { DoFloatNotebookPage(IDM_JITWINDOW); return; } break;
|
||||||
}
|
}
|
||||||
switch(event.GetId())
|
switch(event.GetId())
|
||||||
{
|
{
|
||||||
|
@ -302,6 +296,7 @@ void CFrame::OnFloatWindow(wxCommandEvent& event)
|
||||||
void CFrame::OnTab(wxAuiNotebookEvent& event)
|
void CFrame::OnTab(wxAuiNotebookEvent& event)
|
||||||
{
|
{
|
||||||
event.Skip();
|
event.Skip();
|
||||||
|
if (!UseDebugger) return;
|
||||||
|
|
||||||
// Create the popup menu
|
// Create the popup menu
|
||||||
wxMenu MenuPopup;
|
wxMenu MenuPopup;
|
||||||
|
@ -312,31 +307,33 @@ void CFrame::OnTab(wxAuiNotebookEvent& event)
|
||||||
MenuPopup.Append(new wxMenuItem(&MenuPopup));
|
MenuPopup.Append(new wxMenuItem(&MenuPopup));
|
||||||
Item = new wxMenuItem(&MenuPopup, IDM_FLOAT_LOGWINDOW, WindowNameFromId(IDM_LOGWINDOW), wxT(""), wxITEM_CHECK);
|
Item = new wxMenuItem(&MenuPopup, IDM_FLOAT_LOGWINDOW, WindowNameFromId(IDM_LOGWINDOW), wxT(""), wxITEM_CHECK);
|
||||||
MenuPopup.Append(Item);
|
MenuPopup.Append(Item);
|
||||||
Item->Check(FindWindowById(IDM_LOGWINDOW) && !GetNootebookPageFromId(IDM_LOGWINDOW));
|
Item->Check(FindWindowById(IDM_LOGWINDOW_PARENT));
|
||||||
Item = new wxMenuItem(&MenuPopup, IDM_FLOAT_CONSOLEWINDOW, WindowNameFromId(IDM_CONSOLEWINDOW), wxT(""), wxITEM_CHECK);
|
Item = new wxMenuItem(&MenuPopup, IDM_FLOAT_CONSOLEWINDOW, WindowNameFromId(IDM_CONSOLEWINDOW), wxT(""), wxITEM_CHECK);
|
||||||
MenuPopup.Append(Item);
|
MenuPopup.Append(Item);
|
||||||
Item->Check(FindWindowById(IDM_CONSOLEWINDOW) && !GetNootebookPageFromId(IDM_CONSOLEWINDOW));
|
Item->Check(FindWindowById(IDM_CONSOLEWINDOW_PARENT));
|
||||||
Item->Enable(false);
|
|
||||||
MenuPopup.Append(new wxMenuItem(&MenuPopup));
|
MenuPopup.Append(new wxMenuItem(&MenuPopup));
|
||||||
|
Item = new wxMenuItem(&MenuPopup, IDM_FLOAT_CODEWINDOW, WindowNameFromId(IDM_CODEWINDOW), wxT(""), wxITEM_CHECK);
|
||||||
|
MenuPopup.Append(Item);
|
||||||
|
Item->Check(FindWindowById(IDM_CODEWINDOW_PARENT));
|
||||||
Item = new wxMenuItem(&MenuPopup, IDM_FLOAT_REGISTERWINDOW, WindowNameFromId(IDM_REGISTERWINDOW), wxT(""), wxITEM_CHECK);
|
Item = new wxMenuItem(&MenuPopup, IDM_FLOAT_REGISTERWINDOW, WindowNameFromId(IDM_REGISTERWINDOW), wxT(""), wxITEM_CHECK);
|
||||||
MenuPopup.Append(Item);
|
MenuPopup.Append(Item);
|
||||||
Item->Check(FindWindowById(IDM_REGISTERWINDOW) && !GetNootebookPageFromId(IDM_REGISTERWINDOW));
|
Item->Check(FindWindowById(IDM_REGISTERWINDOW_PARENT));
|
||||||
Item = new wxMenuItem(&MenuPopup, IDM_FLOAT_BREAKPOINTWINDOW, WindowNameFromId(IDM_BREAKPOINTWINDOW), wxT(""), wxITEM_CHECK);
|
Item = new wxMenuItem(&MenuPopup, IDM_FLOAT_BREAKPOINTWINDOW, WindowNameFromId(IDM_BREAKPOINTWINDOW), wxT(""), wxITEM_CHECK);
|
||||||
MenuPopup.Append(Item);
|
MenuPopup.Append(Item);
|
||||||
Item->Check(FindWindowById(IDM_BREAKPOINTWINDOW) && !GetNootebookPageFromId(IDM_BREAKPOINTWINDOW));
|
Item->Check(FindWindowById(IDM_BREAKPOINTWINDOW_PARENT));
|
||||||
Item = new wxMenuItem(&MenuPopup, IDM_FLOAT_MEMORYWINDOW, WindowNameFromId(IDM_MEMORYWINDOW), wxT(""), wxITEM_CHECK);
|
Item = new wxMenuItem(&MenuPopup, IDM_FLOAT_MEMORYWINDOW, WindowNameFromId(IDM_MEMORYWINDOW), wxT(""), wxITEM_CHECK);
|
||||||
MenuPopup.Append(Item);
|
MenuPopup.Append(Item);
|
||||||
Item->Check(FindWindowById(IDM_MEMORYWINDOW) && !GetNootebookPageFromId(IDM_MEMORYWINDOW));
|
Item->Check(FindWindowById(IDM_MEMORYWINDOW_PARENT));
|
||||||
Item = new wxMenuItem(&MenuPopup, IDM_FLOAT_JITWINDOW, WindowNameFromId(IDM_JITWINDOW), wxT(""), wxITEM_CHECK);
|
Item = new wxMenuItem(&MenuPopup, IDM_FLOAT_JITWINDOW, WindowNameFromId(IDM_JITWINDOW), wxT(""), wxITEM_CHECK);
|
||||||
MenuPopup.Append(Item);
|
MenuPopup.Append(Item);
|
||||||
Item->Check(FindWindowById(IDM_JITWINDOW) && !GetNootebookPageFromId(IDM_JITWINDOW));
|
Item->Check(FindWindowById(IDM_JITWINDOW_PARENT));
|
||||||
Item = new wxMenuItem(&MenuPopup, IDM_FLOAT_SOUNDWINDOW, WindowNameFromId(IDM_SOUNDWINDOW), wxT(""), wxITEM_CHECK);
|
Item = new wxMenuItem(&MenuPopup, IDM_FLOAT_SOUNDWINDOW, WindowNameFromId(IDM_SOUNDWINDOW), wxT(""), wxITEM_CHECK);
|
||||||
MenuPopup.Append(Item);
|
MenuPopup.Append(Item);
|
||||||
Item->Check(FindWindowById(IDM_SOUNDWINDOW) && !GetNootebookPageFromId(IDM_SOUNDWINDOW));
|
Item->Check(FindWindowById(IDM_SOUNDWINDOW_PARENT));
|
||||||
Item->Enable(false);
|
Item->Enable(false);
|
||||||
Item = new wxMenuItem(&MenuPopup, IDM_FLOAT_VIDEOWINDOW, WindowNameFromId(IDM_VIDEOWINDOW), wxT(""), wxITEM_CHECK);
|
Item = new wxMenuItem(&MenuPopup, IDM_FLOAT_VIDEOWINDOW, WindowNameFromId(IDM_VIDEOWINDOW), wxT(""), wxITEM_CHECK);
|
||||||
MenuPopup.Append(Item);
|
MenuPopup.Append(Item);
|
||||||
Item->Check(FindWindowById(IDM_VIDEOWINDOW) && !GetNootebookPageFromId(IDM_VIDEOWINDOW));
|
Item->Check(FindWindowById(IDM_VIDEOWINDOW_PARENT));
|
||||||
Item->Enable(false);
|
Item->Enable(false);
|
||||||
|
|
||||||
// Line up our menu with the cursor
|
// Line up our menu with the cursor
|
||||||
|
@ -349,6 +346,8 @@ void CFrame::OnAllowNotebookDnD(wxAuiNotebookEvent& event)
|
||||||
{
|
{
|
||||||
event.Skip();
|
event.Skip();
|
||||||
event.Allow();
|
event.Allow();
|
||||||
|
ResizeConsole();
|
||||||
|
|
||||||
// wxAuiNotebook* Ctrl = (wxAuiNotebook*)event.GetEventObject();
|
// wxAuiNotebook* Ctrl = (wxAuiNotebook*)event.GetEventObject();
|
||||||
// If we drag away the last one the tab bar goes away and we can't add any panes to it
|
// If we drag away the last one the tab bar goes away and we can't add any panes to it
|
||||||
//if (Ctrl->GetPageCount() == 1) Ctrl->AddPage(CreateEmptyPanel(), wxT("<>"), true);
|
//if (Ctrl->GetPageCount() == 1) Ctrl->AddPage(CreateEmptyPanel(), wxT("<>"), true);
|
||||||
|
@ -372,41 +371,109 @@ void CFrame::HidePane()
|
||||||
SetSimplePaneSize();
|
SetSimplePaneSize();
|
||||||
}
|
}
|
||||||
|
|
||||||
void CFrame::DoRemovePageString(wxString Str, bool /*_hide*/, bool _destroy)
|
void CFrame::DoRemovePageString(wxString Str, bool /*_Hide*/, bool _Destroy)
|
||||||
{
|
{
|
||||||
for (u32 i = 0; i < m_Mgr->GetAllPanes().GetCount(); i++)
|
wxWindow * Win = FindWindowByName(Str);
|
||||||
|
|
||||||
|
if (Win)
|
||||||
{
|
{
|
||||||
if (!m_Mgr->GetAllPanes().Item(i).window->IsKindOf(CLASSINFO(wxAuiNotebook))) continue;
|
Win->Reparent(this);
|
||||||
wxAuiNotebook * NB = (wxAuiNotebook*)m_Mgr->GetAllPanes().Item(i).window;
|
Win->Hide();
|
||||||
for (u32 j = 0; j < NB->GetPageCount(); j++)
|
FindWindowById(WindowParentIdFromChildId(Win->GetId()))->Destroy();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
for (u32 i = 0; i < m_Mgr->GetAllPanes().GetCount(); i++)
|
||||||
{
|
{
|
||||||
if (NB->GetPageText(j).IsSameAs(Str))
|
if (!m_Mgr->GetAllPanes().Item(i).window->IsKindOf(CLASSINFO(wxAuiNotebook))) continue;
|
||||||
|
wxAuiNotebook * NB = (wxAuiNotebook*)m_Mgr->GetAllPanes().Item(i).window;
|
||||||
|
for (u32 j = 0; j < NB->GetPageCount(); j++)
|
||||||
{
|
{
|
||||||
if (!_destroy)
|
if (NB->GetPageText(j).IsSameAs(Str))
|
||||||
{
|
{
|
||||||
// Reparent to avoid destruction if the notebook is closed and destroyed
|
if (!_Destroy)
|
||||||
wxWindow * Win = NB->GetPage(j);
|
{
|
||||||
NB->RemovePage(j);
|
// Reparent to avoid destruction if the notebook is closed and destroyed
|
||||||
Win->Reparent(this);
|
wxWindow * Win = NB->GetPage(j);
|
||||||
|
NB->RemovePage(j);
|
||||||
|
Win->Reparent(this);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
NB->DeletePage(j);
|
||||||
|
}
|
||||||
|
//if (_Hide) Win->Hide();
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
else
|
|
||||||
{
|
|
||||||
NB->DeletePage(j);
|
|
||||||
}
|
|
||||||
//if (_hide) Win->Hide();
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
void CFrame::DoAddPage(wxWindow * Win, int i, wxString Name)
|
void CFrame::DoRemovePage(wxWindow * Win, bool _Hide)
|
||||||
|
{
|
||||||
|
// If m_dialog is NULL, then possibly the system didn't report the checked menu item status correctly.
|
||||||
|
// It should be true just after the menu item was selected, if there was no modeless dialog yet.
|
||||||
|
//wxASSERT(Win != NULL);
|
||||||
|
if (!Win) return;
|
||||||
|
|
||||||
|
if (FindWindowById(WindowParentIdFromChildId(Win->GetId())))
|
||||||
|
{
|
||||||
|
Win->Reparent(this);
|
||||||
|
Win->Hide();
|
||||||
|
FindWindowById(WindowParentIdFromChildId(Win->GetId()))->Destroy();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
for (int i = 0; i < GetNotebookCount(); i++)
|
||||||
|
{
|
||||||
|
if (GetNotebookFromId(i)->GetPageIndex(Win) != wxNOT_FOUND)
|
||||||
|
{
|
||||||
|
GetNotebookFromId(i)->RemovePage(GetNotebookFromId(i)->GetPageIndex(Win));
|
||||||
|
// Reparent to avoid destruction if the notebook is closed and destroyed
|
||||||
|
Win->Reparent(this);
|
||||||
|
if (_Hide) Win->Hide();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
void CFrame::DoRemovePageId(wxWindowID Id, bool bHide, bool bDestroy)
|
||||||
|
{
|
||||||
|
if (!FindWindowById(Id)) return;
|
||||||
|
wxWindow * Win = FindWindowById(Id);
|
||||||
|
|
||||||
|
if (FindWindowById(WindowParentIdFromChildId(Id)))
|
||||||
|
{
|
||||||
|
Win->Reparent(this);
|
||||||
|
if (bDestroy)
|
||||||
|
Win->Destroy();
|
||||||
|
else
|
||||||
|
Win->Hide();
|
||||||
|
FindWindowById(WindowParentIdFromChildId(Id))->Destroy();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
for (int i = 0; i < GetNotebookCount(); i++)
|
||||||
|
{
|
||||||
|
if (GetNotebookFromId(i)->GetPageIndex(Win) != wxNOT_FOUND)
|
||||||
|
{
|
||||||
|
GetNotebookFromId(i)->RemovePage(GetNotebookFromId(i)->GetPageIndex(Win));
|
||||||
|
// Reparent to avoid destruction if the notebook is closed and destroyed
|
||||||
|
Win->Reparent(this);
|
||||||
|
if (bHide) Win->Hide();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
void CFrame::DoAddPage(wxWindow * Win, int i, wxString Name, bool Float)
|
||||||
{
|
{
|
||||||
if (!Win) return;
|
if (!Win) return;
|
||||||
if (GetNotebookCount() == 0) return;
|
if (GetNotebookCount() == 0) return;
|
||||||
if (i < 0 || i > GetNotebookCount()-1) i = 0;
|
if (i < 0 || i > GetNotebookCount()-1) i = 0;
|
||||||
if (Win && GetNotebookFromId(i)->GetPageIndex(Win) != wxNOT_FOUND) return;
|
if (Win && GetNotebookFromId(i)->GetPageIndex(Win) != wxNOT_FOUND) return;
|
||||||
GetNotebookFromId(i)->AddPage(Win, Name, true, aNormalFile );
|
if (!Float)
|
||||||
|
GetNotebookFromId(i)->AddPage(Win, Name, true, aNormalFile );
|
||||||
|
else
|
||||||
|
CreateParentFrame(WindowParentIdFromChildId(Win->GetId()), WindowNameFromId(Win->GetId()), Win);
|
||||||
|
|
||||||
//NOTICE_LOG(CONSOLE, "DoAddPage: %i", Win->GetId());
|
//NOTICE_LOG(CONSOLE, "DoAddPage: %i", Win->GetId());
|
||||||
|
|
||||||
|
@ -421,11 +488,11 @@ void CFrame::DoUnfloatPage(int Id)
|
||||||
//NOTICE_LOG(CONSOLE, "DoUnfloatPage: %i", Id);
|
//NOTICE_LOG(CONSOLE, "DoUnfloatPage: %i", Id);
|
||||||
|
|
||||||
wxFrame * Win = (wxFrame*)this->FindWindowById(Id);
|
wxFrame * Win = (wxFrame*)this->FindWindowById(Id);
|
||||||
|
if (!Win) return;
|
||||||
|
|
||||||
wxWindow * Child = Win->GetWindowChildren().Item(0)->GetData();
|
wxWindow * Child = Win->GetWindowChildren().Item(0)->GetData();
|
||||||
Child->Reparent(this);
|
Child->Reparent(this);
|
||||||
// Return the window id
|
DoAddPage(Child, 0, Win->GetTitle(), false);
|
||||||
Child->SetId(Win->GetId());
|
|
||||||
DoAddPage(Child, 0, Win->GetTitle());
|
|
||||||
Win->Destroy();
|
Win->Destroy();
|
||||||
}
|
}
|
||||||
void CFrame::OnFloatingPageClosed(wxCloseEvent& event)
|
void CFrame::OnFloatingPageClosed(wxCloseEvent& event)
|
||||||
|
@ -433,70 +500,30 @@ void CFrame::OnFloatingPageClosed(wxCloseEvent& event)
|
||||||
//NOTICE_LOG(CONSOLE, "OnFloatingPageClosed: %i", event.GetId());
|
//NOTICE_LOG(CONSOLE, "OnFloatingPageClosed: %i", event.GetId());
|
||||||
DoUnfloatPage(event.GetId());
|
DoUnfloatPage(event.GetId());
|
||||||
}
|
}
|
||||||
|
void CFrame::OnFloatingPageSize(wxSizeEvent& event)
|
||||||
void CFrame::DoFloatPage(wxWindow * Win)
|
|
||||||
{
|
{
|
||||||
//NOTICE_LOG(CONSOLE, "DoFloatPage: %i %s", Win->GetId(), WindowNameFromId(Win->GetId()).mb_str());
|
event.Skip();
|
||||||
|
//NOTICE_LOG(CONSOLE, "OnFloatingPageClosed: %i", event.GetId());
|
||||||
if (Win)
|
ResizeConsole();
|
||||||
{
|
|
||||||
for (int i = 0; i < GetNotebookCount(); i++)
|
|
||||||
{
|
|
||||||
if (GetNotebookFromId(i)->GetPageIndex(Win) != wxNOT_FOUND)
|
|
||||||
{
|
|
||||||
GetNotebookFromId(i)->RemovePage(GetNotebookFromId(i)->GetPageIndex(Win));
|
|
||||||
// Reparent to avoid destruction if the notebook is closed and destroyed
|
|
||||||
CreateParentFrame(Win->GetId(), WindowNameFromId(Win->GetId()), Win);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void CFrame::DoRemovePage(wxWindow * Win, bool _Hide)
|
|
||||||
{
|
|
||||||
// If m_dialog is NULL, then possibly the system didn't report the checked menu item status correctly.
|
|
||||||
// It should be true just after the menu item was selected, if there was no modeless dialog yet.
|
|
||||||
//wxASSERT(Win != NULL);
|
|
||||||
|
|
||||||
if (Win)
|
void CFrame::DoFloatNotebookPage(wxWindowID Id)
|
||||||
|
{
|
||||||
|
//NOTICE_LOG(CONSOLE, "DoFloatNotebookPage: %i %s", Win->GetId(), WindowNameFromId(Win->GetId()).mb_str());
|
||||||
|
wxFrame * Win = (wxFrame*)this->FindWindowById(Id);
|
||||||
|
if (!Win) return;
|
||||||
|
|
||||||
|
for (int i = 0; i < GetNotebookCount(); i++)
|
||||||
{
|
{
|
||||||
for (int i = 0; i < GetNotebookCount(); i++)
|
if (GetNotebookFromId(i)->GetPageIndex(Win) != wxNOT_FOUND)
|
||||||
{
|
{
|
||||||
if (GetNotebookFromId(i)->GetPageIndex(Win) != wxNOT_FOUND)
|
GetNotebookFromId(i)->RemovePage(GetNotebookFromId(i)->GetPageIndex(Win));
|
||||||
{
|
// Reparent to avoid destruction if the notebook is closed and destroyed
|
||||||
GetNotebookFromId(i)->RemovePage(GetNotebookFromId(i)->GetPageIndex(Win));
|
CreateParentFrame(WindowParentIdFromChildId(Win->GetId()), WindowNameFromId(Win->GetId()), Win);
|
||||||
// Reparent to avoid destruction if the notebook is closed and destroyed
|
|
||||||
Win->Reparent(this);
|
|
||||||
if (_Hide) Win->Hide();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
wxFrame * CFrame::CreateParentFrame(wxWindowID Id, const wxString& Title, wxWindow * Child)
|
|
||||||
{
|
|
||||||
//NOTICE_LOG(CONSOLE, "CreateParentFrame: %i %s %i", Id, Title.mb_str(), Child->GetId())
|
|
||||||
|
|
||||||
wxFrame * Frame = new wxFrame(this, Id, Title);
|
|
||||||
|
|
||||||
Child->Reparent(Frame);
|
|
||||||
Child->SetId(wxID_ANY);
|
|
||||||
Child->Show();
|
|
||||||
|
|
||||||
wxBoxSizer * m_MainSizer = new wxBoxSizer(wxHORIZONTAL);
|
|
||||||
|
|
||||||
m_MainSizer->Add(Child, 1, wxEXPAND);
|
|
||||||
|
|
||||||
Frame->Connect(wxID_ANY, wxEVT_CLOSE_WINDOW,
|
|
||||||
wxCloseEventHandler(CFrame::OnFloatingPageClosed),
|
|
||||||
(wxObject*)0, this);
|
|
||||||
|
|
||||||
// Main sizer
|
|
||||||
Frame->SetSizer( m_MainSizer );
|
|
||||||
// Minimum frame size
|
|
||||||
Frame->SetMinSize(wxSize(200, -1));
|
|
||||||
Frame->Show();
|
|
||||||
return Frame;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Toolbar
|
// Toolbar
|
||||||
void CFrame::OnDropDownSettingsToolbar(wxAuiToolBarEvent& event)
|
void CFrame::OnDropDownSettingsToolbar(wxAuiToolBarEvent& event)
|
||||||
|
@ -645,11 +672,14 @@ void CFrame::OnDropDownToolbarSelect(wxCommandEvent& event)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
// ------------
|
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
// Functions
|
// Functions
|
||||||
|
// ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
|
||||||
void CFrame::ResetToolbarStyle()
|
void CFrame::ResetToolbarStyle()
|
||||||
{
|
{
|
||||||
wxAuiPaneInfoArray& AllPanes = m_Mgr->GetAllPanes();
|
wxAuiPaneInfoArray& AllPanes = m_Mgr->GetAllPanes();
|
||||||
|
@ -727,59 +757,54 @@ void CFrame::OnSelectPerspective(wxCommandEvent& event)
|
||||||
|
|
||||||
void CFrame::ResizeConsole()
|
void CFrame::ResizeConsole()
|
||||||
{
|
{
|
||||||
for (u32 i = 0; i < m_Mgr->GetAllPanes().GetCount(); i++)
|
#ifdef _WIN32
|
||||||
|
// Get the console parent window
|
||||||
|
wxWindow * Win = FindWindowById(IDM_CONSOLEWINDOW);
|
||||||
|
if (!Win) return;
|
||||||
|
|
||||||
|
// ----------------------------------------------------------
|
||||||
|
// Get OS version
|
||||||
|
// ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
|
||||||
|
int wxBorder, Border, LowerBorder, MenuBar, ScrollBar, WidthReduction;
|
||||||
|
OSVERSIONINFO osvi;
|
||||||
|
ZeroMemory(&osvi, sizeof(OSVERSIONINFO));
|
||||||
|
osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
|
||||||
|
GetVersionEx(&osvi);
|
||||||
|
if (osvi.dwMajorVersion == 6) // Vista (same as 7?)
|
||||||
{
|
{
|
||||||
if (!m_Mgr->GetAllPanes().Item(i).window->IsKindOf(CLASSINFO(wxAuiNotebook))) continue;
|
wxBorder = 2;
|
||||||
for(u32 j = 0; j <= wxDynamicCast(m_Mgr->GetAllPanes().Item(i).window, wxAuiNotebook)->GetPageCount(); j++)
|
Border = 4;
|
||||||
{
|
LowerBorder = 6;
|
||||||
if (wxDynamicCast(m_Mgr->GetAllPanes().Item(i).window, wxAuiNotebook)->GetPageText(j).IsSameAs(wxT("Console")))
|
MenuBar = 30; // Including upper border
|
||||||
{
|
ScrollBar = 19;
|
||||||
#ifdef _WIN32
|
|
||||||
// ----------------------------------------------------------
|
|
||||||
// Get OS version
|
|
||||||
// ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
|
|
||||||
int wxBorder, Border, LowerBorder, MenuBar, ScrollBar, WidthReduction;
|
|
||||||
OSVERSIONINFO osvi;
|
|
||||||
ZeroMemory(&osvi, sizeof(OSVERSIONINFO));
|
|
||||||
osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
|
|
||||||
GetVersionEx(&osvi);
|
|
||||||
if (osvi.dwMajorVersion == 6) // Vista (same as 7?)
|
|
||||||
{
|
|
||||||
wxBorder = 2;
|
|
||||||
Border = 4;
|
|
||||||
LowerBorder = 6;
|
|
||||||
MenuBar = 30; // Including upper border
|
|
||||||
ScrollBar = 19;
|
|
||||||
}
|
|
||||||
else // XP
|
|
||||||
{
|
|
||||||
wxBorder = 2;
|
|
||||||
Border = 4;
|
|
||||||
LowerBorder = 6;
|
|
||||||
MenuBar = 30;
|
|
||||||
ScrollBar = 19;
|
|
||||||
}
|
|
||||||
WidthReduction = 30 - Border;
|
|
||||||
// --------------------------------
|
|
||||||
// Get the client size
|
|
||||||
int X = m_Mgr->GetAllPanes().Item(i).window->GetClientSize().GetX();
|
|
||||||
int Y = m_Mgr->GetAllPanes().Item(i).window->GetClientSize().GetY();
|
|
||||||
int InternalWidth = X - wxBorder*2 - ScrollBar;
|
|
||||||
int InternalHeight = Y - wxBorder*2;
|
|
||||||
int WindowWidth = InternalWidth + Border*2;
|
|
||||||
int WindowHeight = InternalHeight;
|
|
||||||
// Resize buffer
|
|
||||||
ConsoleListener* Console = LogManager::GetInstance()->getConsoleListener();
|
|
||||||
//Console->Log(LogTypes::LNOTICE, StringFromFormat("Window WxH:%i %i\n", X, Y).c_str());
|
|
||||||
Console->PixelSpace(0,0, InternalWidth,InternalHeight, false);
|
|
||||||
// Move the window to hide the border
|
|
||||||
MoveWindow(GetConsoleWindow(), -Border-wxBorder,-MenuBar-wxBorder, WindowWidth + 100,WindowHeight, true);
|
|
||||||
// Move it to the bottom of the view order so that it doesn't hide the notebook tabs
|
|
||||||
// ...
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
else // XP
|
||||||
|
{
|
||||||
|
wxBorder = 2;
|
||||||
|
Border = 4;
|
||||||
|
LowerBorder = 6;
|
||||||
|
MenuBar = 30;
|
||||||
|
ScrollBar = 19;
|
||||||
|
}
|
||||||
|
WidthReduction = 30 - Border;
|
||||||
|
// --------------------------------
|
||||||
|
// Get the client size
|
||||||
|
int X = Win->GetClientSize().GetX();
|
||||||
|
int Y = Win->GetClientSize().GetY();
|
||||||
|
int InternalWidth = X - wxBorder*2 - ScrollBar;
|
||||||
|
int InternalHeight = Y - wxBorder*2;
|
||||||
|
int WindowWidth = InternalWidth + Border*2 + /*max out the width in the word wrap mode*/ 100;
|
||||||
|
int WindowHeight = InternalHeight + MenuBar;
|
||||||
|
// Resize buffer
|
||||||
|
ConsoleListener* Console = LogManager::GetInstance()->getConsoleListener();
|
||||||
|
Console->PixelSpace(0,0, InternalWidth,InternalHeight, false);
|
||||||
|
// Move the window to hide the border
|
||||||
|
MoveWindow(GetConsoleWindow(), -Border-wxBorder,-MenuBar-wxBorder, WindowWidth + 100,WindowHeight, true);
|
||||||
|
// Move it to the bottom of the view order so that it doesn't hide the notebook tabs
|
||||||
|
// ...
|
||||||
|
// Log
|
||||||
|
//NOTICE_LOG(CONSOLE, "Size: %ix%i", X, Y);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void CFrame::SetSimplePaneSize()
|
void CFrame::SetSimplePaneSize()
|
||||||
|
@ -1047,10 +1072,15 @@ void CFrame::AddPane()
|
||||||
AddRemoveBlankPage();
|
AddRemoveBlankPage();
|
||||||
m_Mgr->Update();
|
m_Mgr->Update();
|
||||||
}
|
}
|
||||||
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
// ------------
|
|
||||||
|
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
// Utility
|
// Utility
|
||||||
|
// ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
|
||||||
|
|
||||||
int CFrame::Limit(int i, int Low, int High)
|
int CFrame::Limit(int i, int Low, int High)
|
||||||
{
|
{
|
||||||
|
@ -1167,6 +1197,22 @@ int CFrame::GetNootebookAffiliation(wxString Name)
|
||||||
}
|
}
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
wxWindowID CFrame::WindowParentIdFromChildId(int Id)
|
||||||
|
{
|
||||||
|
switch(Id)
|
||||||
|
{
|
||||||
|
case IDM_LOGWINDOW: return IDM_LOGWINDOW_PARENT;
|
||||||
|
case IDM_CONSOLEWINDOW: return IDM_CONSOLEWINDOW_PARENT;
|
||||||
|
case IDM_CODEWINDOW: return IDM_CODEWINDOW_PARENT;
|
||||||
|
case IDM_REGISTERWINDOW: return IDM_REGISTERWINDOW_PARENT;
|
||||||
|
case IDM_BREAKPOINTWINDOW: return IDM_BREAKPOINTWINDOW_PARENT;
|
||||||
|
case IDM_MEMORYWINDOW: return IDM_MEMORYWINDOW_PARENT;
|
||||||
|
case IDM_JITWINDOW: return IDM_JITWINDOW_PARENT;
|
||||||
|
case IDM_SOUNDWINDOW: return IDM_SOUNDWINDOW_PARENT;
|
||||||
|
case IDM_VIDEOWINDOW: return IDM_VIDEOWINDOW_PARENT;
|
||||||
|
}
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
wxString CFrame::WindowNameFromId(int Id)
|
wxString CFrame::WindowNameFromId(int Id)
|
||||||
{
|
{
|
||||||
switch(Id)
|
switch(Id)
|
||||||
|
@ -1256,3 +1302,4 @@ void CFrame::HideAllNotebooks(bool Window)
|
||||||
}
|
}
|
||||||
m_Mgr->Update();
|
m_Mgr->Update();
|
||||||
}
|
}
|
||||||
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
@ -198,6 +198,16 @@ enum
|
||||||
IDM_PERSPECTIVES_100 = IDM_PERSPECTIVES_0 + 100,
|
IDM_PERSPECTIVES_100 = IDM_PERSPECTIVES_0 + 100,
|
||||||
// --------------------------------------------------------------
|
// --------------------------------------------------------------
|
||||||
|
|
||||||
|
IDM_LOGWINDOW_PARENT, // Window IDs
|
||||||
|
IDM_CONSOLEWINDOW_PARENT,
|
||||||
|
IDM_CODEWINDOW_PARENT,
|
||||||
|
IDM_REGISTERWINDOW_PARENT,
|
||||||
|
IDM_BREAKPOINTWINDOW_PARENT,
|
||||||
|
IDM_MEMORYWINDOW_PARENT,
|
||||||
|
IDM_JITWINDOW_PARENT,
|
||||||
|
IDM_SOUNDWINDOW_PARENT,
|
||||||
|
IDM_VIDEOWINDOW_PARENT,
|
||||||
|
|
||||||
IDM_TOGGLE_DUALCORE, // Other
|
IDM_TOGGLE_DUALCORE, // Other
|
||||||
IDM_TOGGLE_SKIPIDLE,
|
IDM_TOGGLE_SKIPIDLE,
|
||||||
IDM_TOGGLE_TOOLBAR,
|
IDM_TOGGLE_TOOLBAR,
|
||||||
|
|
Loading…
Reference in New Issue