You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdewebdev/quanta/components/debugger/variableslistview.h

73 lines
2.2 KiB

/***************************************************************************
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 <klistview.h>
#include <kpopupmenu.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