2 * Copyright Johannes Sixt
3 * This file is licensed under the GNU General Public License Version 2.
4 * See the file COPYING in the toplevel directory of the source directory.
12 #include <Q3GridLayout>
14 class PrefDebugger
: public QWidget
17 PrefDebugger(QWidget
* parent
);
21 // --- the hint about defaults
25 // --- the debugger command
27 QLabel m_debuggerCCppLabel
;
28 QLineEdit m_debuggerCCpp
;
30 QString
debuggerCmd() const { return m_debuggerCCpp
.text(); }
31 void setDebuggerCmd(const QString
& cmd
) { m_debuggerCCpp
.setText(cmd
); }
33 // --- the output terminal
35 QLabel m_terminalHint
;
36 QLabel m_terminalLabel
;
39 QString
terminal() const { return m_terminal
.text(); }
40 void setTerminal(const QString
& t
) { m_terminal
.setText(t
); }
43 #endif // PREFDEBUGGER_H