Do not insert new values in reversed order.
[kdbg.git] / kdbg / winstack.h
blob15d76c0cd4cd7f3f06d77db00edc510bcf0cbc80
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 <qptrlist.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>
17 #include "valarray.h"
19 // forward declarations
20 class KDebugger;
21 class WinStack;
22 class SourceWindow;
23 class DisassembledCode;
24 struct DbgAddr;
26 class FindDialog : public QDialog
28 Q_OBJECT
29 public:
30 FindDialog();
31 ~FindDialog();
33 bool caseSensitive() const { return m_caseCheck.isChecked(); }
34 QString searchText() const { return m_searchText.text(); }
35 virtual void done(int result);
37 QLineEdit m_searchText;
38 QCheckBox m_caseCheck;
39 QPushButton m_buttonForward;
40 QPushButton m_buttonBackward;
41 QPushButton m_buttonClose;
43 signals:
44 void closed();
46 protected:
47 virtual void closeEvent(QCloseEvent* ev);
48 QVBoxLayout m_layout;
49 QHBoxLayout m_buttons;
53 class ValueTip : public QToolTip
55 public:
56 ValueTip(WinStack* parent);
57 virtual void maybeTip(const QPoint& p);
58 void tip(const QRect& r, const QString& s) { QToolTip::tip(r, s); }
62 class WinStack : public QWidget
64 Q_OBJECT
65 public:
66 WinStack(QWidget* parent, const char* name);
67 virtual ~WinStack();
69 enum { WindowMore=0x100, WindowMask=0xf };
71 /**
72 * The menu set with setWindowMenu will be modified by this widget to
73 * list the available windows. The specified popup menu must be set up
74 * to contain an entry with ID WindowMore. The windows will be inserted
75 * before this entry.
77 void setWindowMenu(QPopupMenu* menu);
78 /**
79 * Slot activate also looks in this directory when the specified file is
80 * a relative path.
82 void setExtraDirectory(const QString& dir) { m_lastOpenDir = dir; }
83 void activateFile(const QString& fileName);
84 bool activeLine(QString& filename, int& lineNo);
85 bool activeLine(QString& filename, int& lineNo, DbgAddr& address);
86 void maybeTip(const QPoint& p);
87 bool hasWindows() const { return m_fileList.size() > 0; }
88 QString activeFileName() const;
90 virtual QSize sizeHint() const;
91 virtual void resizeEvent(QResizeEvent*);
93 signals:
94 void fileChanged();
95 void lineChanged();
96 void toggleBreak(const QString&, int, const DbgAddr&, bool);
97 void enadisBreak(const QString&, int, const DbgAddr&);
98 void clickedRight(const QPoint&);
99 void filesRightClick(const QPoint&);
100 void newFileLoaded();
101 void initiateValuePopup(const QString&);
102 void disassemble(const QString&, int);
103 void setTabWidth(int numChars);
104 void moveProgramCounter(const QString&, int, const DbgAddr&);
106 public slots:
107 void selectWindow(int id); /* 1-based index, 0 means dialog More... */
108 virtual void slotFindForward();
109 virtual void slotFindBackward();
110 virtual void activate(const QString& filename, int lineNo, const DbgAddr& address);
111 void updatePC(const QString& filename, int lineNo, const DbgAddr& address, int frameNo);
112 void reloadAllFiles();
113 void updateLineItems(const KDebugger* deb);
114 void slotSetTabWidth(int numChars);
116 void slotFileReload();
117 void slotViewFind();
118 void slotBrkptSet();
119 void slotBrkptSetTemp();
120 void slotBrkptEnable();
121 void slotMoveProgramCounter();
123 // Displays the value tip at m_tipLocation
124 void slotShowValueTip(const QString& tipText);
126 // Shows the disassembled code at the location given by file and lineNo
127 void slotDisassembled(const QString& fileName, int lineNo,
128 const QList<DisassembledCode>& disass);
130 // Updates line items after expanding/collapsing disassembled code
131 void slotExpandCollapse(int lineNo);
133 protected:
134 bool activatePath(QString pathname, int lineNo, const DbgAddr& address);
135 virtual bool activateWindow(SourceWindow* fw, int lineNo, const DbgAddr& address); /* -1 doesnt change line */
136 virtual void changeWindowMenu();
137 virtual void mousePressEvent(QMouseEvent*);
138 void setPC(bool set, const QString& fileName, int lineNo,
139 const DbgAddr& address, int frameNo);
140 ValArray<SourceWindow*> m_fileList;
141 SourceWindow* m_activeWindow;
142 QString m_lastOpenDir; /* where user opened last file */
143 QPopupMenu* m_windowMenu;
145 // program counter
146 QString m_pcFile;
147 int m_pcLine; /* -1 if no PC */
148 QString m_pcAddress; /* exact address of PC */
149 int m_pcFrame;
151 ValueTip m_valueTip;
152 QRect m_tipLocation; /* where tip should appear */
154 int m_tabWidth; /* number of chars */
156 public:
157 // find dialog
158 FindDialog m_findDlg;
161 #endif // WINSTACK_H