3 // Copyright by Johannes Sixt
4 // This file is under GPL, the GNU General Public Licence
10 #include <qlineedit.h>
13 class PrefDebugger
: public QWidget
16 PrefDebugger(QWidget
* parent
);
20 // --- the hint about defaults
24 // --- the debugger command
26 QLabel m_debuggerCCppLabel
;
27 QLineEdit m_debuggerCCpp
;
29 QString
debuggerCmd() const { return m_debuggerCCpp
.text(); }
30 void setDebuggerCmd(const QString
& cmd
) { m_debuggerCCpp
.setText(cmd
); }
32 // --- the output terminal
34 QLabel m_terminalHint
;
35 QLabel m_terminalLabel
;
38 QString
terminal() const { return m_terminal
.text(); }
39 void setTerminal(const QString
& t
) { m_terminal
.setText(t
); }
42 #endif // PREFDEBUGGER_H