Added support to debug XSLT using xsldbg by Keith Isdale.
[kdbg.git] / kdbg / winstack.h
blobac5dfac3fe2b7c86abbd6ad7ecdd9acec2f4f604
1 // $Id$
3 // Copyright by Johannes Sixt
4 // This file is under GPL, the GNU General Public Licence
6 #ifndef WINSTACK_H
7 #define WINSTACK_H
9 #include <qlist.h>
10 #include <qdialog.h>
11 #include <qlineedit.h>
12 #include <qlayout.h>
13 #include <qcheckbox.h>
14 #include <qpushbutton.h>
15 #include <qpopupmenu.h>
16 #include <qtooltip.h>
18 // forward declarations
19 class KDebugger;
20 class WinStack;
21 class SourceWindow;
22 class DisassembledCode;
23 struct DbgAddr;
25 class FindDialog : public QDialog
27 Q_OBJECT
28 public:
29 FindDialog();
30 ~FindDialog();
32 bool caseSensitive() const { return m_caseCheck.isChecked(); }
33 QString searchText() const { return m_searchText.text(); }
34 virtual void done(int result);
36 QLineEdit m_searchText;
37 QCheckBox m_caseCheck;
38 QPushButton m_buttonForward;
39 QPushButton m_buttonBackward;
40 QPushButton m_buttonClose;
42 signals:
43 void closed();
45 protected:
46 virtual void closeEvent(QCloseEvent* ev);
47 QVBoxLayout m_layout;
48 QHBoxLayout m_buttons;
52 class ValueTip : public QToolTip
54 public:
55 ValueTip(WinStack* parent);
56 virtual void maybeTip(const QPoint& p);
57 void tip(const QRect& r, const QString& s) { QToolTip::tip(r, s); }
61 class WinStack : public QWidget
63 Q_OBJECT
64 public:
65 WinStack(QWidget* parent, const char* name);
66 virtual ~WinStack();
68 enum { WindowMore=0x100, WindowMask=0xf };
70 /**
71 * The menu set with setWindowMenu will be modified by this widget to
72 * list the available windows. The specified popup menu must be set up
73 * to contain an entry with ID WindowMore. The windows will be inserted
74 * before this entry.
76 void setWindowMenu(QPopupMenu* menu);
77 /**
78 * Slot activate also looks in this directory when the specified file is
79 * a relative path.
81 void setExtraDirectory(const QString& dir) { m_lastOpenDir = dir; }
82 void activateFile(const QString& fileName);
83 bool activeLine(QString& filename, int& lineNo);
84 bool activeLine(QString& filename, int& lineNo, DbgAddr& address);
85 void maybeTip(const QPoint& p);
87 virtual void resizeEvent(QResizeEvent*);
89 signals:
90 void fileChanged();
91 void lineChanged();
92 void toggleBreak(const QString&, int, const DbgAddr&, bool);
93 void enadisBreak(const QString&, int, const DbgAddr&);
94 void clickedRight(const QPoint&);
95 void filesRightClick(const QPoint&);
96 void newFileLoaded();
97 void initiateValuePopup(const QString&);
98 void disassemble(const QString&, int);
99 void setTabWidth(int numChars);
101 public slots:
102 void selectWindow(int id); /* 1-based index, 0 means dialog More... */
103 virtual void slotFindForward();
104 virtual void slotFindBackward();
105 virtual void activate(const QString& filename, int lineNo, const DbgAddr& address);
106 void updatePC(const QString& filename, int lineNo, const DbgAddr& address, int frameNo);
107 void reloadAllFiles();
108 void updateLineItems(const KDebugger* deb);
109 void slotSetTabWidth(int numChars);
111 void slotFileReload();
112 void slotViewFind();
113 void slotBrkptSet();
114 void slotBrkptSetTemp();
115 void slotBrkptEnable();
117 // Displays the value tip at m_tipLocation
118 void slotShowValueTip(const QString& tipText);
120 // Shows the disassembled code at the location given by file and lineNo
121 void slotDisassembled(const QString& fileName, int lineNo,
122 const QList<DisassembledCode>& disass);
124 // Updates line items after expanding/collapsing disassembled code
125 void slotExpandCollapse(int lineNo);
127 protected:
128 bool activatePath(QString pathname, int lineNo, const DbgAddr& address);
129 virtual bool activateWindow(SourceWindow* fw, int lineNo, const DbgAddr& address); /* -1 doesnt change line */
130 virtual void changeWindowMenu();
131 virtual void mousePressEvent(QMouseEvent*);
132 void setPC(bool set, const QString& fileName, int lineNo,
133 const DbgAddr& address, int frameNo);
134 QList<SourceWindow> m_fileList;
135 SourceWindow* m_activeWindow;
136 QString m_lastOpenDir; /* where user opened last file */
137 QPopupMenu* m_windowMenu;
138 int m_itemMore;
139 QString m_textMore;
141 // program counter
142 QString m_pcFile;
143 int m_pcLine; /* -1 if no PC */
144 QString m_pcAddress; /* exact address of PC */
145 int m_pcFrame;
147 ValueTip m_valueTip;
148 QRect m_tipLocation; /* where tip should appear */
150 int m_tabWidth; /* number of chars */
152 public:
153 // find dialog
154 FindDialog m_findDlg;
157 #endif // WINSTACK_H