blob: 69b27852532218c207bb605137633ca9a6774988 (
plain)
| 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
 | /***************************************************************************
                            variablelistview.h
                         ------------------------
    begin                : 2004-04-04
    copyright            : (C) 2004 Thiago Silva
 ***************************************************************************/
/****************************************************************************
 *                                                                          *
 *   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.                                    *
 *                                                                          *
 ***************************************************************************/
#ifndef VARIABLESLISTVIEW_H
#define VARIABLESLISTVIEW_H
#include <tdelistview.h>
#include <tdepopupmenu.h>
#include <tqptrlist.h>
class DebuggerVariable;
class VariablesListView : public TDEListView
{
  Q_OBJECT
  
  enum menuitems 
  {
    setValue = 1,
    dumpValue,
    copyValue,
    removeWatch
  };
      
  public:
    VariablesListView(TQWidget *parent = 0, const char *name = 0);
    ~VariablesListView();
    void addVariable(DebuggerVariable* variable);
    DebuggerVariable* selected(bool traverse = false);
    DebuggerVariable* first() { return m_variablesList.first(); }
    DebuggerVariable* next()  { return m_variablesList.next(); }
    
    void clear();
  public slots:
    void slotRemoveSelected();
    void slotVariableSetValue();
    void slotVariableDump();
    void slotVariableCopyToClipboard();
    void slotVariableContextMenu(TDEListView *list, TQListViewItem * item, const TQPoint& point);
  signals:
    void valueChanged(DebuggerVariable*);
    void removeVariable(DebuggerVariable*);
  private:
    void keyPressEvent(TQKeyEvent *e);
    void replaceVariable(DebuggerVariable* oldvar, DebuggerVariable* newvar);
    TQPtrList<DebuggerVariable> m_variablesList;
    TDEPopupMenu *m_variablePopup;
};
#endif
 |