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.
104 lines
3.0 KiB
104 lines
3.0 KiB
/***************************************************************************
|
|
debuggervariable.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 DEBUGGERVARIABLE_H
|
|
#define DEBUGGERVARIABLE_H
|
|
|
|
#include <tqstring.h>
|
|
#include <tqptrlist.h>
|
|
#include <klistview.h>
|
|
|
|
namespace DebuggerVariableTypes
|
|
{
|
|
|
|
enum VarType {
|
|
Object,
|
|
Resource,
|
|
Reference,
|
|
Array,
|
|
String,
|
|
Integer,
|
|
Float,
|
|
Boolean,
|
|
Error,
|
|
Undefined
|
|
};
|
|
}
|
|
|
|
class DebuggerVariable;
|
|
typedef TQPtrList<DebuggerVariable> ValueList_t;
|
|
|
|
class DebuggerVariable
|
|
{
|
|
public:
|
|
DebuggerVariable();
|
|
DebuggerVariable(DebuggerVariable* var, bool copyitem = false);
|
|
DebuggerVariable(const TQString& name);
|
|
DebuggerVariable(const TQString& name, const TQString& value, int type);
|
|
DebuggerVariable(const TQString& name, const TQString& value, int type, int size);
|
|
DebuggerVariable(const TQString& name, const ValueList_t& values, int type);
|
|
virtual ~DebuggerVariable();
|
|
|
|
DebuggerVariable* findItem(TQListViewItem *item, bool traverse = false);
|
|
|
|
virtual void setName(const TQString& name);
|
|
virtual TQString name() const;
|
|
|
|
virtual void setValue(const TQString& value);
|
|
virtual TQString value() const;
|
|
|
|
virtual void setValues(const ValueList_t& valueList);
|
|
virtual ValueList_t values() const;
|
|
|
|
virtual void setType(int type);
|
|
virtual int type() const;
|
|
virtual const TQString typeName() const ;
|
|
virtual bool isScalar() const;
|
|
|
|
virtual void setSize(long size);
|
|
virtual long size() const;
|
|
virtual TQString sizeName() const;
|
|
|
|
virtual void setReference(bool ref);
|
|
virtual bool isReference() const;
|
|
|
|
virtual void touch() { m_touched = true;};
|
|
virtual bool touched() const { return m_touched;};
|
|
|
|
virtual void setItem(KListViewItem* item) { m_item = item;};
|
|
virtual KListViewItem* item() const{ return m_item;};
|
|
|
|
virtual void copy(DebuggerVariable* v, bool copychldren = true);
|
|
virtual void append(DebuggerVariable* v);
|
|
virtual void deleteChild(DebuggerVariable *child);
|
|
|
|
|
|
private:
|
|
ValueList_t m_valueList;
|
|
|
|
TQString m_name;
|
|
TQString m_value;
|
|
bool m_isReference;
|
|
long m_size;
|
|
int m_type;
|
|
long m_touched;
|
|
|
|
KListViewItem* m_item;
|
|
};
|
|
#endif
|