blob: 697967b353e0ea34ddfa08f48199640911a9e0a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/***************************************************************************
* 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 TDEListViewItem
{
public:
ListViewItem(ListView *parent, const Data &data);
const Data &data() const { return _data; }
private:
Data _data;
};
//----------------------------------------------------------------------------
class View : public TQWidget, public GenericView
{
Q_OBJECT
public:
View(TQWidget *parent);
virtual void updateView();
const Data *currentData() const { return _currentData; }
private slots:
void itemClicked(TQListViewItem *item);
void contextMenu(TQListViewItem *item, const TQPoint &pos, int col);
private:
ListView *_listview;
const Data *_currentData;
};
} // namespace
#endif
|