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.
64 lines
1.3 KiB
64 lines
1.3 KiB
|
|
#ifndef _VALGRIND_DIALOG_H_
|
|
#define _VALGRIND_DIALOG_H_
|
|
|
|
#include <kdialogbase.h>
|
|
|
|
class KURLRequester;
|
|
class DialogWidget;
|
|
|
|
/**
|
|
*
|
|
* Harald Fernengel
|
|
**/
|
|
class ValgrindDialog : public KDialogBase
|
|
{
|
|
TQ_OBJECT
|
|
|
|
public:
|
|
enum Type { Memcheck = 0, Calltree = 1 };
|
|
|
|
ValgrindDialog( Type type, TQWidget* parent = 0 );
|
|
~ValgrindDialog();
|
|
|
|
// the app to check
|
|
TQString executableName() const;
|
|
void setExecutable( const TQString& url );
|
|
|
|
// command line parameters for the app
|
|
TQString parameters() const;
|
|
void setParameters( const TQString& params );
|
|
|
|
// name and/or path to the valgrind executable
|
|
TQString valExecutable() const;
|
|
void setValExecutable( const TQString& ve );
|
|
|
|
// command line parameters for valgrind
|
|
TQString valParams() const;
|
|
void setValParams( const TQString& params );
|
|
|
|
// name and/or path to the calltree executable
|
|
TQString ctExecutable() const;
|
|
void setCtExecutable( const TQString& ce );
|
|
|
|
// command line parameters for calltree
|
|
TQString ctParams() const;
|
|
void setCtParams( const TQString& params );
|
|
|
|
// name and/or path to the tdecachegrind executable
|
|
TQString kcExecutable() const;
|
|
void setKcExecutable( const TQString& ke );
|
|
|
|
protected:
|
|
bool isNewValgrindVersion() const;
|
|
|
|
private:
|
|
DialogWidget *w;
|
|
Type m_type;
|
|
private slots:
|
|
void valgrindTextChanged();
|
|
|
|
};
|
|
|
|
#endif
|