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/devices/pic/gui/pic_group_ui.h

30 lines
1.3 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 PIC_GROUP_UI_H
#define PIC_GROUP_UI_H
#include "devices/gui/device_group_ui.h"
namespace Pic
{
class GroupUI : public Device::GroupUI
{
public:
virtual Device::HexView *createHexView(const HexEditor &editor, TQWidget *parent) const;
virtual Register::View *createRegisterView(TQWidget *parent) const;
virtual Device::MemoryEditor *createConfigEditor(Device::Memory &memory, TQWidget *parent) const;
virtual void fillWatchListContainer(ListContainer *container, TQValueVector<Register::TypeData> &ids) const;
virtual Register::ListViewItem *createWatchItem(const Register::TypeData &data, KListViewItem *parent) const;
};
} // namespace
#endif