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
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2008 by Eran Ifrah
// file name : outputtabwindow.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 "outputtabwindow.h"
#include "clToolBar.h"
#include "cl_config.h"
#include "editor_config.h"
#include "event_notifier.h"
#include "frame.h"
#include "globals.h"
#include "lexer_configuration.h"
#include "macros.h"
#include "manager.h"
#include "output_pane.h"
#include "pluginmanager.h"
#include "quickfindbar.h"
#include <wx/xrc/xmlres.h>
BEGIN_EVENT_TABLE(OutputTabWindow, wxPanel)
EVT_MENU(XRCID("scroll_on_output"), OutputTabWindow::OnOutputScrolls)
EVT_MENU(XRCID("clear_all_output"), OutputTabWindow::OnClearAll)
EVT_MENU(XRCID("word_wrap_output"), OutputTabWindow::OnWordWrap)
EVT_MENU(XRCID("collapse_all"), OutputTabWindow::OnCollapseAll)
EVT_MENU(XRCID("repeat_output"), OutputTabWindow::OnRepeatOutput)
EVT_MENU(XRCID("hold_pane_open"), OutputTabWindow::OnToggleHoldOpen)
EVT_UPDATE_UI(XRCID("scroll_on_output"), OutputTabWindow::OnOutputScrollsUI)
EVT_UPDATE_UI(XRCID("clear_all_output"), OutputTabWindow::OnClearAllUI)
EVT_UPDATE_UI(XRCID("word_wrap_output"), OutputTabWindow::OnWordWrapUI)
EVT_UPDATE_UI(XRCID("collapse_all"), OutputTabWindow::OnCollapseAllUI)
EVT_UPDATE_UI(XRCID("repeat_output"), OutputTabWindow::OnRepeatOutputUI)
EVT_STC_DOUBLECLICK(wxID_ANY, OutputTabWindow::OnMouseDClick)
EVT_STC_HOTSPOT_CLICK(wxID_ANY, OutputTabWindow::OnHotspotClicked)
EVT_STC_MARGINCLICK(wxID_ANY, OutputTabWindow::OnMarginClick)
END_EVENT_TABLE()
OutputTabWindow::OutputTabWindow(wxWindow* parent, wxWindowID id, const wxString& name)
: wxPanel(parent, id)
, m_name(name)
, m_tb(NULL)
, m_sci(NULL)
, m_outputScrolls(true)
, m_autoAppear(true)
, m_autoAppearErrors(false)
, m_errorsFirstLine(false)
{
m_styler.Reset(new clFindResultsStyler());
CreateGUIControls();
wxTheApp->Connect(wxID_COPY, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(OutputTabWindow::OnEdit), NULL,
this);
wxTheApp->Connect(wxID_SELECTALL, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(OutputTabWindow::OnEdit), NULL,
this);
wxTheApp->Connect(wxID_COPY, wxEVT_UPDATE_UI, wxUpdateUIEventHandler(OutputTabWindow::OnEditUI), NULL, this);
wxTheApp->Connect(wxID_SELECTALL, wxEVT_UPDATE_UI, wxUpdateUIEventHandler(OutputTabWindow::OnEditUI), NULL, this);
EventNotifier::Get()->Connect(wxEVT_CL_THEME_CHANGED, wxCommandEventHandler(OutputTabWindow::OnThemeChanged), NULL,
this);
}
OutputTabWindow::~OutputTabWindow()
{
m_styler.Reset(NULL);
EventNotifier::Get()->Disconnect(wxEVT_CL_THEME_CHANGED, wxCommandEventHandler(OutputTabWindow::OnThemeChanged),
NULL, this);
wxTheApp->Disconnect(wxID_COPY, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(OutputTabWindow::OnEdit), NULL,
this);
wxTheApp->Disconnect(wxID_SELECTALL, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(OutputTabWindow::OnEdit),
NULL, this);
wxTheApp->Disconnect(wxID_COPY, wxEVT_UPDATE_UI, wxUpdateUIEventHandler(OutputTabWindow::OnEditUI), NULL, this);
wxTheApp->Disconnect(wxID_SELECTALL, wxEVT_UPDATE_UI, wxUpdateUIEventHandler(OutputTabWindow::OnEditUI), NULL,
this);
}
void OutputTabWindow::DefineMarker(wxStyledTextCtrl* sci, int marker, int markerType, wxColor fore, wxColor back)
{
sci->MarkerDefine(marker, markerType);
sci->MarkerSetForeground(marker, fore);
sci->MarkerSetBackground(marker, back);
}
void OutputTabWindow::InitStyle(wxStyledTextCtrl* sci, int lexer, bool folding)
{
sci->SetLexer(lexer);
sci->StyleClearAll();
for(int i = 0; i <= wxSTC_STYLE_DEFAULT; i++) {
sci->StyleSetBackground(i, DrawingUtils::GetOutputPaneBgColour());
sci->StyleSetForeground(i, DrawingUtils::GetOutputPaneFgColour());
}
wxFont defFont = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT);
wxFont font = EditorConfigST::Get()->GetLexer("text")->GetFontForStyle(0, sci);
sci->StyleSetFont(0, font);
sci->SetIndicatorCurrent(1);
#ifdef __WXMSW__
int facttor = 2;
#else
int facttor = 5;
#endif
sci->IndicatorSetForeground(1, MakeColourLighter(wxT("GOLD"), facttor));
sci->IndicatorSetForeground(2, MakeColourLighter(wxT("RED"), 4));
sci->IndicatorSetStyle(1, wxSTC_INDIC_ROUNDBOX);
sci->IndicatorSetStyle(2, wxSTC_INDIC_ROUNDBOX);
sci->IndicatorSetUnder(1, true);
sci->IndicatorSetUnder(2, true);
// sci->IndicatorSetAlpha(1, 70);
// sci->IndicatorSetAlpha(2, 70);
sci->SetHotspotActiveUnderline(true);
sci->SetHotspotActiveForeground(true, wxT("BLUE"));
sci->SetHotspotSingleLine(true);
sci->SetMarginType(1, wxSTC_MARGIN_SYMBOL);
sci->SetMarginMask(4, wxSTC_MASK_FOLDERS);
sci->SetMarginWidth(0, 0);
sci->SetMarginWidth(1, 0);
sci->SetMarginWidth(2, 0);
if(folding) {
sci->SetMarginWidth(4, 16);
sci->SetProperty(wxT("fold"), wxT("1"));
sci->SetMarginSensitive(4, true);
}
// current line marker
DefineMarker(sci, 0x7, wxSTC_MARK_ARROW, wxColor(0x00, 0x00, 0x00), wxColor(0xff, 0xc8, 0xc8));
wxColor fore(0xff, 0xff, 0xff);
wxColor back(0x80, 0x80, 0x80);
DefineMarker(sci, wxSTC_MARKNUM_FOLDEROPEN, wxSTC_MARK_ARROWDOWN, fore, back);
DefineMarker(sci, wxSTC_MARKNUM_FOLDER, wxSTC_MARK_ARROW, fore, back);
DefineMarker(sci, wxSTC_MARKNUM_FOLDERSUB, wxSTC_MARK_BACKGROUND, fore, back);
DefineMarker(sci, wxSTC_MARKNUM_FOLDERTAIL, wxSTC_MARK_BACKGROUND, fore, back);
DefineMarker(sci, wxSTC_MARKNUM_FOLDEREND, wxSTC_MARK_ARROW, fore, back);
DefineMarker(sci, wxSTC_MARKNUM_FOLDEROPENMID, wxSTC_MARK_ARROWDOWN, fore, back);
DefineMarker(sci, wxSTC_MARKNUM_FOLDERMIDTAIL, wxSTC_MARK_BACKGROUND, fore, back);
sci->SetWrapStartIndent(4);
sci->SetWrapVisualFlags(2);
sci->SetScrollWidthTracking(true);
sci->SetReadOnly(true);
}
void OutputTabWindow::CreateGUIControls()
{
wxBoxSizer* mainSizer = new wxBoxSizer(wxVERTICAL);
SetSizer(mainSizer);
m_vSizer = new wxBoxSizer(wxVERTICAL);
// Create the default scintilla control
m_sci = new wxStyledTextCtrl(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxBORDER_NONE);
#if defined(__WXMSW__)
bool useDirect2D = clConfig::Get().Read("Editor/UseDirect2D", true);
m_sci->SetTechnology(useDirect2D ? wxSTC_TECHNOLOGY_DIRECTWRITE : wxSTC_TECHNOLOGY_DEFAULT);
#endif
// We dont really want to collect undo in the output tabs...
m_sci->SetUndoCollection(false);
m_sci->EmptyUndoBuffer();
InitStyle(m_sci, wxSTC_LEX_CONTAINER, false);
// Add the find bar
mainSizer->Add(m_vSizer, 1, wxEXPAND | wxALL, 0);
// Create the toolbar
m_tb = new clToolBar(this);
auto images = m_tb->GetBitmapsCreateIfNeeded();
m_tb->AddTool(XRCID("hold_pane_open"), _("Keep open"), images->Add("ToolPin"),
_("Don't close this pane when an editor gets focus"), wxITEM_CHECK);
m_tb->AddTool(XRCID("scroll_on_output"), _("Scroll on Output"), images->Add("link_editor"), _("Scroll on Output"),
wxITEM_CHECK);
m_tb->ToggleTool(XRCID("scroll_on_output"), m_outputScrolls);
m_tb->AddTool(XRCID("word_wrap_output"), _("Word Wrap"), images->Add("word_wrap"), _("Word Wrap"), wxITEM_CHECK);
m_tb->AddTool(XRCID("clear_all_output"), _("Clear All"), images->Add("clear"), _("Clear All"));
m_tb->AddTool(XRCID("collapse_all"), _("Fold All Results"), images->Add("fold"), _("Fold All Results"));
m_tb->AddTool(XRCID("repeat_output"), _("Repeat"), images->Add("debugger_restart"), _("Repeat"));
m_tb->Realize();
m_vSizer->Add(m_tb, 0, wxEXPAND);
m_vSizer->Add(m_sci, 1, wxEXPAND);
// Hide the find bar by default
m_vSizer->Layout();
}
void OutputTabWindow::Clear()
{
if(m_sci) {
m_sci->SetReadOnly(false);
m_sci->ClearAll();
m_sci->EmptyUndoBuffer();
m_sci->SetReadOnly(true);
}
}
void OutputTabWindow::AppendText(const wxString& text)
{
if(m_sci) {
if(m_autoAppear && m_sci->GetLength() == 0) {
ManagerST::Get()->ShowOutputPane(m_name);
}
//----------------------------------------------
// enable writing
m_sci->SetReadOnly(false);
// Strip any terminal escape chars from the buffer
wxString modText;
::clStripTerminalColouring(text, modText);
// add the text
m_sci->InsertText(m_sci->GetLength(), modText);
// enable readonly mode
m_sci->SetReadOnly(true);
}
}
void OutputTabWindow::OnOutputScrolls(wxCommandEvent& e) { m_outputScrolls = !m_outputScrolls; }
void OutputTabWindow::OnOutputScrollsUI(wxUpdateUIEvent& e)
{
e.Check(m_outputScrolls);
e.Enable(true);
}
void OutputTabWindow::OnClearAll(wxCommandEvent& e) { Clear(); }
void OutputTabWindow::OnClearAllUI(wxUpdateUIEvent& e) { e.Enable(m_sci && m_sci->GetLength() > 0); }
void OutputTabWindow::OnWordWrap(wxCommandEvent& e)
{
if(m_sci) {
m_sci->SetWrapMode(e.IsChecked() ? wxSTC_WRAP_WORD : wxSTC_WRAP_NONE);
}
}
void OutputTabWindow::OnWordWrapUI(wxUpdateUIEvent& e)
{
if(m_sci) {
e.Enable(true);
e.Check(m_sci->GetWrapMode() == wxSTC_WRAP_WORD);
} else {
e.Enable(false);
}
}
void OutputTabWindow::OnCollapseAll(wxCommandEvent& e)
{
if(m_sci) {
int maxLine = m_sci->GetLineCount();
// do two passes: first see if any folds can be collapsed
// if not, then expand instead
bool done = false;
for(int pass = 0; pass < 2 && !done; pass++) {
for(int line = 0; line < maxLine; line++) {
// Only test fold-header lines, otherwise we get false positives from "=== Searching for..."
if(!(m_sci->GetFoldLevel(line) & wxSTC_FOLDLEVELHEADERFLAG)) {
continue;
}
int foldLevel = (m_sci->GetFoldLevel(line) & wxSTC_FOLDLEVELNUMBERMASK);
if(foldLevel == 2 && m_sci->GetFoldExpanded(line) == !pass) {
m_sci->ToggleFold(line);
done = true;
}
}
}
}
}
void OutputTabWindow::OnCollapseAllUI(wxUpdateUIEvent& e) { e.Enable(m_sci && m_sci->GetLength() > 0); }
void OutputTabWindow::OnRepeatOutput(wxCommandEvent& e) { e.Skip(); }
void OutputTabWindow::OnRepeatOutputUI(wxUpdateUIEvent& e) { e.Enable(false); }
void OutputTabWindow::OnMouseDClick(wxStyledTextEvent& e) { e.Skip(); }
void OutputTabWindow::OnHotspotClicked(wxStyledTextEvent& e) { OnMouseDClick(e); }
void OutputTabWindow::OnMarginClick(wxStyledTextEvent& e)
{
if(m_sci && e.GetMargin() == 4) {
m_sci->ToggleFold(m_sci->LineFromPosition(e.GetPosition()));
}
}
bool OutputTabWindow::IsFocused()
{
wxWindow* win = wxWindow::FindFocus();
return (win && win == m_sci);
}
void OutputTabWindow::OnEditUI(wxUpdateUIEvent& e)
{
if(!IsFocused() || !m_sci) {
return;
}
switch(e.GetId()) {
case wxID_COPY:
e.Enable(m_sci->GetSelectedText().IsEmpty() == false);
break;
case wxID_SELECTALL:
e.Enable(true);
break;
default:
break;
}
}
void OutputTabWindow::OnEdit(wxCommandEvent& e)
{
if(!IsFocused() || !m_sci) {
e.Skip();
return;
}
switch(e.GetId()) {
case wxID_COPY:
m_sci->Copy();
break;
case wxID_SELECTALL:
m_sci->SelectAll();
break;
default:
break;
}
}
void OutputTabWindow::OnToggleHoldOpen(wxCommandEvent& e)
{
int sel = wxNOT_FOUND;
Notebook* book = clMainFrame::Get()->GetOutputPane()->GetNotebook();
if(book && (sel = book->GetSelection()) != wxNOT_FOUND) {
EditorConfigST::Get()->SetPaneStickiness(book->GetPageText(sel), e.IsChecked());
}
}
void OutputTabWindow::OnThemeChanged(wxCommandEvent& e)
{
e.Skip();
if(m_sci) {
InitStyle(m_sci, m_sci->GetLexer(), m_sci->GetMarginWidth(4) == 6);
}
}
void OutputTabWindow::ScrollToBottom()
{
CHECK_PTR_RET(m_sci);
// the next 4 lines make sure that the caret is at last line
// and is visible
m_sci->SetSelectionEnd(m_sci->GetLength());
m_sci->SetSelectionStart(m_sci->GetLength());
m_sci->SetCurrentPos(m_sci->GetLength());
m_sci->EnsureCaretVisible();
}
|