blob: d123d7d280f6a635d33b1fbb6a21ff60cbbb03d9 (
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
|
/***************************************************************************
* 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 DEVICE_GROUP_UI_H
#define DEVICE_GROUP_UI_H
#include <tqpixmap.h>
class TQWidget;
class KPopupMenu;
class KListViewItem;
class KAction;
#include "devices/base/generic_device.h"
#include "devices/base/device_group.h"
#include "devices/base/register.h"
namespace Register { class View; class ListViewItem; }
class HexEditor;
class ListContainer;
namespace Device
{
class Memory;
class HexView;
class MemoryEditor;
class GroupUI : public ::Group::BaseGui
{
public:
virtual HexView *createHexView(const HexEditor &editor, TQWidget *tqparent) const = 0;
virtual Register::View *createRegisterView(TQWidget *tqparent) const = 0;
virtual MemoryEditor *createConfigEditor(Device::Memory &memory, TQWidget *tqparent) const = 0;
virtual void fillWatchListContainer(ListContainer *container, TQValueVector<Register::TypeData> &ids) const = 0;
virtual Register::ListViewItem *createWatchItem(const Register::TypeData &data, KListViewItem *tqparent) const = 0;
};
inline const Device::GroupUI &groupui(const Device::Data &data) { return static_cast<const Device::GroupUI &>(*data.group().gui()); }
} // namespace
#endif
|