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

74 lines
2.2 KiB

/***************************************************************************
* Copyright (C) 2005 Nicolas Hadacek <hadacek@kde.org> *
* Copyright (C) 2003-2004 Alain Gibaud <alain.gibaud@free.fr> *
* *
* 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_WORD_EDITOR_H
#define PIC_CONFIG_WORD_EDITOR_H
#include <tqcombobox.h>
#include "common/gui/dialog.h"
#include "common/gui/misc_gui.h"
#include "pic_memory_editor.h"
namespace Pic
{
//----------------------------------------------------------------------------
class ConfigWordDialog : public Dialog
{
TQ_OBJECT
public:
ConfigWordDialog(const Memory &memory, uint index, TQWidget *parent);
};
//----------------------------------------------------------------------------
class ConfigWordComboBox : public ComboBox
{
TQ_OBJECT
public:
ConfigWordComboBox(TQWidget *parent);
void appendItem(const TQString &text, uint index) { insertItem(text); _map.append(index); }
uint index() const;
void setItem(uint index);
void setInvalidItem(uint index, const TQString &label);
private:
TQValueVector<uint> _map; // item index -> value index
uint _invalidIndex; // if invalid -> value index
bool isValid() const { return uint(count())==_map.count(); }
};
//----------------------------------------------------------------------------
class ConfigWordEditor : public MemoryEditor
{
TQ_OBJECT
public:
ConfigWordEditor(Memory &memory, uint index, bool withWordEditor, TQWidget *parent);
virtual void setReadOnly(bool readOnly);
public slots:
virtual void updateDisplay();
private slots:
void slotModified();
void showDialog();
private:
uint _configIndex;
MemoryRangeEditor *_mdb;
TQValueVector<ConfigWordComboBox *> _combos;
};
} // namespace
#endif