1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2008 by Eran Ifrah
// file name : workspace_pane.cpp
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#include "workspace_pane.h"
#include "Notebook.h"
#include "clTabTogglerHelper.h"
#include "clWorkspaceView.h"
#include "cl_aui_dock_art.h"
#include "cl_config.h"
#include "cl_defs.h"
#include "cl_editor.h"
#include "codelite_events.h"
#include "configuration_manager_dlg.h"
#include "cpp_symbol_tree.h"
#include "detachedpanesinfo.h"
#include "dockablepane.h"
#include "dockablepanemenumanager.h"
#include "editor_config.h"
#include "event_notifier.h"
#include "fileexplorer.h"
#include "fileview.h"
#include "frame.h"
#include "globals.h"
#include "macros.h"
#include "manager.h"
#include "openwindowspanel.h"
#include "pluginmanager.h"
#include "tabgroupspane.h"
#include "windowstack.h"
#include "workspacetab.h"
#include <algorithm>
#include <wx/app.h>
#include <wx/menu.h>
#include <wx/wupdlock.h>
#include <wx/xrc/xmlres.h>
#ifdef __WXGTK20__
// We need this ugly hack to workaround a gtk2-wxGTK name-clash
// See http://trac.wxwidgets.org/ticket/10883
#define GSocket GlibGSocket
#include <gtk/gtk.h>
#undef GSocket
#endif
WorkspacePane::WorkspacePane(wxWindow* parent, const wxString& caption, wxAuiManager* mgr, long style)
: m_caption(caption)
, m_mgr(mgr)
{
if(!wxPanel::Create(parent, wxID_ANY, wxDefaultPosition, wxDefaultSize, style)) {
return;
}
SetBackgroundColour(clSystemSettings::GetDefaultPanelColour());
Hide();
CreateGUIControls();
EventNotifier::Get()->Bind(wxEVT_INIT_DONE, &WorkspacePane::OnInitDone, this);
EventNotifier::Get()->Bind(wxEVT_EDITOR_CONFIG_CHANGED, &WorkspacePane::OnSettingsChanged, this);
EventNotifier::Get()->Bind(wxEVT_SHOW_WORKSPACE_TAB, &WorkspacePane::OnToggleWorkspaceTab, this);
EventNotifier::Get()->Bind(wxEVT_SYS_COLOURS_CHANGED, [this](clCommandEvent& e) {
e.Skip();
SetBackgroundColour(clSystemSettings::GetDefaultPanelColour());
Refresh();
});
}
WorkspacePane::~WorkspacePane()
{
EventNotifier::Get()->Unbind(wxEVT_INIT_DONE, &WorkspacePane::OnInitDone, this);
EventNotifier::Get()->Unbind(wxEVT_EDITOR_CONFIG_CHANGED, &WorkspacePane::OnSettingsChanged, this);
EventNotifier::Get()->Unbind(wxEVT_SHOW_WORKSPACE_TAB, &WorkspacePane::OnToggleWorkspaceTab, this);
}
#define IS_DETACHED(name) (detachedPanes.Index(name) != wxNOT_FOUND) ? true : false
void WorkspacePane::CreateGUIControls()
{
wxBoxSizer* mainSizer = new wxBoxSizer(wxVERTICAL);
SetSizer(mainSizer);
#if USE_AUI_NOTEBOOK
long style = wxAUI_NB_TOP | wxAUI_NB_TAB_MOVE | wxAUI_NB_WINDOWLIST_BUTTON | wxAUI_NB_TAB_SPLIT;
#else
// add notebook for tabs
#ifdef __WXOSX__
long style = (kNotebook_Default | kNotebook_AllowDnD | kNotebook_LeftTabs);
#else
long style = (kNotebook_Default | kNotebook_AllowDnD);
#endif
style |= kNotebook_UnderlineActiveTab;
if(EditorConfigST::Get()->GetOptions()->IsMouseScrollSwitchTabs()) {
style |= kNotebook_MouseScrollSwitchTabs;
}
#endif
m_book = new Notebook(this, wxID_ANY, wxDefaultPosition, wxSize(300, -1), style);
m_book->SetTabDirection(EditorConfigST::Get()->GetOptions()->GetWorkspaceTabsDirection());
m_book->Bind(wxEVT_BOOK_FILELIST_BUTTON_CLICKED, &WorkspacePane::OnWorkspaceBookFileListMenu, this);
#if !USE_AUI_NOTEBOOK
m_book->SetArt(GetNotebookRenderer());
#endif
// Calculate the widest tab (the one with the 'Workspace' label)
int xx, yy;
wxFont fnt = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT);
wxWindow::GetTextExtent(_("Workspace"), &xx, &yy, NULL, NULL, &fnt);
mainSizer->Add(m_book, 1, wxEXPAND | wxALL, 0);
// Add the parsing progress controls
m_staticText = new wxStaticText(this, wxID_ANY, _("Parsing workspace..."));
mainSizer->Add(m_staticText, 0, wxEXPAND | wxALL, 2);
m_parsingProgress =
new wxGauge(this, wxID_ANY, 100, wxDefaultPosition, wxSize(-1, 15), wxGA_HORIZONTAL | wxGA_SMOOTH);
mainSizer->Add(m_parsingProgress, 0, wxEXPAND | wxALL, 1);
m_parsingProgress->Hide();
m_staticText->Hide();
// create tabs (possibly detached)
DetachedPanesInfo dpi;
EditorConfigST::Get()->ReadObject(wxT("DetachedPanesList"), &dpi);
wxArrayString detachedPanes;
detachedPanes = dpi.GetPanes();
// Add the workspace tab
wxString name;
// the IManager instance
IManager* mgr = PluginManager::Get();
name = _("Workspace");
if(IS_DETACHED(name)) {
DockablePane* cp = new DockablePane(GetParent(), m_book, name, false, wxNOT_FOUND, wxSize(200, 200));
m_workspaceTab = new WorkspaceTab(cp, name);
cp->SetChildNoReparent(m_workspaceTab);
} else {
m_workspaceTab = new WorkspaceTab(m_book, name);
m_book->AddPage(m_workspaceTab, name, true, wxNOT_FOUND);
}
m_tabs.insert(std::make_pair(name, Tab(name, m_workspaceTab)));
mgr->AddWorkspaceTab(name);
// Add the explorer tab
name = _("Explorer");
if(IS_DETACHED(name)) {
DockablePane* cp = new DockablePane(GetParent(), m_book, name, false, wxNOT_FOUND, wxSize(200, 200));
m_explorer = new FileExplorer(cp, name);
cp->SetChildNoReparent(m_explorer);
} else {
m_explorer = new FileExplorer(m_book, name);
m_book->AddPage(m_explorer, name, false);
}
m_tabs.insert(std::make_pair(name, Tab(name, m_explorer)));
mgr->AddWorkspaceTab(name);
// Add the "File Explorer" view to the list of files managed by the workspace-view
m_workspaceTab->GetView()->AddPage(m_explorer, _("File Explorer"), false);
// Add the Open Windows Panel (Tabs)
// #ifndef __WXOSX__
name = _("Tabs");
if(IS_DETACHED(name)) {
DockablePane* cp = new DockablePane(GetParent(), m_book, name, false, wxNOT_FOUND, wxSize(200, 200));
m_openWindowsPane = new OpenWindowsPanel(cp, name);
cp->SetChildNoReparent(m_openWindowsPane);
} else {
m_openWindowsPane = new OpenWindowsPanel(m_book, name);
m_book->AddPage(m_openWindowsPane, name, false);
}
m_tabs.insert(std::make_pair(name, Tab(name, m_openWindowsPane)));
mgr->AddWorkspaceTab(name);
// #endif
// Add the Tabgroups tab
name = _("Tabgroups");
if(IS_DETACHED(name)) {
DockablePane* cp = new DockablePane(GetParent(), m_book, name, false, wxNOT_FOUND, wxSize(200, 200));
m_TabgroupsPane = new TabgroupsPane(cp, name);
cp->SetChildNoReparent(m_TabgroupsPane);
} else {
m_TabgroupsPane = new TabgroupsPane(m_book, name);
m_book->AddPage(m_TabgroupsPane, name, false);
}
m_tabs.insert(std::make_pair(name, Tab(name, m_TabgroupsPane)));
mgr->AddWorkspaceTab(name);
if(m_book->GetPageCount() > 0) {
m_book->SetSelection((size_t)0);
}
m_mgr->Update();
}
void WorkspacePane::ClearProgress()
{
m_parsingProgress->SetValue(0);
m_parsingProgress->Hide();
m_staticText->SetLabel(_("Parsing workspace..."));
m_staticText->Hide();
Layout();
}
void WorkspacePane::UpdateProgress(int val)
{
if(m_parsingProgress->IsShown() == false) {
m_parsingProgress->Show();
m_staticText->Show();
Layout();
}
m_staticText->SetLabel(wxString::Format(_("Parsing workspace: %d%% completed"), val));
m_parsingProgress->SetValue(val);
m_parsingProgress->Update();
}
typedef struct _tagTabInfo {
wxString text;
wxWindow* win = nullptr;
int bmp = wxNOT_FOUND;
} tagTabInfo;
void WorkspacePane::ApplySavedTabOrder(bool update_ui) const
{
wxArrayString tabs;
int index = -1;
if(!clConfig::Get().GetWorkspaceTabOrder(tabs, index))
return;
// There are (currently) 4 'standard' panes and a variable number of plugin ones
// NB Since we're only dealing with panes currently in the notebook, this shouldn't
// be broken by floating panes or non-loaded plugins
std::vector<tagTabInfo> vTempstore;
vTempstore.reserve(tabs.size());
for(size_t t = 0; t < tabs.GetCount(); ++t) {
wxString title = tabs.Item(t);
if(title.empty()) {
continue;
}
for(size_t n = 0; n < m_book->GetPageCount(); ++n) {
if(title == m_book->GetPageText(n)) {
tagTabInfo Tab;
Tab.text = title;
Tab.win = m_book->GetPage(n);
Tab.bmp = m_book->GetPageBitmapIndex(n);
vTempstore.push_back(Tab);
m_book->RemovePage(n);
break;
}
}
// If we reach here without finding title, presumably that tab is no longer available and will just be ignored
}
// All the matched tabs are now stored in the vector. Any left in m_book are presumably new additions
// Now prepend the ordered tabs, so that any additions will effectively be appended
for(size_t n = 0; n < vTempstore.size(); ++n) {
m_book->InsertPage(n, vTempstore.at(n).win, vTempstore.at(n).text, false, vTempstore.at(n).bmp);
}
// Restore any saved last selection
// NB: this doesn't actually work atm: the selection is set correctly, but presumably something else changes is
// later
// I've left the code in case anyone ever has time/inclination to fix it
if((index >= 0) && (index < (int)m_book->GetPageCount())) {
m_book->SetSelection(index);
} else if(m_book->GetPageCount()) {
m_book->SetSelection(0);
}
if(update_ui) {
m_mgr->Update();
}
}
void WorkspacePane::SaveWorkspaceViewTabOrder() const
{
#if USE_AUI_NOTEBOOK
wxArrayString panes = m_book->GetAllTabsLabels();
#else
wxArrayString panes;
clTabInfo::Vec_t tabs;
m_book->GetAllTabs(tabs);
std::for_each(tabs.begin(), tabs.end(), [&](clTabInfo::Ptr_t t) { panes.Add(t->GetLabel()); });
#endif
clConfig::Get().SetWorkspaceTabOrder(panes, m_book->GetSelection());
}
void WorkspacePane::DoShowTab(bool show, const wxString& title)
{
if(!show) {
for(size_t i = 0; i < m_book->GetPageCount(); i++) {
if(m_book->GetPageText(i) == title) {
// we've got a match
m_book->RemovePage(i);
wxWindow* win = DoGetControlByName(title);
if(win) {
win->Show(false);
}
break;
}
}
} else {
for(size_t i = 0; i < m_book->GetPageCount(); i++) {
if(m_book->GetPageText(i) == title) {
// requested to add a page which already exists
return;
}
}
// Fetch the list of detached panes
// If the mainframe is NULL, read the
// list from the disk, otherwise use the
// dockable pane menu
// Read it from the disk
DetachedPanesInfo dpi;
EditorConfigST::Get()->ReadObject(wxT("DetachedPanesList"), &dpi);
wxArrayString detachedPanes;
detachedPanes = dpi.GetPanes();
if(IS_DETACHED(title))
return;
wxWindow* win = DoGetControlByName(title);
if(win) {
win->Show(true);
m_book->InsertPage(0, win, title, true);
}
}
}
wxWindow* WorkspacePane::DoGetControlByName(const wxString& title)
{
if(title == _("Explorer"))
return m_explorer;
else if(title == _("Workspace"))
return m_workspaceTab;
#ifndef __WXOSX__
else if(title == _("Tabs"))
return m_openWindowsPane;
#endif
else if(title == _("Tabgroups"))
return m_TabgroupsPane;
return NULL;
}
bool WorkspacePane::IsTabVisible(int flag)
{
wxWindow* win(NULL);
wxString title;
switch(flag) {
case View_Show_Workspace_Tab:
title = _("Workspace");
win = DoGetControlByName(_("Workspace"));
break;
case View_Show_Explorer_Tab:
title = _("Explorer");
win = DoGetControlByName(_("Explorer"));
break;
#ifndef __WXOSX__
case View_Show_Tabs_Tab:
title = _("Tabs");
win = DoGetControlByName(_("Tabs"));
break;
#endif
case View_Show_Tabgroups_Tab:
title = _("Tabgroups");
win = DoGetControlByName(_("Tabgroups"));
break;
}
if(!win || title.IsEmpty())
return false;
// if the control exists in the notebook, return true
for(size_t i = 0; i < m_book->GetPageCount(); ++i) {
if(m_book->GetPageText(i) == title) {
return true;
}
}
return win && win->IsShown();
}
void WorkspacePane::OnInitDone(wxCommandEvent& event)
{
event.Skip();
m_captionEnabler.Initialize(this, "Workspace View", &clMainFrame::Get()->GetDockingManager());
}
void WorkspacePane::SelectTab(const wxString& tabTitle)
{
for(size_t i = 0; i < m_book->GetPageCount(); i++) {
if(m_book->GetPageText(i) == tabTitle) {
// requested to add a page which already exists
m_book->SetSelection(i);
}
}
}
void WorkspacePane::OnSettingsChanged(wxCommandEvent& event)
{
event.Skip();
m_book->SetTabDirection(EditorConfigST::Get()->GetOptions()->GetWorkspaceTabsDirection());
#if !USE_AUI_NOTEBOOK
m_book->SetArt(GetNotebookRenderer());
#endif
}
void WorkspacePane::OnToggleWorkspaceTab(clCommandEvent& event)
{
// Handle the core tabs
if(m_tabs.count(event.GetString()) == 0) {
event.Skip();
return;
}
const Tab& t = m_tabs.find(event.GetString())->second;
if(event.IsSelected()) {
// Insert the page
int where = clTabTogglerHelper::IsTabInNotebook(GetNotebook(), t.m_label);
if(where == wxNOT_FOUND) {
GetNotebook()->AddPage(t.m_window, t.m_label, true, t.m_bmp);
} else {
GetNotebook()->SetSelection(where);
}
} else {
// hide the tab
int where = GetNotebook()->GetPageIndex(t.m_label);
if(where != wxNOT_FOUND) {
GetNotebook()->RemovePage(where);
}
}
}
clTabRenderer::Ptr_t WorkspacePane::GetNotebookRenderer()
{
return clTabRenderer::CreateRenderer(m_book, m_book->GetStyle());
}
void WorkspacePane::OnWorkspaceBookFileListMenu(clContextMenuEvent& event)
{
wxMenu* menu = event.GetMenu();
DetachedPanesInfo dpi;
EditorConfigST::Get()->ReadObject("DetachedPanesList", &dpi);
wxMenu* hiddenTabsMenu = new wxMenu();
const wxArrayString& tabs = clGetManager()->GetWorkspaceTabs();
for(size_t i = 0; i < tabs.size(); ++i) {
const wxString& label = tabs.Item(i);
if((m_book->GetPageIndex(label) != wxNOT_FOUND)) {
// Tab is visible, dont show it
continue;
}
if(menu->GetMenuItemCount() > 0 && hiddenTabsMenu->GetMenuItemCount() == 0) {
// we are adding the first menu item
menu->AppendSeparator();
}
int tabId = wxXmlResource::GetXRCID(wxString() << "workspace_tab_" << label);
hiddenTabsMenu->Append(tabId, label);
// If the tab is detached, disable it's menu entry
if(dpi.GetPanes().Index(label) != wxNOT_FOUND) {
hiddenTabsMenu->Enable(tabId, false);
}
// Bind the event
hiddenTabsMenu->Bind(
wxEVT_MENU,
// Use lambda by value here so we make a copy
[=](wxCommandEvent& e) {
clCommandEvent eventShow(wxEVT_SHOW_WORKSPACE_TAB);
eventShow.SetSelected(true).SetString(label);
EventNotifier::Get()->AddPendingEvent(eventShow);
},
tabId);
}
if(hiddenTabsMenu->GetMenuItemCount() == 0) {
wxDELETE(hiddenTabsMenu);
} else {
menu->AppendSubMenu(hiddenTabsMenu, _("Hidden Tabs"), _("Hidden Tabs"));
}
}
void WorkspacePane::ShowTab(const wxString& name, bool show)
{
clCommandEvent show_event(wxEVT_SHOW_WORKSPACE_TAB);
show_event.SetString(name);
show_event.SetSelected(show);
EventNotifier::Get()->ProcessEvent(show_event);
}
|