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.
ktechlab/src/flowparts/pinmapping.h

146 lines
3.2 KiB

/***************************************************************************
* Copyright (C) 2005 by David Saxton *
* david@bluehaze.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 PINMAPPING_H
#define PINMAPPING_H
#include "component.h"
#include "icndocument.h"
#include "icnview.h"
#include <kdialogbase.h>
class ECKeyPad;
class ECSevenSegment;
class MicroInfo;
class PIC_IC;
class PinMapDocument;
class PinMapView;
/**
Stores a pin mapping Pic <--> [component] where component is set by the Type
(e.g. Keypad or Seven Segment). Used for FlowCode.
@author David Saxton
*/
class PinMapping
{
public:
enum Type
{
SevenSegment,
Keypad_4x3,
Keypad_4x4,
Invalid
};
/**
* Creates an invalid PinMapping, required by TQt templates.
*/
PinMapping();
/**
* Creates a PinMapping with the given type.
*/
PinMapping( Type type );
~PinMapping();
Type type() const { return m_type; }
TQStringList pins() const { return m_pins; }
void setPins( const TQStringList & pins ) { m_pins = pins; }
protected:
TQStringList m_pins;
Type m_type;
};
typedef TQMap< TQString, PinMapping > PinMappingMap;
/**
Dialog for editing a Pin Mapping
@author David Saxton
*/
class PinMapEditor : public KDialogBase
{
TQ_OBJECT
public:
PinMapEditor( PinMapping * PinMapping, MicroInfo * Info, TQWidget * parent, const char * name );
protected:
virtual void slotApply();
virtual void slotOk();
void savePinMapping();
PinMapping * m_pPinMapping;
PinMapDocument * m_pPinMapDocument;
PinMapView * m_pPinMapView;
};
/**
For use with FlowParts that require a pin map (e.g. Keypad and Seven Segment).
@author David Saxton
*/
class PinMapDocument : public ICNDocument
{
TQ_OBJECT
public:
PinMapDocument();
~PinMapDocument();
void init( const PinMapping & PinMapping, MicroInfo * microInfo );
virtual bool isValidItem( Item * item );
virtual bool isValidItem( const TQString &itemId );
PinMapping pinMapping() const;
virtual void deleteSelection();
protected:
PinMapping::Type m_pinMappingType;
ECKeyPad * m_pKeypad;
ECSevenSegment * m_pSevenSegment;
PIC_IC * m_pPicComponent;
};
/**
@author David Saxton
*/
class PinMapView : public ICNView
{
TQ_OBJECT
public:
PinMapView( PinMapDocument * pinMapDocument, ViewContainer * viewContainer, uint viewAreaId, const char * name = 0l );
~PinMapView();
};
class PIC_IC : public Component
{
public:
PIC_IC( ICNDocument * icnDocument, bool newItem, const char *id = 0L );
virtual ~PIC_IC();
virtual bool canFlip() const { return true; }
static Item * construct( ItemDocument *itemDocument, bool newItem, const char *id );
static LibraryItem * libraryItem();
void initPackage( MicroInfo * info );
};
#endif