123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038 |
- // Copyright 2009 Dolphin Emulator Project
- // Licensed under GPLv2+
- // Refer to the license.txt file included.
- #include <cstddef>
- #include <string>
- #include <vector>
- #include <wx/frame.h>
- #include <wx/list.h>
- #include <wx/menu.h>
- #include <wx/msgdlg.h>
- #include <wx/panel.h>
- #include <wx/rtti.h>
- #include <wx/sizer.h>
- #include <wx/statusbr.h>
- #include <wx/textdlg.h>
- #include <wx/toplevel.h>
- #include <wx/aui/auibar.h>
- #include <wx/aui/auibook.h>
- #include <wx/aui/framemanager.h>
- #include "Common/CommonTypes.h"
- #include "Common/FileUtil.h"
- #include "Common/IniFile.h"
- #include "Common/MathUtil.h"
- #include "Common/StringUtil.h"
- #include "Common/Logging/ConsoleListener.h"
- #include "Core/ConfigManager.h"
- #include "DolphinWX/Frame.h"
- #include "DolphinWX/Globals.h"
- #include "DolphinWX/LogConfigWindow.h"
- #include "DolphinWX/LogWindow.h"
- #include "DolphinWX/WxUtils.h"
- #include "DolphinWX/Debugger/CodeWindow.h"
- // ------------
- // Aui events
- void CFrame::OnManagerResize(wxAuiManagerEvent& event)
- {
- if (!g_pCodeWindow && m_LogWindow &&
- m_Mgr->GetPane("Pane 1").IsShown() &&
- !m_Mgr->GetPane("Pane 1").IsFloating())
- {
- m_LogWindow->x = m_Mgr->GetPane("Pane 1").rect.GetWidth();
- m_LogWindow->y = m_Mgr->GetPane("Pane 1").rect.GetHeight();
- m_LogWindow->winpos = m_Mgr->GetPane("Pane 1").dock_direction;
- }
- event.Skip();
- }
- void CFrame::OnPaneClose(wxAuiManagerEvent& event)
- {
- event.Veto();
- wxAuiNotebook * nb = (wxAuiNotebook*)event.pane->window;
- if (!nb) return;
- if (!g_pCodeWindow)
- {
- if (nb->GetPage(0)->GetId() == IDM_LOG_WINDOW ||
- nb->GetPage(0)->GetId() == IDM_LOG_CONFIG_WINDOW)
- {
- SConfig::GetInstance().m_InterfaceLogWindow = false;
- SConfig::GetInstance().m_InterfaceLogConfigWindow = false;
- ToggleLogWindow(false);
- ToggleLogConfigWindow(false);
- }
- }
- else
- {
- if (GetNotebookCount() == 1)
- {
- wxMessageBox(_("At least one pane must remain open."),
- _("Notice"), wxOK, this);
- }
- else if (nb->GetPageCount() != 0 && !nb->GetPageText(0).IsSameAs("<>"))
- {
- wxMessageBox(_("You can't close panes that have pages in them."),
- _("Notice"), wxOK, this);
- }
- else
- {
- // Detach and delete the empty notebook
- event.pane->DestroyOnClose(true);
- m_Mgr->ClosePane(*event.pane);
- }
- }
- m_Mgr->Update();
- }
- void CFrame::ToggleLogWindow(bool bShow)
- {
- if (!m_LogWindow)
- return;
- GetMenuBar()->FindItem(IDM_LOG_WINDOW)->Check(bShow);
- if (bShow)
- {
- // Create a new log window if it doesn't exist.
- if (!m_LogWindow)
- {
- m_LogWindow = new CLogWindow(this, IDM_LOG_WINDOW);
- }
- m_LogWindow->Enable();
- DoAddPage(m_LogWindow,
- g_pCodeWindow ? g_pCodeWindow->iNbAffiliation[0] : 0,
- g_pCodeWindow ? bFloatWindow[0] : false);
- }
- else
- {
- // Hiding the log window, so disable it and remove it.
- m_LogWindow->Disable();
- DoRemovePage(m_LogWindow, true);
- }
- // Hide or Show the pane
- if (!g_pCodeWindow)
- TogglePane();
- }
- void CFrame::ToggleLogConfigWindow(bool bShow)
- {
- GetMenuBar()->FindItem(IDM_LOG_CONFIG_WINDOW)->Check(bShow);
- if (bShow)
- {
- if (!m_LogConfigWindow)
- m_LogConfigWindow = new LogConfigWindow(this, m_LogWindow, IDM_LOG_CONFIG_WINDOW);
- const int nbIndex = IDM_LOG_CONFIG_WINDOW - IDM_LOG_WINDOW;
- DoAddPage(m_LogConfigWindow,
- g_pCodeWindow ? g_pCodeWindow->iNbAffiliation[nbIndex] : 0,
- g_pCodeWindow ? bFloatWindow[nbIndex] : false);
- }
- else
- {
- DoRemovePage(m_LogConfigWindow, false);
- m_LogConfigWindow = nullptr;
- }
- // Hide or Show the pane
- if (!g_pCodeWindow)
- TogglePane();
- }
- void CFrame::OnToggleWindow(wxCommandEvent& event)
- {
- bool bShow = GetMenuBar()->IsChecked(event.GetId());
- switch (event.GetId())
- {
- case IDM_LOG_WINDOW:
- if (!g_pCodeWindow)
- SConfig::GetInstance().m_InterfaceLogWindow = bShow;
- ToggleLogWindow(bShow);
- break;
- case IDM_LOG_CONFIG_WINDOW:
- if (!g_pCodeWindow)
- SConfig::GetInstance().m_InterfaceLogConfigWindow = bShow;
- ToggleLogConfigWindow(bShow);
- break;
- case IDM_REGISTER_WINDOW:
- g_pCodeWindow->ToggleRegisterWindow(bShow);
- break;
- case IDM_WATCH_WINDOW:
- g_pCodeWindow->ToggleWatchWindow(bShow);
- break;
- case IDM_BREAKPOINT_WINDOW:
- g_pCodeWindow->ToggleBreakPointWindow(bShow);
- break;
- case IDM_MEMORY_WINDOW:
- g_pCodeWindow->ToggleMemoryWindow(bShow);
- break;
- case IDM_JIT_WINDOW:
- g_pCodeWindow->ToggleJitWindow(bShow);
- break;
- case IDM_SOUND_WINDOW:
- g_pCodeWindow->ToggleSoundWindow(bShow);
- break;
- case IDM_VIDEO_WINDOW:
- g_pCodeWindow->ToggleVideoWindow(bShow);
- break;
- }
- }
- // Notebooks
- // ---------------------
- void CFrame::ClosePages()
- {
- ToggleLogWindow(false);
- ToggleLogConfigWindow(false);
- if (g_pCodeWindow)
- {
- g_pCodeWindow->ToggleCodeWindow(false);
- g_pCodeWindow->ToggleRegisterWindow(false);
- g_pCodeWindow->ToggleWatchWindow(false);
- g_pCodeWindow->ToggleBreakPointWindow(false);
- g_pCodeWindow->ToggleMemoryWindow(false);
- g_pCodeWindow->ToggleJitWindow(false);
- g_pCodeWindow->ToggleSoundWindow(false);
- g_pCodeWindow->ToggleVideoWindow(false);
- }
- }
- void CFrame::OnNotebookPageChanged(wxAuiNotebookEvent& event)
- {
- event.Skip();
- if (!g_pCodeWindow)
- return;
- // Remove the blank page if any
- AddRemoveBlankPage();
- // Update the notebook affiliation
- for (int i = IDM_LOG_WINDOW; i <= IDM_CODE_WINDOW; i++)
- {
- if (GetNotebookAffiliation(i) >= 0)
- g_pCodeWindow->iNbAffiliation[i - IDM_LOG_WINDOW] = GetNotebookAffiliation(i);
- }
- }
- void CFrame::OnNotebookPageClose(wxAuiNotebookEvent& event)
- {
- // Override event
- event.Veto();
- wxAuiNotebook* Ctrl = (wxAuiNotebook*)event.GetEventObject();
- if (Ctrl->GetPage(event.GetSelection())->GetId() == IDM_LOG_WINDOW)
- ToggleLogWindow(false);
- if (Ctrl->GetPage(event.GetSelection())->GetId() == IDM_LOG_CONFIG_WINDOW)
- ToggleLogConfigWindow(false);
- if (Ctrl->GetPage(event.GetSelection())->GetId() == IDM_REGISTER_WINDOW)
- g_pCodeWindow->ToggleRegisterWindow(false);
- if (Ctrl->GetPage(event.GetSelection())->GetId() == IDM_WATCH_WINDOW)
- g_pCodeWindow->ToggleWatchWindow(false);
- if (Ctrl->GetPage(event.GetSelection())->GetId() == IDM_BREAKPOINT_WINDOW)
- g_pCodeWindow->ToggleBreakPointWindow(false);
- if (Ctrl->GetPage(event.GetSelection())->GetId() == IDM_JIT_WINDOW)
- g_pCodeWindow->ToggleJitWindow(false);
- if (Ctrl->GetPage(event.GetSelection())->GetId() == IDM_MEMORY_WINDOW)
- g_pCodeWindow->ToggleMemoryWindow(false);
- if (Ctrl->GetPage(event.GetSelection())->GetId() == IDM_SOUND_WINDOW)
- g_pCodeWindow->ToggleSoundWindow(false);
- if (Ctrl->GetPage(event.GetSelection())->GetId() == IDM_VIDEO_WINDOW)
- g_pCodeWindow->ToggleVideoWindow(false);
- }
- void CFrame::OnFloatingPageClosed(wxCloseEvent& event)
- {
- ToggleFloatWindow(event.GetId() - IDM_LOG_WINDOW_PARENT + IDM_FLOAT_LOG_WINDOW);
- }
- void CFrame::OnFloatingPageSize(wxSizeEvent& event)
- {
- event.Skip();
- }
- void CFrame::OnFloatWindow(wxCommandEvent& event)
- {
- ToggleFloatWindow(event.GetId());
- }
- void CFrame::ToggleFloatWindow(int Id)
- {
- wxWindowID WinId = Id - IDM_FLOAT_LOG_WINDOW + IDM_LOG_WINDOW;
- if (GetNotebookPageFromId(WinId))
- {
- DoFloatNotebookPage(WinId);
- bFloatWindow[WinId - IDM_LOG_WINDOW] = true;
- }
- else
- {
- if (FindWindowById(WinId))
- DoUnfloatPage(WinId - IDM_LOG_WINDOW + IDM_LOG_WINDOW_PARENT);
- bFloatWindow[WinId - IDM_LOG_WINDOW] = false;
- }
- }
- void CFrame::DoFloatNotebookPage(wxWindowID Id)
- {
- wxPanel *Win = (wxPanel*)FindWindowById(Id);
- if (!Win) return;
- for (int i = 0; i < GetNotebookCount(); i++)
- {
- wxAuiNotebook *nb = GetNotebookFromId(i);
- if (nb->GetPageIndex(Win) != wxNOT_FOUND)
- {
- nb->RemovePage(nb->GetPageIndex(Win));
- // Create the parent frame and reparent the window
- CreateParentFrame(Win->GetId() + IDM_LOG_WINDOW_PARENT - IDM_LOG_WINDOW,
- Win->GetName(), Win);
- if (nb->GetPageCount() == 0)
- AddRemoveBlankPage();
- }
- }
- }
- void CFrame::DoUnfloatPage(int Id)
- {
- wxFrame * Win = (wxFrame*)FindWindowById(Id);
- if (!Win) return;
- wxWindow * Child = Win->GetChildren().Item(0)->GetData();
- Child->Reparent(this);
- DoAddPage(Child, g_pCodeWindow->iNbAffiliation[Child->GetId() - IDM_LOG_WINDOW], false);
- Win->Destroy();
- }
- void CFrame::OnTab(wxAuiNotebookEvent& event)
- {
- event.Skip();
- if (!g_pCodeWindow) return;
- // Create the popup menu
- wxMenu MenuPopup;
- wxMenuItem* Item = new wxMenuItem(&MenuPopup, wxID_ANY, _("Select floating windows"));
- MenuPopup.Append(Item);
- Item->Enable(false);
- MenuPopup.Append(new wxMenuItem(&MenuPopup));
- for (int i = IDM_LOG_WINDOW; i <= IDM_CODE_WINDOW; i++)
- {
- wxWindow *Win = FindWindowById(i);
- if (Win && Win->IsEnabled())
- {
- Item = new wxMenuItem(&MenuPopup, i + IDM_FLOAT_LOG_WINDOW - IDM_LOG_WINDOW,
- Win->GetName(), "", wxITEM_CHECK);
- MenuPopup.Append(Item);
- Item->Check(!!FindWindowById(i + IDM_LOG_WINDOW_PARENT - IDM_LOG_WINDOW));
- }
- }
- // Line up our menu with the cursor
- wxPoint Pt = ::wxGetMousePosition();
- Pt = ScreenToClient(Pt);
- // Show
- PopupMenu(&MenuPopup, Pt);
- }
- void CFrame::OnAllowNotebookDnD(wxAuiNotebookEvent& event)
- {
- event.Skip();
- event.Allow();
- }
- void CFrame::ShowResizePane()
- {
- if (!m_LogWindow) return;
- // Make sure the size is sane
- if (m_LogWindow->x > GetClientRect().GetWidth())
- m_LogWindow->x = GetClientRect().GetWidth() / 2;
- if (m_LogWindow->y > GetClientRect().GetHeight())
- m_LogWindow->y = GetClientRect().GetHeight() / 2;
- wxAuiPaneInfo &pane = m_Mgr->GetPane("Pane 1");
- // Hide first otherwise a resize doesn't work
- pane.Hide();
- m_Mgr->Update();
- pane.BestSize(m_LogWindow->x, m_LogWindow->y)
- .MinSize(m_LogWindow->x, m_LogWindow->y)
- .Direction(m_LogWindow->winpos).Show();
- m_Mgr->Update();
- // Reset the minimum size of the pane
- pane.MinSize(-1, -1);
- m_Mgr->Update();
- }
- void CFrame::TogglePane()
- {
- // Get the first notebook
- wxAuiNotebook * NB = nullptr;
- for (u32 i = 0; i < m_Mgr->GetAllPanes().GetCount(); i++)
- {
- if (m_Mgr->GetAllPanes()[i].window->IsKindOf(CLASSINFO(wxAuiNotebook)))
- NB = (wxAuiNotebook*)m_Mgr->GetAllPanes()[i].window;
- }
- if (NB)
- {
- if (NB->GetPageCount() == 0)
- {
- m_Mgr->GetPane("Pane 1").Hide();
- m_Mgr->Update();
- }
- else
- {
- ShowResizePane();
- }
- }
- }
- void CFrame::DoRemovePage(wxWindow *Win, bool bHide)
- {
- if (!Win) return;
- wxWindow *Parent = FindWindowById(Win->GetId() +
- IDM_LOG_WINDOW_PARENT - IDM_LOG_WINDOW);
- if (Parent)
- {
- if (bHide)
- {
- Win->Hide();
- Win->Reparent(this);
- }
- else
- {
- Win->Destroy();
- }
- Parent->Destroy();
- }
- else
- {
- for (int i = 0; i < GetNotebookCount(); i++)
- {
- int PageIndex = GetNotebookFromId(i)->GetPageIndex(Win);
- if (PageIndex != wxNOT_FOUND)
- {
- GetNotebookFromId(i)->RemovePage(PageIndex);
- if (bHide)
- {
- Win->Hide();
- Win->Reparent(this);
- }
- else
- {
- Win->Destroy();
- }
- }
- }
- }
- if (g_pCodeWindow)
- AddRemoveBlankPage();
- }
- void CFrame::DoAddPage(wxWindow *Win, int i, bool Float)
- {
- if (!Win) return;
- // Ensure accessor remains within valid bounds.
- if (i < 0 || i > GetNotebookCount() - 1)
- i = 0;
- // The page was already previously added, no need to add it again.
- if (Win && GetNotebookFromId(i)->GetPageIndex(Win) != wxNOT_FOUND)
- return;
- if (!Float)
- GetNotebookFromId(i)->AddPage(Win, Win->GetName(), true);
- else
- CreateParentFrame(Win->GetId() + IDM_LOG_WINDOW_PARENT - IDM_LOG_WINDOW,
- Win->GetName(), Win);
- }
- void CFrame::PopulateSavedPerspectives()
- {
- // If the perspective submenu hasn't been created yet, return
- if (!m_SavedPerspectives) return;
- // Delete all saved perspective menu items
- while (m_SavedPerspectives->GetMenuItemCount() != 0)
- {
- // Delete the first menu item in the list (while there are menu items)
- m_SavedPerspectives->Delete(m_SavedPerspectives->FindItemByPosition(0));
- }
- if (Perspectives.size() > 0)
- {
- for (u32 i = 0; i < Perspectives.size(); i++)
- {
- wxMenuItem* mItem = new wxMenuItem(m_SavedPerspectives, IDM_PERSPECTIVES_0 + i,
- StrToWxStr(Perspectives[i].Name), "", wxITEM_CHECK);
- m_SavedPerspectives->Append(mItem);
- if (i == ActivePerspective)
- {
- mItem->Check(true);
- }
- }
- }
- }
- void CFrame::OnPerspectiveMenu(wxCommandEvent& event)
- {
- ClearStatusBar();
- switch (event.GetId())
- {
- case IDM_SAVE_PERSPECTIVE:
- if (Perspectives.size() == 0)
- {
- wxMessageBox(_("Please create a perspective before saving"),
- _("Notice"), wxOK, this);
- return;
- }
- SaveIniPerspectives();
- GetStatusBar()->SetStatusText(StrToWxStr(std::string
- ("Saved " + Perspectives[ActivePerspective].Name)), 0);
- break;
- case IDM_PERSPECTIVES_ADD_PANE_TOP:
- AddPane(ADD_PANE_TOP);
- break;
- case IDM_PERSPECTIVES_ADD_PANE_BOTTOM:
- AddPane(ADD_PANE_BOTTOM);
- break;
- case IDM_PERSPECTIVES_ADD_PANE_LEFT:
- AddPane(ADD_PANE_LEFT);
- break;
- case IDM_PERSPECTIVES_ADD_PANE_RIGHT:
- AddPane(ADD_PANE_RIGHT);
- break;
- case IDM_PERSPECTIVES_ADD_PANE_CENTER:
- AddPane(ADD_PANE_CENTER);
- break;
- case IDM_EDIT_PERSPECTIVES:
- m_bEdit = event.IsChecked();
- TogglePaneStyle(m_bEdit, IDM_EDIT_PERSPECTIVES);
- break;
- case IDM_ADD_PERSPECTIVE:
- {
- wxTextEntryDialog dlg(this,
- _("Enter a name for the new perspective:"),
- _("Create new perspective"));
- wxString DefaultValue = wxString::Format(_("Perspective %d"), (int)(Perspectives.size() + 1));
- dlg.SetValue(DefaultValue);
- int Return = 0;
- bool DlgOk = false;
- while (!DlgOk)
- {
- Return = dlg.ShowModal();
- if (Return == wxID_CANCEL)
- {
- return;
- }
- else if (dlg.GetValue().Find(",") != -1)
- {
- wxMessageBox(_("The name cannot contain the character ','"),
- _("Notice"), wxOK, this);
- wxString Str = dlg.GetValue();
- Str.Replace(",", "", true);
- dlg.SetValue(Str);
- }
- else if (dlg.GetValue().IsSameAs(""))
- {
- wxMessageBox(_("The name cannot be empty"),
- _("Notice"), wxOK, this);
- dlg.SetValue(DefaultValue);
- }
- else
- {
- DlgOk = true;
- }
- }
- SPerspectives Tmp;
- Tmp.Name = WxStrToStr(dlg.GetValue());
- Tmp.Perspective = m_Mgr->SavePerspective();
- ActivePerspective = (u32)Perspectives.size();
- Perspectives.push_back(Tmp);
- UpdateCurrentPerspective();
- PopulateSavedPerspectives();
- }
- break;
- case IDM_TAB_SPLIT:
- m_bTabSplit = event.IsChecked();
- ToggleNotebookStyle(m_bTabSplit, wxAUI_NB_TAB_SPLIT);
- break;
- case IDM_NO_DOCKING:
- m_bNoDocking = event.IsChecked();
- TogglePaneStyle(m_bNoDocking, IDM_NO_DOCKING);
- break;
- }
- }
- void CFrame::TogglePaneStyle(bool On, int EventId)
- {
- wxAuiPaneInfoArray& AllPanes = m_Mgr->GetAllPanes();
- for (u32 i = 0; i < AllPanes.GetCount(); ++i)
- {
- wxAuiPaneInfo& Pane = AllPanes[i];
- if (Pane.window->IsKindOf(CLASSINFO(wxAuiNotebook)))
- {
- // Default
- Pane.CloseButton(true);
- Pane.MaximizeButton(true);
- Pane.MinimizeButton(true);
- Pane.PinButton(true);
- Pane.Show();
- switch (EventId)
- {
- case IDM_EDIT_PERSPECTIVES:
- Pane.CaptionVisible(On);
- Pane.Movable(On);
- Pane.Floatable(On);
- Pane.Dockable(On);
- break;
- }
- Pane.Dockable(!m_bNoDocking);
- }
- }
- m_Mgr->Update();
- }
- void CFrame::ToggleNotebookStyle(bool On, long Style)
- {
- wxAuiPaneInfoArray& AllPanes = m_Mgr->GetAllPanes();
- for (int i = 0, Count = (int)AllPanes.GetCount(); i < Count; ++i)
- {
- wxAuiPaneInfo& Pane = AllPanes[i];
- if (Pane.window->IsKindOf(CLASSINFO(wxAuiNotebook)))
- {
- wxAuiNotebook* NB = (wxAuiNotebook*)Pane.window;
- if (On)
- NB->SetWindowStyleFlag(NB->GetWindowStyleFlag() | Style);
- else
- NB->SetWindowStyleFlag(NB->GetWindowStyleFlag() &~ Style);
- NB->Refresh();
- }
- }
- }
- void CFrame::OnSelectPerspective(wxCommandEvent& event)
- {
- u32 _Selection = event.GetId() - IDM_PERSPECTIVES_0;
- if (Perspectives.size() <= _Selection) _Selection = 0;
- ActivePerspective = _Selection;
- DoLoadPerspective();
- }
- void CFrame::SetPaneSize()
- {
- if (Perspectives.size() <= ActivePerspective)
- return;
- int iClientX = GetSize().GetX();
- int iClientY = GetSize().GetY();
- for (u32 i = 0, j = 0; i < m_Mgr->GetAllPanes().GetCount(); i++)
- {
- if (!m_Mgr->GetAllPanes()[i].window->IsKindOf(CLASSINFO(wxAuiToolBar)))
- {
- if (!m_Mgr->GetAllPanes()[i].IsOk())
- return;
- if (Perspectives[ActivePerspective].Width.size() <= j ||
- Perspectives[ActivePerspective].Height.size() <= j)
- continue;
- // Width and height of the active perspective
- u32 W = Perspectives[ActivePerspective].Width[j],
- H = Perspectives[ActivePerspective].Height[j];
- // Check limits
- MathUtil::Clamp<u32>(&W, 5, 95);
- MathUtil::Clamp<u32>(&H, 5, 95);
- // Convert percentages to pixel lengths
- W = (W * iClientX) / 100;
- H = (H * iClientY) / 100;
- m_Mgr->GetAllPanes()[i].BestSize(W, H).MinSize(W, H);
- j++;
- }
- }
- m_Mgr->Update();
- for (u32 i = 0; i < m_Mgr->GetAllPanes().GetCount(); i++)
- {
- if (!m_Mgr->GetAllPanes()[i].window->IsKindOf(CLASSINFO(wxAuiToolBar)))
- {
- m_Mgr->GetAllPanes()[i].MinSize(-1, -1);
- }
- }
- }
- void CFrame::ReloadPanes()
- {
- // Close all pages
- ClosePages();
- CloseAllNotebooks();
- // Create new panes with notebooks
- for (u32 i = 0; i < Perspectives[ActivePerspective].Width.size() - 1; i++)
- {
- wxString PaneName = wxString::Format("Pane %i", i + 1);
- m_Mgr->AddPane(CreateEmptyNotebook(), wxAuiPaneInfo().Hide()
- .CaptionVisible(m_bEdit).Dockable(!m_bNoDocking).Position(i)
- .Name(PaneName).Caption(PaneName));
- }
- // Perspectives
- m_Mgr->LoadPerspective(Perspectives[ActivePerspective].Perspective, false);
- // Restore settings
- TogglePaneStyle(m_bNoDocking, IDM_NO_DOCKING);
- TogglePaneStyle(m_bEdit, IDM_EDIT_PERSPECTIVES);
- // Load GUI settings
- g_pCodeWindow->Load();
- // Open notebook pages
- AddRemoveBlankPage();
- g_pCodeWindow->OpenPages();
- // Repopulate perspectives
- PopulateSavedPerspectives();
- }
- void CFrame::DoLoadPerspective()
- {
- ReloadPanes();
- // Restore the exact window sizes, which LoadPerspective doesn't always do
- SetPaneSize();
- m_Mgr->Update();
- }
- // Update the local perspectives array
- void CFrame::LoadIniPerspectives()
- {
- Perspectives.clear();
- std::vector<std::string> VPerspectives;
- std::string _Perspectives;
- IniFile ini;
- ini.Load(File::GetUserPath(F_DEBUGGERCONFIG_IDX));
- IniFile::Section* perspectives = ini.GetOrCreateSection("Perspectives");
- perspectives->Get("Perspectives", &_Perspectives, "Perspective 1");
- perspectives->Get("Active", &ActivePerspective, 0);
- SplitString(_Perspectives, ',', VPerspectives);
- for (auto& VPerspective : VPerspectives)
- {
- SPerspectives Tmp;
- std::string _Section, _Perspective, _Widths, _Heights;
- std::vector<std::string> _SWidth, _SHeight;
- Tmp.Name = VPerspective;
- // Don't save a blank perspective
- if (Tmp.Name.empty())
- {
- continue;
- }
- _Section = StringFromFormat("P - %s", Tmp.Name.c_str());
- IniFile::Section* perspec_section = ini.GetOrCreateSection(_Section);
- perspec_section->Get("Perspective", &_Perspective,
- "layout2|"
- "name=Pane 0;caption=Pane 0;state=768;dir=5;prop=100000;|"
- "name=Pane 1;caption=Pane 1;state=31458108;dir=4;prop=100000;|"
- "dock_size(5,0,0)=22|dock_size(4,0,0)=333|");
- perspec_section->Get("Width", &_Widths, "70,25");
- perspec_section->Get("Height", &_Heights, "80,80");
- Tmp.Perspective = StrToWxStr(_Perspective);
- SplitString(_Widths, ',', _SWidth);
- SplitString(_Heights, ',', _SHeight);
- for (auto& Width : _SWidth)
- {
- int _Tmp;
- if (TryParse(Width, &_Tmp))
- Tmp.Width.push_back(_Tmp);
- }
- for (auto& Height : _SHeight)
- {
- int _Tmp;
- if (TryParse(Height, &_Tmp))
- Tmp.Height.push_back(_Tmp);
- }
- Perspectives.push_back(Tmp);
- }
- }
- void CFrame::UpdateCurrentPerspective()
- {
- SPerspectives *current = &Perspectives[ActivePerspective];
- current->Perspective = m_Mgr->SavePerspective();
- // Get client size
- int iClientX = GetSize().GetX(), iClientY = GetSize().GetY();
- current->Width.clear();
- current->Height.clear();
- for (u32 i = 0; i < m_Mgr->GetAllPanes().GetCount(); i++)
- {
- if (!m_Mgr->GetAllPanes()[i].window->
- IsKindOf(CLASSINFO(wxAuiToolBar)))
- {
- // Save width and height as a percentage of the client width and height
- current->Width.push_back(
- (m_Mgr->GetAllPanes()[i].window->GetClientSize().GetX() * 100) /
- iClientX);
- current->Height.push_back(
- (m_Mgr->GetAllPanes()[i].window->GetClientSize().GetY() * 100) /
- iClientY);
- }
- }
- }
- void CFrame::SaveIniPerspectives()
- {
- if (Perspectives.size() == 0) return;
- if (ActivePerspective >= Perspectives.size()) ActivePerspective = 0;
- // Turn off edit before saving
- TogglePaneStyle(false, IDM_EDIT_PERSPECTIVES);
- UpdateCurrentPerspective();
- IniFile ini;
- ini.Load(File::GetUserPath(F_DEBUGGERCONFIG_IDX));
- // Save perspective names
- std::string STmp = "";
- for (auto& Perspective : Perspectives)
- {
- STmp += Perspective.Name + ",";
- }
- STmp = STmp.substr(0, STmp.length() - 1);
- IniFile::Section* perspectives = ini.GetOrCreateSection("Perspectives");
- perspectives->Set("Perspectives", STmp);
- perspectives->Set("Active", ActivePerspective);
- // Save the perspectives
- for (auto& Perspective : Perspectives)
- {
- std::string _Section = "P - " + Perspective.Name;
- IniFile::Section* perspec_section = ini.GetOrCreateSection(_Section);
- perspec_section->Set("Perspective", WxStrToStr(Perspective.Perspective));
- std::string SWidth = "", SHeight = "";
- for (u32 j = 0; j < Perspective.Width.size(); j++)
- {
- SWidth += StringFromFormat("%i,", Perspective.Width[j]);
- SHeight += StringFromFormat("%i,", Perspective.Height[j]);
- }
- // Remove the ending ","
- SWidth = SWidth.substr(0, SWidth.length() - 1);
- SHeight = SHeight.substr(0, SHeight.length() - 1);
- perspec_section->Set("Width", SWidth);
- perspec_section->Set("Height", SHeight);
- }
- ini.Save(File::GetUserPath(F_DEBUGGERCONFIG_IDX));
- // Save notebook affiliations
- g_pCodeWindow->Save();
- TogglePaneStyle(m_bEdit, IDM_EDIT_PERSPECTIVES);
- }
- void CFrame::AddPane(int dir)
- {
- int PaneNum = GetNotebookCount() + 1;
- wxString PaneName = wxString::Format("Pane %i", PaneNum);
- wxAuiPaneInfo PaneInfo = wxAuiPaneInfo()
- .CaptionVisible(m_bEdit).Dockable(!m_bNoDocking)
- .Name(PaneName).Caption(PaneName)
- .Position(GetNotebookCount());
- switch (dir)
- {
- case ADD_PANE_TOP:
- PaneInfo = PaneInfo.Top();
- break;
- case ADD_PANE_BOTTOM:
- PaneInfo = PaneInfo.Bottom();
- break;
- case ADD_PANE_LEFT:
- PaneInfo = PaneInfo.Left();
- break;
- case ADD_PANE_RIGHT:
- PaneInfo = PaneInfo.Right();
- break;
- case ADD_PANE_CENTER:
- PaneInfo = PaneInfo.Center();
- break;
- default:
- break;
- }
- m_Mgr->AddPane(CreateEmptyNotebook(), PaneInfo);
- AddRemoveBlankPage();
- m_Mgr->Update();
- }
- wxWindow * CFrame::GetNotebookPageFromId(wxWindowID Id)
- {
- for (u32 i = 0; i < m_Mgr->GetAllPanes().GetCount(); i++)
- {
- if (!m_Mgr->GetAllPanes()[i].window->IsKindOf(CLASSINFO(wxAuiNotebook)))
- continue;
- wxAuiNotebook * NB = (wxAuiNotebook*)m_Mgr->GetAllPanes()[i].window;
- for (u32 j = 0; j < NB->GetPageCount(); j++)
- {
- if (NB->GetPage(j)->GetId() == Id)
- return NB->GetPage(j);
- }
- }
- return nullptr;
- }
- wxFrame* CFrame::CreateParentFrame(wxWindowID Id, const wxString& Title, wxWindow* Child)
- {
- wxFrame* Frame = new wxFrame(this, Id, Title);
- Child->Reparent(Frame);
- wxBoxSizer* m_MainSizer = new wxBoxSizer(wxHORIZONTAL);
- m_MainSizer->Add(Child, 1, wxEXPAND);
- Frame->Bind(wxEVT_CLOSE_WINDOW, &CFrame::OnFloatingPageClosed, this);
- // Main sizer
- Frame->SetSizer(m_MainSizer);
- // Minimum frame size
- Frame->SetMinSize(wxSize(200, 200));
- Frame->Show();
- return Frame;
- }
- wxAuiNotebook* CFrame::CreateEmptyNotebook()
- {
- const long NOTEBOOK_STYLE = wxAUI_NB_TOP | wxAUI_NB_TAB_SPLIT |
- wxAUI_NB_TAB_MOVE |
- wxAUI_NB_TAB_EXTERNAL_MOVE | wxAUI_NB_SCROLL_BUTTONS |
- wxAUI_NB_WINDOWLIST_BUTTON | wxNO_BORDER;
- return new wxAuiNotebook(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, NOTEBOOK_STYLE);
- }
- void CFrame::AddRemoveBlankPage()
- {
- for (u32 i = 0; i < m_Mgr->GetAllPanes().GetCount(); i++)
- {
- if (!m_Mgr->GetAllPanes()[i].window->IsKindOf(CLASSINFO(wxAuiNotebook)))
- continue;
- wxAuiNotebook * NB = (wxAuiNotebook*)m_Mgr->GetAllPanes()[i].window;
- for (u32 j = 0; j < NB->GetPageCount(); j++)
- {
- if (NB->GetPageText(j).IsSameAs("<>") && NB->GetPageCount() > 1)
- NB->DeletePage(j);
- }
- if (NB->GetPageCount() == 0)
- NB->AddPage(new wxPanel(this, wxID_ANY), "<>", true);
- }
- }
- int CFrame::GetNotebookAffiliation(wxWindowID Id)
- {
- for (u32 i = 0, j = 0; i < m_Mgr->GetAllPanes().GetCount(); i++)
- {
- if (!m_Mgr->GetAllPanes()[i].window->IsKindOf(CLASSINFO(wxAuiNotebook)))
- continue;
- wxAuiNotebook * NB = (wxAuiNotebook*)m_Mgr->GetAllPanes()[i].window;
- for (u32 k = 0; k < NB->GetPageCount(); k++)
- {
- if (NB->GetPage(k)->GetId() == Id)
- return j;
- }
- j++;
- }
- return -1;
- }
- // Close all panes with notebooks
- void CFrame::CloseAllNotebooks()
- {
- wxAuiPaneInfoArray AllPanes = m_Mgr->GetAllPanes();
- for (u32 i = 0; i < AllPanes.GetCount(); i++)
- {
- if (AllPanes[i].window->IsKindOf(CLASSINFO(wxAuiNotebook)))
- {
- AllPanes[i].DestroyOnClose(true);
- m_Mgr->ClosePane(AllPanes[i]);
- }
- }
- }
- int CFrame::GetNotebookCount()
- {
- int Ret = 0;
- for (u32 i = 0; i < m_Mgr->GetAllPanes().GetCount(); i++)
- {
- if (m_Mgr->GetAllPanes()[i].window->IsKindOf(CLASSINFO(wxAuiNotebook)))
- Ret++;
- }
- return Ret;
- }
- wxAuiNotebook * CFrame::GetNotebookFromId(u32 NBId)
- {
- for (u32 i = 0, j = 0; i < m_Mgr->GetAllPanes().GetCount(); i++)
- {
- if (!m_Mgr->GetAllPanes()[i].window->IsKindOf(CLASSINFO(wxAuiNotebook)))
- continue;
- if (j == NBId)
- return (wxAuiNotebook*)m_Mgr->GetAllPanes()[i].window;
- j++;
- }
- return nullptr;
- }
|