summaryrefslogtreecommitdiffstats
path: root/src/libgui/breakpoint_view.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libgui/breakpoint_view.h')
-rw-r--r--src/libgui/breakpoint_view.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/libgui/breakpoint_view.h b/src/libgui/breakpoint_view.h
new file mode 100644
index 0000000..984a7ed
--- /dev/null
+++ b/src/libgui/breakpoint_view.h
@@ -0,0 +1,48 @@
+/***************************************************************************
+ * Copyright (C) 2006 Nicolas Hadacek <hadacek@kde.org> *
+ * *
+ * 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 BREAKPOINT_VIEW_H
+#define BREAKPOINT_VIEW_H
+
+#include "progs/manager/breakpoint.h"
+#include "common/gui/list_view.h"
+
+namespace Breakpoint
+{
+//----------------------------------------------------------------------------
+class ListViewItem : public KListViewItem
+{
+public:
+ ListViewItem(ListView *parent, const Data &data);
+ const Data &data() const { return _data; }
+
+private:
+ Data _data;
+};
+
+//----------------------------------------------------------------------------
+class View : public QWidget, public GenericView
+{
+Q_OBJECT
+public:
+ View(QWidget *parent);
+ virtual void updateView();
+ const Data *currentData() const { return _currentData; }
+
+private slots:
+ void itemClicked(QListViewItem *item);
+ void contextMenu(QListViewItem *item, const QPoint &pos, int col);
+
+private:
+ ListView *_listview;
+ const Data *_currentData;
+};
+
+} // namespace
+
+#endif