summaryrefslogtreecommitdiffstats
path: root/src/devices/gui/device_group_ui.h
blob: 7b76186cf20520600023a4e81bd6cb980e14bfcc (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 *parent) const = 0;
  virtual Register::View *createRegisterView(TQWidget *parent) const = 0;
  virtual MemoryEditor *createConfigEditor(Device::Memory &memory, TQWidget *parent) const = 0;
  virtual void fillWatchListContainer(ListContainer *container, TQValueVector<Register::TypeData> &ids) const = 0;
  virtual Register::ListViewItem *createWatchItem(const Register::TypeData &data, KListViewItem *parent) const = 0;
};

inline const Device::GroupUI &groupui(const Device::Data &data) { return static_cast<const Device::GroupUI &>(*data.group().gui()); }

} // namespace

#endif