You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kdbg/kdbg/pgmsettings.h

54 lines
1021 B

/*
* Copyright Johannes Sixt
* This file is licensed under the GNU General Public License Version 2.
* See the file COPYING in the toplevel directory of the source directory.
*/
#ifndef PGMSETTINGS_H
#define PGMSETTINGS_H
#include <tqtabdialog.h>
class TQButtonGroup;
class TQLineEdit;
class ChooseDriver : public TQWidget
{
public:
ChooseDriver(TQWidget* parent);
void setDebuggerCmd(const TQString& cmd);
TQString debuggerCmd() const;
protected:
TQLineEdit* m_debuggerCmd;
};
class OutputSettings : public TQWidget
{
TQ_OBJECT
public:
OutputSettings(TQWidget* parent);
void setTTYLevel(int l);
int ttyLevel() const { return m_ttyLevel; }
protected:
int m_ttyLevel;
TQButtonGroup* m_group;
protected slots:
void slotLevelChanged(int);
};
class ProgramSettings : public TQTabDialog
{
TQ_OBJECT
public:
ProgramSettings(TQWidget* parent, TQString exeName, bool modal = true);
public:
ChooseDriver m_chooseDriver;
OutputSettings m_output;
};
#endif