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
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2014 Eran Ifrah
// file name : new_quick_watch_dlg.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 "new_quick_watch_dlg.h"
#include "clDebuggerEditItemDlg.h"
#include "debuggerobserver.h"
#include "editor_config.h"
#include "frame.h"
#include "globals.h"
#include "simpletable.h"
#include "windowattrmanager.h"
#include "wx/persist/window.h"
#include "wx/popupwin.h"
#include <cmath>
#include <wx/cursor.h>
#include <wx/log.h>
#include <wx/menu.h>
#include <wx/timer.h>
#include <wx/xrc/xmlres.h>
static wxRect s_Rect;
class QWTreeData : public wxTreeItemData
{
public:
VariableObjChild _voc;
QWTreeData(const VariableObjChild& voc)
: _voc(voc)
{
}
virtual ~QWTreeData() {}
};
#if wxVERSION_NUMBER >= 3104 && defined(__WXGTK3__)
static void DoNothing(wxShowEvent& event)
{
// Swallows wxEVT_SHOW, which would otherwise result in a zero clientsize due
// to a side-effect of the 3rd fix in https://trac.wxwidgets.org/ticket/16088
}
#endif
DisplayVariableDlg::DisplayVariableDlg(wxWindow* parent)
: clResizableTooltip(parent)
, m_debugger(NULL)
, m_editDlgIsUp(false)
{
Hide();
Centre();
SetName("clDebuggerEditItemDlgBase");
m_treeCtrl->Bind(wxEVT_TREE_ITEM_MENU, &DisplayVariableDlg::OnItemMenu, this);
#if wxVERSION_NUMBER >= 3104 && defined(__WXGTK3__)
Bind(wxEVT_SHOW, DoNothing);
#endif
}
DisplayVariableDlg::~DisplayVariableDlg()
{
m_treeCtrl->Unbind(wxEVT_TREE_ITEM_MENU, &DisplayVariableDlg::OnItemMenu, this);
}
void DisplayVariableDlg::OnItemExpanding(wxTreeEvent& event)
{
event.Skip();
wxTreeItemId item = event.GetItem();
if(item.IsOk()) {
if(m_treeCtrl->ItemHasChildren(item)) {
wxTreeItemIdValue kookie;
wxTreeItemId child = m_treeCtrl->GetFirstChild(item, kookie);
while(child.IsOk()) {
if(m_treeCtrl->GetItemText(child) == wxT("<dummy>")) {
// Dummy node, remove it and ask the debugger for information
m_treeCtrl->SetItemText(child, _("Loading..."));
QWTreeData* data = (QWTreeData*)m_treeCtrl->GetItemData(item);
if(data) {
// Ask the debugger for information
m_debugger->ListChildren(data->_voc.gdbId, DBG_USERR_QUICKWACTH);
m_gdbId2Item[data->_voc.gdbId] = item;
}
break;
}
child = m_treeCtrl->GetNextChild(item, kookie);
}
}
}
}
void DisplayVariableDlg::BuildTree(const VariableObjChildren& children, IDebugger* debugger)
{
m_debugger = debugger;
m_gdbId2Item.clear();
m_gdbId2ItemLeaf.clear();
m_treeCtrl->DeleteAllItems();
VariableObjChild vob;
vob.gdbId = m_mainVariableObject;
vob.isAFake = false;
wxTreeItemId root = m_treeCtrl->AddRoot(m_variableName, -1, -1, new QWTreeData(vob));
// Mac does not return value for the root item...
// we need to force another evaluate call here
#ifdef __WXMAC__
m_debugger->EvaluateVariableObject(m_mainVariableObject, DBG_USERR_QUICKWACTH);
m_gdbId2ItemLeaf[m_mainVariableObject] = root;
#endif
if(children.empty())
return;
DoAddChildren(root, children);
}
void DisplayVariableDlg::AddItems(const wxString& varname, const VariableObjChildren& children)
{
auto iter = m_gdbId2Item.find(varname);
if(iter != m_gdbId2Item.end()) {
wxTreeItemId item = iter->second;
DoAddChildren(item, children);
}
}
void DisplayVariableDlg::DoAddChildren(wxTreeItemId& item, const VariableObjChildren& children)
{
if(item.IsOk() == false)
return;
if(m_treeCtrl->GetRootItem() != item && m_treeCtrl->ItemHasChildren(item)) {
// delete the <dummy> node
wxTreeItemIdValue kookie;
wxTreeItemId child = m_treeCtrl->GetFirstChild(item, kookie);
while(child.IsOk()) {
wxString itemText = m_treeCtrl->GetItemText(child);
if(itemText == wxT("<dummy>") || itemText == _("Loading...")) {
m_treeCtrl->Delete(child);
}
child = m_treeCtrl->GetNextChild(item, kookie);
}
}
for(size_t i = 0; i < children.size(); i++) {
const VariableObjChild& ch = children[i];
// Dont use ch.isAFake here since it will also returns true of inheritance
if(ch.varName != "public" && ch.varName != "private" && ch.varName != "protected") {
// Real node
wxTreeItemId child = m_treeCtrl->AppendItem(item, ch.varName, -1, -1, new QWTreeData(ch));
if(ch.numChilds > 0) {
// add fake node to this item, so it will have the [+] on the side
m_treeCtrl->AppendItem(child, wxT("<dummy>"));
}
// ask gdb for the value for this node
m_debugger->EvaluateVariableObject(ch.gdbId, DBG_USERR_QUICKWACTH);
m_gdbId2ItemLeaf[ch.gdbId] = child;
} else {
// Fake node, ask for expansion only if this node is visible
m_debugger->ListChildren(ch.gdbId, DBG_USERR_QUICKWACTH);
m_gdbId2Item[ch.gdbId] = item;
}
}
}
void DisplayVariableDlg::OnBtnCancel(wxCommandEvent& e)
{
DoCleanUp();
e.Skip();
}
void DisplayVariableDlg::UpdateValue(const wxString& varname, const wxString& value)
{
wxTreeItemId nodeId;
auto iter = m_gdbId2ItemLeaf.find(varname);
if(iter != m_gdbId2ItemLeaf.end()) {
wxTreeItemId item = iter->second;
if(item.IsOk()) {
wxString curtext = m_treeCtrl->GetItemText(item);
#ifdef __WXMAC__
if(item == m_treeCtrl->GetRootItem()) {
curtext = curtext.BeforeFirst(wxT('='));
}
#endif
curtext << wxT(" = ") << value;
m_treeCtrl->SetItemText(item, curtext);
} else if(item.IsOk()) {
nodeId = item;
}
} else if(varname == m_mainVariableObject) {
// Handle Root
nodeId = m_treeCtrl->GetRootItem();
}
}
void DisplayVariableDlg::OnCloseEvent(wxCloseEvent& e)
{
DoCleanUp();
e.Skip();
}
void DisplayVariableDlg::DoCleanUp()
{
if(m_debugger && m_mainVariableObject.IsEmpty() == false) {
m_debugger->DeleteVariableObject(m_mainVariableObject);
}
m_gdbId2Item.clear();
m_gdbId2ItemLeaf.clear();
m_mainVariableObject = wxT("");
m_variableName = wxT("");
m_expression = wxT("");
m_itemOldValue.Clear();
m_editDlgIsUp = false;
wxSetCursor(wxNullCursor);
}
void DisplayVariableDlg::HideDialog()
{
DoCleanUp();
// asm("int3");
clResizableTooltip::Hide();
}
void DisplayVariableDlg::ShowDialog(bool center)
{
wxUnusedVar(center);
clResizableTooltip::ShowTip();
}
void DisplayVariableDlg::OnItemMenu(wxTreeEvent& event)
{
event.Skip();
wxTreeItemId item = event.GetItem();
if(item.IsOk()) {
m_treeCtrl->SelectItem(item);
}
// Dont show popup menu for fake nodes
if(IsFakeItem(item))
return;
// Popup the menu
wxMenu menu;
menu.Append(XRCID("tip_add_watch"), _("Add Watch"));
menu.Append(XRCID("tip_copy_value"), _("Copy Value to Clipboard"));
menu.Append(XRCID("edit_item"), _("Edit..."));
menu.Connect(XRCID("tip_add_watch"), wxEVT_COMMAND_MENU_SELECTED,
wxCommandEventHandler(DisplayVariableDlg::OnMenuSelection), NULL, this);
menu.Connect(XRCID("tip_copy_value"), wxEVT_COMMAND_MENU_SELECTED,
wxCommandEventHandler(DisplayVariableDlg::OnMenuSelection), NULL, this);
menu.Connect(XRCID("edit_item"), wxEVT_COMMAND_MENU_SELECTED,
wxCommandEventHandler(DisplayVariableDlg::OnMenuSelection), NULL, this);
m_treeCtrl->PopupMenu(&menu);
}
wxString DisplayVariableDlg::DoGetItemPath(const wxTreeItemId& treeItem)
{
wxString fullpath;
wxTreeItemId item = treeItem;
while(item.IsOk()) {
wxString text = m_treeCtrl->GetItemText(item);
text = text.BeforeFirst(wxT('='));
#ifdef __WXMAC__
// Mac puts the type in square brackets, remove them as well
text = text.BeforeFirst(wxT('['));
#endif
text.Trim().Trim(false);
if(item != m_treeCtrl->GetRootItem()) {
if(IsFakeItem(item) == false) {
text.Prepend(wxT("."));
fullpath.Prepend(text);
}
} else {
// Root item
fullpath.Prepend(text);
}
// Are we at root yet?
if(m_treeCtrl->GetRootItem() == item)
break;
// Surround this expression with parenthesiss
item = m_treeCtrl->GetItemParent(item);
}
wxString exprWithParentheses;
wxArrayString items = ::wxStringTokenize(fullpath, wxT("."), wxTOKEN_STRTOK);
for(size_t i = 0; i < items.GetCount(); i++) {
exprWithParentheses << items.Item(i);
exprWithParentheses.Prepend(wxT("(")).Append(wxT(")."));
}
if(!items.IsEmpty()) {
exprWithParentheses.RemoveLast();
}
return exprWithParentheses;
}
bool DisplayVariableDlg::IsFakeItem(const wxTreeItemId& item)
{
if(item.IsOk() == false)
return true; // fake
if(item != m_treeCtrl->GetRootItem()) {
QWTreeData* data = (QWTreeData*)m_treeCtrl->GetItemData(item);
if(data)
return data->_voc.isAFake;
return false;
} else {
return false;
}
}
void DisplayVariableDlg::OnMenuSelection(wxCommandEvent& e)
{
wxTreeItemId item = m_treeCtrl->GetSelection();
if(item.IsOk() && !IsFakeItem(item)) {
if(e.GetId() == XRCID("tip_add_watch")) {
wxString fullpath = DoGetItemPath(item);
clMainFrame::Get()->GetDebuggerPane()->GetWatchesTable()->AddExpression(fullpath);
clMainFrame::Get()->GetDebuggerPane()->SelectTab(wxGetTranslation(DebuggerPane::WATCHES));
clMainFrame::Get()->GetDebuggerPane()->GetWatchesTable()->RefreshValues();
} else if(e.GetId() == XRCID("tip_copy_value")) {
wxString itemText = m_treeCtrl->GetItemText(item);
itemText = itemText.AfterFirst(wxT('='));
CopyToClipboard(itemText.Trim().Trim(true));
} else if(e.GetId() == XRCID("edit_item")) {
DoEditItem(item);
}
}
}
void DisplayVariableDlg::OnCreateVariableObjError(const DebuggerEventData& event) { wxUnusedVar(event); }
void DisplayVariableDlg::DoEditItem(const wxTreeItemId& item)
{
if(item.IsOk() == false)
return;
wxString oldText = m_treeCtrl->GetItemText(item);
oldText = oldText.BeforeFirst(wxT('='));
oldText.Trim().Trim(false);
#ifdef __WXGTK__
wxPoint oldPos = ::wxGetMousePosition();
oldPos = ScreenToClient(oldPos);
#endif
m_editDlgIsUp = true;
clDebuggerEditItemDlg dlg(this, oldText);
// We need to Hide() the tip before running the edit dialog, otherwise the dialog is covered by the tip
// (and can't be entered or cancelled...
Hide();
int res = dlg.ShowModal();
Show();
m_editDlgIsUp = false;
#ifdef __WXGTK__
wxWindow::WarpPointer(oldPos.x, oldPos.y);
#endif
if(res != wxID_OK) {
return;
}
wxString newText = dlg.GetValue();
if(newText.IsEmpty())
return;
wxString newExpr = DoGetItemPath(item);
m_treeCtrl->SetItemText(item, newText);
// Create a new expression and ask GDB to evaluate it for us
wxString typecast = newText;
typecast.Trim().Trim(false);
int where = typecast.Find(oldText);
if(where == wxNOT_FOUND || where == 0) {
// The new text edited by the user does not contain the "old" expression
// OR it does contain it, but with an additional text to the END
newExpr = DoGetItemPath(item);
} else {
typecast.Replace(oldText, wxT(""));
typecast.Trim().Trim(false);
if(!typecast.IsEmpty()) {
if(!typecast.StartsWith(wxT("(")))
typecast.Prepend(wxT("("));
if(!typecast.EndsWith(wxT(")")))
typecast.Append(wxT(")"));
}
newExpr.Prepend(typecast);
}
s_Rect = GetScreenRect();
HideDialog();
m_debugger->CreateVariableObject(newExpr, false, DBG_USERR_QUICKWACTH);
}
void CLPersistentDebuggerTip::Save() const
{
const wxPopupWindow* const puw = Get();
const wxSize size = puw->GetSize();
SaveValue("w", size.x);
SaveValue("h", size.y);
}
bool CLPersistentDebuggerTip::Restore()
{
wxPopupWindow* const puw = Get();
long w(-1), h(-1);
const bool hasSize = RestoreValue("w", &w) && RestoreValue("h", &h);
if(hasSize)
puw->SetSize(w, h);
return hasSize;
}
inline wxPersistentObject* wxCreatePersistentObject(wxPopupWindow* puw) { return new CLPersistentDebuggerTip(puw); }
|