3 // Copyright by Johannes Sixt
4 // This file is under GPL, the GNU General Public Licence
10 #include <qlineedit.h>
14 class ProgramTypeTable
;
17 /* a variable's value is the tree of sub-variables */
19 class VarTree
: public KTreeViewItem
22 enum VarKind
{ VKsimple
, VKpointer
, VKstruct
, VKarray
,
23 VKdummy
/* used to update only children */
26 enum NameKind
{ NKplain
, NKstatic
, NKtype
,
27 NKaddress
/* a dereferenced pointer */
32 TypeInfo
* m_type
; /* type of struct */
33 int m_exprIndex
; /* used in struct value update */
34 bool m_exprIndexUseGuard
; /* ditto; if guard expr should be used */
35 QString m_partialValue
; /* while struct value update is in progress */
37 VarTree(const QString
& name
, NameKind kind
);
40 void paintValue(QPainter
* painter
);
42 QString
computeExpr() const;
43 bool isToplevelExpr() const;
44 /** is this element an ancestor of (or equal to) child? */
45 bool isAncestorEq(const VarTree
* child
) const;
46 /** update the value; return if repaint is necessary */
47 bool updateValue(const QString
& newValue
);
48 /** find out the type of this value using the child values */
49 void inferTypesOfChildren(ProgramTypeTable
& typeTable
);
50 /** get the type from base class part */
51 TypeInfo
* inferTypeFromBaseClass();
57 class ValueEdit
: public QLineEdit
61 ValueEdit(ExprWnd
* parent
);
64 void terminate(bool commit
);
68 void keyPressEvent(QKeyEvent
*e
);
69 void focusOutEvent(QFocusEvent
* ev
);
70 void paintEvent(QPaintEvent
* e
);
72 void slotSelectionChanged();
74 void done(int, const QString
&);
78 class ExprWnd
: public KTreeView
82 ExprWnd(QWidget
* parent
, const char* name
);
85 /** fills the list with the expressions at the topmost level */
86 void exprList(QStrList
& exprs
);
87 /** appends var the the end of the tree at the topmost level */
88 void insertExpr(VarTree
* expr
);
89 /** updates an existing expression */
90 void updateExpr(VarTree
* expr
);
91 void updateExpr(VarTree
* display
, VarTree
* newValues
);
92 /** updates the value and repaints it for a single item (not the children) */
93 void updateSingleExpr(VarTree
* display
, VarTree
* newValues
);
94 /** updates only the value of the node */
95 void updateStructValue(VarTree
* display
);
96 /** get a top-level expression by name */
97 VarTree
* topLevelExprByName(const char* name
);
98 /** removes an expression; must be on the topmost level*/
99 void removeExpr(VarTree
* item
);
100 /** retrieves the expression string at the specified line */
101 QString
exprStringAt(int index
);
102 /** clears the list of pointers needing updates */
103 void clearPendingUpdates();
104 /** returns a pointer to update (or 0) and removes it from the list */
105 VarTree
* nextUpdatePtr();
106 VarTree
* nextUpdateType();
107 VarTree
* nextUpdateStruct();
108 void editValue(int row
, const QString
& text
);
109 /** tells whether the a value is currently edited */
110 bool isEditing() const;
113 bool updateExprRec(VarTree
* display
, VarTree
* newValues
);
114 void replaceChildren(VarTree
* display
, VarTree
* newValues
);
115 virtual void paintCell(QPainter
* painter
, int row
, int col
);
116 virtual int cellWidth(int col
) const;
117 void updateValuesWidth();
118 static bool getMaxValueWidth(KTreeViewItem
* item
, void* user
);
119 void collectUnknownTypes(VarTree
* item
);
120 static bool collectUnknownTypes(KTreeViewItem
* item
, void* user
);
122 QPixmap m_pixPointer
;
124 QList
<VarTree
> m_updatePtrs
; /* dereferenced pointers that need update */
125 QList
<VarTree
> m_updateType
; /* structs whose type must be determined */
126 QList
<VarTree
> m_updateStruct
; /* structs whose nested value needs update */
130 /** remove items that are in the subTree from the list */
131 static void sweepList(QList
<VarTree
>& list
, VarTree
* subTree
);
134 void slotExpandOrCollapse(int);
137 void editValueCommitted(int, const QString
&);