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/debuggerbreakpointview.h

76 lines
2.3 KiB

/***************************************************************************
Breakpoinlistview.h
------------------------
begin : 2004-06-27
copyright : (C) 2004 Linus McCabe
***************************************************************************/
/****************************************************************************
* *
* 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 DEBUGGERBREAKPOINTVIEW_H
#define DEBUGGERBREAKPOINTVIEW_H
#include <tdelistview.h>
#include <tdepopupmenu.h>
#include <tqptrlist.h>
#include "debuggerbreakpoint.h"
// class DebuggerBreakpoint;
class DebuggerBreakpointView;
class DebuggerBreakpointViewItem : public TDEListViewItem
{
private:
DebuggerBreakpoint m_breakpoint;
public:
DebuggerBreakpointViewItem();
DebuggerBreakpointViewItem(DebuggerBreakpointView* view);
DebuggerBreakpoint breakpoint() const { return m_breakpoint; }
void setBreakpoint(const DebuggerBreakpoint &bp) { m_breakpoint = bp; }
};
class DebuggerBreakpointView : public TDEListView
{
Q_OBJECT
public:
DebuggerBreakpointView(TQWidget *parent = 0, const char *name = 0);
~DebuggerBreakpointView();
void showBreakpoint(const DebuggerBreakpoint& bp);
void deleteBreakpoint(const DebuggerBreakpoint& bp);
DebuggerBreakpoint selected();
void clear();
public slots:
void slotRemoveSelected();
void slotBreakpointContextMenu(TDEListView *list, TQListViewItem * item, const TQPoint& point);
void slotBreakpointDoubleClick(TQListViewItem *item, const TQPoint &point, int column);
signals:
void removeBreakpoint(DebuggerBreakpoint*);
private:
void keyPressEvent(TQKeyEvent *e);
TQListViewItem* findBreakpoint(const DebuggerBreakpoint& bp, bool addIfNotExist = true);
TDEPopupMenu *m_breakpointPopup;
};
#endif