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.5 KiB
64 lines
1.5 KiB
/*
|
|
* Copyright (C) 2002 Harald Fernengel <harry@tdevelop.org>
|
|
*/
|
|
|
|
#ifndef __KDEVPART_VALGRIND_H__
|
|
#define __KDEVPART_VALGRIND_H__
|
|
|
|
#include <tqguardedptr.h>
|
|
#include <tqstring.h>
|
|
#include <tqstringlist.h>
|
|
#include <kdevplugin.h>
|
|
|
|
class ValgrindWidget;
|
|
class KProcess;
|
|
|
|
class ValgrindPart : public KDevPlugin
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
ValgrindPart( TQObject *parent, const char *name, const TQStringList & );
|
|
~ValgrindPart();
|
|
|
|
void runValgrind( const TQString& exec, const TQString& parameters, const TQString& valExec, const TQString& valParameters );
|
|
|
|
void savePartialProjectSession( TQDomElement* el );
|
|
void restorePartialProjectSession( const TQDomElement* el );
|
|
|
|
private slots:
|
|
void slotExecValgrind();
|
|
void slotExecCalltree();
|
|
void slotKillValgrind();
|
|
void slotStopButtonClicked( KDevPlugin* which );
|
|
void receivedStdout( KProcess*, char*, int );
|
|
void receivedStderr( KProcess*, char*, int );
|
|
void processExited( KProcess* );
|
|
void loadOutput();
|
|
void projectOpened();
|
|
|
|
private:
|
|
void getActiveFiles();
|
|
void appendMessage( const TQString& message );
|
|
void appendMessages( const TQStringList& lines );
|
|
void receivedString( const TQString& str );
|
|
void clear();
|
|
TQString _lastExec, _lastParams, _lastValExec, _lastValParams,
|
|
_lastCtExec, _lastCtParams, _lastKcExec;
|
|
KProcess* proc;
|
|
TQString currentMessage;
|
|
TQString lastPiece;
|
|
TQStringList activeFiles;
|
|
int currentPid;
|
|
TQGuardedPtr<ValgrindWidget> m_widget;
|
|
struct {
|
|
bool runKc;
|
|
TQString kcPath;
|
|
// TQString kcWorkDir;
|
|
} kcInfo;
|
|
};
|
|
|
|
|
|
#endif
|