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/microsettingsdlg.h

107 lines
3.0 KiB

/***************************************************************************
* Copyright (C) 2003-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 MICROSETTINGSDLG_H
#define MICROSETTINGSDLG_H
#include <kdialogbase.h>
#include <tqmap.h>
#include <tqvalidator.h>
#include <tqvaluevector.h>
class KLineEdit;
class MicroSettings;
class MicroSettingsWidget;
class NewPinMappingWidget;
class PinMapping;
typedef TQMap< TQString, PinMapping > PinMappingMap;
/**
@author David Saxton
*/
class MicroSettingsDlg : public KDialogBase
{
Q_OBJECT
public:
MicroSettingsDlg( MicroSettings *_microSettings, TQWidget *parent = 0L, const char *name = 0L );
~MicroSettingsDlg();
void reject();
void accept();
/**
* @param pinMapName the pinMapName; may be changed to make it valid
* (e.g. spaces replaced with underscores).
* @returns Invalid for a pinMapName containing a non-variable name,
* Intermediate for a pinMapName that starts with a number or is already
* in use, and Acceptable otherwise.
*/
TQValidator::State validatePinMapName( TQString & pinMapName ) const;
public slots:
/**
* Saves the port details in the given row to the MicroSettings class.
* Usually called when the value is changed, or on 'Apply' of the
* dialog.
*/
void savePort( int row );
/**
* Saves the variable details to the MicroSettings class.
*/
void saveVariable( int row );
/**
* Adds an extra row to the list of variable if one is required.
*/
void checkAddVariableRow();
/**
* Called when the pinMapAdd button is pressed.
*/
void slotCreatePinMap();
/**
* Called when the pinMapModify button is pressed.
*/
void slotModifyPinMap();
/**
* Called when the pinMapRename button is pressed.
*/
void slotRenamePinMap();
/**
* Called when the pinMapRemove button is pressed.
*/
void slotRemovePinMap();
/**
* Called when the dialog is Applied or OK'd.
*/
void slotSaveStuff();
protected slots:
void slotCheckNewPinMappingName( const TQString & name );
protected:
/**
* Set each button enabled / disabled as appropriate.
*/
void updatePinMapButtons();
NewPinMappingWidget * m_pNewPinMappingWidget; // Used for checking that the variable name is ok
KDialogBase * m_pNewPinMappingDlg;
MicroSettingsWidget * m_pWidget;
MicroSettings * m_pMicroSettings;
PinMappingMap m_pinMappings;
TQValueVector< KLineEdit * > m_portTypeEdit;
TQValueVector< KLineEdit * > m_portStateEdit;
TQStringList m_portNames;
};
#endif