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.
piklab/src/libgui/breakpoint_view.h

50 lines
1.5 KiB

/***************************************************************************
* 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 TQWidget, public GenericView
{
Q_OBJECT
TQ_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