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_config_editor.h

40 lines
1.3 KiB

/***************************************************************************
* Copyright (C) 2005 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_CONFIG_EDITOR_H
#define PIC_CONFIG_EDITOR_H
#include "pic_memory_editor.h"
//----------------------------------------------------------------------------
namespace Pic
{
class HexView;
class MemoryConfigEditorWidget : public Device::MemoryEditorGroup, public MemoryCaster
{
Q_OBJECT
TQ_OBJECT
public:
MemoryConfigEditorWidget(Memory &memory, bool withWordEditor, TQWidget *parent);
};
//----------------------------------------------------------------------------
class MemoryConfigEditor : public MemoryTypeEditor
{
Q_OBJECT
TQ_OBJECT
public:
MemoryConfigEditor(const HexView *hexview, Memory &memory, TQWidget *parent);
virtual void init(bool first);
};
} // namespace
#endif