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/gui/microselectwidget.cpp

130 lines
4.0 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. *
***************************************************************************/
#include "asminfo.h"
#include "microinfo.h"
#include "microlibrary.h"
#include "microselectwidget.h"
#include <kcombobox.h>
#include <tdelocale.h>
#include <tqgroupbox.h>
#include <tqlabel.h>
#include <tqlayout.h>
#include <tqtooltip.h>
#include <tqvariant.h>
#include <tqwhatsthis.h>
MicroSelectWidget::MicroSelectWidget( TQWidget* parent, const char* name, WFlags )
: TQGroupBox( 4, Qt::Horizontal, i18n("Microprocessor"), parent, name )
{
m_allowedAsmSet = AsmInfo::AsmSetAll;
m_allowedGpsimSupport = m_allowedFlowCodeSupport = m_allowedMicrobeSupport = MicroInfo::AllSupport;
if ( !name )
setName( "MicroSelectWidget" );
m_pMicroFamilyLabel = new TQLabel( this, "m_pMicroFamilyLabel" );
m_pMicroFamilyLabel->setText( i18n("Family") );
m_pMicroFamily = new KComboBox( FALSE, this, "m_pMicroFamily" );
m_pMicroFamily->setSizePolicy( TQSizePolicy::MinimumExpanding, TQSizePolicy::Preferred );
m_pMicroLabel = new TQLabel( this, "m_pMicroLabel" );
m_pMicroLabel->setText( i18n("Micro") );
m_pMicro = new KComboBox( FALSE, this, "m_pMicro" );
m_pMicro->setSizePolicy( TQSizePolicy::MinimumExpanding, TQSizePolicy::Preferred );
m_pMicro->setEditable( TRUE );
m_pMicro->setAutoCompletion(true);
updateFromAllowed();
setMicro("P16F84");
connect( m_pMicroFamily, TQT_SIGNAL(activated(const TQString & )), this, TQT_SLOT(microFamilyChanged(const TQString& )) );
}
MicroSelectWidget::~MicroSelectWidget()
{
}
void MicroSelectWidget::setAllowedAsmSet( unsigned allowed )
{
m_allowedAsmSet = allowed;
updateFromAllowed();
}
void MicroSelectWidget::setAllowedGpsimSupport( unsigned allowed )
{
m_allowedGpsimSupport = allowed;
updateFromAllowed();
}
void MicroSelectWidget::setAllowedFlowCodeSupport( unsigned allowed )
{
m_allowedFlowCodeSupport = allowed;
updateFromAllowed();
}
void MicroSelectWidget::setAllowedMicrobeSupport( unsigned allowed )
{
m_allowedMicrobeSupport = allowed;
updateFromAllowed();
}
void MicroSelectWidget::updateFromAllowed()
{
TQString oldFamily = m_pMicroFamily->currentText();
m_pMicroFamily->clear();
#define CHECK_ADD(family) if ( (m_allowedAsmSet & AsmInfo::family) && !MicroLibrary::self()->microIDs( AsmInfo::family, m_allowedGpsimSupport, m_allowedFlowCodeSupport, m_allowedMicrobeSupport ).isEmpty() ) m_pMicroFamily->insertItem( AsmInfo::setToString(AsmInfo::family) );
CHECK_ADD(PIC12)
CHECK_ADD(PIC14)
CHECK_ADD(PIC16);
#undef CHECK_ADD
if ( m_pMicroFamily->contains(oldFamily) )
m_pMicroFamily->setCurrentText(oldFamily);
microFamilyChanged(oldFamily);
}
void MicroSelectWidget::setMicro( const TQString & id )
{
MicroInfo * info = MicroLibrary::self()->microInfoWithID(id);
if (!info)
return;
m_pMicro->clear();
m_pMicro->insertStringList( MicroLibrary::self()->microIDs( info->instructionSet()->set() ) );
m_pMicro->setCurrentText(id);
m_pMicroFamily->setCurrentText( AsmInfo::setToString( info->instructionSet()->set() ) );
}
TQString MicroSelectWidget::micro() const
{
return m_pMicro->currentText();
}
void MicroSelectWidget::microFamilyChanged( const TQString & family )
{
TQString oldID = m_pMicro->currentText();
m_pMicro->clear();
m_pMicro->insertStringList( MicroLibrary::self()->microIDs( AsmInfo::stringToSet(family), m_allowedGpsimSupport, m_allowedFlowCodeSupport, m_allowedMicrobeSupport ) );
if ( m_pMicro->contains(oldID) )
m_pMicro->setCurrentText(oldID);
}
#include "microselectwidget.moc"