This repository was archived by the owner on Feb 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathValgrindListLog.cpp
More file actions
111 lines (94 loc) · 2.57 KB
/
ValgrindListLog.cpp
File metadata and controls
111 lines (94 loc) · 2.57 KB
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
#include "sdk.h"
#ifndef CB_PRECOMP
#include <wx/arrstr.h>
#include <wx/filename.h>
#include <wx/listctrl.h>
#include "manager.h"
#include "editormanager.h"
#include "cbeditor.h"
#endif
#include "cbstyledtextctrl.h"
#include "ValgrindListLog.h"
namespace
{
const int ID_List = wxNewId();
};
BEGIN_EVENT_TABLE(ValgrindListLog, wxEvtHandler)
//
END_EVENT_TABLE()
ValgrindListLog::ValgrindListLog(const wxArrayString& Titles, wxArrayInt& Widths)
: ListCtrlLogger(Titles, Widths)
{
//ctor
}
ValgrindListLog::~ValgrindListLog()
{
//dtor
Disconnect(ID_List, -1, wxEVT_COMMAND_LIST_ITEM_ACTIVATED,
(wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction)
&ValgrindListLog::OnDoubleClick);
}
// TODO : use Getter instead of protected 'control'
wxWindow* ValgrindListLog::CreateControl(wxWindow* parent)
{
ListCtrlLogger::CreateControl(parent);
control->SetId(ID_List);
Connect(ID_List, -1, wxEVT_COMMAND_LIST_ITEM_ACTIVATED,
(wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction)
&ValgrindListLog::OnDoubleClick);
Manager::Get()->GetAppWindow()->PushEventHandler(this);
return control;
}
void ValgrindListLog::DestroyControls()
{
if ( !Manager::Get()->IsAppShuttingDown() )
{
Manager::Get()->GetAppWindow()->RemoveEventHandler(this);
}
}
void ValgrindListLog::OnDoubleClick(wxCommandEvent& /*event*/)
{
// go to the relevant file/line
if (control->GetSelectedItemCount() == 0)
{
return;
}
// find selected item index
const int Index = control->GetNextItem(-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
SyncEditor(Index);
} // end of OnDoubleClick
void ValgrindListLog::SyncEditor(int SelIndex)
{
wxFileName Filename(control->GetItemText(SelIndex));
wxString File;
// if (!Filename.IsAbsolute())
// {
// Filename.MakeAbsolute(m_Base);
// }
File = Filename.GetFullPath();
wxListItem li;
li.m_itemId = SelIndex;
li.m_col = 1;
li.m_mask = wxLIST_MASK_TEXT;
control->GetItem(li);
long Line = 0;
li.m_text.ToLong(&Line);
cbEditor* Editor = Manager::Get()->GetEditorManager()->Open(File);
if (!Line || !Editor)
{
return;
}
Line -= 1;
Editor->Activate();
Editor->GotoLine(Line);
if (cbStyledTextCtrl* Control = Editor->GetControl())
{
Control->EnsureVisible(Line);
}
}
void ValgrindListLog::Fit()
{
int columns = control->GetColumnCount();
for (int ii = 0; ii < columns; ++ii)
control->SetColumnWidth(ii, wxLIST_AUTOSIZE);
}