Make toolbar visible again.
[kdbg.git] / kdbg / procattach.h
blob2096dc6bccba69781ecc6524c4077f6fee94345f
1 // $Id$
3 // Copyright by Johannes Sixt
4 // This file is under GPL, the GNU General Public Licence
6 #ifndef ProcAttach_included
7 #define ProcAttach_included
9 #include <qdialog.h>
10 #include <qlabel.h>
11 #include <qlineedit.h>
12 #include <qpushbutton.h>
13 #include <qlayout.h>
15 class ProcAttach : public QDialog
17 public:
18 ProcAttach(QWidget* parent);
19 virtual ~ProcAttach();
21 void setText(const char* text) { m_processId.setText(text); }
22 const char* text() const { return m_processId.text(); }
24 protected:
25 QLabel m_label;
26 QLineEdit m_processId;
27 QPushButton m_buttonOK;
28 QPushButton m_buttonCancel;
29 QVBoxLayout m_layout;
30 QHBoxLayout m_buttons;
33 #endif // ProcAttach_included