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.
tdewebdev/quanta/components/debugger/debuggermanager.h

130 lines
3.9 KiB

/***************************************************************************
phpdebuggerinterface.h
-------------------
begin : 2004-03-12
copyright : (C) 2004 Linus McCabe <linus@mccabe.nu>
Based on work by Mathieu Kooiman
***************************************************************************/
/****************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef PHPDEBUGGERINTERFACE_H
#define PHPDEBUGGERINTERFACE_H
#include <tqobject.h>
#include <tqstring.h>
class DebuggerClient;
class QuantaDebuggerInterface;
class DebuggerBreakpointList;
class DebuggerUI;
class DebuggerVariable;
class DebuggerBreakpoint;
class PathMapper;
class Document;
class DebuggerManager : public TQObject
{
TQ_OBJECT
private:
// client
DebuggerClient *m_client;
QuantaDebuggerInterface * m_interface;
DebuggerBreakpointList *m_breakpointList;
DebuggerUI * m_debuggerui;
PathMapper * m_pathmapper;
// Internal help functions
void initActions();
void initClientActions();
void saveProperties();
void connectBreakpointSignals(Document*);
void disconnectBreakpointSignals(Document*);
TQString m_currentFile;
long m_currentLine;
public:
DebuggerManager(TQObject *myparent);
~DebuggerManager();
// Access to memebers
DebuggerUI * UI() { return m_debuggerui; };
DebuggerClient * client() { return m_client; };
PathMapper * Mapper() { return m_pathmapper; };
// Breakpoints
void haveBreakpoint (const TQString& file, int line);
void havenoBreakpoint (const TQString& file, int line);
void refreshBreakpoints();
// DebuggerBreakpoint *newDebuggerBreakpoint();
DebuggerBreakpoint * findDebuggerBreakpoint(const TQString& key);
void updateBreakpointKey(const DebuggerBreakpoint &bp, const TQString& newkey);
// Public help functions
bool showStatus(const TQString& message, bool log);
bool setActiveLine (const TQString& file, int line);
void setMark(const TQString& filename, long line, bool set, int mark);
void enableAction(const TQString& action, bool enable);
void fileOpened(const TQString& file);
bool hasClient() { return m_client != 0; };
public slots:
// Execution control slots
void slotDebugRequest();
void slotDebugRun();
void slotDebugTrace();
void slotDebugSkip();
void slotDebugStepOver();
void slotDebugStepInto();
void slotDebugStepOut();
void slotDebugPause();
void slotDebugKill();
// Breakpoint
void toggleBreakpoint();
void clearBreakpoints();
void slotConditionalBreakpoint();
void slotRemoveBreakpoint(DebuggerBreakpoint* bp);
// Watches
void slotAddWatch();
void slotRemoveVariable(DebuggerVariable* var);
void slotVariableSet();
// Connection related slots
void slotDebugStartSession();
void slotDebugEndSession();
// Profiler
void slotProfilerOpen();
// Initiation
void slotNewProjectLoaded(const TQString &, const KURL &, const KURL &);
// Event handling
void slotHandleEvent(const TQString &, const TQString &, const TQString &);
private slots:
void slotBreakpointMarked(Document*, int);
void slotBreakpointUnmarked(Document*, int);
signals:
void hideSplash();
};
#endif